/* ══════════════════════════════════════════════════════
   DESIGN SYSTEM  —  modern light, premium, geometric
   extracted and redesigned for high-fidelity UX
══════════════════════════════════════════════════════ */
:root {
  /* Crisp Light Canvas Backgrounds */
  --bg:          #F4F6F8; /* Soft light gray/slate canvas background */
  --bg2:         #FFFFFF; /* Pure white card background */
  --bg3:         #F9FAFB; /* Off-white utility background */
  --bg4:         #E5E7EB; /* Light gray border background */
  
  /* Borders and Separators */
  --border:      #E5E7EB; /* Clean light gray borders */
  --border2:     #D1D5DB; /* Slightly darker dividers */
  
  /* Muted Charcoal & Slate Typography Hierarchy */
  --text:        #111827; /* Dark charcoal headings */
  --text2:       #4B5563; /* Slate gray readable body text */
  --text3:       #9CA3AF; /* Light gray captions and hints */

  /* Sage Green / Accent (Interest Section / Brand Primary) */
  --gold:        #656d4a; /* Vibrant Sage Green */
  --gold-dark:   #4f5539;
  --gold-lt:     #848d68;
  --gold-bg:     #f5f6f3; /* Soft sage light highlight */
  --gold-bdr:    #ccd0be; /* Sage light border */

  /* Emerald Green (Aptitude Section / Strong Fit) */
  --green:       #059669; /* Rich Emerald Green */
  --green-bg:    #ECFDF5;
  --green-bdr:   #A7F3D0;

  /* Cobalt Blue (Personality Section / Info / Explore Fit) */
  --blue:        #2563EB; /* Cobalt Blue */
  --blue-bg:     #EFF6FF;
  --blue-bdr:    #BFDBFE;

  /* Neon Amber (Developing Fit / Warnings) */
  --amber:       #D97706; /* Rich Amber */
  --amber-bg:    #FFFBEB;
  --amber-bdr:   #FDE68A;

  /* Crimson Red (Errors) */
  --red:         #DC2626; /* Crimson Red */
  --red-bg:      #FEF2F2;
  --red-bdr:     #FCA5A5;

  /* Royal Violet (AI Features) */
  --purple:      #7C3AED; /* Royal Violet */
  --purple-bg:   #F5F3FF;
  --purple-bdr:  #DDD6FE;

  /* Shadow & Corner Tokens */
  --sh-sm:  0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  --sh:     0 12px 30px rgba(17, 24, 39, 0.05), 0 4px 12px rgba(17, 24, 39, 0.03);
  --sh-lg:  0 25px 50px -12px rgba(17, 24, 39, 0.12);
  --r:      16px; /* Softer rounded corners */
  --r-lg:   24px;
  
  --font:   'Plus Jakarta Sans', sans-serif;
  --mono:   'JetBrains Mono', monospace;
  --serif:  'Plus Jakarta Sans', sans-serif; /* Switched serif to sans-serif for sleekness */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--text3); }

/* ══════════════════════════════════════════════════════
   TRIGGER BUTTON  (embeddable)
══════════════════════════════════════════════════════ */
.psc-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: #fff; border: none; border-radius: 50px;
  font-family: var(--font); font-size: 15px; font-weight: 700;
  cursor: pointer; letter-spacing: .3px;
  box-shadow: 0 10px 25px rgba(101, 109, 74, 0.25);
  transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .25s, opacity .2s;
}
.psc-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 32px rgba(101, 109, 74, 0.35);
}
.psc-btn:active {
  transform: translateY(0) scale(0.98);
}
.psc-btn-sm {
  padding: 11px 22px; font-size: 13px;
  border-radius: 50px; background: var(--gold-bg); color: var(--gold);
  border: 1.5px solid var(--gold-bdr);
  box-shadow: none;
  font-weight: 600;
  transition: all .2s;
}
.psc-btn-sm:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ══════════════════════════════════════════════════════
   MODAL OVERLAY
══════════════════════════════════════════════════════ */
.psc-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(17, 24, 39, 0.35);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.psc-overlay.open { opacity: 1; pointer-events: all; }

/* Wrapper that holds modal + floating close button together */
.psc-dialog {
  position: relative;
  width: 100%; max-width: 720px;
}

.psc-modal {
  background: var(--bg2);
  border-radius: var(--r-lg);
  width: 100%; max-height: 90vh;
  overflow-y: auto;
  /* hide scrollbar — Chrome/Safari */
  scrollbar-width: none;          /* Firefox */
  -ms-overflow-style: none;       /* IE/Edge legacy */
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
  transform: translateY(32px) scale(.98);
  transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.psc-modal::-webkit-scrollbar { display: none; } /* Chrome/Safari */
.psc-overlay.open .psc-modal { transform: translateY(0) scale(1); }

/* ── Floating close button (outside the white card) ── */
.m-close {
  position: absolute;
  top: -14px; right: -14px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text2); font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(26,25,22,.12);
  transition: all .2s cubic-bezier(0.16, 1, 0.3, 1); line-height: 1;
}
.m-close:hover {
  background: var(--red-bg); color: var(--red);
  border-color: var(--red-bdr); transform: rotate(90deg);
}

