/*
  Career Exploration — local overrides
  ------------------------------------------------------------------
  Reuses global ../styles.css for tokens (:root), .container, .button,
  .nav, .lang-switch, .mobile-menu, .hero, .eyebrow, .final-cta, and
  .site-footer. Only page-specific sections live here.

  Scoped to .ce1-page so other pages stay untouched.
*/

.ce1-page .hero__content {
  padding-bottom: 64px;
}

.ce1-hero__points {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  max-width: 620px;
}

.ce1-hero__points li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.ce1-hero__points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.ce1-hero__trust {
  margin: 28px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ==========================================================================
   Shared eyebrow tone: default .eyebrow (global) is tuned for dark
   backgrounds. On light ce1 sections, swap to the amber tone the site
   already uses for light-section eyebrows (see .audience__eyebrow).
   ========================================================================== */
.ce1-problem .eyebrow,
.ce1-who .eyebrow,
.ce1-compare .eyebrow {
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.04);
  color: #b7791f;
}

/* ==========================================================================
   Section 2: Problem + Opportunity (light)
   ========================================================================== */
.ce1-problem {
  padding: 104px 0 112px;
  background: #fffdf9;
  color: #111827;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.ce1-problem__inner {
  display: grid;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.ce1-problem__header {
  display: grid;
  gap: 18px;
  text-align: center;
}

.ce1-problem__title {
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: #111827;
}

.ce1-problem__body {
  margin: 0 auto;
  max-width: 640px;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.65;
}

.ce1-problem__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ce1-problem__item {
  padding: 18px 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  background: #ffffff;
  color: #1f2937;
  font-size: 0.96rem;
  line-height: 1.55;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.ce1-problem__item:hover {
  border-color: rgba(183, 121, 31, 0.35);
  transform: translateY(-2px);
}

.ce1-problem__opportunity {
  margin: 0;
  padding: 24px 28px;
  border-left: 3px solid #b7791f;
  background: #fff7ea;
  color: #4b3a12;
  font-size: 1.02rem;
  line-height: 1.6;
  font-weight: 550;
}

@media (max-width: 720px) {
  .ce1-problem {
    padding: 84px 0 92px;
  }
  .ce1-problem__grid {
    grid-template-columns: 1fr;
  }
  .ce1-problem__header {
    text-align: left;
  }
}

/* ==========================================================================
   Section 3: Solution + What You'll Learn (dark) — 5-card value pillar grid
   ========================================================================== */
.ce1-solution {
  padding: 108px 0 116px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background:
    radial-gradient(circle at 50% 0%, rgba(126, 196, 240, 0.08), rgba(126, 196, 240, 0) 52%),
    var(--bg);
}

.ce1-solution__inner {
  display: grid;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
}

.ce1-solution__header {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.ce1-solution__title {
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text);
}

.ce1-solution__body {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.ce1-solution__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ce1-solution__card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 26px 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.ce1-solution__card:hover {
  border-color: rgba(126, 196, 240, 0.35);
  background: rgba(126, 196, 240, 0.06);
  transform: translateY(-2px);
}

.ce1-solution__card h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 650;
  color: var(--text);
  line-height: 1.3;
}

.ce1-solution__card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--muted);
}

.ce1-solution__summary {
  margin: 0;
  max-width: 820px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .ce1-solution__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .ce1-solution {
    padding: 84px 0 92px;
  }
  .ce1-solution__grid {
    grid-template-columns: 1fr;
  }
  .ce1-solution__header {
    text-align: left;
  }
}

/* ==========================================================================
   Section 4: Who It's For (light) — 4-card grid, 2x2 desktop
   ========================================================================== */
.ce1-who {
  padding: 104px 0 112px;
  background: #fffdf9;
  color: #111827;
}

.ce1-who__inner {
  display: grid;
  gap: 48px;
  max-width: 980px;
  margin: 0 auto;
}

.ce1-who__header {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.ce1-who__title {
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #111827;
}

.ce1-who__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ce1-who__card {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 26px 26px 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  background: #ffffff;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.ce1-who__card:hover {
  border-color: rgba(183, 121, 31, 0.35);
  background: #fffaf0;
  transform: translateY(-2px);
}

.ce1-who__card h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 650;
  color: #111827;
  line-height: 1.3;
}

.ce1-who__card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: #4b5563;
}

@media (max-width: 720px) {
  .ce1-who {
    padding: 84px 0 92px;
  }
  .ce1-who__grid {
    grid-template-columns: 1fr;
  }
  .ce1-who__header {
    text-align: left;
  }
}

/* ==========================================================================
   Section 5: Bonus (dark) — numbered bonus card grid
   ========================================================================== */
