/* ============================================================
   Career Transition Page — Component Styles
   Loaded alongside style.css. Contains only page-specific
   components not present in the shared design system.
   ============================================================ */

/* ============================================================
   HERO (v2 two-column layout)
   ============================================================ */
.hero--ct {
  padding-top: calc(var(--nav-height) + var(--sp-16));
  padding-bottom: var(--sp-12);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--sp-12);
  align-items: center;
}

.hero__founder-line {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: var(--sp-8);
  max-width: 540px;
  line-height: 1.6;
}
.hero__founder-line strong { color: var(--navy); font-weight: 600; }

.hero__friction {
  font-size: var(--fs-xs);
  color: var(--text-light);
  margin-top: var(--sp-3);
}

.hero__image-wrap { display: flex; justify-content: center; }

.hero__image {
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(26,35,50,0.10);
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle,
  .hero__founder-line { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__image { max-width: 300px; order: -1; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--cream);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: var(--sp-6) 0;
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  gap: var(--sp-10);
  align-items: center;
  flex-wrap: wrap;
}
.trust-bar__item { text-align: center; }
.trust-bar__number {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
}
.trust-bar__number--teal { color: var(--teal); }
.trust-bar__label {
  font-size: var(--fs-xs);
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.trust-bar__divider { width: 1px; height: 32px; background: var(--gray-300); }

/* ============================================================
   PROGRAMME PREVIEW — Device shell
   ============================================================ */
.device {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(26,35,50,0.10);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  max-width: 920px;
  margin: var(--sp-10) auto 0;
}
.device__toolbar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.device__dot { width: 12px; height: 12px; border-radius: 50%; background: var(--gray-300); }
.device__dot:nth-child(1) { background: #ff5f57; }
.device__dot:nth-child(2) { background: #febc2e; }
.device__dot:nth-child(3) { background: #28c840; }
.device__title { font-size: var(--fs-xs); color: var(--text-light); margin-left: 12px; font-weight: 500; }
.device__screen { position: relative; min-height: 460px; overflow: hidden; }

/* Scene nav */
.scene-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}
.scene-nav__btn {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 200ms;
}
.scene-nav__btn:hover { border-color: var(--teal); color: var(--teal); }
.scene-nav__btn.is-active { background: var(--navy); border-color: var(--navy); color: white; position: relative; overflow: hidden; }
.scene-nav__btn.is-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--teal);
  border-radius: 0 0 100px 100px;
  width: 0;
}
.scene-nav__btn.is-active.is-timing::after {
  animation: sceneProgress var(--scene-duration, 5s) linear forwards;
}
@keyframes sceneProgress {
  from { width: 0; }
  to { width: 100%; }
}

/* Scene transitions */
.scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms cubic-bezier(0.16,1,0.3,1), transform 500ms cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
  overflow-y: auto;
}
.scene.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

/* Notion workspace */
.notion { display: flex; flex-direction: column; min-height: 460px; }
.notion__tabs {
  display: flex;
  background: #fbfaf9;
  border-bottom: 1px solid var(--gray-200);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.notion__tab {
  font-size: 0.75rem;
  color: var(--text-light);
  padding: 10px 16px;
  white-space: nowrap;
  cursor: default;
  border-bottom: 2px solid transparent;
  transition: all 150ms;
}
.notion__tab:hover { color: var(--text-secondary); }
.notion__tab.is-active {
  color: var(--teal-dark);
  border-bottom-color: var(--teal);
  font-weight: 600;
  background: var(--white);
}
.notion__main { padding: 24px 28px; overflow-y: auto; flex: 1; }
.notion__header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.notion__page-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.notion__page-subtitle { font-size: var(--fs-sm); color: var(--text-light); }
.notion__progress { display: flex; gap: 8px; flex-shrink: 0; }
.notion__progress-card {
  background: var(--gray-50);
  border-radius: 6px;
  padding: 8px 14px;
  border: 1px solid var(--gray-100);
  text-align: center;
  min-width: 64px;
}
.notion__progress-label { font-size: 0.6rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.03em; }
.notion__progress-value { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; }
.notion__progress-value--teal  { color: var(--teal); }
.notion__progress-value--coral { color: var(--coral); }
.notion__progress-value--amber { color: var(--amber); }
.notion__progress-value--green { color: var(--green); }
.notion__section-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-200);
}
.notion__week-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.notion__week-card {
  background: var(--gray-50);
  border-radius: 10px;
  padding: 16px;
  border: 1px solid var(--gray-100);
  opacity: 0;
  transform: translateY(8px);
  animation: notionSlideIn 400ms cubic-bezier(0.16,1,0.3,1) forwards;
}
.notion__week-card:nth-child(2) { animation-delay: 100ms; }
.notion__week-card:nth-child(3) { animation-delay: 200ms; }
.notion__week-card:nth-child(4) { animation-delay: 300ms; }
.notion__week-card--done    { border-left: 3px solid var(--green); }
.notion__week-card--current { border-left: 3px solid var(--teal); background: var(--white); }
@keyframes notionSlideIn { to { opacity: 1; transform: translateY(0); } }
.notion__week-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
  background: var(--navy);
  border-radius: 4px;
  padding: 2px 8px;
  display: inline-block;
  margin-bottom: 8px;
}
.notion__week-badge--done    { background: var(--green); }
.notion__week-badge--current { background: var(--teal); }
.notion__week-title  { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.notion__week-items  { font-size: 0.78rem; color: var(--text-light); line-height: 1.7; }
.notion__check   { color: var(--green); margin-right: 4px; }
.notion__pending { color: var(--gray-300); margin-right: 4px; }

@media (max-width: 700px) {
  .notion__week-grid  { grid-template-columns: 1fr; }
  .notion__progress   { flex-wrap: wrap; }
  .notion__header-row { flex-direction: column; }
  .notion__tab { padding: 8px 12px; font-size: 0.7rem; }
}

/* Application tracker */
.tracker { padding: 28px; }
.tracker__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.tracker__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--navy); }
.tracker__filter {
  font-size: var(--fs-xs);
  color: var(--text-light);
  background: var(--gray-50);
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--gray-200);
}
.tracker__table { width: 100%; border-collapse: collapse; }
.tracker__table th {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: left;
  padding: 10px 12px;
  border-bottom: 2px solid var(--gray-200);
}
.tracker__table td {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 14px 12px;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}
.tracker__table tr { opacity: 0; animation: trackerFadeUp 350ms cubic-bezier(0.16,1,0.3,1) forwards; }
.tracker__table tbody tr:nth-child(1) { animation-delay: 100ms; }
.tracker__table tbody tr:nth-child(2) { animation-delay: 200ms; }
.tracker__table tbody tr:nth-child(3) { animation-delay: 300ms; }
.tracker__table tbody tr:nth-child(4) { animation-delay: 400ms; }
.tracker__table tbody tr:nth-child(5) { animation-delay: 500ms; }
.tracker__table tbody tr:nth-child(6) { animation-delay: 600ms; }
@keyframes trackerFadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.tracker__company { font-weight: 600; color: var(--navy); }
.tracker__role { color: var(--text-light); font-size: 0.8rem; }
.tracker__hint { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: 20px; opacity: 0.7; }

