/* ============================================================
   TRADERS CASTLE — white / navy / red theme
   Clean white sections, a deep-navy hero and footer, and a single
   signal red used for every call to action, price-up figure and
   accent line. Headings in Poppins (bold, rounded), body in Inter.
   ============================================================ */

:root {
  --white:      #FFFFFF;
  --cream:      #FBF9F6;
  --bg-soft:    #F6F7FA;
  --gold:       #C9A24B;
  --navy-900:   #0E1730;
  --navy-800:   #14213D;
  --navy-700:   #1B2C52;
  --red-700:    #C62E24;
  --red-600:    #EF4136;
  --red-500:    #F45C51;
  --red-100:    #FDE7E5;
  --green-600:  #17A362;
  --ink:        #14213D;
  --ink-soft:   #6B7280;
  --ink-faint:  #9AA1B1;
  --line:       #E7E9F0;

  --shadow-sm:  0 6px 18px rgba(14, 23, 48, 0.07);
  --shadow-md:  0 18px 40px rgba(14, 23, 48, 0.12);
  --shadow-lg:  0 30px 70px rgba(14, 23, 48, 0.20);
  --shadow-xl:  0 40px 90px rgba(14, 23, 48, 0.26);
  --shadow-red: 0 20px 46px rgba(239, 65, 54, 0.28);
  --radius:     14px;
  --radius-sm:  8px;
  --maxw:       1240px;

  --display: "Poppins", "Segoe UI", sans-serif;
  --body:    "Inter", -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--white);
  color: var(--ink-soft);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
}
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
em { font-style: normal; color: var(--red-600); }
::selection { background: var(--red-100); color: var(--red-700); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red-600); color: var(--white);
  box-shadow: 0 12px 24px rgba(239, 65, 54, 0.32);
}
.btn-primary:hover { background: var(--red-700); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(239,65,54,.4); }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--red-600); color: var(--red-600); transform: translateY(-2px); }
.btn-ghost-light {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.35);
}
.btn-ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-light {
  background: var(--white); color: var(--red-700);
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}
.btn-light:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 13.5px; }
.arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.eyebrow {
  display: inline-block; font-family: var(--display); font-weight: 700;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red-600); margin-bottom: 12px;
}
.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head.center { max-width: 620px; margin-left: auto; margin-right: auto; text-align: center; }
.section-title { font-size: clamp(28px, 3.4vw, 40px); }
.section-sub { margin-top: 14px; font-size: 16px; color: var(--ink-soft); }
.section-head-light .eyebrow { color: #FFC7C2; }
.section-head-light .section-title { color: var(--white); }
.section-head-light p { color: rgba(255,255,255,.78); }

section { position: relative; }
.zone-soft { background: var(--bg-soft); }
.pad-y { padding: 100px 0; }

/* ---------- ticker (top strip, no emoji, plain data feel) ---------- */
.ticker-bar { background: var(--navy-900); overflow: hidden; height: 34px; display: flex; align-items: center; }
.ticker-track { display: flex; gap: 46px; white-space: nowrap; animation: ticker 30s linear infinite; padding-left: 100%; }
.ticker-track span { font-family: var(--body); font-size: 12.5px; font-weight: 600; letter-spacing: .03em; color: rgba(255,255,255,.72); }
.ticker-track span b { color: var(--white); margin-right: 4px; }
.ticker-track .up { color: #7FE0AE; }
.ticker-track .down { color: #FF9C93; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* ---------- header ---------- */
header {
  position: sticky; top: 0; z-index: 200; background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
header.scrolled { box-shadow: 0 8px 24px rgba(14,23,48,.08); }
.header-flex { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { width: 44px; height: 44px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-family: var(--display); font-weight: 800; font-size: 19px; color: var(--navy-900); letter-spacing: .01em; }
.logo-sub { font-family: var(--display); font-weight: 600; font-size: 10.5px; color: var(--red-600); letter-spacing: .16em; text-transform: uppercase; }

nav#mainNav { display: flex; align-items: center; gap: 34px; }
nav#mainNav ul { display: flex; align-items: center; gap: 30px; }
nav#mainNav ul li a {
  font-family: var(--display); font-weight: 600; font-size: 14.5px; color: var(--navy-900);
  position: relative; padding: 6px 0; transition: color .15s ease;
}
nav#mainNav ul li a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--red-600); transition: width .2s ease;
}
nav#mainNav ul li a:hover { color: var(--red-600); }
nav#mainNav ul li a:hover::after { width: 100%; }
nav#mainNav ul li.active a { color: var(--red-600); }
nav#mainNav ul li.active a::after { width: 100%; }

.nav-auth { display: flex; align-items: center; gap: 18px; }
.nav-auth-link { font-family: var(--display); font-weight: 600; font-size: 14.5px; color: var(--navy-900); }
.nav-auth-link:hover { color: var(--red-600); }
.nav-auth-btn {
  font-family: var(--display); font-weight: 600; font-size: 14px; color: var(--white);
  background: var(--red-600); padding: 11px 22px; border-radius: 999px;
  box-shadow: 0 10px 20px rgba(239,65,54,.28); transition: background .18s ease, transform .18s ease;
}
.nav-auth-btn:hover { background: var(--red-700); transform: translateY(-2px); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2.5px; background: var(--navy-900); border-radius: 2px; }

/* ---------- hero (light, premium) ---------- */
.hero {
  background:
    radial-gradient(1100px 480px at 82% -10%, rgba(239,65,54,.08), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  padding: 74px 0 120px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; top: -140px; right: -140px; width: 460px; height: 460px;
  border: 1px solid rgba(239,65,54,.18); border-radius: 50%;
}
.hero::after {
  content: ""; position: absolute; bottom: -200px; left: -160px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(239,65,54,.07), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1.06fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-photo-wrap { position: relative; }
.hero-visual {
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3.1; object-fit: cover; width: 100%;
  border: 6px solid var(--white);
  transition: transform .5s ease;
}

.hero-float-card {
  position: absolute; left: -34px; bottom: 34px; background: var(--white); border-radius: 16px;
  padding: 18px 22px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line); animation: floatY 4s ease-in-out infinite;
}
.hero-float-card .hf-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--red-100); color: var(--red-600);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.hero-float-card .hf-icon svg { width: 22px; height: 22px; }
.hero-float-card strong { display: block; font-family: var(--display); font-weight: 800; font-size: 17px; color: var(--ink); }
.hero-float-card span { font-size: 12px; color: var(--ink-soft); }
.hero-badge-top {
  position: absolute; top: 24px; right: -20px; background: var(--navy-900); color: var(--white);
  border-radius: 14px; padding: 12px 18px; box-shadow: var(--shadow-lg); text-align: center;
  animation: floatY 5s ease-in-out infinite .5s;
}
.hero-badge-top strong { display: block; font-family: var(--display); font-weight: 800; font-size: 20px; color: var(--red-500); }
.hero-badge-top span { font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.7); }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 700; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--red-600); margin-bottom: 20px; }
.hero-eyebrow::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: var(--red-600); }
.hero-title { font-size: clamp(36px, 4.4vw, 54px); color: var(--ink); margin-bottom: 20px; }
.hero-sub { font-size: 17px; color: var(--ink-soft); max-width: 480px; margin-bottom: 34px; }
.hero-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-meta { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.meta-item { display: flex; flex-direction: column; }
.meta-item strong { font-family: var(--display); font-size: 24px; color: var(--ink); font-weight: 800; }
.meta-item span { font-size: 12.5px; color: var(--ink-faint); }
.meta-divider { width: 1px; height: 34px; background: var(--line); }

/* ---------- perks strip (overlaps hero) ---------- */
.perks-strip { margin-top: -96px; position: relative; z-index: 5; }
.perks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.perk-card {
  background: var(--white); border-radius: var(--radius); padding: 38px 32px;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  transition: transform .22s ease, box-shadow .22s ease;
}
.perk-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.perk-icon {
  width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  background: var(--red-100); color: var(--red-600); margin-bottom: 22px;
}
.perk-icon svg { width: 28px; height: 28px; }
.perk-card h3 { font-size: 19px; margin-bottom: 12px; }
.perk-card p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 18px; }
.perk-link { font-family: var(--display); font-weight: 700; font-size: 13.5px; color: var(--red-600); display: inline-flex; align-items: center; gap: 6px; }
.perk-link:hover .arrow { transform: translateX(4px); }