/* ── Modal Header ─────────────────────────────────── */
.m-header {
  padding: 20px 28px 16px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.m-brand { display: flex; align-items: center; gap: 12px; }
.m-brand-logo { height: 38px; object-fit: contain; display: block; }
.m-brand-text { font-size: 10px; letter-spacing: 3px; color: var(--text); font-family: var(--mono); text-transform: uppercase; font-weight: 700; }
.m-brand-sub   { font-size: 9px; color: var(--text3); font-family: var(--font); font-weight: 500; }

/* ── Modal Body ───────────────────────────────────── */
.m-body { padding: 32px 32px 40px; }

/* ══════════════════════════════════════════════════════
   SCREEN: LANDING
══════════════════════════════════════════════════════ */
.screen-landing { animation: fadeUp .45s cubic-bezier(0.16, 1, 0.3, 1) both; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px;
  background: var(--gold-bg); border: 1px solid var(--gold-bdr);
  border-radius: 50px; font-size: 9px; letter-spacing: 2.5px;
  font-family: var(--mono); color: var(--gold); font-weight: 700;
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font); font-size: clamp(26px, 5vw, 38px);
  font-weight: 800; letter-spacing: -0.8px;
  line-height: 1.2; color: var(--text); margin-bottom: 12px;
}
.hero-title em { font-style: normal; color: var(--gold); }
.hero-sub { color: var(--text2); font-size: 14px; line-height: 1.8; max-width: 480px; margin: 0 auto 26px; }

/* AIP pillars */
.aip-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 28px; }
.aip-card { padding: 16px 12px; border-radius: var(--r); border: 1.5px solid; text-align: center; box-shadow: var(--sh-sm); }
.aip-card.apt { background: var(--green-bg); border-color: var(--green-bdr); }
.aip-card.int { background: var(--gold-bg);  border-color: var(--gold-bdr);  }
.aip-card.per { background: var(--blue-bg);  border-color: var(--blue-bdr);  }
.aip-icon  { font-size: 22px; margin-bottom: 6px; }
.aip-label { font-size: 9px; letter-spacing: 2px; font-family: var(--mono); font-weight: 700; }
.aip-card.apt .aip-label { color: var(--green); }
.aip-card.int .aip-label { color: var(--gold); }
.aip-card.per .aip-label { color: var(--blue); }
.aip-desc  { font-size: 10px; color: var(--text2); margin-top: 4px; line-height: 1.4; }

/* Course selector */
.sel-title { font-size: 10px; letter-spacing: 2.5px; font-family: var(--mono); color: var(--text3); font-weight: 700; margin-bottom: 14px; text-align: center; }
.course-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin-bottom: 24px; }
@media (max-width:560px) { .course-grid { grid-template-columns: repeat(3,1fr); } }
.c-card {
  padding: 14px 8px; border-radius: var(--r);
  border: 1.5px solid var(--border); background: var(--bg2);
  cursor: pointer; text-align: center; transition: all .25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--sh-sm);
}
.c-card:hover { border-color: var(--gold-bdr); background: var(--gold-bg); transform: translateY(-2px); box-shadow: var(--sh); }
.c-card.active { border-color: var(--gold); background: var(--gold-bg); box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15); transform: scale(1.02); }
.c-icon { font-size: 22px; margin-bottom: 6px; }
.c-code { font-size: 11px; font-weight: 800; font-family: var(--font); color: var(--text); }
.c-name { font-size: 9px; color: var(--text2); margin-top: 3px; line-height: 1.3; }

.meta-strip {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  font-size: 11px; color: var(--text2); font-family: var(--font); margin-bottom: 22px; font-weight: 500;
}

/* AI Mode banner */
.ai-mode-banner {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  padding: 8px 18px;
  background: var(--purple-bg); border: 1px solid var(--purple-bdr);
  border-radius: 50px; font-size: 10px; letter-spacing: 1.5px;
  font-family: var(--mono); color: var(--purple); font-weight: 700;
  margin-bottom: 18px; width: fit-content; margin-inline: auto;
}

/* Buttons */
.btn {
  border: none; border-radius: var(--r); font-family: var(--font);
  font-weight: 700; cursor: pointer; transition: all .25s cubic-bezier(0.16, 1, 0.3, 1); letter-spacing: .2px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(101, 109, 74, 0.2);
}
.btn-primary:hover:not(:disabled) { transform: translateY(-2px) scale(1.01); box-shadow: 0 12px 28px rgba(101, 109, 74, 0.3); }
.btn-primary:active:not(:disabled) { transform: translateY(0); }
.btn-primary:disabled { opacity: .4; cursor: not-allowed; box-shadow: none; }
.btn-ghost { background: var(--bg3); border: 1px solid var(--border); color: var(--text2); }
.btn-ghost:hover { background: var(--bg4); color: var(--text); }
.btn-full { width: 100%; padding: 16px; font-size: 15px; }
.btn-sm   { padding: 12px 20px; font-size: 13px; }

/* ══════════════════════════════════════════════════════
   SCREEN: QUIZ
══════════════════════════════════════════════════════ */
.screen-quiz { animation: fadeUp .35s ease both; }

