/* =============================================================================
   TSA Online — app.css
   Layers: 1. Design tokens  2. Reset & base  3. Typography  4. Layout utils
           5. Buttons  6. Navigation  7. Section base  8. UI components
           9. Page sections  10. Modals & overlays  11. Fixed/floating UI
          12. Animations
   ============================================================================= */


/* ============================================================================
   1. DESIGN TOKENS (CSS custom properties)
   ============================================================================ */
:root {
  /* Brand colours */
  --blue:           #195EF6;
  --blue-dark:      #0F47C7;
  --blue-light:     #E8F0FF;
  --blue-ultra:     #F4F7FF;
  --navy:           #0A1736;
  --navy-2:         #14223F;
  --gold:           #FFC83D;
  --gold-dark:      #E0A815;
  --green:          #10B981;
  --red:            #EF4444;

  /* Neutral text */
  --text-muted:     #5A6478;
  --text-light:     #8A93A6;

  /* Surfaces & borders */
  --border:         #E5EAF4;
  --bg-light:       #F6F9FF;

  /* Shadows */
  --shadow-sm:      0 2px 8px rgba(10, 23, 54, 0.06);
  --shadow-md:      0 8px 24px rgba(10, 23, 54, 0.08);
  --shadow-lg:      0 20px 50px rgba(25, 94, 246, 0.18);
  --shadow-glow:    0 12px 40px rgba(25, 94, 246, 0.30);

  /* Border radii */
  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      28px;
}


/* ============================================================================
   2. RESET & BASE
   ============================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--navy);
  background: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }


/* ============================================================================
   3. TYPOGRAPHY
   ============================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}

h2 { font-size: clamp(1.85rem, 3.5vw,  2.75rem); }
h3 { font-size: clamp(1.35rem, 2.2vw,  1.65rem); font-weight: 700; }


/* ============================================================================
   4. LAYOUT UTILITIES
   ============================================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.center { text-align: center; }
.center .section-lead  { margin-left: auto; margin-right: auto; }
.center .section-title { margin-left: auto; margin-right: auto; }


/* ============================================================================
   5. BUTTONS
   ============================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(25, 94, 246, .38);
}

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 12px 40px rgba(255, 200, 61, 0.45);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-lg { padding: 20px 36px; font-size: 1.05rem; }


/* ============================================================================
   6. NAVIGATION
   ============================================================================ */
nav.main-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(10, 23, 54, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  box-shadow: 0 4px 14px rgba(25, 94, 246, .35);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

@media (max-width: 880px) {
  .nav-links { display: none; }
}


/* ============================================================================
   7. SECTION BASE STYLES
   ============================================================================ */
section {
  padding: 90px 0;
  position: relative;
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
}

/* Label above section headings */
.section-tag {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
  max-width: 800px;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.06rem;
  max-width: 720px;
  margin-bottom: 50px;
}


/* ============================================================================
   8. UI COMPONENTS
   ============================================================================ */

/* --- Pill badge ------------------------------------------------------------ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-ultra);
  border: 1px solid #DDE7FF;
  color: var(--blue-dark);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.pill .star { color: var(--gold); }

/* --- Cards (generic base) -------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #C8D5F4;
}

/* --- Icon box -------------------------------------------------------------- */
.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--blue-ultra);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

/* --- Avatar (initials circle) ---------------------------------------------- */
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #6FA7FF);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .92rem;
}

/* --- Star rating ----------------------------------------------------------- */
.stars {
  color: var(--gold);
  font-size: .9rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

/* --- Quote card ------------------------------------------------------------ */
.quote-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.quote-card h4 { margin-bottom: 18px; }
.quote-card .q {
  display: block;
  padding: 12px 16px;
  background: var(--blue-ultra);
  border-left: 3px solid var(--blue);
  border-radius: 8px;
  margin-bottom: 10px;
  color: var(--navy);
  font-style: italic;
  font-size: .95rem;
  font-weight: 500;
}
.quote-card .then {
  color: var(--blue);
  font-weight: 700;
  margin-top: 18px;
  margin-bottom: 14px;
  text-align: center;
}

/* --- Outcome / checklist item ---------------------------------------------- */
.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform .2s, border-color .2s;
}
.outcome-item:hover {
  transform: translateX(4px);
  border-color: var(--blue);
}
.outcome-item .check {
  width: 24px;
  height: 24px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: .7rem;
  margin-top: 2px;
}
.outcome-item span {
  color: var(--navy);
  font-weight: 500;
  font-size: .98rem;
}