/* ---------- split sections (program / about / why) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img, .split-media svg {
  border-radius: 20px; box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3.3; object-fit: cover;
  border: 6px solid var(--white); transition: transform .5s ease, box-shadow .5s ease;
}
.split-media:hover img { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.split-copy p { margin-bottom: 16px; font-size: 15.5px; }
.split-copy p:last-of-type { margin-bottom: 26px; }
.split-copy strong { color: var(--ink); }

.program-media { position: relative; }
.program-media::before {
  content: ""; position: absolute; inset: -14px; border: 2px solid var(--red-100); border-radius: 26px; z-index: -1;
}

/* about */
.about-media { position: relative; }
.about-media .badge-circle {
  position: absolute; top: -22px; right: -22px; width: 108px; height: 108px; border-radius: 50%;
  background: var(--navy-900); color: var(--white); display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); text-align: center; padding: 8px;
}
.badge-circle strong { font-family: var(--display); font-size: 22px; font-weight: 800; color: var(--red-500); }
.badge-circle span { font-size: 9.5px; letter-spacing: .04em; line-height: 1.3; margin-top: 2px; }
.about-stats { display: flex; gap: 30px; margin-top: 6px; margin-bottom: 24px; }
.about-stats div strong { display: block; font-family: var(--display); font-size: 26px; font-weight: 800; color: var(--navy-900); }
.about-stats div span { font-size: 12.5px; color: var(--ink-soft); }
.about-quote {
  border-left: 3px solid var(--red-600); padding-left: 18px; font-family: var(--display); font-weight: 600;
  font-size: 16px; color: var(--navy-900); font-style: normal; margin-top: 8px;
}

