/* ════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════ */
:root {
  --dark:    #121936;
  --primary: #024dc2;
  --gold:    #E2C27A;
  --light:   #dfedfc;
  --muted:   #4A6080;
  --fd:      'Lora', Georgia, serif;
  --fb:      'Roboto', Arial, sans-serif;
  --max:     1200px;
  --col:     740px;
  --r-sm:    10px;
  --r-md:    16px;
  --r-lg:    24px;
  --r-full:  999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--fb);
  background: var(--dark);
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.sec        { padding: 96px 0; }
.sec--dark  { background: var(--dark); }
.sec--light { background: var(--light); }
.col-text   { max-width: var(--col); margin: 0 auto; }

/* ════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════ */
.h2-dark  { font-family:var(--fd); font-size:clamp(26px,3vw,38px); font-weight:700; color:#fff;             line-height:1.25; margin-bottom:24px; text-align:center; }
.h2-light { font-family:var(--fd); font-size:clamp(26px,3vw,38px); font-weight:700; color:var(--primary);   line-height:1.25; margin-bottom:24px; text-align:center; }
.h2-story { font-family:var(--fd); font-size:clamp(26px,3vw,38px); font-weight:700; color:var(--primary);   line-height:1.25; margin-bottom:24px; text-align:center; }

.gold-text { color: var(--gold); }

.body-dark  { font-family:var(--fb); font-size:16px; font-weight:500; line-height:1.78; color:rgba(255,255,255,0.85); }
.body-light { font-family:var(--fb); font-size:16px; font-weight:500; line-height:1.78; color:#000; }
.body-dark  strong { color:#fff;  font-weight:700; }
.body-light strong { color:#000;  font-weight:700; }

/* ── Badge ── */
.badge {
  display:inline-flex; align-items:center; gap:8px;
  padding:5px 14px 5px 9px; border-radius:var(--r-full);
  font-family:var(--fb); font-size:11px; font-weight:700;
  text-transform:uppercase; letter-spacing:.1em;
}
.badge--gold { background:rgba(226,194,122,.10); border:1px solid rgba(226,194,122,.30); color:var(--gold); }
.badge__dot  { width:7px; height:7px; border-radius:50%; flex-shrink:0; animation:pulse 2.4s ease-in-out infinite; }
.badge__dot--gold { background:var(--gold); }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

/* ── CTA Button ── */
.btn-cta {
  position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  width:100%; max-width:480px; margin:0 auto;
  min-height:56px; padding:18px 24px;
  background:var(--primary); color:#fff;
  font-family:var(--fd); font-size:18px; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
  border:none; border-radius:var(--r-sm);
  cursor:pointer; text-decoration:none;
  transition:background .3s;
}
.btn-cta:hover { background:#0444bb; }
.btn-cta::before {
  content:''; position:absolute; top:0; left:-75%;
  width:50%; height:100%;
  background:linear-gradient(120deg,transparent 0%,rgba(255,255,255,0) 35%,rgba(255,255,255,.45) 50%,rgba(255,255,255,0) 65%,transparent 100%);
  transform:skewX(-15deg);
  animation:shine 2.4s ease-in-out infinite; pointer-events:none;
}
@keyframes shine { 0%{left:-75%} 50%{left:130%} 100%{left:130%} }

.cta-note {
  margin-top:12px; text-align:center;
  font-family:var(--fb); font-size:16px; font-weight:500;
  color:#fff; line-height:1.6;
}
.cta-note--light { color:#000; }
.cta-note .date  { color:var(--gold); font-weight:700; }

.divider-gold {
  width:48px; height:2px; background:var(--gold);
  border-radius:2px; margin:0 auto 32px;
}

/* ════════════════════════════════════════
   S1 — HERO (index.html)
════════════════════════════════════════ */
.hero {
  position:relative; min-height:770px;
  display:flex; align-items:center; overflow:hidden;
}
.hero__bg { position:absolute; inset:0; z-index:0; }
.hero__bg img { width:100%; height:100%; object-fit:cover; object-position:center top; }
.hero__bg::after { content:''; position:absolute; inset:0; background:rgba(10,14,38,.40); }

.hero__wrap {
  position:relative; z-index:1; width:100%; max-width:var(--max);
  margin:0 auto; padding:80px 16px;
  display:flex; justify-content:flex-end;
}
.hero__card {
  width:100%; max-width:680px;
  background:rgba(18,25,54,.80);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(226,194,122,.20);
  border-radius:var(--r-lg); padding:52px 48px;
  text-align:center;
}

.hero__badge-pill {
  display:inline-flex; align-items:center; gap:9px;
  padding:7px 16px 7px 10px;
  border-radius:var(--r-full);
  border:1px solid rgba(226,194,122,.35);
  background:rgba(10,14,38,.55);
  margin-bottom:28px;
}
.hero__badge-dot {
  width:10px; height:10px; border-radius:50%; flex-shrink:0;
  background:var(--gold);
  box-shadow:0 0 7px 2px rgba(226,194,122,.55);
  animation:pulse-glow 2.4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,100% { opacity:1;   box-shadow:0 0 7px 2px rgba(226,194,122,.55); }
  50%      { opacity:.55; box-shadow:0 0 3px 1px rgba(226,194,122,.20); }
}
.hero__badge-text {
  font-family:var(--fb); font-size:12px; font-weight:700;
  text-transform:uppercase; letter-spacing:.10em; color:#fff;
}

.hero__headline {
  font-family:var(--fd); font-size:32px;
  font-weight:700; line-height:1.35; color:#fff;
  margin-bottom:20px;
}
.hero__sub {
  font-family:var(--fb); font-size:16px; font-weight:500; line-height:1.78;
  color:rgba(255,255,255,.78); margin-bottom:36px;
}
.hero__sub strong { color:#fff; font-weight:700; }

/* ════════════════════════════════════════
   S2 — STORY
════════════════════════════════════════ */
.story-mobile-img { display:none; }
.story-sec p {
  font-family:var(--fb); font-size:16px; font-weight:500; line-height:1.80;
  color:#000; margin-bottom:18px;
}
.story-sec p:last-of-type { margin-bottom:0; }
.story-sec strong { color:var(--primary); font-weight:700; }
.story-sec em     { font-style:italic; }
.story-block      { margin-bottom:60px; }
.story-block:last-of-type { margin-bottom:0; }

/* ════════════════════════════════════════
   S3 — COMPARE (index)
════════════════════════════════════════ */
.compare-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:24px; margin-top:40px;
}
.compare-card { border-radius:var(--r-md); padding:36px 32px; }
.compare-card--old { background:#fff; border:1px solid rgba(0,0,0,.08); }
.compare-card--new { background:rgba(255,255,255,.04); border:1.5px solid var(--gold); }
.compare-card__label {
  font-family:var(--fd); font-size:20px; font-weight:700;
  text-transform:none; letter-spacing:0; margin-bottom:16px;
}
.compare-card--old .compare-card__label { color:#121936; }
.compare-card--new .compare-card__label { color:var(--gold); }
.compare-card__title {
  font-family:var(--fd); font-size:clamp(17px,1.8vw,22px);
  font-weight:700; margin-bottom:24px; line-height:1.25;
}
.compare-card--old .compare-card__title { color:var(--dark); }
.compare-card--new .compare-card__title { color:#fff; }
.compare-list { list-style:none; display:flex; flex-direction:column; gap:14px; }
.compare-list li {
  display:flex; gap:10px; align-items:flex-start;
  font-family:var(--fb); font-size:16px; font-weight:500; line-height:1.65;
}
.compare-card--old .compare-list li { color:#1a1a1a; }
.compare-card--new .compare-list li { color:rgba(255,255,255,.86); }
.compare-list li .bullet-dot { flex-shrink:0; margin-top:8px; }

/* ── Formula ── */
.formula-plain {
  display:flex; flex-wrap:wrap; align-items:flex-start;
  justify-content:center; gap:14px 20px;
  margin-top:44px; text-align:center;
}
.formula-plain__item { display:flex; flex-direction:column; align-items:center; gap:4px; }
.formula-plain__term   { font-family:var(--fd); font-size:18px; font-weight:700; color:#fff; }
.formula-plain__sub    { font-family:var(--fb); font-size:13px; font-weight:500; color:rgba(255,255,255,.50); }
.formula-plain__op     { font-family:var(--fd); font-size:26px; font-weight:700; color:rgba(255,255,255,.25); align-self:center; }
.formula-plain__result { font-family:var(--fd); font-size:18px; font-weight:700; color:var(--gold); align-self:center; }

/* ════════════════════════════════════════
   S4 — CURRICULUM CARDS
════════════════════════════════════════ */
.sessions-v3 {
  display:flex; flex-direction:column; gap:48px;
  max-width:740px; margin:40px auto 0;
}
.session-v3 {
  background:var(--dark);
  border-radius:var(--r-lg);
  border:1px solid rgba(226,194,122,.18);
  overflow:hidden;
}
.session-v3__header { padding:24px 16px 16px; text-align:center; }
.session-v3__tag {
  display:block;
  font-family:var(--fd); font-size:18px; font-weight:700;
  color:var(--gold); margin-bottom:16px;
}
.session-v3__title {
  font-family:var(--fd); font-size:20px; font-weight:700;
  color:#fff; line-height:1.40; margin-bottom:16px; text-align:center;
}
.session-v3__time {
  font-family:var(--fd); font-size:18px; font-weight:400;
  color:rgba(255,255,255,.85); text-align:center;
}
.session-v3__img {
  margin:0 16px; aspect-ratio:16/9;
  overflow:hidden; border-radius:var(--r-sm);
}
.session-v3__img img { width:100%; height:100%; object-fit:cover; object-position:center; display:block; }
.session-v3__body {
  margin:16px; background:#fff;
  border-radius:var(--r-md); padding:24px 24px 28px;
}
.session-v3__intro {
  font-family:var(--fb); font-size:14px; font-weight:500;
  color:var(--muted); margin-bottom:16px;
}
.session-v3__list { list-style:none; display:flex; flex-direction:column; gap:14px; }
.session-v3__list li {
  display:flex; gap:12px; align-items:flex-start;
  font-family:var(--fb); font-size:16px; font-weight:500; line-height:1.65; color:#000;
}
.session-v3__list li .bullet-dot { flex-shrink:0; margin-top:7px; }
.session-v3__list li strong { color:#000; font-weight:700; }
.session-v3__outro {
  margin-top:20px; padding-top:18px;
  border-top:1px solid rgba(2,77,194,.10);
  font-family:var(--fd); font-style:italic; font-size:16px;
  color:var(--muted); line-height:1.65;
}

/* ════════════════════════════════════════
   S5 — FOR WHOM
════════════════════════════════════════ */
.forwhom-box {
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.09);
  border-radius:var(--r-lg); padding:40px 44px; margin-top:36px;
}
.forwhom-list { list-style:none; display:flex; flex-direction:column; gap:20px; }
.forwhom-list li {
  display:flex; gap:14px; align-items:flex-start;
  font-family:var(--fb); font-size:16px; font-weight:500; line-height:1.72;
  color:rgba(255,255,255,.85);
}
.forwhom-list li svg  { flex-shrink:0; margin-top:1px; }
.forwhom-list li strong { color:#fff; font-weight:700; }

/* ════════════════════════════════════════
   S6 — ABOUT SORA
════════════════════════════════════════ */
.about-card {
  background:#fff; border-radius:var(--r-lg); padding:44px;
  display:grid; grid-template-columns:360px 1fr; gap:44px; align-items:start;
}
.about-card__img { display:flex; flex-direction:column; align-items:center; }
.about-card__img img {
  width:327px; height:327px;
  object-fit:cover; object-position:center 60%;
  border-radius:var(--r-md); display:block;
}
.about-card__text .about-greeting {
  font-family:var(--fd); font-size:24px; font-weight:700;
  color:var(--primary); margin-bottom:18px; line-height:1.3;
}
.about-card__text p {
  font-family:var(--fb); font-size:16px; font-weight:500; line-height:1.80;
  color:#000; margin-bottom:16px;
}
.about-card__text p:last-child { margin-bottom:0; }
.about-card__text strong { color:#000; font-weight:700; }
.about-card__text em     { font-style:italic; }
.about-results { display:flex; flex-direction:column; gap:12px; margin:20px 0; }
.about-result {
  display:flex; gap:12px; align-items:flex-start;
  font-family:var(--fb); font-size:16px; font-weight:500; line-height:1.65; color:#000;
}
.about-result .bullet-dot { flex-shrink:0; margin-top:7px; }
.about-result strong { color:#000; font-weight:700; }
.about-quote {
  margin-top:24px; padding-top:20px;
  border-top:1px solid rgba(0,0,0,.08);
}
.about-quote blockquote {
  font-family:var(--fd); font-style:italic;
  font-size:17px; line-height:1.65; color:var(--dark); margin-bottom:8px;
}
.about-sig {
  font-family:'Great Vibes', cursive; font-size:40px; color:var(--primary);
  display:block; margin-top:4px;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background:var(--dark); min-height:110px; padding:0 24px;
  text-align:center; border-top:1px solid rgba(255,255,255,.06);
  display:flex; align-items:center; justify-content:center;
}
.site-footer .wrap { padding-top:0; padding-bottom:0; }
.site-footer p {
  font-family:var(--fb); font-size:14px; font-weight:500;
  color:rgba(255,255,255,.40); line-height:1.7;
}
.site-footer p + p { margin-top:6px; }
.site-footer .footer-brand {
  font-family:var(--fd); font-size:15px; font-weight:600;
  color:rgba(255,255,255,.65); margin-bottom:10px;
}

/* ════════════════════════════════════════
   MODAL — REGISTRATION POPUP
════════════════════════════════════════ */
.modal-overlay {
  position:fixed; inset:0; z-index:9999;
  background:rgba(10,14,38,.72);
  backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px);
  display:flex; align-items:center; justify-content:center; padding:16px;
  opacity:0; visibility:hidden;
  transition:opacity .28s ease, visibility .28s ease;
}
.modal-overlay.is-open { opacity:1; visibility:visible; }
.modal-box {
  background:#fff; border-radius:var(--r-lg);
  width:100%; max-width:580px; max-height:92vh;
  display:flex; flex-direction:column;
  box-shadow:0 24px 64px rgba(0,0,0,.35);
  transform:translateY(24px); transition:transform .28s ease;
}
.modal-overlay.is-open .modal-box { transform:translateY(0); }
.modal-header {
  flex-shrink:0; position:relative;
  padding:28px 40px 20px; border-bottom:1px solid rgba(0,0,0,.07); text-align:center;
}
.modal-title {
  font-family:var(--fd); font-size:22px; font-weight:700;
  color:var(--primary); line-height:1.3;
}
.modal-subtitle {
  font-family:var(--fb); font-size:14px; font-weight:500;
  color:var(--muted); margin-top:7px; line-height:1.6;
}
.modal-close {
  position:absolute; top:14px; right:14px; width:34px; height:34px;
  background:none; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%; color:var(--muted); transition:background .2s, color .2s;
}
.modal-close:hover { background:rgba(0,0,0,.06); color:var(--dark); }
.modal-body {
  overflow-y:auto; flex:1; padding:24px 40px 36px;
}
.modal-body::-webkit-scrollbar { width:5px; }
.modal-body::-webkit-scrollbar-track { background:transparent; }
.modal-body::-webkit-scrollbar-thumb { background:rgba(0,0,0,.14); border-radius:3px; }
.form-group { margin-bottom:22px; }
.form-group:last-of-type { margin-bottom:0; }
.form-label {
  display:block;
  font-family:var(--fb); font-size:16px; font-weight:600;
  color:#024dc2; margin-bottom:10px; line-height:1.45;
}
.form-label .req { color:#f56c6c; margin-left:2px; }
.form-input {
  width:100%; height:55px; padding:0 16px;
  font-family:var(--fb); font-size:15px; font-weight:400;
  color:#1a1a1a; background:#fff;
  border:1.5px solid rgba(0,0,0,.18); border-radius:var(--r-sm); outline:none;
  transition:border-color .2s, box-shadow .2s;
}
.form-input:focus { border-color:var(--primary); box-shadow:0 0 0 3px rgba(2,77,194,.10); }
.form-input.is-error { border-color:#f56c6c; box-shadow:0 0 0 3px rgba(245,108,108,.10); }
.form-textarea {
  width:100%; min-height:96px; padding:12px 16px;
  font-family:var(--fb); font-size:15px; font-weight:400;
  color:#1a1a1a; background:#fff;
  border:1.5px solid rgba(0,0,0,.18); border-radius:var(--r-sm); outline:none;
  resize:vertical; line-height:1.6; transition:border-color .2s, box-shadow .2s;
}
.form-textarea:focus { border-color:var(--primary); box-shadow:0 0 0 3px rgba(2,77,194,.10); }
.form-options { display:flex; flex-direction:column; gap:11px; }
.form-option  { display:flex; align-items:flex-start; gap:11px; cursor:pointer; }
.form-option input[type="radio"],
.form-option input[type="checkbox"] {
  position:relative; flex-shrink:0; appearance:none; -webkit-appearance:none;
  width:20px; height:20px; margin-top:2px;
  background:#fff; cursor:pointer; transition:border-color .2s, background .2s;
}
.form-option input[type="radio"]    { border:2px solid rgba(0,0,0,.25); border-radius:50%; }
.form-option input[type="checkbox"] { border:2px solid rgba(0,0,0,.25); border-radius:4px; }
.form-option input[type="radio"]:checked    { border-color:var(--primary); }
.form-option input[type="radio"]:checked::after {
  content:''; position:absolute; top:50%; left:50%;
  width:10px; height:10px;
  background:var(--primary); border-radius:50%;
  transform:translate(-50%,-50%);
}
.form-option input[type="checkbox"]:checked { border-color:var(--primary); background:var(--primary); }
.form-option input[type="checkbox"]:checked::after {
  content:''; position:absolute; top:50%; left:50%;
  width:11px; height:6px;
  border-left:2px solid #fff; border-bottom:2px solid #fff;
  transform:translate(-50%,-65%) rotate(-45deg);
}
.form-option input:focus-visible { outline:2px solid rgba(2,77,194,.35); outline-offset:2px; }
.form-option.is-error input[type="radio"],
.form-option.is-error input[type="checkbox"] { border-color:#f56c6c; }
.form-option.is-error .option-label { color:#f56c6c; }
.option-label {
  font-family:var(--fb); font-size:15px; font-weight:400;
  color:#1a1a1a; line-height:1.55; padding-top:2px; transition:color .2s;
}
.modal-submit-wrap { margin-top:28px; }
.modal-success { display:none; padding:52px 40px; text-align:center; }
.modal-success.is-visible { display:block; }
.modal-success__icon {
  width:72px; height:72px; background:rgba(2,77,194,.08); border-radius:50%;
  display:flex; align-items:center; justify-content:center; margin:0 auto 24px;
}
.modal-success__title {
  font-family:var(--fd); font-size:22px; font-weight:700;
  color:var(--primary); margin-bottom:12px;
}
.modal-success__body {
  font-family:var(--fb); font-size:15px; font-weight:400;
  color:var(--muted); line-height:1.75;
}

/* ════════════════════════════════════════
   UPSELL — ANNOUNCE BAR
════════════════════════════════════════ */
.announce-bar {
  background: #024dc2;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  text-align: center;
}
.announce-bar__text {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

/* ════════════════════════════════════════
   UPSELL — SECONDARY "NO" BUTTON
════════════════════════════════════════ */
.btn-no {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  margin: 16px 0 0;
  min-height: 52px;
  padding: 14px 20px;
  background: #fff;
  color: #000;
  font-family: var(--fd);
  font-size: clamp(14px, 2.6vw, 16px);
  font-weight: 700;
  text-align: center;
  white-space: normal;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: var(--r-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
  line-height: 1.4;
}
.btn-no:hover { background: #f0f4f8; }

/* ════════════════════════════════════════
   UPSELL — PROGRESS BANNER
════════════════════════════════════════ */
.progress-banner {
  background: transparent;
  border-bottom: none;
  padding: 0 0 8px;
}
.progress-banner__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.progress-banner__label { display: none; }
.progress-track {
  height: 24px;
  background: rgba(255,255,255,.10);
  border-radius: var(--r-full);
  overflow: hidden;
  position: relative;
}
.progress-fill {
  height: 100%;
  width: 80%;
  border-radius: var(--r-full);
  background: linear-gradient(90deg, #c9a84c, var(--gold), #f0d898);
  animation: progress-in 1.2s ease-out forwards;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
}
.progress-fill__pct {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 700;
  color: #6b3e00;
  letter-spacing: .05em;
  white-space: nowrap;
  line-height: 1;
}
@keyframes progress-in {
  from { width: 0; }
  to   { width: 80%; }
}

/* ════════════════════════════════════════
   UPSELL — HERO SECTION
════════════════════════════════════════ */
.upsell-hero {
  padding: 72px 0 80px;
  text-align: center;
}
.upsell-attention {
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 20px;
}
.upsell-headline {
  font-family: var(--fd);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 700;
  color: #fff;
  line-height: 1.28;
  margin-bottom: 16px;
}
.upsell-sub {
  font-family: var(--fb);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.78;
  color: rgba(255,255,255,.75);
  max-width: 640px;
  margin: 0 auto 40px;
}
.upsell-sub strong { color: #fff; }

/* ── Countdown ── */
.countdown {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  margin: 0 auto 48px;
  max-width: 500px;
}
.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 88px;
}
.countdown__num {
  display: block;
  font-family: var(--fd);
  font-size: 44px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(226,194,122,.25);
  border-radius: var(--r-sm);
  padding: 14px 10px 12px;
  min-width: 88px;
  text-align: center;
}
.countdown__label {
  display: block;
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.45);
}
.countdown__sep {
  font-family: var(--fd);
  font-size: 38px;
  font-weight: 700;
  color: rgba(255,255,255,.25);
  padding-top: 10px;
  line-height: 1;
}

/* ── Video embed ── */
.video-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: rgba(255,255,255,.50);
  margin-bottom: 16px;
}
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 740px;
  margin: 0 auto 40px;
  aspect-ratio: 16/9;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(226,194,122,.20);
  box-shadow: 0 16px 48px rgba(0,0,0,.45);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ════════════════════════════════════════
   UPSELL — CTA PAIR (YES + NO)
════════════════════════════════════════ */
.cta-pair {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}
.btn-decline {
  display: block;
  margin-top: 18px;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,.38);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1.6;
  transition: color .2s;
  text-align: center;
}
.btn-decline:hover { color: rgba(255,255,255,.60); }
.btn-decline--light { color: rgba(0,0,0,.30); }
.btn-decline--light:hover { color: rgba(0,0,0,.50); }

/* ════════════════════════════════════════
   UPSELL — S2 BRIDGE (light)
════════════════════════════════════════ */
.bridge-sec p {
  font-family: var(--fb);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.80;
  color: #000;
  margin-bottom: 18px;
}
.bridge-sec p:last-of-type { margin-bottom: 0; }
.bridge-sec strong { color: var(--primary); font-weight: 700; }
.bridge-sec em     { font-style: italic; }
.bridge-sec .path-divider {
  text-align: center;
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin: 28px 0;
  letter-spacing: .05em;
}
.bridge-box {
  background: #fff;
  border: 1px solid rgba(2,77,194,.15);
  border-radius: var(--r-lg);
  padding: 32px 36px;
  margin: 32px 0;
}
.bridge-box--vip {
  background: var(--dark);
  border: 2px solid var(--gold);
}
.bridge-box--vip p { color: rgba(255,255,255,.85); }
.bridge-box--vip strong { color: #fff; }
.bridge-box p:last-child { margin-bottom: 0; }
.bridge-box__label {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.bridge-box--free .bridge-box__label { color: var(--muted); }
.bridge-box--vip  .bridge-box__label { color: var(--gold); }

/* ════════════════════════════════════════
   UPSELL — S3/S7 TICKET COMPARISON
════════════════════════════════════════ */
.ticket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px auto 0;
  max-width: 860px;
}
.ticket-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ticket-card--free {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
}
.ticket-card--vip {
  background: rgba(255,255,255,.04);
  border: 2px solid var(--gold);
  box-shadow: 0 0 32px rgba(226,194,122,.12);
}
.ticket-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: rgba(255,255,255,.05);
}
.ticket-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ticket-card__body {
  padding: 28px 24px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ticket-card__price {
  font-family: var(--fb);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.ticket-card--free .ticket-card__price { color: #fff; }
.ticket-card--vip  .ticket-card__price { color: #fff; }
.ticket-card__type {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ticket-card--free .ticket-card__type { color: #fff; }
.ticket-card--vip  .ticket-card__type { color: #fff; }
.ticket-features { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.ticket-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--fb);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}
.ticket-features .feat-icon {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.3;
  margin-top: 1px;
}
.ticket-features .feat-text  { color: #fff; }
.ticket-features .feat-crossed { color: #4A6080; text-decoration: none; }
.ticket-card--vip .ticket-features .feat-text { color: #fff; }

/* ════════════════════════════════════════
   UPSELL — S4/S8 GUARANTEE
════════════════════════════════════════ */
.guarantee-box {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 44px;
  max-width: 740px;
  margin: 40px auto 0;
}
.guarantee-icon {
  width: 80px; height: 80px;
  background: rgba(2,77,194,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.guarantee-title {
  font-family: var(--fd);
  font-size: clamp(22px,2.5vw,28px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.3;
  text-align: center;
}
.guarantee-body {
  font-family: var(--fb);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.80;
  color: #000;
}
.guarantee-body p { margin-bottom: 16px; }
.guarantee-body p:last-child { margin-bottom: 0; }
.guarantee-body strong { color: var(--primary); }

/* ════════════════════════════════════════
   UPSELL — S5 WHAT YOU GET
════════════════════════════════════════ */
.workshop-box {
  background: rgba(255,255,255,.04);
  border: 1.5px solid var(--gold);
  border-radius: var(--r-lg);
  padding: 36px;
  margin: 0 auto 40px;
  max-width: 740px;
}
.workshop-box__tag {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 12px;
}
.workshop-box__title {
  font-family: var(--fd);
  font-size: clamp(20px,2.5vw,26px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.workshop-box__meta {
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 16px;
}
.workshop-box__intro {
  font-family: var(--fb);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(255,255,255,.75);
}
.situation-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px auto 0;
  max-width: 740px;
}
.situation-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  padding: 20px 24px;
}
.situation-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd);
  font-size: 15px; font-weight: 700;
  color: var(--dark);
  margin-top: 1px;
}
.situation-text {
  font-family: var(--fb);
  font-size: 16px; font-weight: 400;
  line-height: 1.72;
  color: rgba(255,255,255,.82);
}
.situation-text strong { color: #fff; }
.qa-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-lg);
  padding: 32px 36px;
  margin: 32px auto 0;
  max-width: 740px;
}
.qa-box__title {
  font-family: var(--fd);
  font-size: 20px; font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.qa-box__body {
  font-family: var(--fb);
  font-size: 15px; font-weight: 500;
  line-height: 1.72;
  color: rgba(255,255,255,.78);
}

/* ════════════════════════════════════════
   UPSELL — S6 BONUSES
════════════════════════════════════════ */
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 740px;
  margin: 40px auto 0;
}
.bonus-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.bonus-num {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--primary);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd);
  font-size: 22px; font-weight: 700;
  color: #fff;
}
.bonus-content__tag {
  font-family: var(--fb);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--primary);
  margin-bottom: 5px;
}
.bonus-content__title {
  font-family: var(--fd);
  font-size: 18px; font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.3;
}
.bonus-content__value {
  font-family: var(--fb);
  font-size: 13px; font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.bonus-content__desc {
  font-family: var(--fb);
  font-size: 15px; font-weight: 400;
  line-height: 1.72;
  color: #444;
}

/* ════════════════════════════════════════
   UPSELL — BONUS CARD WITH IMAGE
════════════════════════════════════════ */
.bonus-card {
  padding: 0;          /* override — padding moved to .bonus-card__body */
  flex-direction: column;
}
.bonus-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  flex-shrink: 0;
}
.bonus-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.bonus-card__body {
  padding: 28px 32px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 480px) {
  .bonus-card__body { padding: 20px 20px 24px; gap: 14px; }
}

/* ════════════════════════════════════════
   UPSELL — BRIDGE SECTION PHOTOS
════════════════════════════════════════ */
.bridge-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0 48px;
}
.bridge-photo { }
.bridge-photo__img {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.bridge-photo__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.bridge-photo__caption {
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 500;
  font-style: italic;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .bridge-photos { grid-template-columns: 1fr; }
}

/* Value stack */
.value-stack {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(226,194,122,.25);
  border-radius: var(--r-lg);
  padding: 32px 36px;
  max-width: 740px;
  margin: 40px auto 0;
}
.value-stack--light { background: #fff; border-color: rgba(2,77,194,.15); }
.value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  gap: 16px;
}
.value-stack--light .value-row { border-bottom-color: rgba(0,0,0,.07); }
.value-row:last-of-type { border-bottom: none; }
.value-row__name {
  font-family: var(--fb);
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,.80);
  line-height: 1.4;
}
.value-stack--light .value-row__name { color: #333; }
.value-row__price {
  flex-shrink: 0;
  font-family: var(--fd);
  font-size: 15px; font-weight: 700;
  color: var(--gold);
}
.value-stack--light .value-row__price { color: var(--primary); }
.value-divider {
  border: none;
  border-top: 2px solid var(--gold);
  margin: 12px 0;
}
.value-stack--light .value-divider { border-top-color: var(--primary); }
.value-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0 4px;
  gap: 16px;
}
.value-total__label {
  font-family: var(--fd);
  font-size: 16px; font-weight: 700;
  color: rgba(255,255,255,.65);
}
.value-stack--light .value-total__label { color: var(--muted); }
.value-total__sum {
  font-family: var(--fd);
  font-size: 20px; font-weight: 700;
  color: var(--gold);
  text-decoration: line-through;
  text-decoration-color: rgba(226,194,122,.50);
}
.value-stack--light .value-total__sum { color: var(--muted); text-decoration-color: rgba(74,96,128,.40); }
.value-today {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  gap: 16px;
}
.value-today__label {
  font-family: var(--fd);
  font-size: 20px; font-weight: 700;
  color: #fff;
}
.value-stack--light .value-today__label { color: var(--dark); }
.value-today__price {
  font-family: var(--fd);
  font-size: 36px; font-weight: 700;
  color: var(--gold);
}
.value-stack--light .value-today__price { color: var(--primary); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 900px) {
  .compare-grid          { grid-template-columns:1fr; }
  .about-card            { grid-template-columns:1fr; gap:32px; }
  .about-card__img       { align-items:center; }
  .about-card__img img   { width:100%; max-width:327px; height:327px; }
  .formula-plain         { gap:10px 12px; }
  .ticket-grid           { grid-template-columns:1fr; max-width:460px; }
}
@media (max-width: 768px) {
  .sec             { padding:64px 0; }
  .hero__wrap      { justify-content:center; padding:48px 20px 56px; }
  .hero__card      { max-width:100%; padding:36px 20px; }
  .hero__headline  { font-size:23px; }
  .forwhom-box     { padding:28px 20px; }
  .hero__bg img    { object-position:-200px top; }
  .story-mobile-img {
    display:block; width:100%; height:221px;
    object-fit:cover; object-position:left center;
    border-radius:var(--r-md); margin-bottom:28px;
  }
  .countdown__unit  { min-width: 70px; }
  .countdown__num   { font-size: 32px; padding: 10px 8px; min-width: 70px; }
  .guarantee-box    { padding: 28px 20px; }
  .bonus-card       { padding: 24px 20px; gap: 16px; }
  .bonus-num        { width: 44px; height: 44px; font-size: 18px; }
  .value-stack      { padding: 24px 20px; }
  .workshop-box     { padding: 24px 20px; }
  .qa-box           { padding: 24px 20px; }
  .bridge-box       { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .compare-card        { padding:24px 16px; }
  .session-v3__img     { margin:0 12px; }
  .session-v3__body    { margin:12px; padding:16px; }
  .about-card          { padding:24px 16px; }
  .hero__card          { padding:28px 16px; }
  .countdown           { gap: 4px; }
  .countdown__unit     { min-width: 60px; }
  .countdown__num      { font-size: 26px; padding: 10px 6px; min-width: 60px; }
  .countdown__sep      { font-size: 24px; }
  .modal-header        { padding:24px 20px 18px; }
  .modal-body          { padding:20px 20px 28px; }
  .modal-title         { font-size:18px; }
  .modal-success       { padding:40px 20px; }
}

/* ════════════════════════════════════════
   UPSELL v2 — S1 HERO OVERRIDES
════════════════════════════════════════ */
.upsell-intro-text {
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: .02em;
}
/* Hero S1 container — 800px, single source of truth for padding */
.upsell-hero-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  width: 100%;
}

.upsell-h1 {
  font-family: var(--fd);
  font-size: clamp(20px, 3.2vw, 32px); /* khớp h2 section 2 */
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  text-align: center;
  margin-bottom: 16px;
  width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
}
.upsell-h1 .hl-primary { color: #E2C27A; }

/* Bullet list dưới h1 */
.upsell-h1-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  width: 100%;
  box-sizing: border-box;
}
.upsell-h1-bullets li {
  font-family: var(--fd);
  font-size: clamp(17px, 2.8vw, 26px);
  font-weight: 700;
  color: #E2C27A;
  line-height: 1.35;
  display: flex;
  align-items: flex-start; /* bullet căn với dòng đầu tiên */
  gap: 10px;
  text-align: left;
}
.upsell-h1-bullets li::before {
  content: '▸';
  flex-shrink: 0;
  font-size: .85em;
  margin-top: .15em; /* căn chỉnh với cap-height của chữ */
}
/* Desktop: h1 rộng hơn bằng cách giảm lề 2 bên */
@media (min-width: 769px) {
  .upsell-h1 {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
  .upsell-h1-bullets {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
  .upsell-h1-bullets li {
    font-size: 24px;
  }
}
.upsell-sub-main {
  font-family: var(--fd);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.72;
  color: rgba(255,255,255,.78);
  text-align: center;
  margin: 0 0 36px;
}
/* Mobile headline size overrides */
@media (max-width: 768px) {
  .upsell-h2-light       { font-size: 22px; }
  .upsell-h2-dark        { font-size: 22px; }
  .guarantee-dark__title { font-size: 22px; }
}

/* ════════════════════════════════════════
   UPSELL v2 — VIDEO SOUND OVERLAY BUTTON
════════════════════════════════════════ */
.video-sound-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 272px;
  height: 114px;
  background: #024dc2;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  z-index: 10;
  box-shadow: 0 8px 28px rgba(2,77,194,.50);
  transition: opacity .25s, transform .2s;
}
.video-sound-btn:hover {
  opacity: .92;
  transform: translate(-50%, -50%) scale(1.03);
}
.video-sound-btn__text {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
  text-align: center;
  line-height: 1.4;
}

/* ════════════════════════════════════════
   UPSELL v2 — S2 BRIDGE 3-COLUMN
════════════════════════════════════════ */
.bridge-cols {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: stretch;
  column-gap: 32px;
  margin: 40px auto;
  max-width: 892px;
}
.bridge-col-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
}
.bridge-col-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.bridge-col-card__img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.bridge-col-card__body {
  padding: 20px 24px 24px;
}
.bridge-col-card__body p {
  font-family: var(--fb);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.90;
  color: #000;
  margin: 0 0 10px;
}
.bridge-col-card__body p:last-child { margin-bottom: 0; }
.bridge-or {
  font-family: var(--fd);
  font-size: 26px;
  font-weight: 700;
  color: #121936;
  text-align: center;
  align-self: center;
}
.bridge-closing {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .bridge-cols { grid-template-columns: 1fr; }
  .bridge-or   { padding: 16px 0; }
}

/* ════════════════════════════════════════
   UPSELL v2 — S3/S7 TICKET CARDS
════════════════════════════════════════ */
/* VIP gold ombre */
.ticket-card--vip {
  background: linear-gradient(175deg, #E8CA6C 0%, #D4A520 28%, #9E6C0C 62%, #6B4005 100%);
  border: 2px solid rgba(226,194,122,.55);
  box-shadow: 0 8px 32px rgba(180,120,0,.30);
  opacity: 1;
}
/* New header with image */
.ticket-card__header {
  padding: 28px 24px 20px;
  text-align: center;
}
.ticket-card__header-img {
  width: 180px;
  height: 100px;
  overflow: hidden;
  border-radius: var(--r-sm);
  margin: 0 auto 20px;
  background: rgba(255,255,255,.08);
}
.ticket-card__header-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
/* Override old body padding */
.ticket-card .ticket-card__body { padding: 0 24px 32px; }
.ticket-card__divider {
  height: 1px;
  background: rgba(255,255,255,.18);
  margin: 0 24px 20px;
}

/* ════════════════════════════════════════
   UPSELL v2 — S4/S8 GUARANTEE (dark)
════════════════════════════════════════ */
.guarantee-dark {
  max-width: 740px;
  margin: 40px auto 0;
  text-align: center;
}
.guarantee-dark__img {
  width: 180px; height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 28px;
  border: 3px solid rgba(226,194,122,.30);
}
.guarantee-dark__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.guarantee-dark__title {
  font-family: var(--fd);
  font-size: clamp(20px, 2.8vw, 28px); font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.28;
}
.guarantee-dark__body {
  font-family: var(--fb);
  font-size: 16px; font-weight: 400;
  line-height: 1.80; color: #fff;
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
}
.guarantee-dark__body p { margin-bottom: 16px; }
.guarantee-dark__body p:last-child { margin-bottom: 0; }
.guarantee-dark__body strong { color: #fff; font-weight: 700; }

/* ════════════════════════════════════════
   UPSELL v2 — S5 LIGHT SECTION OVERRIDES
════════════════════════════════════════ */
.workshop-box--light {
  background: #fff;
  border: 1.5px solid var(--primary);
}
.workshop-box--light .workshop-box__tag   { color: var(--primary); }
.workshop-box--light .workshop-box__title { color: var(--dark); }
.workshop-box--light .workshop-box__meta  { color: var(--primary); }
.workshop-box--light .workshop-box__intro { color: #555; }
.situation-item--light {
  background: #fff;
  border-color: rgba(2,77,194,.12);
}
.situation-item--light .situation-text       { color: #222; }
.situation-item--light .situation-text strong { color: #000; }
.qa-box--light {
  background: #fff;
  border-color: rgba(2,77,194,.15);
}
.qa-box--light .qa-box__title { color: var(--primary); }
.qa-box--light .qa-box__body  { color: #444; }

/* ════════════════════════════════════════
   UPSELL v2 — S6 BONUS CARD TEXT
════════════════════════════════════════ */
.bonus-card__title {
  font-family: var(--fd);
  font-size: 19px; font-weight: 700;
  color: #121936; margin-bottom: 6px;
  text-align: left; line-height: 1.3;
}
.bonus-card__value {
  font-family: var(--fb);
  font-size: 17px; font-weight: 600;
  color: #024dc2; margin-bottom: 14px;
  text-align: left;
}
.bonus-bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  padding: 0;
}
.bonus-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--fb);
  font-size: 15px; font-weight: 400;
  line-height: 1.65; color: #333;
}
.bonus-bullet-dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #E2C27A;
  margin-top: 7px;
}

/* ════════════════════════════════════════
   UPSELL v2 — SHARED SECTION h2
════════════════════════════════════════ */
.upsell-h2-light {
  font-family: var(--fd);
  font-size: clamp(20px, 3.2vw, 32px); font-weight: 700;
  color: var(--primary);
  line-height: 1.28;
  margin-bottom: 24px;
  text-align: center;
}
.upsell-h2-dark {
  font-family: var(--fd);
  font-size: clamp(20px, 3.2vw, 32px); font-weight: 700;
  color: #fff;
  line-height: 1.28;
  margin-bottom: 24px;
  text-align: center;
}

/* ════════════════════════════════════════
   UPSELL v2 — TICKET HEADER TYPE OVERRIDE
════════════════════════════════════════ */
/* Inside .ticket-card__header the type label is 18px, not small-caps */
.ticket-card__header .ticket-card__type {
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
/* Bump price font in header context */
.ticket-card__header .ticket-card__price {
  font-size: 36px;
  margin-bottom: 8px;
}
/* Tighten the header-img area spacing */
.ticket-card__header-img { margin-bottom: 20px; }

/* ════════════════════════════════════════
   UPSELL v2 — BONUS-CARD BODY FLEX COL
════════════════════════════════════════ */
/* When the body has only text content (no num bubble), go full-width column */
.bonus-card__body--col {
  flex-direction: column;
  gap: 0;
}

/* ════════════════════════════════════════
   UPSELL v2 — CTA BUTTON (upsell full-width variant)
════════════════════════════════════════ */
.btn-cta--sm {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  font-size: clamp(11px, 3.8vw, 20px);
  letter-spacing: .06em;
  padding: 18px 20px;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  min-height: 64px;
}

/* ════════════════════════════════════════
   UPSELL v2 — EVENT NOTE BELOW BUTTONS
════════════════════════════════════════ */
.cta-event-note {
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}
.cta-event-note .hl-gold { color: #E2C27A; font-weight: 700; }
.sec--light .cta-event-note { color: #333; }
.sec--light .cta-event-note .hl-gold { color: #9a6d00; }

/* ════════════════════════════════════════
   UPSELL v2 — BTN-NO HINT TEXT
════════════════════════════════════════ */
.btn-no-hint {
  font-family: var(--fb);
  font-size: 13px;
  color: #fff;
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
  opacity: 0.75;
}
.sec--light .btn-no-hint {
  color: var(--primary);
  opacity: 0.85;
}

/* ════════════════════════════════════════
   UPSELL v2 — TICKET CARD LAYER FIX
   Ensure header/body content sits on top of gradient bg
════════════════════════════════════════ */
.ticket-card__header,
.ticket-card__divider,
.ticket-card__body { position: relative; z-index: 2; }

/* ════════════════════════════════════════
   UPSELL v2 — TIGHT SECTION SPACING
════════════════════════════════════════ */
.sec--tight-top { padding-top: 24px; }

/* ════════════════════════════════════════
   UPSELL v2 — SITUATION LIST LIGHT
════════════════════════════════════════ */
.situation-list { list-style: none; max-width: 740px; margin: 24px auto 0; display: flex; flex-direction: column; gap: 12px; }