/* --- Testimonial card ------------------------------------------------------ */
.t-card {
  background: linear-gradient(180deg, #fff 0%, #FAFCFF 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.t-quote-mark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--blue);
  opacity: .14;
  position: absolute;
  top: 18px;
  right: 22px;
}
.t-card .text {
  color: var(--text-muted);
  font-size: .96rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.t-author { display: flex; align-items: center; gap: 14px; }
.t-author .name {
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
  line-height: 1.2;
}
.t-author .role { font-size: .82rem; color: var(--text-muted); }

/* --- "Who it's for" card --------------------------------------------------- */
.who-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.who-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #C8D5F4;
}
.who-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--blue-ultra);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.who-card p { color: var(--navy); font-weight: 600; line-height: 1.4; font-size: .98rem; }

/* --- Curriculum unit card -------------------------------------------------- */
.unit {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.unit::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), #6FA7FF);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.unit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #D5DEF7; }
.unit:hover::before { transform: scaleX(1); }

.unit-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-ultra);
  color: var(--blue);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.unit h3 { margin-bottom: 10px; font-size: 1.25rem; }
.unit-desc { color: var(--text-muted); font-size: .94rem; margin-bottom: 16px; }
.unit-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.unit-tags span {
  background: #F0F4FA;
  color: var(--navy);
  font-size: .78rem;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 500;
}
.unit-end {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  font-size: .9rem;
  color: var(--blue);
  font-weight: 600;
}

/* --- "Why us" card --------------------------------------------------------- */
.why-card {
  background: linear-gradient(160deg, #fff, #F4F7FF);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: transform .25s, box-shadow .25s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card .icon-box {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(25, 94, 246, .25);
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-card p  { color: var(--text-muted); font-size: .94rem; }

/* Full-width accent variant */
.why-card.wide {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--blue), #4F84FF);
  color: #fff;
  border: none;
}
.why-card.wide .icon-box { background: rgba(255, 255, 255, .18); box-shadow: none; }
.why-card.wide h3 { color: #fff; }
.why-card.wide p  { color: rgba(255, 255, 255, .9); }
@media (max-width: 980px) { .why-card.wide { grid-column: span 2; } }
@media (max-width: 640px) { .why-card.wide { grid-column: span 1; } }

/* --- Bonus card ------------------------------------------------------------ */
.bonus-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }

.bonus-tag {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: .04em;
}
.bonus-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--blue);
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: .05em;
}
.bonus-card h4  { font-size: 1.12rem; margin-bottom: 8px; color: var(--navy); }
.bonus-card p   { color: var(--text-muted); font-size: .92rem; }