.ce1-bonus {
  padding: 108px 0 116px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background:
    radial-gradient(circle at 50% 100%, rgba(183, 121, 31, 0.1), rgba(183, 121, 31, 0) 52%),
    var(--bg);
}

.ce1-bonus__inner {
  display: grid;
  gap: 44px;
  max-width: 1080px;
  margin: 0 auto;
}

.ce1-bonus__header {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.ce1-bonus__title {
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
}

.ce1-bonus__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ce1-bonus__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.ce1-bonus__card:hover {
  border-color: rgba(183, 121, 31, 0.4);
  background: rgba(183, 121, 31, 0.07);
  transform: translateY(-2px);
}

.ce1-bonus__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #b7791f;
  color: #06131f;
  font-size: 0.85rem;
  font-weight: 700;
}

.ce1-bonus__card p {
  margin: 0;
  padding-top: 4px;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--text);
}

.ce1-bonus__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 720px) {
  .ce1-bonus {
    padding: 84px 0 92px;
  }
  .ce1-bonus__grid {
    grid-template-columns: 1fr;
  }
  .ce1-bonus__header {
    text-align: left;
  }
}

/* ==========================================================================
   Section 6: Comparison Table (light) — hairline editorial table
   ========================================================================== */
.ce1-compare {
  padding: 108px 0 116px;
  background: #ffffff;
  color: #111827;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.ce1-compare__inner {
  display: grid;
  gap: 48px;
  max-width: 980px;
  margin: 0 auto;
}

.ce1-compare__header {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.ce1-compare__title {
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #111827;
}

.ce1-compare__intro {
  margin: 0;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.65;
}

.ce1-compare__table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
}

.ce1-compare__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: #fffdf9;
}

.ce1-compare__table th,
.ce1-compare__table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.92rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.ce1-compare__table th {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  background: #f8fafc;
}

.ce1-compare__table td:first-child,
.ce1-compare__table th:first-child {
  font-weight: 650;
  color: #111827;
  width: 22%;
}

.ce1-compare__table td:last-child {
  border-left: 2px solid #b7791f;
  color: #4b3a12;
  font-weight: 550;
  background: rgba(183, 121, 31, 0.05);
}

.ce1-compare__table tr:last-child td {
  border-bottom: none;
}

.ce1-compare__guide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ce1-compare__guide-card {
  padding: 24px 26px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  background: #fffdf9;
}

.ce1-compare__guide-card h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 650;
  color: #111827;
}

.ce1-compare__guide-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.ce1-compare__guide-card li {
  padding-left: 20px;
  position: relative;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #4b5563;
}

.ce1-compare__guide-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b7791f;
  font-weight: 700;
}

@media (max-width: 720px) {
  .ce1-compare {
    padding: 84px 0 92px;
  }
  .ce1-compare__header {
    text-align: left;
  }
  .ce1-compare__guide {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Section 7: Offer / Pricing (dark)
   ========================================================================== */
.ce1-offer {
  padding: 112px 0 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background:
    radial-gradient(circle at 50% 0%, rgba(183, 121, 31, 0.12), rgba(183, 121, 31, 0) 48%),
    #060b11;
}

.ce1-offer__inner {
  display: flex;
  justify-content: center;
}

.ce1-offer__card {
  display: grid;
  gap: 18px;
  justify-items: center;
  max-width: 640px;
  padding: 48px 44px 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid #b7791f;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.ce1-offer__title {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--text);
}

.ce1-offer__product {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b7791f;
}

.ce1-offer__description,
.ce1-offer__reinforcement {
  margin: 0;
  max-width: 480px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
}

.ce1-offer__price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-top: 8px;
}

.ce1-offer__price-normal {
  font-size: 1.2rem;
  color: rgba(239, 231, 221, 0.5);
}

.ce1-offer__price-current {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.ce1-offer__price-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.ce1-offer__cta {
  margin-top: 6px;
  width: 100%;
  max-width: 360px;
}

.ce1-offer__guarantee {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #b7791f;
}

.ce1-offer__fine-print {
  margin: 0;
  max-width: 480px;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(239, 231, 221, 0.55);
}

@media (max-width: 600px) {
  .ce1-offer {
    padding: 84px 0 92px;
  }
  .ce1-offer__card {
    padding: 36px 26px 32px;
  }
}

/* ==========================================================================
   Mobile: headline + paragraph left-aligned (instead of centered)
   ========================================================================== */
@media (max-width: 720px) {
  .ce1-solution__header,
  .ce1-bonus__header,
  .ce1-compare__header {
    text-align: left;
  }

  .ce1-page .final-cta__inner {
    justify-items: start;
    text-align: left;
  }
}