/* why choose us */
.why-section { background: var(--bg-soft); }
.why-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 68px; align-items: center; }
.why-emblem { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.why-emblem img { width: 150px; }
.why-emblem .we-name { font-family: var(--display); font-weight: 800; font-size: 24px; color: var(--navy-900); letter-spacing: .02em; }
.why-emblem .we-sub { font-family: var(--display); font-weight: 600; font-size: 12px; letter-spacing: .18em; color: var(--red-600); text-transform: uppercase; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 30px; margin: 28px 0 32px; }
.why-item { display: flex; align-items: flex-start; gap: 12px; }
.why-item .wi-icon {
  width: 38px; height: 38px; flex: none; border-radius: 10px; background: var(--white); color: var(--red-600);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
}
.why-item .wi-icon svg { width: 19px; height: 19px; }
.why-item strong { display: block; font-family: var(--display); font-size: 15px; color: var(--ink); }

/* ---------- founder / benefits section ---------- */
.founder-section { background: var(--navy-900); color: rgba(255,255,255,.78); overflow: hidden; }
.founder-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.founder-copy h2 { color: var(--white); }
.founder-copy p { color: rgba(255,255,255,.68); margin-bottom: 22px; font-size: 15.5px; }
.founder-checks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.founder-checks li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: rgba(255,255,255,.85); font-family: var(--display); font-weight: 500; }
.founder-checks .fc-icon {
  width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--red-600); color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.founder-checks .fc-icon svg { width: 13px; height: 13px; }
.founder-media { position: relative; }
.founder-media img {
  border-radius: 20px; box-shadow: var(--shadow-xl); width: 100%; aspect-ratio: 4/3.3; object-fit: cover;
  transition: transform .5s ease;
}
.founder-media:hover img { transform: scale(1.02); }
.founder-frame {
  position: absolute; inset: 18px -18px -18px 18px; border: 3px solid var(--red-600); border-radius: 20px; z-index: -1;
}
.play-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 74px; height: 74px; border-radius: 50%; background: var(--red-600); color: var(--white);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(0,0,0,.45);
  border: 4px solid rgba(255,255,255,.9); cursor: pointer; transition: transform .2s ease;
}
.play-badge:hover { transform: translate(-50%,-50%) scale(1.08); }
.play-badge svg { width: 22px; height: 22px; margin-left: 3px; }

/* ---------- results ---------- */
.results-section { padding: 100px 0; }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 30px; }
.result-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm); position: relative; transition: transform .2s ease, box-shadow .2s ease;
}
.result-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.result-badge {
  position: absolute; top: 20px; right: 20px; font-family: var(--display); font-weight: 700; font-size: 10.5px;
  letter-spacing: .08em; color: var(--green-600); background: rgba(23,163,98,.1); padding: 4px 10px; border-radius: 999px;
}
.result-pair { font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--ink-soft); margin-bottom: 8px; }
.result-profit { font-family: var(--display); font-weight: 800; font-size: 28px; color: var(--green-600); margin-bottom: 10px; }
.result-detail { font-size: 13px; color: var(--ink-soft); margin-bottom: 6px; }
.result-student { font-size: 12.5px; color: var(--ink-faint); }
.results-disclaimer { font-size: 12.5px; color: var(--ink-faint); text-align: center; margin-bottom: 50px; }

.achievements-banner { background: var(--navy-900); border-radius: 22px; padding: 46px 30px; }
.achievements-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; text-align: center; }
.ach-count { font-family: var(--display); font-weight: 800; font-size: 34px; color: var(--white); }
.achievements-grid p { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 6px; }

/* ---------- testimonials ---------- */
.testimonials-section { background: var(--bg-soft); padding: 100px 0; }
.testimonial-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stars { color: var(--red-600); font-family: var(--display); letter-spacing: 2px; margin-bottom: 14px; font-size: 14px; }
.testimonial-card p { font-size: 14px; color: var(--ink-soft); margin-bottom: 20px; }
.student-info { display: flex; align-items: center; gap: 12px; }
.student-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--navy-900); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700;
}
.student-info h4 { font-size: 14px; }
.student-info span { font-size: 12px; color: var(--ink-faint); }

