* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO */
.hero {
  padding: 120px 0 100px;
  background: #1a1a1a;
  color: #fff;
  text-align: center;
}

.hero-label {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #D4537E;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.2rem;
  color: #b0b0b0;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: #D4537E;
  color: #fff;
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-lg {
  padding: 20px 48px;
  font-size: 1.25rem;
}

/* PROBLÈME */
.problem {
  padding: 100px 0;
  background: #fafafa;
}

.problem h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.problem-card {
  background: #fff;
  padding: 36px;
  border-radius: 12px;
  border: 1px solid #eee;
  text-align: center;
}

.problem-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.problem-card p {
  font-size: 1.05rem;
  color: #444;
}

/* SOLUTION */
.solution {
  padding: 100px 0;
}

.solution h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.solution-sub {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  max-width: 640px;
  margin: 0 auto 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.feature {
  padding: 8px 0;
}

.feature-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: #D4537E;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}

.feature h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature p {
  color: #555;
  font-size: 1rem;
}

/* PRICING */
.pricing {
  padding: 100px 0;
  background: #1a1a1a;
  color: #fff;
}

.pricing h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-card {
  background: #2a2a2a;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid transparent;
}

.pricing-card.featured {
  border-color: #D4537E;
}

.pricing-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  color: #999;
  margin-bottom: 16px;
}

.pricing-price {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.pricing-price strong {
  font-size: 2.2rem;
  font-weight: 900;
  color: #D4537E;
}

.pricing-desc {
  color: #aaa;
  font-size: 1rem;
}

/* AUDIENCE */
.audience {
  padding: 100px 0;
}

.audience h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 48px;
}

.audience-list {
  list-style: none;
  max-width: 560px;
  margin: 0 auto;
}

.audience-list li {
  font-size: 1.15rem;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  padding-left: 32px;
  position: relative;
}

.audience-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #D4537E;
}

/* CTA */
.cta {
  padding: 100px 0;
  background: #D4537E;
  text-align: center;
}

.cta h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.cta p {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 40px;
}

.cta .btn-primary {
  background: #1a1a1a;
  color: #fff;
}

/* FOOTER */
.footer {
  padding: 48px 0;
  background: #111;
  color: #666;
  text-align: center;
  font-size: 0.9rem;
}

.footer-brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .hero {
    padding: 80px 0 60px;
  }

  .problem,
  .solution,
  .pricing,
  .audience,
  .cta {
    padding: 72px 0;
  }
}

/* QUIZ PAGE */
.quiz-body {
  background: #fafafa;
  min-height: 100vh;
}

.quiz-header {
  padding: 24px 0;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.quiz-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quiz-brand {
  font-weight: 900;
  font-size: 1.2rem;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: 1px;
}

.quiz-progress {
  font-weight: 700;
  color: #D4537E;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.quiz-main {
  padding: 80px 0;
}

.question,
.result {
  display: none;
  max-width: 640px;
  margin: 0 auto;
}

.question.active,
.result.active {
  display: block;
}

.question-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: #D4537E;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.question h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 40px;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option {
  text-align: left;
  background: #fff;
  border: 2px solid #eee;
  border-radius: 12px;
  padding: 20px 24px;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.15s ease;
  line-height: 1.4;
}

.option:hover {
  border-color: #D4537E;
  background: #fff;
  transform: translateX(4px);
}

.result-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.fit-tag {
  background: #D4537E;
  color: #fff;
}

.nofit-tag {
  background: #1a1a1a;
  color: #fff;
}

.result h2 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
}

.result-text {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.result .btn {
  margin-top: 16px;
}

.result-back {
  display: block;
  margin-top: 24px;
  color: #888;
  text-decoration: none;
  font-size: 0.95rem;
}

.result-back:hover {
  color: #1a1a1a;
}