.pill { display: inline-block; font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.03em; }
.pill--interview { background: var(--teal-light); color: var(--teal-dark); }
.pill--applied   { background: #e0e7ff; color: #4338ca; }
.pill--rejected  { background: #fee2e2; color: #dc2626; cursor: pointer; }
.pill--offer     { background: #d1fae5; color: #065f46; }
.pill--prep      { background: #fef3c7; color: #92400e; }
.tracker__table tr.is-clickable { cursor: pointer; transition: background 200ms; }
.tracker__table tr.is-clickable:hover { background: #fff5f5; }

.analysis-panel {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 2px solid var(--coral);
  padding: 24px 28px;
  transform: translateY(100%);
  transition: transform 400ms cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.1);
  z-index: 10;
}
.analysis-panel.is-open { transform: translateY(0); }
.analysis-panel__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.analysis-panel__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--coral); }
.analysis-panel__close {
  background: none;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  width: 28px; height: 28px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex; align-items: center; justify-content: center;
}
.analysis-panel__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.analysis-panel__item h4 {
  font-size: 0.7rem; font-weight: 700; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px;
}
.analysis-panel__item p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.6; }
.analysis-panel__action {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gray-200);
  font-size: 0.8rem; color: var(--teal); font-weight: 600;
}

@media (max-width: 700px) {
  .tracker__table th:nth-child(3), .tracker__table td:nth-child(3),
  .tracker__table th:nth-child(4), .tracker__table td:nth-child(4) { display: none; }
  .analysis-panel__grid { grid-template-columns: 1fr; }
}