/* ---------- how to apply ---------- */
.steps-grid { display: flex; flex-direction: column; gap: 30px; }
.step-row { display: flex; gap: 22px; align-items: flex-start; }
.step-num {
  flex: none; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 800; font-size: 17px; color: var(--white); background: var(--navy-900);
}
.step-row:nth-child(2) .step-num { background: var(--red-600); }
.step-row:nth-child(3) .step-num { background: var(--navy-700); }
.step-row h3 { font-size: 18.5px; margin-bottom: 6px; }
.step-row p { font-size: 14.5px; }
.step-row a { color: var(--red-600); font-weight: 600; }

/* ---------- faq ---------- */
.faq-container { display: flex; flex-direction: column; gap: 14px; max-width: 780px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question {
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; cursor: pointer;
  font-family: var(--display); font-weight: 600; font-size: 15.5px; color: var(--ink);
}
.faq-icon { color: var(--red-600); font-size: 20px; font-weight: 700; transition: transform .2s ease; flex: none; margin-left: 14px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 24px 20px; font-size: 14.5px; }

/* ---------- publications ---------- */
.pub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pub-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.pub-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.pub-media { aspect-ratio: 4/3; overflow: hidden; }
.pub-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pub-card:hover .pub-media img { transform: scale(1.08); }
.pub-body { padding: 22px 22px 26px; }
.pub-tag { font-family: var(--display); font-weight: 700; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--red-600); }
.pub-body h3 { font-size: 17px; margin: 10px 0 12px; }
.pub-read { font-family: var(--display); font-weight: 700; font-size: 13px; color: var(--navy-900); display: inline-flex; align-items: center; gap: 6px; }

/* ---------- contact / get started ---------- */
.contact-section { padding: 100px 0 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 0.92fr; gap: 0; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); }
.contact-info { background: var(--white); padding: 64px 54px; border: 1px solid var(--line); border-right: none; }
.contact-info p.lead { font-size: 15.5px; margin-bottom: 34px; }
.contact-row { display: flex; gap: 18px; margin-bottom: 28px; }
.contact-row .ci-icon {
  width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--red-100); color: var(--red-600);
  display: flex; align-items: center; justify-content: center;
}
.contact-row .ci-icon svg { width: 21px; height: 21px; }
.contact-row h4 { font-family: var(--display); font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.contact-row a, .contact-row span { font-size: 14.5px; color: var(--ink-soft); }
.contact-row a:hover { color: var(--red-600); }

.contact-cta {
  background: linear-gradient(150deg, var(--red-600), var(--red-700));
  padding: 64px 54px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden;
}
.contact-cta::before { content:""; position: absolute; width: 300px; height: 300px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; top: -80px; right: -100px; }
.contact-cta h2 { color: var(--white); font-size: 30px; margin-bottom: 14px; position: relative; z-index: 1; }
.contact-cta p { color: rgba(255,255,255,.86); font-size: 15px; margin-bottom: 30px; position: relative; z-index: 1; }
.contact-cta .btn { position: relative; z-index: 1; align-self: flex-start; }

/* ---------- footer (premium) ---------- */
footer {
  background:
    radial-gradient(900px 400px at 15% 0%, rgba(239,65,54,.10), transparent 60%),
    linear-gradient(175deg, var(--navy-900) 0%, #0A1024 100%);
  color: rgba(255,255,255,.62); margin-top: 90px; position: relative; overflow: hidden;
}
.footer-newsletter { border-bottom: 1px solid rgba(255,255,255,.08); padding: 54px 0; }
.footer-newsletter-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.footer-newsletter h3 { color: var(--white); font-size: 24px; margin-bottom: 8px; }
.footer-newsletter p { font-size: 14.5px; color: rgba(255,255,255,.55); }
.footer-newsletter-form { display: flex; gap: 10px; flex: none; }
.footer-newsletter-form input {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 999px;
  padding: 14px 20px; color: var(--white); font-family: var(--body); font-size: 14px; width: 280px; outline: none;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter-form input:focus { border-color: var(--red-500); }

.footer-top { padding: 64px 0 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; position: relative; z-index: 1; }
.footer-brand .logo-name, .footer-brand .logo-sub { color: var(--white); }
.footer-brand p { margin-top: 16px; font-size: 14px; max-width: 300px; }
.footer-badges { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px; padding: 7px 14px; font-size: 11.5px; font-family: var(--display); font-weight: 600; color: rgba(255,255,255,.75);
}
.footer-badge svg { width: 13px; height: 13px; color: var(--red-500); }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; transition: background .2s ease, transform .2s ease;
}
.footer-social a:hover { background: var(--red-600); transform: translateY(-3px); border-color: var(--red-600); }
.footer-social svg { width: 16px; height: 16px; color: var(--white); }
.footer-col h5 { font-family: var(--display); color: var(--white); font-size: 14.5px; margin-bottom: 18px; letter-spacing: .02em; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; }
.footer-col a:hover { color: var(--red-500); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; margin-bottom: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--red-500); flex: none; margin-top: 2px; }
.footer-contact-stack { display: flex; flex-direction: column; gap: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; justify-content: space-between;
  align-items: center; font-size: 13px; position: relative; z-index: 1; flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--red-500); }