/* Progress */
.progress-wrap { margin-bottom: 24px; }
.progress-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.progress-lbl { font-size: 10px; letter-spacing: 1.5px; color: var(--text2); font-family: var(--mono); font-weight: 700; }
.progress-pct { font-size: 10px; color: var(--text2); font-family: var(--mono); font-weight: 700; }
.progress-segs { display: flex; gap: 6px; }
.p-seg { height: 6px; flex: 1; background: var(--bg4); border-radius: 4px; overflow: hidden; }
.p-seg-fill { height: 100%; border-radius: 4px; transition: width .6s cubic-bezier(0.16, 1, 0.3, 1); }
.p-seg.apt .p-seg-fill { background: var(--green); }
.p-seg.int .p-seg-fill { background: var(--gold); }
.p-seg.per .p-seg-fill { background: var(--blue); }

/* Section banner */
.sec-banner {
  display: flex; align-items: center; gap: 14px; padding: 14px 20px;
  border-radius: var(--r); margin-bottom: 20px; border: 1.5px solid;
  animation: fadeUp .3s ease both;
}
.sec-banner.apt { background: var(--green-bg); border-color: var(--green-bdr); }
.sec-banner.int { background: var(--gold-bg);  border-color: var(--gold-bdr);  }
.sec-banner.per { background: var(--blue-bg);  border-color: var(--blue-bdr);  }
.sec-banner-icon { font-size: 20px; }
.sec-banner-lbl { font-size: 9px; letter-spacing: 2px; font-family: var(--mono); font-weight: 700; }
.sec-banner.apt .sec-banner-lbl { color: var(--green); }
.sec-banner.int .sec-banner-lbl { color: var(--gold); }
.sec-banner.per .sec-banner-lbl { color: var(--blue); }
.sec-banner-desc { font-size: 12px; color: var(--text2); font-weight: 500; }

/* Question card */
.q-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  margin-bottom: 20px; box-shadow: var(--sh);
  animation: fadeUp .35s ease both;
}
.q-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.q-num { font-size: 10px; font-family: var(--mono); color: var(--text3); letter-spacing: 1.5px; font-weight: 700; }
.q-tag { font-size: 9px; letter-spacing: 1.5px; font-family: var(--mono); padding: 4px 12px; border-radius: 50px; font-weight: 700; }
.q-tag.apt { background: var(--green-bg); color: var(--green); }
.q-tag.int { background: var(--gold-bg);  color: var(--gold); }
.q-tag.per { background: var(--blue-bg);  color: var(--blue); }
.q-text { font-size: 18px; font-weight: 800; line-height: 1.5; color: var(--text); margin-bottom: 22px; letter-spacing: -0.3px; }

.ai-q-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 9px; letter-spacing: 1.5px; font-family: var(--mono);
  padding: 4px 12px; border-radius: 50px; font-weight: 700;
  background: var(--purple-bg); color: var(--purple); border: 1px solid var(--purple-bdr);
  margin-bottom: 14px;
}
.ai-reasoning-note {
  font-size: 11px; color: var(--purple); font-family: var(--font); font-weight: 500;
  padding: 8px 12px; background: var(--purple-bg); border-radius: var(--r);
  margin-bottom: 14px; line-height: 1.5; border: 1px solid var(--purple-bdr);
}

