/*
  Career Blueprint v1 — local overrides
  ------------------------------------------------------------------
  Reuses global ../styles.css for tokens (:root), .container, .button,
  .nav, .lang-switch, .mobile-menu, .hero, .trust, and .site-footer.
  Only page-specific tweaks live here. Keep minimal — prefer global classes.
*/

/* Hero background: swap in the Career Blueprint hero image.
   Scoped to .cb1-page so the homepage hero image stays untouched.
   The dark gradient overlay + transform: scale come from global .hero__background. */
.cb1-page .hero__background {
  background:
    linear-gradient(90deg, rgba(8, 18, 30, 0.68), rgba(8, 18, 30, 0.1)),
    url("../assets/hero-career-blueprint.jpg") right center / cover no-repeat;
}

/* === Section 3: Big Promise — polished benefit cards on dark === */

/* Eyebrow + headline */
.cb1-promise .problem__intro {
  gap: 16px;
}
.cb1-promise__eyebrow {
  margin: 0;
  color: var(--accent);            /* Minergi accent blue, reads on dark */
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cb1-promise .problem__headline h2 {
  letter-spacing: -0.015em;
  text-wrap: balance;
}

/* Grid */
.cb1-promise__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

/* Card — reuse global .problem-card base, polish surface + states */
.cb1-promise .problem-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px 26px;
  border-radius: 14px;
  border: 1px solid rgba(8, 18, 30, 0.14);
  background: rgba(248, 244, 237, 0.98);
  /* tinted navy shadow — visible + grounded on the dark section (not flat black) */
  box-shadow: 0 16px 36px rgba(8, 18, 30, 0.55);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.cb1-promise .problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(126, 196, 240, 0.45);
  box-shadow: 0 22px 46px rgba(8, 18, 30, 0.65);
}

/* Numbered index — visual anchor + scannability (mirrors homepage audience cards) */
.cb1-promise__index {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #b7791f;                  /* warm amber — homepage light-surface accent */
  font-variant-numeric: tabular-nums;
}

/* Title + body — equalize title height so bodies align across cards */
.cb1-promise .problem-card h3 {
  margin: 0;
  color: #111827;
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-wrap: balance;
  min-height: 2.5em;
}
.cb1-promise .problem-card p {
  margin: 0;
  color: rgba(71, 85, 105, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
  text-wrap: pretty;
}

@media (max-width: 1024px) {
  .cb1-promise__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .cb1-promise__grid {
    grid-template-columns: 1fr;
  }
}

/* === Section 4: DRILL™ Method — light, 5-step breakdown (D-R-I-L-L) === */
.cb1-method__inner {
  display: grid;
  gap: 48px;
}
.cb1-method__head {
  max-width: 760px;
}
.cb1-method__eyebrow {
  margin: 0 0 18px;
  color: #b7791f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cb1-method__head h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1.06;
  font-weight: 650;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.cb1-method__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.cb1-method__step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}
.cb1-method__step:last-child {
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}
.cb1-method__letter {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: #b7791f;            /* amber — homepage light-surface accent */
  font-variant-numeric: tabular-nums;
}
.cb1-method__step h3 {
  margin: 0 0 6px;
  color: #111827;
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}
.cb1-method__step p {
  margin: 0;
  max-width: 620px;
  color: rgba(71, 85, 105, 0.9);
  font-size: 1.02rem;
  line-height: 1.6;
}
@media (max-width: 640px) {
  .cb1-method__step {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 20px 0;
  }
  .cb1-method__letter {
    font-size: 1.8rem;
  }
}

/* === Section 5: What’s Inside — dark, checklist with accent checkmarks === */
.cb1-inside__inner {
  display: grid;
  gap: 44px;
}
.cb1-inside__head {
  max-width: 760px;
}
.cb1-inside__eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cb1-inside__head h2 {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1.06;
  font-weight: 650;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.cb1-inside__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 36px;
}
.cb1-inside__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(247, 242, 235, 0.92);
  font-size: 1.02rem;
  line-height: 1.5;
}
.cb1-inside__check {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(126, 196, 240, 0.14);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}
@media (max-width: 640px) {
  .cb1-inside__list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* === Section 6: Social Proof — light, 2 minimalist testimonial cards === */
.cb1-stories__inner {
  display: grid;
  gap: 44px;
}
.cb1-stories__head {
  max-width: 760px;
}
.cb1-stories__eyebrow {
  margin: 0 0 18px;
  color: #b7791f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cb1-stories__head h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1.06;
  font-weight: 650;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.cb1-stories__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.cb1-story {
  margin: 0;
  padding: 36px 32px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fcfbf8;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cb1-story__mark {
  font-size: 3rem;
  line-height: 0.6;
  color: #b7791f;            /* amber accent */
  font-weight: 700;
}
.cb1-story blockquote {
  margin: 0;
  color: #1f2937;
  font-size: 1.12rem;
  line-height: 1.6;
  font-weight: 450;
}
.cb1-story figcaption {
  margin: 0;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.cb1-story__name {
  display: block;
  color: #111827;
  font-size: 0.98rem;
  font-weight: 650;
}
.cb1-story__meta {
  display: block;
  color: rgba(71, 85, 105, 0.8);
  font-size: 0.85rem;
}
@media (max-width: 640px) {
  .cb1-stories__grid {
    grid-template-columns: 1fr;
  }
}

/* === Section 7: Offer — dark, bordered panel on .final-cta === */
.cb1-offer__panel {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}
.cb1-offer__disclaimer {
  margin: 8px 0 0;
  max-width: 560px;
  color: rgba(239, 231, 221, 0.5);
  font-size: 0.82rem;
  line-height: 1.55;
}
@media (max-width: 640px) {
  .cb1-offer__panel {
    padding: 36px 24px;
  }
}

/* === Section 8: Final CTA — dark, reuses .final-cta open layout (no extra rules) === */
.cb1-final__price {
  margin: 0;
  color: var(--accent);            /* Minergi accent blue — price pops on dark */
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}