/* ── Section generic ─────────────────────────────────────────────────────── */

section { padding: 72px 0; }

section[id] { scroll-margin-top: 90px; }

.section-label {
  color:          var(--orange);
  font-weight:    700;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom:  10px;
  text-align:     center;
}

.section-title {
  font-size:     2rem;
  font-weight:   800;
  text-align:    center;
  margin-bottom: 14px;
}

.section-sub {
  text-align:    center;
  color:         var(--muted);
  font-size:     1.05rem;
  max-width:     640px;
  margin:        0 auto 48px;
}


/* ── Problem section ─────────────────────────────────────────────────────── */

.problem-section { background: #fff; }

.problem-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   28px;
  margin-top:            8px;
}

.problem-card {
  text-align:    center;
  padding:       28px 20px;
  background:    var(--card);
  border-radius: 14px;
  box-shadow:    0 2px 10px rgba(0,0,0,.04);
  transition:    transform .2s ease, box-shadow .2s ease;
}

.problem-card:hover {
  transform:  translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,.1);
}

.problem-num {
  font-size:     2.4rem;
  font-weight:   800;
  color:         var(--teal);
  margin-bottom: 8px;
}

.problem-card p {
  color:     var(--muted);
  font-size: .92rem;
}


/* ── Curriculum ──────────────────────────────────────────────────────────── */

.curriculum-section { background: var(--bg); }

.day-card {
  background:            var(--card);
  border-radius:         14px;
  padding:               26px 28px;
  margin-bottom:         16px;
  display:               grid;
  grid-template-columns: 64px 1fr;
  gap:                   22px;
  align-items:           flex-start;
  box-shadow:            0 2px 10px rgba(0,0,0,.04);
  transition:            transform .2s ease, box-shadow .2s ease;
}

.day-card:hover {
  transform:  translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,.1);
}

.day-num {
  width:           56px;
  height:          56px;
  border-radius:   50%;
  background:      var(--teal);
  color:           #fff;
  font-weight:     800;
  font-size:       1.3rem;
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
}

.day-card h3 {
  font-size:     1.15rem;
  font-weight:   700;
  margin-bottom: 6px;
  color:         var(--ink);
}

.day-card p {
  color:         var(--muted);
  font-size:     .94rem;
  margin-bottom: 8px;
}

.day-kern {
  font-size:   .86rem;
  color:       var(--orange-dk);
  font-weight: 600;
}


/* ── USP / Why ───────────────────────────────────────────────────────────── */

.why-section { background: #fff; }

.why-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   24px;
}

.why-card {
  padding:       28px 24px;
  border-radius: 14px;
  background:    var(--bg);
  border:        1px solid #eee;
  transition:    transform .2s ease, box-shadow .2s ease;
}

.why-card:hover {
  transform:  translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,.08);
}

.why-icon {
  font-size:     1.8rem;
  margin-bottom: 14px;
}

.why-card h3 {
  font-size:     1.05rem;
  font-weight:   700;
  margin-bottom: 8px;
}

.why-card p {
  color:     var(--muted);
  font-size: .9rem;
}


/* ── Tools ───────────────────────────────────────────────────────────────── */

.tools-section {
  background:  var(--bg);
  text-align:  center;
}

.tools-row {
  display:         flex;
  justify-content: center;
  gap:             14px;
  flex-wrap:       wrap;
  margin-top:      8px;
}

.tool-chip {
  background:    #fff;
  border:        1px solid #eee;
  padding:       10px 20px;
  border-radius: 999px;
  font-weight:   600;
  font-size:     .9rem;
  box-shadow:    0 2px 6px rgba(0,0,0,.04);
}


/* ── Pricing ─────────────────────────────────────────────────────────────── */

.price-section {
  position:   relative;
  background: var(--gradient-dark);
  color:      #fff;
}

.price-card {
  max-width:     460px;
  margin:        0 auto;
  background:    #fff;
  color:         var(--ink);
  border-radius: 18px;
  padding:       40px 36px;
  text-align:    center;
  box-shadow:    0 24px 50px rgba(0,0,0,.18);
  transition:    transform .2s ease, box-shadow .2s ease;
}

.price-card:hover {
  transform:  translateY(-4px);
  box-shadow: 0 28px 60px rgba(0,0,0,.22);
}

.price-card .badge {
  background:    var(--orange);
  color:         #fff;
  font-weight:   600;
  padding:       5px 14px;
  border-radius: 10px;
  display:       inline-block;
  margin-bottom: 16px;
}

.price-amount {
  font-size:     3.2rem;
  font-weight:   800;
  color:         var(--teal);
  margin-bottom: 4px;
}

.price-amount span {
  font-size:   1.1rem;
  color:       var(--muted);
  font-weight: 600;
}

.price-card ul {
  list-style: none;
  text-align: left;
  margin:     26px 0;
}

.price-card li {
  padding:       9px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size:     .94rem;
}

.price-card li::before {
  content:     "✓ ";
  color:       var(--teal);
  font-weight: 800;
}

.price-card li:last-child { border-bottom: none; }


/* ── FAQ ─────────────────────────────────────────────────────────────────── */

.faq-section { background: #fff; }

.faq-item { border-bottom: 1px solid #eee; }

.faq-q {
  padding:         20px 4px;
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  cursor:          pointer;
  font-weight:     700;
  font-size:       1rem;
}

.faq-q .arrow {
  transition: transform .2s;
  color:      var(--orange);
  font-size:  1.2rem;
}

.faq-item.open .faq-q .arrow { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow:   hidden;
  transition: max-height .25s ease;
  color:      var(--muted);
  font-size:  .94rem;
}

.faq-item.open .faq-a {
  max-height:     300px;
  padding-bottom: 18px;
}


/* ── Final CTA ───────────────────────────────────────────────────────────── */

.final-cta {
  background:  #1B3A3A;
  color:       #fff;
  text-align:  center;
}

.final-cta h2 {
  font-size:     1.9rem;
  font-weight:   800;
  margin-bottom: 14px;
}

.final-cta p {
  color:         #D8E4E2;
  margin-bottom: 30px;
  font-size:     1.05rem;
}