/* ---------- chat fab ---------- */
.chat-fab {
  position: fixed; left: 26px; bottom: 26px; z-index: 300; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 26px rgba(37,211,102,.42); transition: transform .2s ease;
}
.chat-fab:hover { transform: scale(1.08); }

/* ---------- page loader ---------- */
.page-loader { position: fixed; inset: 0; z-index: 999; background: var(--navy-900); display: flex; align-items: center; justify-content: center; transition: opacity .5s ease, visibility .5s ease; }
.page-loader.hide { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-img { width: 64px; height: 64px; margin: 0 auto 14px; animation: pulse 1.4s ease-in-out infinite; }
.loader-tagline { font-family: var(--display); font-weight: 600; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: .75; } }

/* ---------- lightbox (kept, restyled) ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(14,23,48,.92); z-index: 500; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lb-content { max-width: 900px; width: 90%; }
.lb-content img { border-radius: 12px; width: 100%; }
.lb-caption { color: var(--white); text-align: center; margin-top: 14px; font-family: var(--display); }
.lb-close, .lb-prev, .lb-next { position: absolute; background: rgba(255,255,255,.1); color: var(--white); border: none; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 18px; }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- pricing ---------- */
.pricing-section { padding: 100px 0; background: var(--bg-soft); }
.pricing-card {
  max-width: 880px; margin: 0 auto; background: var(--white); border-radius: 26px; overflow: hidden;
  box-shadow: var(--shadow-xl); display: grid; grid-template-columns: 1.2fr 1fr; border: 1px solid var(--line);
}
.pricing-info { padding: 50px 46px; }
.pricing-info h3 { font-size: 26px; margin-bottom: 14px; }
.pricing-info p { font-size: 15px; margin-bottom: 22px; }
.pricing-features { display: flex; flex-direction: column; gap: 13px; }
.pricing-features li { display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: var(--ink); font-weight: 500; }
.pricing-features .pf-icon {
  width: 22px; height: 22px; min-width: 22px; min-height: 22px; max-width: 22px; max-height: 22px; flex: none; border-radius: 50%; background: var(--red-100); color: var(--red-600);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.pricing-features .pf-icon svg { width: 12px; height: 12px; max-width: 12px; max-height: 12px; }
.pricing-panel {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  padding: 50px 40px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
}
.pricing-panel::before { content:""; position: absolute; width: 220px; height: 220px; border: 1px solid rgba(239,65,54,.3); border-radius: 50%; top: -60px; right: -70px; }
.pricing-badge {
  font-family: var(--display); font-weight: 700; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); background: var(--red-600); padding: 6px 16px; border-radius: 999px; margin-bottom: 18px;
  position: relative; z-index: 1;
}
.price-strike { font-size: 15px; color: rgba(255,255,255,.45); text-decoration: line-through; position: relative; z-index: 1; }
.price-amount { font-family: var(--display); font-weight: 800; font-size: 46px; color: var(--white); margin: 4px 0 4px; position: relative; z-index: 1; }
.price-amount span { font-size: 16px; font-weight: 600; color: rgba(255,255,255,.6); }
.price-note { font-size: 12.5px; color: rgba(255,255,255,.6); margin-bottom: 26px; position: relative; z-index: 1; }
.pricing-btns { display: flex; flex-direction: column; gap: 12px; width: 100%; position: relative; z-index: 1; }
.pricing-btns .btn { justify-content: center; width: 100%; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity .6s ease, transform .6s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .6s ease, transform .6s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   AUTH / MEMBER TICKET PAGES (register.php, login.php)
   Premium navy boarding-pass aesthetic with gold foil accents.
   ============================================================ */
.ticket-page {
  min-height: 100vh; position: relative; overflow-x: hidden;
  background: var(--navy-900);
  font-family: var(--body);
}
.ticket-backdrop {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(900px 520px at 12% -10%, rgba(239,65,54,.20), transparent 60%),
    radial-gradient(760px 480px at 92% 8%, rgba(201,162,75,.16), transparent 55%),
    radial-gradient(1000px 700px at 50% 120%, rgba(27,44,82,.9), transparent 60%),
    linear-gradient(180deg, var(--navy-900) 0%, #0A1226 100%);
}
.ticket-backdrop::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 75%);
}
.ticket-backdrop::after {
  content: ""; position: absolute; top: -260px; right: -220px; width: 620px; height: 620px;
  border: 1px solid rgba(201,162,75,.22); border-radius: 50%;
}