/* WhatsApp chat */
.chat { padding: 0; background: #ece5dd; display: flex; flex-direction: column; min-height: 520px; }
.chat__header { background: var(--navy); color: white; padding: 14px 20px; display: flex; align-items: center; gap: 12px; }
.chat__avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: white; flex-shrink: 0;
}
.chat__name   { font-size: 0.95rem; font-weight: 600; }
.chat__status { font-size: 0.7rem; color: rgba(255,255,255,0.6); }
.chat__body   { flex: 1; padding: 20px; display: flex; flex-direction: column; gap: 8px; overflow-y: auto; }
.chat__msg {
  max-width: 78%; padding: 10px 14px; border-radius: 12px;
  font-size: 0.85rem; line-height: 1.55;
  position: relative; opacity: 0; transform: translateY(12px);
}
.chat__msg.is-animated { animation: chatMsgIn 400ms cubic-bezier(0.16,1,0.3,1) forwards; }
.chat__msg--coach  { background: #dcf8c6; align-self: flex-end; border-bottom-right-radius: 4px; color: var(--text-primary); }
.chat__msg--client { background: var(--white); align-self: flex-start; border-bottom-left-radius: 4px; color: var(--text-primary); }
.chat__msg-time { font-size: 0.65rem; color: var(--text-light); text-align: right; margin-top: 4px; }
.chat__date {
  text-align: center; font-size: 0.7rem; color: var(--text-light);
  background: rgba(255,255,255,0.7); padding: 4px 12px; border-radius: 8px;
  align-self: center; margin-bottom: 8px;
}
@keyframes chatMsgIn { to { opacity: 1; transform: translateY(0); } }

/* CV before/after */
.cv-compare { padding: 28px; }
.cv-compare__title    { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--navy); text-align: center; margin-bottom: 6px; }
.cv-compare__subtitle { font-size: 0.8rem; color: var(--text-light); text-align: center; margin-bottom: 24px; }
.cv-compare__grid  { display: grid; grid-template-columns: 1fr 40px 1fr; align-items: stretch; }
.cv-compare__col   { padding: 24px; border-radius: 16px; }
.cv-compare__col--before { background: #fef2f2; border: 1px solid #fecaca; }
.cv-compare__col--after  { background: #f0fdf4; border: 1px solid #bbf7d0; }
.cv-compare__arrow { display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--text-light); }
.cv-compare__label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid;
}
.cv-compare__label--before { color: var(--coral); border-color: #fecaca; }
.cv-compare__label--after  { color: var(--green);  border-color: #bbf7d0; }
.cv-compare__item       { margin-bottom: 16px; }
.cv-compare__item-label { font-size: 0.7rem; font-weight: 600; color: var(--text-light); margin-bottom: 4px; }
.cv-compare__item-text  { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.6; }
.cv-compare__item-text s { color: var(--coral); text-decoration: line-through; opacity: 0.7; }

@media (max-width: 700px) {
  .cv-compare__grid  { grid-template-columns: 1fr; gap: 16px; }
  .cv-compare__arrow { transform: rotate(90deg); }
}

/* ============================================================
   CAREER BRIDGE SPOTLIGHT
   ============================================================ */
.spotlight {
  background: var(--white);
  border-radius: 24px;
  border: 2px solid var(--teal);
  overflow: hidden;
  margin-top: var(--sp-10);
  box-shadow: 0 10px 24px rgba(26,35,50,0.10);
}
.spotlight__header {
  background: var(--navy);
  color: white;
  padding: var(--sp-8) var(--sp-10);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--sp-6);
}
.spotlight__header-left h3 { font-size: 2rem; margin-bottom: var(--sp-2); color: white; }
.spotlight__header-left p  { font-size: var(--fs-base); color: rgba(255,255,255,0.7); }
.spotlight__price-block { text-align: right; }
.spotlight__price     { font-family: var(--font-display); font-size: clamp(2.25rem,4vw,3rem); font-weight: 700; color: white; }
.spotlight__price-sub { font-size: var(--fs-sm); color: rgba(255,255,255,0.6); margin-top: 0.25rem; }
.spotlight__spots {
  display: inline-block;
  font-size: var(--fs-xs); font-weight: 600; color: var(--coral);
  background: rgba(196,112,90,0.15); padding: 4px 12px; border-radius: 100px; margin-top: var(--sp-3);
}
.spotlight__body { padding: var(--sp-10); }
.spotlight__desc { font-size: var(--fs-md); color: var(--text-secondary); line-height: 1.7; max-width: 640px; margin-bottom: var(--sp-8); }

.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.value-item {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: var(--sp-3); background: var(--gray-50); border-radius: 10px;
}
.value-item__icon {
  width: 28px; height: 28px; min-width: 28px; border-radius: 50%;
  background: var(--teal-light); display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.value-item__icon svg { width: 14px; height: 14px; fill: var(--teal); }
.value-item h4 { font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.value-item p  { font-size: var(--fs-xs); color: var(--text-light); line-height: 1.5; }

.spotlight__comparison {
  background: var(--cream); border-radius: 10px; padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-8); font-size: var(--fs-sm); color: var(--text-secondary); line-height: 1.7;
}
.spotlight__comparison strong { color: var(--navy); }

.spotlight__guarantee {
  background: var(--teal-light); border-radius: 10px; padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-8); display: flex; align-items: flex-start; gap: var(--sp-4);
}
.spotlight__guarantee-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.spotlight__guarantee h4 { font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.spotlight__guarantee p  { font-size: var(--fs-sm); color: var(--text-secondary); line-height: 1.6; }

.spotlight__cta { text-align: center; padding-top: var(--sp-4); }
.spotlight__cta p { font-size: var(--fs-xs); color: var(--text-light); margin-top: var(--sp-3); }

@media (max-width: 768px) {
  .spotlight__header { padding: var(--sp-6); flex-direction: column; }
  .spotlight__price-block { text-align: left; }
  .spotlight__body { padding: var(--sp-6); }
  .value-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   EXCLUSIVITY
   ============================================================ */
.exclusivity { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); margin-top: var(--sp-10); }
.exclusivity__col { background: var(--white); border-radius: 16px; padding: var(--sp-8); border: 1px solid var(--gray-200); }
.exclusivity__col h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: var(--sp-6); }
.exclusivity__list { list-style: none; }
.exclusivity__list li {
  font-size: var(--fs-sm); color: var(--text-secondary); padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--gray-100); display: flex; align-items: flex-start; gap: var(--sp-3); line-height: 1.6;
}
.exclusivity__list li:last-child { border-bottom: none; }
.exclusivity__list li::before {
  content: ''; display: inline-block; width: 18px; height: 18px; min-width: 18px;
  margin-top: 2px; border-radius: 50%;
}
.exclusivity__list--yes li::before {
  background: var(--teal-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 11.5L3 8l1-1 2.5 2.5L11 5l1 1z' fill='%230d9488'/%3E%3C/svg%3E") center/16px no-repeat;
}
.exclusivity__list--no li::before {
  background: #fde8e8 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 4l8 8M12 4l-8 8' stroke='%23c4705a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/12px no-repeat;
}
@media (max-width: 768px) { .exclusivity { grid-template-columns: 1fr; } }

/* ============================================================
   SOCIAL PROOF (dark section cards)
   ============================================================ */
.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); margin-top: var(--sp-10); }
.proof-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: var(--sp-6);
}
.proof-card__outcome { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--teal-light); margin-bottom: var(--sp-3); }
.proof-card__quote   { font-size: var(--fs-sm); color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: var(--sp-4); font-style: italic; }
.proof-card__author  { font-size: var(--fs-xs); color: rgba(255,255,255,0.5); }
@media (max-width: 600px) { .proof-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ONBOARDING CALL
   ============================================================ */
.onboarding {
  background: var(--white); border-radius: 24px; border: 1px solid var(--gray-200);
  overflow: hidden; margin-top: var(--sp-10); box-shadow: 0 4px 12px rgba(26,35,50,0.08);
}
.onboarding__grid { display: grid; grid-template-columns: 1fr 1fr; }
.onboarding__left { padding: var(--sp-10); }
.onboarding__left h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: var(--sp-4); }
.onboarding__left > p { font-size: var(--fs-sm); color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--sp-6); }
.onboarding__steps { list-style: none; counter-reset: onboard; }
.onboarding__steps li {
  counter-increment: onboard;
  font-size: var(--fs-sm); color: var(--text-secondary);
  padding: var(--sp-3) 0; padding-left: var(--sp-10);
  position: relative; line-height: 1.6; border-bottom: 1px solid var(--gray-100);
}
.onboarding__steps li:last-child { border-bottom: none; }
.onboarding__steps li::before {
  content: counter(onboard); position: absolute; left: 0; top: var(--sp-3);
  width: 28px; height: 28px; border-radius: 50%; background: var(--teal-light); color: var(--teal);
  font-weight: 700; font-size: var(--fs-xs); display: flex; align-items: center; justify-content: center;
}
.onboarding__right {
  background: var(--navy); color: white; padding: var(--sp-10);
  display: flex; flex-direction: column; justify-content: center;
}
.onboarding__right h4 { font-size: var(--fs-md); margin-bottom: var(--sp-4); color: white; }
.onboarding__right > p { font-size: var(--fs-sm); color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: var(--sp-6); }
.onboarding__right .btn { align-self: flex-start; }
.onboarding__note { font-size: var(--fs-xs); color: rgba(255,255,255,0.45); margin-top: var(--sp-4); }
@media (max-width: 768px) {
  .onboarding__grid { grid-template-columns: 1fr; }
  .onboarding__left, .onboarding__right { padding: var(--sp-6); }
}