/* Options */
.options { display: flex; flex-direction: column; gap: 10px; }
.opt {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--bg3); border: 1.5px solid var(--border);
  border-radius: var(--r); cursor: pointer;
  transition: all .2s cubic-bezier(0.16, 1, 0.3, 1); font-size: 14px; font-weight: 500; color: var(--text2);
}
.opt:hover { border-color: var(--gold-bdr); background: var(--gold-bg); transform: translateX(4px); color: var(--text); }
.opt.sel-apt { border-color: var(--green); background: var(--green-bg); color: #046c4e; font-weight: 600; }
.opt.sel-int { border-color: var(--gold);  background: var(--gold-bg);  color: #312e81; font-weight: 600; }
.opt.sel-per { border-color: var(--blue);  background: var(--blue-bg);  color: #1e40af; font-weight: 600; }
.opt-key {
  width: 26px; height: 26px; min-width: 26px; border-radius: 8px;
  background: var(--bg4); display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px; color: var(--text2);
  transition: all .2s; font-weight: 700;
}
.opt.sel-apt .opt-key { background: var(--green); color: #fff; }
.opt.sel-int .opt-key { background: var(--gold);  color: #fff; }
.opt.sel-per .opt-key { background: var(--blue);  color: #fff; }

/* Nav */
.nav-row { display: flex; gap: 10px; margin-top: 18px; }
.btn-next { flex: 1; padding: 15px; font-size: 14.5px; }
.btn-back { padding: 15px 22px; font-size: 14px; }

/* AI loading */
.ai-loading {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0; padding: 48px 24px;
}
.ai-loading-graphic {
  position: relative; width: 120px; height: 120px; margin-bottom: 24px;
}
.ai-orbit {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px dashed var(--purple-bdr);
  animation: orbit-spin 6s linear infinite;
}
.ai-orbit-2 {
  position: absolute; inset: 14px; border-radius: 50%;
  border: 1.5px dashed var(--purple-bdr);
  animation: orbit-spin 4s linear infinite reverse;
  opacity: .6;
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }

.ai-orbit-dot {
  position: absolute; top: -4px; left: 50%; margin-left: -4px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 10px var(--purple);
}
.ai-orbit-dot-2 {
  position: absolute; bottom: -4px; left: 50%; margin-left: -4px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--purple-bdr);
  box-shadow: 0 0 8px var(--purple-bdr);
}

.ai-brain-wrap {
  position: absolute; inset: 22px;
  background: var(--purple-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--purple-bdr);
  animation: brain-pulse 2s ease-in-out infinite;
}
@keyframes brain-pulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.15); }
  50%      { transform: scale(1.06); box-shadow: 0 0 0 12px rgba(124, 58, 237, 0); }
}

.ai-brain-svg { width: 36px; height: 36px; }

.ai-node {
  position: absolute; border-radius: 50%;
  background: var(--purple); opacity: .35;
  animation: node-blink 1.8s ease-in-out infinite;
}
.ai-node:nth-child(1) { width:7px;height:7px; top:12px; left:28px; animation-delay:0s; }
.ai-node:nth-child(2) { width:5px;height:5px; top:20px; right:16px; animation-delay:.4s; }
.ai-node:nth-child(3) { width:6px;height:6px; bottom:18px; left:14px; animation-delay:.8s; }
.ai-node:nth-child(4) { width:4px;height:4px; bottom:24px; right:26px; animation-delay:1.2s; }
@keyframes node-blink {
  0%,100% { opacity:.2; transform:scale(1); }
  50%      { opacity:.9; transform:scale(1.4); }
}

.ai-loading-text {
  color: var(--text); font-size: 15px; font-family: var(--font);
  font-weight: 700; letter-spacing: -.2px; margin-bottom: 12px;
}
.ai-loading-dots {
  display: flex; gap: 6px; align-items: center;
}
.ai-loading-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--purple); opacity: .3;
  animation: dot-bounce .9s ease-in-out infinite;
}
.ai-loading-dots span:nth-child(2) { animation-delay: .18s; }
.ai-loading-dots span:nth-child(3) { animation-delay: .36s; }
@keyframes dot-bounce {
  0%,100% { opacity:.3; transform:translateY(0); }
  50%      { opacity:1;  transform:translateY(-5px); }
}
.ai-loading-sub {
  margin-top: 12px; color: var(--text3); font-size: 11px;
  font-family: var(--mono); letter-spacing: .05em; font-weight: 700;
}

/* ══════════════════════════════════════════════════════
   SCREEN: LEAD FORM
══════════════════════════════════════════════════════ */
.screen-lead { animation: fadeUp .45s ease both; }
.lead-hero { text-align: center; margin-bottom: 28px; }
.lead-emoji { font-size: 48px; margin-bottom: 12px; }
.lead-title { font-family: var(--font); font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 8px; letter-spacing: -0.5px; }
.lead-sub { color: var(--text2); font-size: 13.5px; line-height: 1.7; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(max-width:480px) { .form-row { grid-template-columns: 1fr; } }
.f-group { margin-bottom: 16px; position: relative; }
.f-label { display: block; font-size: 9px; letter-spacing: 2px; font-family: var(--mono); color: var(--text2); margin-bottom: 8px; text-transform: uppercase; font-weight: 700; }
.f-input {
  width: 100%; padding: 13px 16px;
  background: var(--bg3); border: 1.5px solid var(--border);
  border-radius: var(--r); color: var(--text);
  font-family: var(--font); font-size: 14px; font-weight: 500;
  outline: none; transition: all .2s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-appearance: none;
}
.f-input:focus { border-color: var(--gold); background: var(--bg2); box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1); }
.f-input.error { border-color: var(--red); background: var(--red-bg); }
.f-input::placeholder { color: var(--text3); }
.f-input option { background: var(--bg2); }
.f-error-msg { font-size: 11px; color: var(--red); margin-top: 5px; font-family: var(--font); font-weight: 600; }
.consent { font-size: 11px; color: var(--text3); text-align: center; margin-top: 14px; line-height: 1.6; }

/* ══════════════════════════════════════════════════════
   SCREEN: RESULT
══════════════════════════════════════════════════════ */
.screen-result { animation: fadeUp .5s ease both; }

/* Score hero */
.result-hero { text-align: center; margin-bottom: 26px; }
.result-course-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px;
  background: var(--gold-bg); border: 1px solid var(--gold-bdr);
  border-radius: 50px; font-size: 9px; letter-spacing: 2px;
  font-family: var(--mono); color: var(--gold); margin-bottom: 16px; font-weight: 700;
}
.result-score {
  font-family: var(--mono); font-size: 78px; font-weight: 800;
  line-height: 1; margin-bottom: 6px; letter-spacing: -2px;
}
.result-score-denom { font-size: 28px; color: var(--text3); font-weight: 500; }
.result-score-label { font-size: 10px; letter-spacing: 2.5px; color: var(--text3); font-family: var(--mono); font-weight: 700; }