.auth-wrap {
  position: relative; z-index: 2; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 64px 20px;
}

.ticket-brand {
  display: flex; align-items: center; gap: 12px; margin-bottom: 36px;
}
.ticket-brand-logo { height: 40px; width: auto; }

.member-ticket {
  position: relative; width: 100%; max-width: 560px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px; padding: 46px 48px 40px;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,.03) inset;
  animation: ticketRise .5s cubic-bezier(.22,.61,.36,1);
}
.member-ticket-sm { max-width: 470px; }
@keyframes ticketRise { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

.member-ticket::before {
  content: ""; position: absolute; left: 0; right: 0; top: 128px;
  border-top: 2px dashed rgba(255,255,255,.16);
}
.ticket-notch {
  position: absolute; top: 122px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--navy-900); box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); z-index: 3;
}
.ticket-notch-l { left: -13px; }
.ticket-notch-r { right: -13px; }

.ticket-head { padding-bottom: 30px; }
.ticket-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 700;
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.ticket-eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--red-600); box-shadow: 0 0 0 4px rgba(239,65,54,.18); }
.ticket-head h1 { color: var(--white); font-size: clamp(24px, 3vw, 30px); margin-bottom: 10px; }
.ticket-head p { color: rgba(255,255,255,.62); font-size: 14.5px; line-height: 1.6; }

.ticket-alert {
  background: rgba(239,65,54,.12); border: 1px solid rgba(239,65,54,.35); border-radius: 12px;
  padding: 16px 18px; margin: 26px 0 4px; color: #FFD9D6;
}
.ticket-alert strong { display: block; font-family: var(--display); font-size: 13.5px; margin-bottom: 6px; color: var(--white); }
.ticket-alert ul { padding-left: 18px; list-style: disc; }
.ticket-alert li { font-size: 13.5px; line-height: 1.6; }

.ticket-form { padding-top: 30px; display: flex; flex-direction: column; gap: 18px; }
.tf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.tf-field { display: flex; flex-direction: column; gap: 8px; }
.tf-field span { font-family: var(--display); font-weight: 600; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.tf-field input, .tf-field select {
  appearance: none; -webkit-appearance: none; width: 100%;
  background: rgba(255,255,255,.055); border: 1.5px solid rgba(255,255,255,.14); border-radius: 12px;
  padding: 14px 16px; font-family: var(--body); font-size: 14.5px; font-weight: 500; color: var(--white);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.tf-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A24B' stroke-width='2.4'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 42px;
}
.tf-field select option { background: var(--navy-800); color: var(--white); }
.tf-field input::placeholder { color: rgba(255,255,255,.32); }
.tf-field input:focus, .tf-field select:focus {
  outline: none; border-color: var(--gold); background: rgba(255,255,255,.09);
  box-shadow: 0 0 0 4px rgba(201,162,75,.16);
}

.btn-ticket {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: .01em;
  background: linear-gradient(135deg, var(--red-600), var(--red-700)); color: var(--white);
  border: none; border-radius: 12px; padding: 16px 24px; margin-top: 6px; cursor: pointer;
  box-shadow: 0 16px 30px rgba(239,65,54,.32); transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-decoration: none;
}
.btn-ticket:hover { transform: translateY(-2px); box-shadow: 0 20px 38px rgba(239,65,54,.42); }
.btn-ticket:active { transform: translateY(0); }
.btn-ticket-ghost {
  background: transparent; border: 1.5px solid rgba(255,255,255,.18); box-shadow: none; color: var(--white); margin-top: 26px;
}
.btn-ticket-ghost:hover { border-color: var(--gold); background: rgba(201,162,75,.08); box-shadow: none; color: var(--gold); }

.ticket-foot { text-align: center; margin-top: 26px; font-size: 13.5px; color: rgba(255,255,255,.5); }
.ticket-foot a { color: var(--gold); font-weight: 600; }
.ticket-foot a:hover { text-decoration: underline; }

.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 28px; }
.dash-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 14px;
  padding: 18px 20px; display: flex; flex-direction: column; gap: 6px;
}
.dash-label { font-family: var(--display); font-weight: 600; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.dash-card strong { color: var(--white); font-size: 14.5px; font-weight: 600; word-break: break-word; }

@media (max-width: 560px) {
  .member-ticket { padding: 36px 24px 32px; }
  .tf-row, .dash-grid { grid-template-columns: 1fr; }
  .member-ticket::before, .ticket-notch { display: none; }
}

/* ============================================================
   MEMBER DASHBOARD (dashboard.php)
   Premium navy/gold desk with courses catalogue.
   ============================================================ */
.desk-page { background: var(--bg-soft); min-height: 100vh; }
.desk-topbar {
  background: var(--navy-900); position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.desk-topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.desk-brand { display: flex; align-items: center; gap: 12px; }
.desk-brand-logo { height: 34px; width: auto; }
.desk-nav-right { display: flex; align-items: center; gap: 18px; }
.desk-chip {
  display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); border-radius: 999px; padding: 6px 16px 6px 6px;
}
.desk-avatar {
  width: 32px; height: 32px; border-radius: 50%; background: var(--red-600); color: var(--white);
  font-family: var(--display); font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center;
}
.desk-chip span { font-family: var(--display); font-weight: 600; font-size: 13.5px; color: var(--white); }
.desk-logout {
  font-family: var(--display); font-weight: 600; font-size: 13.5px; color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 9px 18px; transition: all .18s ease;
}
.desk-logout:hover { color: var(--white); border-color: var(--red-600); background: rgba(239,65,54,.12); }

.desk-shell { max-width: var(--maxw); margin: 0 auto; padding: 44px 28px 100px; }

.desk-hero {
  position: relative; overflow: hidden; border-radius: 24px; padding: 46px 44px;
  background: linear-gradient(150deg, var(--navy-900), var(--navy-700) 68%);
  box-shadow: var(--shadow-xl); margin-bottom: 30px;
}
.desk-hero::before { content:""; position:absolute; top:-120px; right:-100px; width:340px; height:340px; border:1px solid rgba(201,162,75,.28); border-radius:50%; }
.desk-hero::after { content:""; position:absolute; bottom:-160px; left:20%; width:300px; height:300px; background: radial-gradient(circle, rgba(239,65,54,.16), transparent 70%); }
.desk-hero-inner { position: relative; z-index: 2; }
.desk-tag {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 700;
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold);
  background: rgba(201,162,75,.14); border: 1px solid rgba(201,162,75,.3); padding: 7px 15px; border-radius: 999px;
  margin-bottom: 20px;
}
.desk-hero h1 { color: var(--white); font-size: clamp(24px, 3.2vw, 34px); margin-bottom: 12px; max-width: 640px; }
.desk-hero p { color: rgba(255,255,255,.65); max-width: 560px; font-size: 15px; margin-bottom: 30px; }