/* ============================================================
   30-DAY SECONDARY OFFER
   ============================================================ */
.secondary-offer {
  background: var(--white); border-radius: 16px; border: 1px solid var(--gray-200);
  padding: var(--sp-8); display: grid; grid-template-columns: 1fr auto;
  gap: var(--sp-8); align-items: center; margin-top: var(--sp-10);
}
.secondary-offer h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: var(--sp-2); }
.secondary-offer__desc { font-size: var(--fs-sm); color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--sp-4); max-width: 540px; }
.secondary-offer__features { display: flex; gap: var(--sp-4); flex-wrap: wrap; font-size: var(--fs-xs); color: var(--text-light); }
.secondary-offer__features span { background: var(--gray-50); padding: 4px 10px; border-radius: 100px; }
.secondary-offer__right { text-align: center; min-width: 180px; }
.secondary-offer__price  { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--teal); margin-bottom: 0.25rem; }
.secondary-offer__spots  { font-size: var(--fs-xs); font-weight: 600; color: var(--coral); margin-bottom: var(--sp-4); }
.secondary-offer__flow {
  margin-top: var(--sp-4); padding: var(--sp-3) var(--sp-4);
  background: var(--gray-50); border-radius: 10px;
  font-size: var(--fs-sm); color: var(--text-secondary); line-height: 1.6;
}
.secondary-offer__flow strong { color: var(--navy); }
@media (max-width: 600px) {
  .secondary-offer { grid-template-columns: 1fr; }
  .secondary-offer__right { text-align: left; }
}

/* ============================================================
   FAQ (page-specific variant — full-width button)
   ============================================================ */
.faq-question {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--navy);
  padding: var(--sp-5) 0;
  gap: var(--sp-4);
}
.faq-question[aria-expanded="true"]::after { content: '\2212'; }
.faq-answer.is-open { max-height: 500px; }

/* ============================================================
   FINAL CTA (navy bar)
   ============================================================ */
.final-cta {
  text-align: center;
  padding: var(--sp-24) 0;
  background: var(--navy);
  color: white;
}
.final-cta h2 { font-size: clamp(2.25rem,4vw,3rem); color: white; margin-bottom: var(--sp-4); }
.final-cta > .container > p {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 0 auto var(--sp-8);
  line-height: 1.7;
}
.final-cta__spots { font-size: var(--fs-sm); color: var(--coral); font-weight: 600; margin-top: var(--sp-4); }