/* Verdict */
.verdict {
  padding: 26px; border-radius: var(--r-lg);
  margin-bottom: 22px; text-align: center; border: 2px solid;
  position: relative; overflow: hidden;
  box-shadow: var(--sh);
}
.verdict::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.6), transparent 70%);
  pointer-events: none;
}
.verdict.STRONG    { background: linear-gradient(160deg, var(--green-bg) 0%, #FFFFFF 100%); border-color: var(--green-bdr); }
.verdict.MODERATE  { background: linear-gradient(160deg, var(--gold-bg)  0%, #FFFFFF 100%); border-color: var(--gold-bdr); }
.verdict.DEVELOPING{ background: linear-gradient(160deg, var(--amber-bg) 0%, #FFFFFF 100%); border-color: var(--amber-bdr); }
.verdict.EXPLORE   { background: linear-gradient(160deg, var(--blue-bg)  0%, #FFFFFF 100%); border-color: var(--blue-bdr); }
.v-stamp { font-size: 42px; margin-bottom: 12px; }
.v-title { font-family: var(--font); font-size: clamp(22px,4.5vw,30px); font-weight: 800; margin-bottom: 4px; letter-spacing: -0.5px; }
.verdict.STRONG    .v-title { color: var(--green); }
.verdict.MODERATE  .v-title { color: var(--gold-dark); }
.verdict.DEVELOPING .v-title { color: var(--amber); }
.verdict.EXPLORE   .v-title { color: var(--blue); }
.v-sub { font-size: 9px; letter-spacing: 2px; font-family: var(--mono); color: var(--text3); margin-bottom: 16px; font-weight: 700; }
.v-body { font-size: 13.5px; line-height: 1.8; color: var(--text2); max-width: 500px; margin: 0 auto; }

/* Gauge grid */
.gauges { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 24px; }
.gauge-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px 12px; text-align: center;
  box-shadow: var(--sh-sm);
  transition: transform .25s ease;
}
.gauge-card:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.g-ring { position: relative; width: 72px; height: 72px; margin: 0 auto 10px; }
.g-svg  { width: 72px; height: 72px; transform: rotate(-90deg); }
.g-bg   { fill: none; stroke: var(--bg4); stroke-width: 6; }
.g-fill { fill: none; stroke-width: 6; stroke-linecap: round;
          transition: stroke-dashoffset 1.4s cubic-bezier(0.16, 1, 0.3, 1); }
.gauge-card.apt .g-fill { stroke: var(--green); }
.gauge-card.int .g-fill { stroke: var(--gold); }
.gauge-card.per .g-fill { stroke: var(--blue); }
.g-val {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 18px; font-weight: 700;
}
.gauge-card.apt .g-val { color: var(--green); }
.gauge-card.int .g-val { color: var(--gold); }
.gauge-card.per .g-val { color: var(--blue); }
.g-name { font-size: 9px; letter-spacing: 1.5px; font-family: var(--mono); color: var(--text3); font-weight: 700; }
.g-tag  { font-size: 11px; font-weight: 700; margin-top: 4px; }
.gauge-card.apt .g-tag { color: var(--green); }
.gauge-card.int .g-tag { color: var(--gold); }
.gauge-card.per .g-tag { color: var(--blue); }

/* AI analysis card */
.ai-card {
  background: var(--purple-bg); border: 1.5px solid var(--purple-bdr);
  border-radius: var(--r); padding: 22px; margin-bottom: 20px;
  box-shadow: var(--sh-sm);
}
.ai-card-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 9.5px; letter-spacing: 2px; font-family: var(--mono);
  color: var(--purple); margin-bottom: 14px; font-weight: 700;
}
.ai-card-body { font-size: 13.5px; line-height: 1.8; color: var(--text2); }
.ai-card-body p { margin-bottom: 10px; }
.ai-next-steps {
  margin-top: 14px; padding: 12px 14px;
  background: rgba(124, 58, 237, 0.05); border-radius: var(--r);
  font-size: 12.5px; color: var(--text2); line-height: 1.65;
  border-left: 3px solid var(--purple);
}
.ai-next-steps strong { color: var(--purple); }

/* Trait breakdown */
.card-block {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px; margin-bottom: 20px;
  box-shadow: var(--sh-sm);
}
.block-title { font-size: 9px; letter-spacing: 2px; font-family: var(--mono); color: var(--text3); margin-bottom: 16px; text-transform: uppercase; font-weight: 700; }
.trait-row   { margin-bottom: 14px; }
.trait-row:last-child { margin-bottom: 0; }
.trait-top   { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 12px; font-weight: 600; }
.trait-name  { color: var(--text); }
.trait-pct   { font-family: var(--mono); font-size: 11px; font-weight: 700; }
.trait-pct.apt { color: var(--green); }
.trait-pct.int { color: var(--gold); }
.trait-pct.per { color: var(--blue); }
.trait-bar  { height: 6px; background: var(--bg4); border-radius: 4px; overflow: hidden; }
.trait-fill { height: 100%; border-radius: 4px; transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1); }
.trait-fill.apt { background: linear-gradient(90deg, var(--green), #34D399); }
.trait-fill.int { background: linear-gradient(90deg, var(--gold), #818CF8); }
.trait-fill.per { background: linear-gradient(90deg, var(--blue), #60A5FA); }

/* Traits Pillar Grouping styling */
.traits-section { margin-bottom: 28px; }
.traits-section:last-child { margin-bottom: 0; }
.traits-section-header { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: 1px; font-family: var(--mono); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1.5px solid var(--border); text-transform: uppercase; }
.traits-section-header.apt { color: var(--green); border-bottom-color: var(--green-bdr); }
.traits-section-header.int { color: var(--gold); border-bottom-color: var(--gold-bdr); }
.traits-section-header.per { color: var(--blue); border-bottom-color: var(--blue-bdr); }
.ts-icon { font-size: 14px; }
.traits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; }
.traits-grid .trait-row { margin-bottom: 0; }
@media (max-width: 560px) { .traits-grid { grid-template-columns: 1fr; gap: 14px; } }

/* SF grid */
.sf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
@media(max-width:480px) { .sf-grid { grid-template-columns: 1fr; } }
.sf-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); padding: 20px; box-shadow: var(--sh-sm); }
.sf-title { font-size: 9px; letter-spacing: 2px; font-family: var(--mono); color: var(--text3); margin-bottom: 12px; font-weight: 700; }
.sf-item  { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; margin-bottom: 8px; color: var(--text2); line-height: 1.5; font-weight: 500; }
.sf-item:last-child { margin-bottom: 0; }
.sf-dot   { width: 6px; height: 6px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.sf-dot.g { background: var(--green); }
.sf-dot.a { background: var(--amber); }

/* Suggestions */
.sug-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 0; }
@media(max-width:480px) { .sug-grid { grid-template-columns: 1fr; } }
.sug-card {
  padding: 16px; background: var(--bg2); border: 1.5px solid var(--border);
  border-radius: var(--r); cursor: pointer; transition: all .25s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: var(--sh-sm);
}
.sug-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--sh); }
.sug-head  { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.sug-emoji { font-size: 18px; }
.sug-code  { font-size: 12px; font-weight: 800; font-family: var(--font); color: var(--text); }
.sug-score { margin-left: auto; font-size: 10px; font-family: var(--mono); padding: 3px 10px; border-radius: 50px; background: var(--green-bg); color: var(--green); font-weight: 700; }
.sug-label { font-size: 11px; color: var(--text2); line-height: 1.45; font-weight: 500; }

/* Careers */
.career-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 0; }
@media(max-width:480px) { .career-grid { grid-template-columns: 1fr; } }
.career-chip {
  padding: 12px 14px; background: var(--bg3);
  border: 1px solid var(--border); border-radius: var(--r);
  font-size: 12.5px; color: var(--text2); display: flex; align-items: center; gap: 8px; box-shadow: var(--sh-sm);
  font-weight: 600;
}
.career-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* CTA */
.cta-box {
  background: linear-gradient(140deg, var(--gold-bg) 0%, #FFFFFF 100%);
  border: 1.5px solid var(--gold-bdr);
  border-radius: var(--r-lg); padding: 26px; text-align: center; margin-bottom: 0;
  box-shadow: var(--sh);
}
.cta-title { font-family: var(--font); font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 8px; letter-spacing: -0.3px; }
.cta-sub   { font-size: 13px; color: var(--text2); line-height: 1.7; margin-bottom: 18px; }
.btn-cta   { width: 100%; padding: 15px; font-size: 14.5px; }
.btn-retake { width: 100%; padding: 12px; margin-top: 10px; font-size: 13px; background: transparent; border: 1.5px solid var(--border); border-radius: var(--r); font-family: var(--font); color: var(--text2); cursor: pointer; transition: all .2s; font-weight: 600; }
.btn-retake:hover { background: var(--bg4); color: var(--text); }

/* Loading state */
.loading-state { text-align: center; padding: 64px 24px; color: var(--text2); font-family: var(--font); font-size: 13.5px; font-weight: 600; }
.loading-state .spinner { margin: 0 auto 20px; border-color: var(--gold-bdr); border-top-color: var(--gold); width: 28px; height: 28px; border-width: 3px; }

/* ══════════════════════════════════════════════════════
   LANDING PAGE SYSTEM (outer wrapper)
══════════════════════════════════════════════════════ */
.page-nav {
  padding: 16px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--sh-sm);
}
@media(max-width:600px) { .page-nav { padding: 16px 24px; } }
.nav-logo { height: 42px; object-fit: contain; display: block; }
.nav-logo-text { font-family: var(--font); font-size: 14px; font-weight: 800; color: var(--gold); letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 13.5px; color: var(--text2); text-decoration: none; font-weight: 600; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-btn {
  padding: 10px 22px; border-radius: 50px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: #fff; font-family: var(--font); font-size: 13px; font-weight: 700; text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 4px 14px rgba(101, 109, 74, 0.2); transition: all .25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-btn:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 20px rgba(101, 109, 74, 0.3); }
.nav-btn:active { transform: translateY(0); }

/* Sections */
.section-wrap {
  padding: 96px 48px;
  max-width: 1120px;
  margin: 0 auto;
}
@media(max-width:720px) { .section-wrap { padding: 64px 24px; } }

.section-title-wrap {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block; padding: 5px 14px; background: var(--gold-bg); border: 1.5px solid var(--gold-bdr);
  border-radius: 50px; font-size: 9px; font-family: var(--mono); color: var(--gold); font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 14px;
}
.section-h2 {
  font-family: var(--font); font-size: clamp(26px, 4.5vw, 36px); color: var(--text); line-height: 1.25; font-weight: 800; letter-spacing: -0.8px;
}
.section-h2 span { color: var(--gold); font-style: normal; }
.section-sub {
  color: var(--text2); font-size: 14.5px; max-width: 600px; margin: 12px auto 0; line-height: 1.7; font-weight: 500;
}

/* Page Hero */
.page-hero {
  max-width: 1120px; margin: 0 auto;
  padding: 80px 48px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center;
}
@media(max-width:850px) { .page-hero { grid-template-columns: 1fr; padding: 60px 24px; gap: 48px; } }
.hero-eyebrow { font-size: 10px; letter-spacing: 3px; font-family: var(--mono); color: var(--gold); margin-bottom: 16px; text-transform: uppercase; font-weight: 700; }
.hero-h1 { font-family: var(--font); font-size: clamp(34px, 5.5vw, 52px); line-height: 1.15; color: var(--text); margin-bottom: 20px; font-weight: 800; letter-spacing: -1.5px; }
.hero-h1 span { color: var(--gold); font-style: normal; }
.hero-desc { color: var(--text2); font-size: 15.5px; line-height: 1.8; margin-bottom: 30px; font-weight: 500; }
.course-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.chip { padding: 6px 14px; border-radius: 50px; font-size: 11px; font-family: var(--font); font-weight: 700; border: 1.5px solid var(--border); background: var(--bg2); color: var(--text2); box-shadow: var(--sh-sm); }

/* Interactive preview graphics */
.preview-card {
  background: var(--bg2); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--sh-lg);
  position: relative; overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.preview-card:hover { transform: translateY(-4px) scale(1.01); }
.preview-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
}
.pc-label { font-size: 9.5px; letter-spacing: 2px; font-family: var(--mono); color: var(--text3); margin-bottom: 18px; text-transform: uppercase; font-weight: 700; }
.pc-score { text-align: center; margin-bottom: 22px; }
.pc-score-num { font-family: var(--mono); font-size: 64px; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -2px; }
.pc-score-denom { font-size: 22px; color: var(--text3); font-weight: 500; }
.pc-score-tag { font-size: 12px; color: var(--green); font-weight: 800; font-family: var(--font); margin-top: 8px; }
.pc-bar-row { margin-bottom: 14px; }
.pc-bar-row:last-of-type { margin-bottom: 0; }
.pc-bar-top { display: flex; justify-content: space-between; font-size: 10px; font-family: var(--mono); margin-bottom: 8px; font-weight: 700; }
.pc-bar-name { color: var(--text2); }
.pc-bar-track { height: 6px; background: var(--bg4); border-radius: 4px; overflow: hidden; }
.pc-bar-fill  { height: 100%; border-radius: 4px; }

/* Stats strip */
.stats-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 36px 48px; margin: 0 auto; display: flex; justify-content: space-around;
  gap: 24px; flex-wrap: wrap; text-align: center; max-width: 1120px;
}
@media(max-width:600px) { .stats-strip { flex-direction: column; gap: 36px; } }
.stat-item { flex: 1; min-width: 180px; }
.stat-num { font-family: var(--mono); font-size: 36px; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 8px; letter-spacing: -1px; }
.stat-label { font-size: 11px; font-family: var(--mono); color: var(--text3); text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }

/* AIP graphics custom layout */
.aip-showcase {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px;
}
@media(max-width:768px) { .aip-showcase { grid-template-columns: 1fr; } }
.aip-card-big {
  background: var(--bg2); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 32px 28px;
  transition: all .25s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: var(--sh-sm);
}
.aip-card-big:hover {
  transform: translateY(-6px); box-shadow: var(--sh-lg);
}
.aip-card-big.apt:hover { border-color: var(--green-bdr); }
.aip-card-big.int:hover { border-color: var(--gold-bdr); }
.aip-card-big.per:hover { border-color: var(--blue-bdr); }

.aip-icon-big {
  width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 22px;
}
.aip-card-big.apt .aip-icon-big { background: var(--green-bg); color: var(--green); }
.aip-card-big.int .aip-icon-big { background: var(--gold-bg); color: var(--gold); }
.aip-card-big.per .aip-icon-big { background: var(--blue-bg); color: var(--blue); }

.aip-h3 { font-family: var(--font); font-size: 20px; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.aip-card-big.apt .aip-h3 { color: var(--green); }
.aip-card-big.int .aip-h3 { color: var(--gold-dark); }
.aip-card-big.per .aip-h3 { color: var(--blue); }

.aip-desc-big { font-size: 13.5px; color: var(--text2); line-height: 1.7; font-weight: 500; }

/* Course Opportunities Grid */
.opp-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px;
}
.opp-card {
  background: var(--bg2); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 28px;
  box-shadow: var(--sh-sm); transition: all .25s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column;
}
.opp-card:hover { transform: translateY(-4px); border-color: var(--gold-bdr); box-shadow: var(--sh); }
.opp-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.opp-title-wrap { display: flex; align-items: center; gap: 12px; }
.opp-icon { font-size: 26px; }
.opp-code { font-family: var(--font); font-size: 18px; font-weight: 800; color: var(--text); }
.opp-name { font-size: 11px; font-family: var(--mono); color: var(--text3); text-transform: uppercase; margin-bottom: 14px; font-weight: 700; }
.opp-details { font-size: 13.5px; color: var(--text2); line-height: 1.7; margin-bottom: 20px; flex-grow: 1; font-weight: 500; }
.opp-details strong { color: var(--text); }
.opp-meta {
  border-top: 1.5px solid var(--border); padding-top: 14px; margin-top: auto;
  display: flex; justify-content: space-between; font-size: 11px; font-family: var(--mono); color: var(--text3); font-weight: 700;
}
.opp-meta span strong { color: var(--text2); }

/* How It Works Steps */
.steps-wrap {
  display: flex; gap: 24px; margin-top: 32px;
}
@media(max-width:768px) { .steps-wrap { flex-direction: column; gap: 44px; } }
.step-card {
  flex: 1; background: var(--bg2); border: 1.5px solid var(--border); border-radius: var(--r-lg);
  padding: 32px 28px; box-shadow: var(--sh-sm); position: relative;
}
.step-num {
  position: absolute; top: -22px; left: 28px; width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 16px; font-weight: 700; box-shadow: 0 6px 16px rgba(79, 70, 229, 0.3);
}
.step-title { font-family: var(--font); font-size: 18px; font-weight: 800; margin: 12px 0 10px; color: var(--text); letter-spacing: -0.3px; }
.step-desc { font-size: 13.5px; color: var(--text2); line-height: 1.7; font-weight: 500; }

/* FAQ section */
.faq-wrap {
  max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px;
}
.faq-item {
  background: var(--bg2); border: 1.5px solid var(--border); border-radius: var(--r);
  overflow: hidden; transition: border-color .2s;
  box-shadow: var(--sh-sm);
}
.faq-item:hover { border-color: var(--border2); }
.faq-q {
  padding: 20px 28px; font-weight: 700; font-size: 15px; color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-q::after {
  content: '▼'; font-size: 10px; color: var(--text3); transition: transform .2s;
}
.faq-item[open] .faq-q::after { transform: rotate(180deg); }
.faq-a {
  padding: 0 28px 20px; font-size: 14px; color: var(--text2); line-height: 1.7;
  border-top: 1px solid transparent; font-weight: 500;
}
.faq-item[open] .faq-a { border-top-color: var(--border); }

/* CTA section background custom */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-bg) 0%, #FFFFFF 100%);
  border: 1.5px solid var(--gold-bdr); border-radius: var(--r-lg);
  padding: 56px; text-align: center; box-shadow: var(--sh);
}
@media(max-width:600px) { .cta-banner { padding: 36px 24px; } }
.cta-h2 { font-family: var(--font); font-size: clamp(24px, 4.5vw, 34px); color: var(--text); margin-bottom: 14px; font-weight: 800; letter-spacing: -0.8px; }
.cta-desc { font-size: 15px; color: var(--text2); max-width: 600px; margin: 0 auto 32px; line-height: 1.75; font-weight: 500; }

/* Footer */
.page-footer {
  padding: 48px 24px; text-align: center; border-top: 1px solid var(--border);
  background: var(--bg2); font-size: 13px; color: var(--text3); font-family: var(--font); font-weight: 600;
}
.page-footer a { color: var(--text2); text-decoration: none; margin: 0 14px; transition: color .2s; }
.page-footer a:hover { color: var(--gold); }

/* ── Animations ─────────────────────────────────── */
.hidden { display: none !important; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin   { to   { transform: rotate(360deg); } }

/* ── Embedded overrides ── */
body.embedded #landing-page-root {
  display: none !important;
}
body.embedded .psc-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  display: flex !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  padding: 0 !important;
  opacity: 1 !important;
  pointer-events: all !important;
  z-index: 1 !important;
}
body.embedded .psc-dialog {
  max-width: 100% !important;
  width: 100% !important;
  height: 100% !important;
}
body.embedded .psc-modal {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  transform: none !important;
  display: flex !important;
  flex-direction: column !important;
}
body.embedded .m-header {
  border-radius: 0 !important;
}
body.embedded .m-close {
  display: none !important;
}
.ai-error-banner {
  background: var(--red-bg);
  border: 1.5px solid var(--red-bdr);
  color: var(--red);
  padding: 12px 16px;
  border-radius: var(--r);
  font-size: 11px;
  margin-bottom: 14px;
  text-align: left;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════
   CUSTOM PAGE FOOTER (from image spec)
══════════════════════════════════════════════════════ */
.custom-page-footer {
  background: #656d4a; /* Sage Green background */
  color: #FFFFFF;
  padding: 48px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media(max-width: 768px) {
  .custom-page-footer {
    padding: 36px 24px;
  }
}
.footer-cta-container {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media(max-width: 768px) {
  .footer-cta-container {
    flex-direction: column;
    text-align: center;
  }
}
.footer-cta-h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.footer-cta-sub {
  font-size: 14.5px;
  opacity: 0.9;
  font-weight: 500;
}
.btn-footer-cta {
  background: #FFFFFF;
  color: #656d4a; /* Sage Green text */
  border: none;
  padding: 15px 32px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
  white-space: nowrap;
}
.btn-footer-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}
.btn-footer-cta:active {
  transform: translateY(0) scale(0.98);
}