.desk-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; position: relative; z-index: 2; }
.desk-stat {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 16px;
  padding: 18px 20px;
}
.desk-stat-label { font-family: var(--display); font-weight: 600; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 8px; display: block; }
.desk-stat-value { font-family: var(--display); font-weight: 700; font-size: 16.5px; color: var(--white); }

.desk-section-head { display: flex; align-items: flex-end; justify-content: space-between; margin: 46px 0 24px; gap: 20px; flex-wrap: wrap; }
.desk-section-head h2 { font-size: clamp(21px, 2.4vw, 27px); }
.desk-section-head p { color: var(--ink-soft); font-size: 14.5px; margin-top: 6px; }
.desk-section-badge {
  font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--red-600); background: var(--red-100); padding: 7px 14px; border-radius: 999px; white-space: nowrap;
}

.course-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 900px; margin: 0 auto; }
.course-card {
  background: var(--white); border-radius: 20px; border: 1px solid var(--line); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; display: flex; flex-direction: column;
}
.course-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.course-card.is-flagship { border-color: rgba(201,162,75,.5); box-shadow: 0 0 0 1px rgba(201,162,75,.25), var(--shadow-md); }
.course-media {
  position: relative; height: 152px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, var(--navy-900), var(--navy-700));
  overflow: hidden;
}
.course-media-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
}
.course-media::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(140deg, rgba(11,20,38,.82), rgba(11,20,38,.45) 55%, rgba(11,20,38,.75));
}
.course-media-icon {
  position: absolute; bottom: 14px; left: 14px; z-index: 3; width: 34px; height: 34px; border-radius: 10px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(2px);
}
.course-media-icon svg { width: 18px; height: 18px; color: var(--gold); }
.course-media svg { width: 52px; height: 52px; color: var(--gold); position: relative; z-index: 2; }
.course-media::before { content:""; position:absolute; inset:0; z-index: 2; background: radial-gradient(circle at 80% 0%, rgba(239,65,54,.25), transparent 60%); }
.course-ribbon {
  position: absolute; top: 14px; left: 14px; z-index: 3; font-family: var(--display); font-weight: 700;
  font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
}
.course-ribbon.flagship { background: var(--gold); color: var(--navy-900); }
.course-ribbon.new { background: var(--red-600); color: var(--white); }
.course-ribbon.owned { background: var(--green-600); color: var(--white); }
.course-lock {
  position: absolute; top: 14px; right: 14px; z-index: 3; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center;
}
.course-lock svg { width: 14px; height: 14px; color: var(--white); }