/* Dark variant */
.bonus-card.dark {
  background: linear-gradient(135deg, var(--navy), #14223F);
  color: #fff;
  border-color: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bonus-card.dark .bonus-num { color: var(--gold); }
.bonus-card.dark h4 { color: #fff; font-size: 1.6rem; }
.bonus-card.dark p  { color: rgba(255, 255, 255, .8); }

/* --- Objection / FAQ card -------------------------------------------------- */
.obj-card {
  background: var(--bg-light);
  border-left: 3px solid var(--blue);
  padding: 24px 26px;
  border-radius: var(--radius-md);
  transition: transform .25s, box-shadow .25s;
}
.obj-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.obj-q {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.obj-q::before {
  content: "\201C";
  color: var(--blue);
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.2em;
  margin-right: 4px;
}
.obj-q::after {
  content: "\201D";
  color: var(--blue);
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.2em;
  margin-left: 4px;
}
.obj-a { color: var(--text-muted); font-size: .96rem; }

/* --- FAQ accordion --------------------------------------------------------- */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item.open {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(25, 94, 246, .10);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 26px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-ultra);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 800;
  transition: transform .25s, background .25s, color .25s;
  flex-shrink: 0;
}
.faq-item.open .faq-q .ico {
  background: var(--blue);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  color: var(--text-muted);
  font-size: .96rem;
  padding: 0 26px;
}
.faq-item.open .faq-a {
  max-height: 320px;
  padding: 0 26px 22px;
}


/* --- Countdown (mini — inside urgency bar) --------------------------------- */
.countdown-mini {
  display: inline-flex;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}
.countdown-mini span {
  background: rgba(255, 255, 255, .12);
  padding: 3px 8px;
  border-radius: 6px;
}

/* --- Countdown boxes (full section) --------------------------------------- */
.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 30px 0 40px;
  flex-wrap: wrap;
}
.cd-box {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  text-align: center;
  min-width: 110px;
}
.cd-box .v {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.cd-box .l {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .75);
  margin-top: 8px;
}


/* --- Code window ----------------------------------------------------------- */
.code-window {
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(10, 23, 54, .30);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-6deg) rotateX(3deg);
  transition: transform .5s ease;
}
.code-window:hover { transform: perspective(1400px) rotateY(-3deg) rotateX(1.5deg); }

.code-header {
  background: #0F1F45;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.code-header .dot { width: 12px; height: 12px; border-radius: 50%; }
.code-header .dot.r { background: #FF5F57; }
.code-header .dot.y { background: #FEBC2E; }
.code-header .dot.g { background: #28C840; }
.code-header .filename {
  margin-left: 12px;
  color: rgba(255, 255, 255, .55);
  font-size: .82rem;
  font-family: 'JetBrains Mono', monospace;
}

.code-body {
  padding: 22px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.88rem;
  line-height: 1.85;
  color: #DCE3F2;
}
.code-body .kw  { color: #C792EA; }
.code-body .fn  { color: #82AAFF; }
.code-body .str { color: #C3E88D; }
.code-body .com { color: #5C708D; font-style: italic; }
.code-body .pn  { color: #F78C6C; }
.code-body .ln  {
  color: #4A5C84;
  user-select: none;
  display: inline-block;
  width: 22px;
  text-align: right;
  margin-right: 14px;
}

/* --- Pricing card ---------------------------------------------------------- */
.pricing-card {
  background: #fff;
  border-radius: 28px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 30px 80px rgba(10, 23, 54, .10);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.pricing-ribbon {
  background: linear-gradient(90deg, var(--blue), #4F84FF);
  color: #fff;
  padding: 14px 32px;
  text-align: center;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .04em;
}
.pricing-body { padding: 42px 44px; }
@media (max-width: 640px) { .pricing-body { padding: 32px 24px; } }
.pricing-body h3 { text-align: center; font-size: 1.55rem; margin-bottom: 6px; }
.pricing-body .sub { text-align: center; color: var(--text-muted); margin-bottom: 26px; }

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.price-old {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 1.4rem;
  font-weight: 500;
}
.price-new {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.price-save { text-align: center; margin-bottom: 28px; }
.price-save .badge {
  display: inline-block;
  background: #ECFDF5;
  color: #047857;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
}

.includes h5 {
  text-align: center;
  color: var(--text-muted);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
  font-weight: 600;
}
.includes ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 32px;
}
@media (max-width: 640px) { .includes ul { grid-template-columns: 1fr; } }
.includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--navy);
  font-size: .94rem;
}
.includes li::before { content: "✓"; color: var(--green); font-weight: 800; flex-shrink: 0; }

.pricing-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* --- Hero price card (floating) ------------------------------------------- */
.hero-price-card {
  position: absolute;
  bottom: -34px; right: -18px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(10, 23, 54, .18);
  padding: 18px 22px;
  width: 260px;
  border: 1px solid var(--border);
  z-index: 2;
}
.hero-price-card .label {
  font-size: .72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.hero-price-card .old { text-decoration: line-through; color: var(--text-light); font-weight: 500; margin-right: 8px; }
.hero-price-card .new {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-top: 4px;
}
.hero-price-card .save {
  display: inline-block;
  background: #ECFDF5;
  color: #047857;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: 10px;
}
@media (max-width: 980px) {
  .code-window { transform: none; }
  .hero-price-card { position: relative; bottom: 0; right: 0; width: 100%; margin-top: 16px; }
}


/* ============================================================================
   9. PAGE SECTIONS
   ============================================================================ */

/* --- Urgency bar (top strip) ----------------------------------------------- */
.urgency-bar {
  background: linear-gradient(90deg, #0A1736 0%, #143187 50%, #0A1736 100%);
  color: #fff;
  padding: 10px 24px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.urgency-bar strong { color: var(--gold); }
.urgency-bar .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255, 200, 61, .7);
  animation: pulse 1.8s infinite;
}

/* --- Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(900px 600px at 90% -10%, rgba(25, 94, 246, .10), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(255, 200, 61, .10), transparent 55%),
    #FFFFFF;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background-image:
    linear-gradient(rgba(10, 23, 54, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 23, 54, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero { padding: 60px 0 80px; }
}

.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 22px;
  color: var(--navy);
}
.hero h1 .highlight {
  background: linear-gradient(120deg,
    transparent 0%, transparent 30%,
    rgba(255, 200, 61, .45) 30%, rgba(255, 200, 61, .45) 100%);
  padding: 0 6px;
}
.hero h1 .blue { color: var(--blue); }

.hero-sub { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 28px; max-width: 580px; }

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }

.hero-micro {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-micro .checks { color: var(--green); font-weight: 700; }

.hero-stats { display: flex; gap: 36px; margin-top: 38px; flex-wrap: wrap; }
.hero-stats .stat .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.65rem;
  color: var(--navy);
  line-height: 1;
}
.hero-stats .stat .num span { color: var(--blue); }
.hero-stats .stat .label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

.hero-visual { position: relative; }

/* --- Problem section (dark bg) -------------------------------------------- */
.problem {
  background: linear-gradient(180deg, #0A1736 0%, #14223F 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.problem::after {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(25, 94, 246, .25), transparent 60%);
  top: -200px; right: -200px;
  border-radius: 50%;
  pointer-events: none;
}
.problem h2          { color: #fff; }
.problem .section-tag  { color: var(--gold); }
.problem .section-lead { color: rgba(255, 255, 255, .75); }
.problem-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) { .problem-grid { grid-template-columns: 1fr; gap: 40px; } }
.problem p { color: rgba(255, 255, 255, .82); margin-bottom: 18px; font-size: 1.02rem; }
.problem .you-will {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
}
.problem .you-will h4 {
  color: var(--gold);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.problem .you-will li {
  list-style: none;
  color: #fff;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.problem .you-will li:last-child { border-bottom: none; }
.problem .you-will li::before { content: "→"; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* --- Offer section --------------------------------------------------------- */
.offer { background: var(--bg-light); }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 880px) { .offer-grid { grid-template-columns: 1fr; gap: 40px; } }
.offer p { color: var(--text-muted); margin-bottom: 16px; }

/* --- Who it's for section -------------------------------------------------- */
.who { background: #fff; }
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) { .who-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:  560px) { .who-grid { grid-template-columns: 1fr; } }

/* --- Outcomes section ------------------------------------------------------ */
.outcomes { background: linear-gradient(180deg, #F4F7FF 0%, #FFFFFF 100%); }
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
@media (max-width: 720px) { .outcomes-grid { grid-template-columns: 1fr; } }

/* --- Testimonials ---------------------------------------------------------- */
.testimonials { background: #fff; }
.google-reviews { background: #fff; padding-top: 0; }

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .t-grid { grid-template-columns: 1fr; } }

/* --- Curriculum section ---------------------------------------------------- */
.curriculum { background: #FAFBFE; }
.units { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 880px) { .units { grid-template-columns: 1fr; } }

/* --- Why us section -------------------------------------------------------- */
.why-us { background: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }

/* --- Bonuses section ------------------------------------------------------- */
.bonuses { background: linear-gradient(180deg, #FAFBFE 0%, #FFFFFF 100%); }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .bonus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .bonus-grid { grid-template-columns: 1fr; } }

/* --- Pricing section ------------------------------------------------------- */
.pricing {
  background:
    radial-gradient(800px 500px at 10% 0%, rgba(25, 94, 246, .10), transparent 60%),
    radial-gradient(700px 500px at 90% 100%, rgba(255, 200, 61, .10), transparent 55%),
    #FAFBFE;
}

/* --- Urgency (countdown) section ------------------------------------------ */
.urgency-section {
  background: linear-gradient(135deg, #0A1736 0%, #143187 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.urgency-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(25, 94, 246, .3), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 200, 61, .18), transparent 50%);
  pointer-events: none;
}
.urgency-section .container      { position: relative; z-index: 1; }
.urgency-section h2               { color: #fff; }
.urgency-section .section-tag     { color: var(--gold); }
.urgency-section .section-lead    { color: rgba(255, 255, 255, .75); }

/* --- Objections section ---------------------------------------------------- */
.objections { background: #fff; }
.obj-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 880px) { .obj-grid { grid-template-columns: 1fr; } }

/* --- FAQ section ----------------------------------------------------------- */
.faq { background: var(--bg-light); }

/* --- Final CTA section ----------------------------------------------------- */
.final-cta {
  background: linear-gradient(135deg, var(--blue) 0%, #4F84FF 60%, #6FA7FF 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255, 200, 61, .20), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .18), transparent 50%);
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
  margin: 0 auto 20px;
}
.final-cta p { color: rgba(255, 255, 255, .9); max-width: 680px; margin: 0 auto 26px; font-size: 1.08rem; }
.final-cta .price-line {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  background: rgba(0, 0, 0, .18);
  padding: 12px 22px;
  border-radius: 999px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, .2);
}
.final-cta .price-line .old { text-decoration: line-through; opacity: .65; font-size: 1.05rem; }
.final-cta .price-line .new {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}
.final-cta .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.final-cta .meta {
  font-size: .9rem;
  color: rgba(255, 255, 255, .85);
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta .meta span::before { content: "\2713 "; color: var(--gold); font-weight: 700; }

/* --- Footer ---------------------------------------------------------------- */
footer {
  background: #0A1736;
  color: rgba(255, 255, 255, .7);
  padding: 50px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }
footer .logo { color: #fff; }
footer p { font-size: .92rem; margin-top: 14px; max-width: 380px; }
footer h5 {
  color: #fff;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; font-size: .92rem; }
footer ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .85rem;
}


/* ============================================================================
   10. MODALS & OVERLAYS
   ============================================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 23, 54, .60);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  padding: 20px;
  overflow-y: auto;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
body.modal-locked    { overflow: hidden; }

.modal-box {
  background: #fff;
  border-radius: 22px;
  max-width: 520px;
  width: 100%;
  padding: 36px 36px 30px;
  position: relative;
  transform: translateY(20px) scale(.96);
  transition: transform .35s cubic-bezier(.4, 1.5, .6, 1);
  box-shadow: 0 40px 90px rgba(10, 23, 54, .35);
  max-height: 92vh;
  overflow-y: auto;
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #F0F4FA;
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background .2s, transform .2s;
}
.modal-close:hover { background: #E5EAF4; transform: rotate(90deg); }

.modal-pill {
  display: inline-block;
  background: var(--blue-ultra);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.modal-box h3   { font-size: 1.6rem; margin-bottom: 6px; color: var(--navy); }
.modal-box .modal-sub { color: var(--text-muted); font-size: .95rem; margin-bottom: 22px; }

/* Form inside modal */
.modal-form .field { margin-bottom: 16px; }
.modal-form label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: .01em;
}
.modal-form input,
.modal-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .96rem;
  color: var(--navy);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.modal-form input:focus,
.modal-form select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(25, 94, 246, .12);
}
.modal-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235A6478' stroke-width='2.5' stroke-linecap='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.modal-submit       { width: 100%; margin-top: 6px; }
.modal-submit[disabled] { opacity: .7; cursor: not-allowed; }

.modal-note {
  display: block;
  text-align: center;
  color: var(--text-light);
  font-size: .78rem;
  margin-top: 14px;
}
.modal-error {
  margin-top: 12px;
  padding: 10px 14px;
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #991B1B;
  border-radius: 8px;
  font-size: .9rem;
  text-align: center;
}

/* Success state */
.modal-success { text-align: center; padding: 20px 6px 6px; }
.modal-success .check-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #ECFDF5;
  color: var(--green);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 2.2rem;
  font-weight: 800;
  animation: popIn .5s cubic-bezier(.4, 1.7, .6, 1);
}
.modal-success h3 { margin-bottom: 8px; }
.modal-success p  { color: var(--text-muted); font-size: .96rem; margin-bottom: 22px; }

@media (max-width: 540px) {
  .modal-box { padding: 28px 22px 24px; border-radius: 18px; }
  .modal-box h3 { font-size: 1.35rem; }
}


/* ============================================================================
   11. FIXED / FLOATING UI
   ============================================================================ */

/* Sticky bottom CTA bar */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  box-shadow: 0 -8px 30px rgba(10, 23, 54, .12);
  padding: 14px 24px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--border);
  transform: translateY(110%);
  transition: transform .35s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .info   { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.sticky-cta .info strong { color: var(--navy); font-size: .95rem; font-weight: 700; }
.sticky-cta .info small  { color: var(--text-muted); font-size: .82rem; }
.sticky-cta .info small .price { color: var(--blue); font-weight: 700; }
.sticky-cta .btn { flex-shrink: 0; padding: 12px 22px; }
@media (max-width: 560px) {
  .sticky-cta { padding: 12px 16px; gap: 10px; }
  .sticky-cta .info small { display: none; }
  .sticky-cta .btn { padding: 10px 16px; font-size: .88rem; white-space: nowrap; }
}

/* WhatsApp float button */
.wa-float {
  position: fixed;
  bottom: 92px; right: 22px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
  z-index: 39;
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 16px 40px rgba(37, 211, 102, .55); }
.wa-float svg { width: 28px; height: 28px; }
@media (max-width: 768px) {
  .wa-float { bottom: 80px; right: 16px; width: 52px; height: 52px; }
}


/* ============================================================================
   12. ANIMATIONS
   ============================================================================ */

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Pulsing dot */
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(255, 200, 61, .7); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 200, 61, 0);  }
  100% { box-shadow: 0 0 0 0   rgba(255, 200, 61, 0);   }
}

/* --- How it Works ---------------------------------------------------------- */
.how-it-works { background: var(--bg-light); }
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  flex: 1 1 200px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-card-gold { border-color: var(--gold); background: linear-gradient(160deg, #FFFDF0, #FFF8DC); }
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: .75rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .1em;
  background: var(--blue-light);
  padding: 4px 10px;
  border-radius: 999px;
}
.step-card-gold .step-num { background: rgba(255,200,61,.18); color: var(--navy); }
.step-icon {
  width: 64px; height: 64px;
  background: var(--blue-light);
  border-radius: 18px;
  display: grid; place-items: center;
  color: var(--blue);
}
.step-card-gold .step-icon { background: rgba(255,200,61,.2); color: var(--navy); }
.step-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin: 0;
}
.step-card p { font-size: .88rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: var(--text-light);
  align-self: center;
  margin-top: -10px;
}
@media (max-width: 860px) {
  .steps-grid { flex-direction: column; align-items: center; gap: 0; }
  .step-card { max-width: 420px; width: 100%; }
  .step-arrow { transform: rotate(90deg); padding: 4px 0; }
}

/* --- Tech Stack ------------------------------------------------------------ */
.tech-stack { background: #fff; }
.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.stack-card {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  cursor: default;
}
.stack-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.stack-card-highlight {
  border-color: var(--gold);
  background: linear-gradient(135deg, #FFFCF0, #FFF8DC);
}
.stack-card-highlight:hover { border-color: var(--gold-dark); }
.stack-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  display: grid; place-items: center;
}
.stack-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy);
}
.stack-label {
  font-size: .76rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}

/* Modal pop-in */
@keyframes popIn {
  0%   { transform: scale(.3); opacity: 0; }
  100% { transform: scale(1);  opacity: 1; }
}


/* ============================================================================
   13. EXTRA MOTION (added) — orbs, cursor, shimmer, ribbon, stack float
   ============================================================================ */

/* --- Hero floating orbs --- */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}
.hero-orb.o1 { width: 340px; height: 340px; background: rgba(25,94,246,.40);  top: -80px;  left: -90px;  animation: orbFloat 14s ease-in-out infinite; }
.hero-orb.o2 { width: 280px; height: 280px; background: rgba(255,200,61,.45); bottom: -90px; right: -70px; animation: orbFloat 18s ease-in-out infinite reverse; }
.hero-orb.o3 { width: 220px; height: 220px; background: rgba(16,185,129,.30); top: 38%;     right: 36%;   animation: orbDrift 22s ease-in-out infinite; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(45px, -32px) scale(1.08); }
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0,0); }
  33%      { transform: translate(-32px, 22px); }
  66%      { transform: translate(24px, 32px); }
}

/* --- Blinking cursor in code window --- */
.code-cursor {
  display: inline-block;
  width: 9px; height: 16px;
  background: var(--gold);
  vertical-align: -2px;
  margin-left: 3px;
  animation: blinkCaret 1.05s steps(1) infinite;
}
@keyframes blinkCaret {
  0%, 50%   { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

/* --- Code window subtle gleam --- */
.code-window { position: relative; }
.code-window::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.10) 50%, transparent 60%);
  pointer-events: none;
  background-size: 250% 100%;
  animation: codeGleam 7s ease-in-out infinite;
  border-radius: inherit;
}
@keyframes codeGleam {
  0%   { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}

/* --- Shimmer sweep across CTAs --- */
.btn-primary, .btn-gold { position: relative; overflow: hidden; }
.btn-primary::after, .btn-gold::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.45) 50%, transparent 100%);
  transform: skewX(-22deg);
  animation: shimmer 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0%   { left: -120%; }
  55%  { left: 130%; }
  100% { left: 130%; }
}

/* --- Pricing ribbon: animated gradient --- */
.pricing-ribbon {
  background-image: linear-gradient(90deg, var(--gold) 0%, #ff8a3d 35%, var(--gold) 65%, #FFD66B 100%);
  background-size: 220% 100%;
  animation: ribbonShift 6s ease-in-out infinite;
}
@keyframes ribbonShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* --- Stack cards: subtle float (staggered) --- */
.stack-card { animation: floaty 6s ease-in-out infinite; }
.stack-card:nth-child(odd)  { animation-duration: 7s;  animation-delay: -1.5s; }
.stack-card:nth-child(3n)   { animation-duration: 8s;  animation-delay: -2.4s; }
.stack-card:nth-child(4n+1) { animation-delay: -3.1s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .hero-orb,
  .code-cursor,
  .code-window::after,
  .btn-primary::after,
  .btn-gold::after,
  .pricing-ribbon,
  .stack-card {
    animation: none !important;
    transition: none !important;
  }
}