.course-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.course-cat { font-family: var(--display); font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--red-600); }
.course-body h3 { font-size: 18px; line-height: 1.3; }
.course-body p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; flex: 1; }
.course-meta { display: flex; align-items: center; gap: 14px; font-size: 12.5px; color: var(--ink-faint); font-weight: 500; }
.course-meta span { display: inline-flex; align-items: center; gap: 5px; }
.course-meta svg { width: 14px; height: 14px; }
.course-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 6px; padding-top: 16px; border-top: 1px solid var(--line); }
.course-price { display: flex; flex-direction: column; }
.course-price .strike { font-size: 12px; color: var(--ink-faint); text-decoration: line-through; }
.course-price .amount { font-family: var(--display); font-weight: 800; font-size: 19px; color: var(--ink); }
.btn-buy {
  display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-weight: 700; font-size: 13.5px;
  background: var(--red-600); color: var(--white); padding: 11px 18px; border-radius: 999px;
  box-shadow: 0 10px 20px rgba(239,65,54,.28); transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-buy:hover { background: var(--red-700); transform: translateY(-2px); box-shadow: 0 14px 26px rgba(239,65,54,.36); }
.btn-owned {
  display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-weight: 700; font-size: 13.5px;
  background: var(--bg-soft); color: var(--ink-soft); padding: 11px 18px; border-radius: 999px; border: 1px solid var(--line);
}

.desk-lowerbar {
  margin-top: 54px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 22px;
}
.desk-panel {
  background: var(--white); border-radius: 18px; border: 1px solid var(--line); padding: 28px 30px; box-shadow: var(--shadow-sm);
}
.desk-panel h3 { font-size: 17px; margin-bottom: 16px; }
.desk-steps { display: flex; flex-direction: column; gap: 16px; }
.desk-step { display: flex; align-items: flex-start; gap: 14px; }
.desk-step-num {
  width: 30px; height: 30px; border-radius: 50%; background: var(--red-100); color: var(--red-600);
  font-family: var(--display); font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; flex: none;
}
.desk-step strong { display: block; font-family: var(--display); font-size: 14.5px; color: var(--ink); margin-bottom: 3px; }
.desk-step span { font-size: 13.5px; color: var(--ink-soft); }
.desk-panel-dark { background: linear-gradient(150deg, var(--navy-900), var(--navy-700)); color: var(--white); border: none; }
.desk-panel-dark h3 { color: var(--white); }
.desk-panel-dark p { color: rgba(255,255,255,.65); font-size: 14px; margin-bottom: 20px; line-height: 1.6; }

@media (max-width: 980px) {
  .course-grid { grid-template-columns: repeat(2, 1fr); }
  .desk-stats { grid-template-columns: 1fr; }
  .desk-lowerbar { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .course-grid { grid-template-columns: 1fr; }
  .desk-hero { padding: 34px 24px; }
  .desk-shell { padding: 30px 18px 70px; }
  .desk-nav-right { gap: 10px; }
  .desk-chip span { display: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .why-list { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pricing-card { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .hero-grid, .split, .why-grid, .founder-grid, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .perks-grid, .results-grid, .testimonial-grid, .pub-grid { grid-template-columns: repeat(2, 1fr); }
  .achievements-grid { grid-template-columns: repeat(3, 1fr); row-gap: 26px; }
  .contact-info { border-right: 1px solid var(--line); }
  .hero { padding-bottom: 100px; }
  .perks-strip { margin-top: -60px; }
}
@media (max-width: 860px) {
  nav#mainNav {
    position: fixed; top: 84px; left: 0; right: 0; background: var(--white); flex-direction: column;
    align-items: stretch; gap: 0; padding: 10px 28px 26px; border-bottom: 1px solid var(--line);
    transform: translateY(-140%); opacity: 0; transition: transform .25s ease, opacity .2s ease; box-shadow: var(--shadow-md);
  }
  nav#mainNav.open { transform: translateY(0); opacity: 1; }
  nav#mainNav ul { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  nav#mainNav ul li { width: 100%; }
  nav#mainNav ul li a { display: block; padding: 12px 0; }
  .nav-auth { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 14px; width: 100%; }
  .nav-auth-btn { text-align: center; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  .perks-grid, .results-grid, .testimonial-grid, .pub-grid { grid-template-columns: 1fr; }
  .achievements-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info, .contact-cta { padding: 44px 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .footer-newsletter-inner { flex-direction: column; align-items: flex-start; }
  .footer-newsletter-form { width: 100%; }
  .footer-newsletter-form input { width: 100%; }
  .hero-float-card { left: 10px; bottom: 14px; padding: 12px 16px; }
  .hero-badge-top { right: 6px; }
}
