/* ─────────────────────────────────────────────────────────────────────────────
   INDEX-UI.CSS
   Template-exact UI overrides and new section styles for index.html.
   Existing tokens.css / base.css / components.css / payment.css are untouched.
   This file extends the design system with the template's specific patterns.
───────────────────────────────────────────────────────────────────────────── */

/* ── Update display font to Nunito (template uses this) ── */
:root {
  --font-display: 'Nunito', sans-serif;

  /* Template orange gradient — used everywhere as gradient instead of flat accent */
  --grad-orange:       linear-gradient(135deg, #FF6B1A 0%, #EA580C 50%, #C94400 100%);
  --grad-orange-soft:  linear-gradient(135deg, rgba(255,107,26,0.12) 0%, rgba(234,88,12,0.08) 100%);
  --grad-orange-glow:  linear-gradient(135deg, rgba(255,107,26,0.22) 0%, rgba(234,88,12,0.14) 100%);

  --color-accent-dim:    rgba(234,88,12,0.08);
  --color-accent-border: rgba(234,88,12,0.22);
  --color-accent-glow:   rgba(234,88,12,0.2);

  --shadow-accent:  0 12px 40px -6px rgba(234,88,12,0.28);
  --shadow-card-lg: 0 20px 60px -10px rgba(10,20,40,0.12);

  --max-width: 1080px;
  --max-width-narrow: 700px;
}

/* ── Apply gradient to primary buttons ── */
.btn-primary {
  background: var(--grad-orange);
  height: 52px;
  padding: 0 26px;
  font-size: 15px;
}

.btn-primary:hover {
  box-shadow: var(--shadow-accent);
}

/* ── Ticker base ── */
.ticker-bar {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-bar__track {
  display: inline-block;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-bar__track span {
  margin: 0 36px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Ticker accent — gradient text ── */
.ticker-bar__track span .accent {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  color: transparent;
}

/* ════════════════════════════════════════════
   NAVBAR — template style
════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
  transition: box-shadow var(--dur-base);
}

.navbar.scrolled { box-shadow: var(--shadow-card); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

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

.navbar__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.8px;
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.navbar__cta {
  height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

/* ════════════════════════════════════════════
   HERO — full template replica
════════════════════════════════════════════ */
.hero {
  padding: 72px 0 88px;
  background: #FFFCFA;
  position: relative;
  overflow: hidden;
}

/* Fine diagonal line pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 24px,
    rgba(234,88,12,0.028) 24px,
    rgba(234,88,12,0.028) 25px
  );
  pointer-events: none; z-index: 0;
}

/* Top-right warm bloom */
.hero__glow {
  position: absolute; top: -160px; right: -120px;
  width: 580px; height: 580px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.1) 0%, rgba(234,88,12,0.04) 50%, transparent 72%);
  pointer-events: none; z-index: 0;
}

/* Bottom-left soft bloom */
.hero__glow2 {
  position: absolute; bottom: -80px; left: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.06) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 56px;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
}

/* Hero badge */
.hero__badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px 5px 8px;
  border-radius: var(--radius-pill);
  background: var(--grad-orange-soft);
  border: 1px solid var(--color-accent-border);
  width: fit-content;
  margin-bottom: 22px;
  animation: fade-up var(--dur-slow) var(--ease-out) 0ms both;
}

.hero__badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--grad-orange);
  animation: pulse-dot 1.4s ease-in-out infinite;
}

.hero__badge-text {
  font-size: 10px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase;
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero heading */
.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.8vw, 72px);
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1.0;
  color: var(--color-primary);
  margin-bottom: 22px;
  animation: fade-up var(--dur-slow) var(--ease-out) 60ms both;
}

.hero__heading-accent {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.hero__sub {
  font-size: 16px;
  color: var(--color-secondary);
  line-height: 1.78;
  max-width: 500px;
  font-weight: 400;
  margin-bottom: 30px;
  animation: fade-up var(--dur-slow) var(--ease-out) 120ms both;
}

.hero__sub strong {
  color: var(--color-primary);
  font-weight: 600;
}

.hero__cta-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 14px;
  animation: fade-up var(--dur-slow) var(--ease-out) 180ms both;
}

.hero__cta-note {
  font-size: 12px;
  color: var(--color-secondary);
  animation: fade-up var(--dur-slow) var(--ease-out) 220ms both;
  margin-bottom: 32px;
}

/* Trust row */
.hero__trust {
  display: flex; align-items: center; gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
  animation: fade-up var(--dur-slow) var(--ease-out) 260ms both;
}

.hero__trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--color-secondary); font-weight: 500;
}

.hero__trust-item svg,
.hero__trust-item i {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   BUNDLE CARD (hero right side)
════════════════════════════════════════════ */
.bundle-visual {
  animation: fade-up var(--dur-slow) var(--ease-out) 80ms both;
}

.bundle-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card-lg);
  padding: 24px 24px 20px;
  position: relative;
  overflow: hidden;
}

/* Top orange line */
.bundle-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-orange);
  border-radius: 24px 24px 0 0;
}

/* Fanned deck scene */
.deck-scene {
  position: relative;
  height: 300px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.deck-doc {
  position: absolute;
  width: 168px; height: 218px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #dde4ef;
  box-shadow: 0 6px 24px rgba(20,40,100,0.13);
  overflow: hidden;
  transform-origin: bottom center;
  transition: transform 0.38s var(--ease-out), box-shadow 0.38s var(--ease-out);
}

.deck-doc:nth-child(1) { transform: rotate(-27deg) translateY(14px); z-index: 1; }
.deck-doc:nth-child(2) { transform: rotate(-18deg) translateY(8px);  z-index: 2; }
.deck-doc:nth-child(3) { transform: rotate(-9deg)  translateY(3px);  z-index: 3; }
.deck-doc:nth-child(4) { transform: rotate(0deg)   translateY(0px);  z-index: 4; }
.deck-doc:nth-child(5) { transform: rotate(9deg)   translateY(3px);  z-index: 5; }
.deck-doc:nth-child(6) { transform: rotate(18deg)  translateY(8px);  z-index: 6; }
.deck-doc:nth-child(7) {
  transform: rotate(0deg) translateY(-14px);
  z-index: 10;
  box-shadow: 0 16px 40px rgba(20,40,100,0.18);
}

.deck-scene:hover .deck-doc:nth-child(7) {
  transform: rotate(0deg) translateY(-28px);
  box-shadow: 0 28px 56px rgba(20,40,100,0.22);
}
.deck-scene:hover .deck-doc:nth-child(1) { transform: rotate(-30deg) translateY(14px); }
.deck-scene:hover .deck-doc:nth-child(2) { transform: rotate(-20deg) translateY(8px); }
.deck-scene:hover .deck-doc:nth-child(3) { transform: rotate(-10deg) translateY(3px); }
.deck-scene:hover .deck-doc:nth-child(5) { transform: rotate(10deg)  translateY(3px); }
.deck-scene:hover .deck-doc:nth-child(6) { transform: rotate(20deg)  translateY(8px); }

/* Doc header bar */
.doc-hdr {
  height: 30px; width: 100%;
  display: flex; align-items: center; padding: 0 10px; gap: 5px;
}
.doc-hdr-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.45); flex-shrink: 0;
}
.doc-hdr-label {
  font-size: 7.5px; font-weight: 700;
  color: rgba(255,255,255,0.92);
  text-transform: uppercase; letter-spacing: 0.06em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Doc body lines */
.doc-body {
  padding: 10px 11px;
  display: flex; flex-direction: column; gap: 5px;
}
.dl { height: 4px; border-radius: 2px; background: #eaeef5; }
.dl-a  { width: 42%; opacity: 0.5; margin-bottom: 3px; }
.dl-100{ width: 100%; } .dl-88{ width: 88%; } .dl-75{ width: 75%; }
.dl-65{ width: 65%; }  .dl-90{ width: 90%; } .dl-80{ width: 80%; }
.dl-55{ width: 55%; }  .dl-70{ width: 70%; } .dl-60{ width: 60%; }

/* Doc bottom strip */
.doc-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 30px;
  display: flex; align-items: center; padding: 0 10px;
  background: rgba(248,250,252,0.95);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.doc-strip-text {
  font-family: var(--font-display);
  font-size: 8px; font-weight: 800;
  color: var(--color-secondary);
  text-transform: uppercase; letter-spacing: 0.04em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Legend chips below deck */
.deck-legend {
  display: flex; flex-wrap: wrap; gap: 5px;
  justify-content: center;
  margin-bottom: 18px;
}
.legend-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 99px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-size: 10px; font-weight: 600; color: var(--color-secondary);
}
.legend-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* Bundle card pricing strip */
.bundle-pricing {
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
}
.bp-strike {
  font-size: 13px; color: var(--color-secondary);
  text-decoration: line-through; text-decoration-thickness: 1.5px;
  margin-right: 6px;
}
.bp-off {
  display: inline-block; padding: 2px 8px; border-radius: 6px;
  font-size: 10px; font-weight: 700;
  background: rgba(62,207,142,0.12); color: #3ECF8E;
}
.bp-price {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 900; letter-spacing: -2px;
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-top: 2px;
}
.bp-note { font-size: 10px; color: var(--color-secondary); margin-top: 2px; }
.bp-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0 22px; height: 48px;
  border-radius: var(--radius-lg);
  background: var(--grad-orange); color: #fff;
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  border: none; cursor: pointer; white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.bp-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-accent); }

/* ════════════════════════════════════════════
   SHARED SECTION UTILITIES
════════════════════════════════════════════ */
.section { padding: 96px 0; }

/* ════════════════════════════════════════════
   PAIN SECTION
════════════════════════════════════════════ */
.pain-section {
  background: #FFFCFA;
  position: relative; overflow: hidden;
}

.pain-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 24px,
    rgba(234,88,12,0.022) 24px, rgba(234,88,12,0.022) 25px
  );
  pointer-events: none; z-index: 0;
}

.pain-section__glow {
  position: absolute; bottom: -120px; right: -80px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.07) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.pain-section__inner { position: relative; z-index: 1; }

.pain-heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900; letter-spacing: -2px; line-height: 1.02;
  color: var(--color-primary); margin-bottom: 14px;
}
.pain-heading em {
  font-style: normal;
  background: var(--grad-orange);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pain-sub {
  font-size: 16px; color: var(--color-secondary);
  line-height: 1.7; max-width: 480px;
  margin-bottom: 48px;
}

/* Staggered two-column pain grid */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px; align-items: start;
  margin-bottom: 14px;
}
.pain-col { display: flex; flex-direction: column; gap: 14px; }
.pain-col--right { padding-top: 32px; }

.pain-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 22px 22px 20px;
  position: relative; overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base);
}
.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-lg);
  border-color: rgba(239,68,68,0.2);
}
.pain-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, #EF4444 0%, rgba(239,68,68,0.15) 100%);
  border-radius: 3px 0 0 3px;
  opacity: 0; transition: opacity var(--dur-base);
}
.pain-card:hover::before { opacity: 1; }

.pain-card__x {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(239,68,68,0.07);
  border: 1px solid rgba(239,68,68,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900; color: #EF4444;
  font-family: var(--font-display);
  flex-shrink: 0; margin-bottom: 14px;
}
.pain-card__title {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 900;
  color: var(--color-primary); letter-spacing: -0.3px;
  line-height: 1.3; margin-bottom: 8px;
}
.pain-card__desc {
  font-size: 13.5px; color: var(--color-secondary);
  line-height: 1.65;
}

/* ════════════════════════════════════════════
   BRIDGE SECTION (dark)
════════════════════════════════════════════ */
.bridge-section {
  background: var(--color-primary);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.bridge-section::before {
  content: '';
  position: absolute; top: -80px; left: -60px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.12) 0%, transparent 68%);
  pointer-events: none;
}
.bridge-section::after {
  content: '';
  position: absolute; bottom: -80px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.08) 0%, transparent 68%);
  pointer-events: none;
}
.bridge-section__pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 24px,
    rgba(255,255,255,0.018) 24px, rgba(255,255,255,0.018) 25px
  );
  pointer-events: none; z-index: 0;
}
.bridge-section__inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 640px; margin: 0 auto;
}
.bridge-section__eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase;
  background: var(--grad-orange);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px; display: block;
}
.bridge-section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900; letter-spacing: -2.5px; line-height: 1.0;
  color: #fff; margin-bottom: 20px;
}
.bridge-section__title em {
  font-style: normal;
  background: var(--grad-orange);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bridge-section__body {
  font-size: 16px; color: rgba(255,255,255,0.45);
  line-height: 1.8; font-weight: 400;
}
.bridge-section__body strong {
  color: rgba(255,255,255,0.8); font-weight: 500;
}

/* ════════════════════════════════════════════
   WHAT'S INSIDE SECTION
════════════════════════════════════════════ */
.inside-section {
  background: #FFFCFA;
  position: relative; overflow: hidden;
}
.inside-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 24px,
    rgba(234,88,12,0.022) 24px, rgba(234,88,12,0.022) 25px
  );
  pointer-events: none; z-index: 0;
}
.inside-section__glow {
  position: absolute; top: -100px; left: -80px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.07) 0%, transparent 68%);
  pointer-events: none; z-index: 0;
}
.inside-section__inner { position: relative; z-index: 1; }

.inside-heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900; letter-spacing: -2px; line-height: 1.02;
  color: var(--color-primary); margin-bottom: 14px;
}
.inside-heading em {
  font-style: normal;
  background: var(--grad-orange);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.inside-sub {
  font-size: 16px; color: var(--color-secondary);
  line-height: 1.7; max-width: 500px; margin-bottom: 52px;
}

/* 4-col top grid, 3-col centred bottom */
.inside-grid-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 16px;
}
.inside-grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: calc(75% + 12px);
  margin-bottom: 52px;
}

/* Category card */
.cat-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 20px 18px 18px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  position: relative;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base);
  cursor: default;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-lg);
  border-color: var(--color-accent-border);
}
.cat-card::before {
  content: '';
  position: absolute; top: 0; left: 16px; right: 16px; height: 2px;
  background: var(--grad-orange);
  border-radius: 0 0 2px 2px;
  opacity: 0; transition: opacity var(--dur-base);
}
.cat-card:hover::before { opacity: 1; }

.cat-card__name {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 900;
  color: var(--color-primary); text-align: center;
  line-height: 1.3; letter-spacing: -0.1px;
}

/* Doc stack visual */
.cat-stack {
  position: relative;
  width: 110px; height: 134px;
  flex-shrink: 0;
}
.cs-back1, .cs-back2, .cs-front {
  position: absolute;
  background: #fff;
  border: 1px solid #dde4ef;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(20,40,100,0.11);
  overflow: hidden;
}
.cs-back1 {
  width: 80px; height: 104px;
  top: 14px; left: 2px;
  transform: rotate(-9deg); opacity: 0.42; z-index: 1;
}
.cs-back2 {
  width: 80px; height: 104px;
  top: 7px; left: 12px;
  transform: rotate(-4.5deg); opacity: 0.68; z-index: 2;
}
.cs-front {
  width: 90px; height: 116px;
  top: 0; left: 10px;
  transform: rotate(1.5deg); z-index: 3;
  transition: transform var(--dur-base) var(--ease-out);
}
.cat-card:hover .cs-front {
  transform: rotate(1.5deg) translateY(-5px);
  box-shadow: 0 8px 20px rgba(20,40,100,0.16);
}

.cs-hdr {
  height: 22px; width: 100%;
  display: flex; align-items: center; padding: 0 7px; gap: 4px;
}
.cs-hdr-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.5);
}
.cs-hdr-lbl {
  font-size: 5.5px; font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase; letter-spacing: 0.05em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.cs-body {
  padding: 6px 7px;
  display: flex; flex-direction: column; gap: 3.5px;
}
.csl { height: 3px; border-radius: 2px; background: #e8ecf4; }
.csl-a { opacity: 0.4; width: 40%; margin-bottom: 2px; }
.csl-100{width:100%} .csl-88{width:88%} .csl-75{width:75%}
.csl-65{width:65%}  .csl-90{width:90%} .csl-80{width:80%}
.csl-55{width:55%}  .csl-70{width:70%}

/* Orange count badge */
.cs-badge {
  position: absolute;
  right: -2px; bottom: 10px; z-index: 10;
  width: 32px; height: 32px;
  background: var(--grad-orange);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(234,88,12,0.45);
}
.cs-badge-num {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 900; color: #fff; line-height: 1;
}
.cs-badge-lbl {
  font-size: 5px; font-weight: 800;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase; line-height: 1;
}

.cat-card__desc {
  font-size: 11.5px; color: var(--color-secondary);
  line-height: 1.6; text-align: center; flex: 1;
}
.cat-card__desc strong {
  color: var(--color-primary); font-weight: 600;
  display: block; margin-bottom: 2px;
}

/* CTA below grid */
.inside-cta { text-align: center; }
.inside-cta__note {
  margin-top: 12px; font-size: 12px; color: var(--color-secondary);
}

/* ════════════════════════════════════════════
   TESTIMONIALS SECTION (dark)
════════════════════════════════════════════ */
.testi-section {
  background: var(--color-primary);
  position: relative; overflow: hidden;
  padding: 96px 0;
}
.testi-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 24px,
    rgba(255,255,255,0.016) 24px, rgba(255,255,255,0.016) 25px
  );
  pointer-events: none; z-index: 0;
}
.testi-section__glow {
  position: absolute; top: -100px; right: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.12) 0%, transparent 68%);
  pointer-events: none; z-index: 0;
}
.testi-section__glow2 {
  position: absolute; bottom: -80px; left: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.07) 0%, transparent 68%);
  pointer-events: none; z-index: 0;
}
.testi-section__inner { position: relative; z-index: 1; }

/* Light version of section label */
.section-label--light .section-label__text { color: rgba(255,255,255,0.4); }
.section-label--light .section-label__line  { background: rgba(255,255,255,0.1); }

.testi-heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900; letter-spacing: -2px; line-height: 1.02;
  color: #fff; margin-bottom: 52px;
}
.testi-heading em {
  font-style: normal;
  background: var(--grad-orange);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Carousel */
.testi-carousel {
  position: relative;
  max-width: 680px; margin: 0 auto;
}
.testi-track-outer {
  overflow: hidden;
  border-radius: var(--radius-2xl);
}
.testi-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.testi-slide { min-width: 100%; padding: 0 2px; }

.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-2xl);
  padding: 40px 44px;
  position: relative;
  backdrop-filter: blur(8px);
}
.testi-card__quote-mark {
  position: absolute; top: 28px; right: 36px;
  font-family: var(--font-display);
  font-size: 80px; font-weight: 900; line-height: 1;
  background: var(--grad-orange);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25; pointer-events: none; user-select: none;
}
.testi-card__stars { display: flex; gap: 3px; margin-bottom: 20px; }
.testi-card__star {
  width: 16px; height: 16px;
  background: var(--grad-orange);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}
.testi-card__text {
  font-size: 17px; color: rgba(255,255,255,0.82);
  line-height: 1.8; font-weight: 400; font-style: italic;
  margin-bottom: 32px;
  min-height: 96px;
}
.testi-card__author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.testi-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
}
.testi-card__name {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 800;
  color: #fff; letter-spacing: -0.2px;
}
.testi-card__role {
  font-size: 12px; color: rgba(255,255,255,0.42);
  margin-top: 2px;
}

/* Controls */
.testi-controls {
  display: flex; align-items: center;
  justify-content: center; gap: 16px;
  margin-top: 32px;
}
.testi-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: background var(--dur-fast), border-color var(--dur-fast),
              color var(--dur-fast), transform var(--dur-fast);
}
.testi-btn:hover {
  background: var(--grad-orange);
  border-color: transparent;
  color: #fff;
  transform: scale(1.08);
}
.testi-btn svg { width: 16px; height: 16px; pointer-events: none; }

.testi-dots { display: flex; align-items: center; gap: 7px; }
.testi-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background var(--dur-base), transform var(--dur-base), width var(--dur-base);
  border: none; padding: 0;
}
.testi-dot.active {
  background: var(--color-accent);
  width: 20px; border-radius: 3px;
}

/* Progress bar */
.testi-progress {
  height: 2px; background: rgba(255,255,255,0.08);
  border-radius: 2px; margin-top: 20px; overflow: hidden;
}
.testi-progress__bar {
  height: 100%; background: var(--grad-orange);
  border-radius: 2px; width: 0%;
  transition: width linear;
}

/* ════════════════════════════════════════════
   PRICING SECTION
════════════════════════════════════════════ */
.pricing-section {
  background: #F5F5F5;
  position: relative; overflow: hidden;
  padding: 96px 0;
}
.pricing-section__glow {
  position: absolute; top: -100px; right: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.07) 0%, transparent 68%);
  pointer-events: none; z-index: 0;
}
.pricing-section__glow2 {
  position: absolute; bottom: -80px; left: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.05) 0%, transparent 68%);
  pointer-events: none; z-index: 0;
}
.pricing-section__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}

.pricing-heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900; letter-spacing: -2px; line-height: 1.02;
  color: var(--color-primary); margin-bottom: 14px;
}
.pricing-heading em {
  font-style: normal;
  background: var(--grad-orange);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-sub {
  font-size: 16px; color: var(--color-secondary);
  line-height: 1.7; max-width: 400px; margin-bottom: 48px;
}

/* Override the existing pricing-card from layout.css */
.pricing-card {
  width: 100%; max-width: 460px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #E2E2E2;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04), 0 12px 40px rgba(0,0,0,0.07);
  overflow: hidden;
  padding: 0;
  margin: 0 auto;
}
.pricing-card__band {
  height: 3px; background: var(--grad-orange);
}
.pricing-card__body {
  padding: 36px 40px 40px;
}

/* Urgency badge */
.pricing-urgency {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 12px 5px 8px;
  border-radius: var(--radius-pill);
  background: rgba(234,88,12,0.06);
  border: 1px solid rgba(234,88,12,0.15);
  margin-bottom: 28px;
}
.pricing-urgency__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-accent);
  animation: pulse-dot 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
.pricing-urgency__text {
  font-size: 10px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--color-accent);
}

/* Price block */
.pricing-card__price-block { margin-bottom: 28px; }
.pricing-card__was {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 6px;
}
.pricing-card__original {
  font-size: 14px; color: #BBBBBB;
  text-decoration: line-through; text-decoration-thickness: 1.5px;
  font-weight: 500;
}
.pricing-card__off {
  padding: 2px 8px; border-radius: 6px;
  font-size: 10px; font-weight: 700;
  background: rgba(62,207,142,0.1); color: #3ECF8E;
  letter-spacing: 0.04em;
}
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 80px; font-weight: 900; letter-spacing: -5px; line-height: 1;
  color: var(--color-primary); margin-bottom: 6px;
}
.pricing-card__onetime {
  font-size: 12px; color: #AAAAAA; letter-spacing: 0.02em;
}

/* Countdown — overrides layout.css version */
.pricing-countdown {
  background: #F9F9F9;
  border: 1px solid #EBEBEB;
  border-radius: var(--radius-md);
  padding: 14px 20px; margin-bottom: 28px;
}
.pricing-countdown__label {
  font-size: 10px; font-weight: 600; letter-spacing: 1.4px;
  text-transform: uppercase; color: #AAAAAA;
  margin-bottom: 10px; text-align: center;
}
.pricing-countdown__units {
  display: flex; align-items: center;
  justify-content: center; gap: 6px;
}
.pricing-countdown__unit {
  display: flex; flex-direction: column;
  align-items: center; gap: 2px; min-width: 48px;
}
.pricing-countdown__num {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 900; letter-spacing: -1px;
  color: var(--color-primary); line-height: 1;
}
.pricing-countdown__unit-label {
  font-size: 9px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: #BBBBBB;
}
.pricing-countdown__colon {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 900;
  color: #DDDDDD; margin-bottom: 14px;
}

/* Divider */
.pricing-card__divider {
  height: 1px; background: #F0F0F0; margin-bottom: 24px;
}

/* Perks list */
.pricing-perks {
  display: flex; flex-direction: column; gap: 11px;
  margin-bottom: 32px; text-align: left;
}
.pricing-perk {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--color-primary); font-weight: 500;
}
.pricing-perk__check {
  width: 18px; height: 18px; border-radius: 50%;
  background: #F0F0F0;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pricing-perk__check svg { width: 10px; height: 10px; color: #555; }

/* CTA button full-width */
.btn-primary--full {
  width: 100%; height: 58px; font-size: 16px;
  border-radius: var(--radius-lg);
  justify-content: center;
  margin-bottom: 16px;
  letter-spacing: -0.1px;
}

/* Pay note */
.pricing-card__pay-note {
  display: flex; align-items: center; justify-content: center;
  gap: 5px; font-size: 11.5px; color: #AAAAAA;
  margin-bottom: 12px;
}

/* Payment method pills */
.pricing-card__methods {
  display: flex; align-items: center;
  justify-content: center; gap: 6px;
}
.pm-pill {
  padding: 3px 9px; border-radius: 5px;
  background: #F5F5F5; border: 1px solid #E8E8E8;
  font-size: 10px; font-weight: 600;
  color: #999999; letter-spacing: 0.03em;
}

/* Social proof below card */
.pricing-proof {
  display: flex; align-items: center; gap: 20px;
  margin-top: 28px; flex-wrap: wrap; justify-content: center;
}
.pricing-proof__item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--color-secondary); font-weight: 500;
}
.pricing-proof__item i,
.pricing-proof__item svg { color: var(--color-accent); }
.pricing-proof__sep {
  width: 3px; height: 3px; border-radius: 50%; background: #DDDDDD;
}

/* ════════════════════════════════════════════
   FAQ SECTION — template style
════════════════════════════════════════════ */
.faq-section {
  background: #fff;
  padding: 96px 0;
  position: relative; overflow: hidden;
}

.faq-heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900; letter-spacing: -2px; line-height: 1.02;
  color: var(--color-primary); margin-bottom: 14px;
}
.faq-heading em {
  font-style: normal;
  background: var(--grad-orange);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.faq-sub {
  font-size: 16px; color: var(--color-secondary);
  line-height: 1.7; margin-bottom: 48px; max-width: 480px;
}

/* Accordion list */
.faq-list {
  display: flex; flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:last-child { border-bottom: none; }

.faq-item__q {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  background: #fff;
  transition: background var(--dur-fast);
  user-select: none; list-style: none;
}
.faq-item__q:hover { background: #FAFAFA; }
.faq-item__q:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}
.faq-item__q-text {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 800;
  color: var(--color-primary); letter-spacing: -0.2px;
  line-height: 1.4;
}
.faq-item__icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-base), border-color var(--dur-base),
              transform var(--dur-base) var(--ease-out);
}
.faq-item__icon svg {
  width: 12px; height: 12px;
  color: var(--color-secondary);
  transition: transform var(--dur-base) var(--ease-out);
}
.faq-item.open .faq-item__q { background: #FAFAFA; }
.faq-item.open .faq-item__icon {
  background: var(--grad-orange);
  border-color: transparent;
  transform: rotate(45deg);
}
.faq-item.open .faq-item__icon svg { color: #fff; }

.faq-item__a {
  overflow: hidden; height: 0;
  transition: height 0.36s var(--ease-out);
}
.faq-item__a-inner {
  padding: 0 28px 22px;
  font-size: 14.5px; color: var(--color-secondary);
  line-height: 1.75;
}
.faq-item__a-inner strong { color: var(--color-primary); font-weight: 600; }

/* ════════════════════════════════════════════
   FINAL CTA SECTION (dark)
════════════════════════════════════════════ */
.final-section {
  background: var(--color-primary);
  padding: 112px 0;
  position: relative; overflow: hidden;
  text-align: center;
}
.final-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 24px,
    rgba(255,255,255,0.016) 24px, rgba(255,255,255,0.016) 25px
  );
  pointer-events: none; z-index: 0;
}
.final-section__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.11) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.final-section__inner {
  position: relative; z-index: 1;
  max-width: 600px; margin: 0 auto;
}
.final-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase;
  background: var(--grad-orange);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block; margin-bottom: 20px;
}
.final-heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 6.5vw, 72px);
  font-weight: 900; letter-spacing: -3px; line-height: 0.98;
  color: #fff; margin-bottom: 20px;
}
.final-heading em {
  font-style: normal;
  background: var(--grad-orange);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.final-sub {
  font-size: 16px; color: rgba(255,255,255,0.42);
  line-height: 1.75; max-width: 420px;
  margin: 0 auto 40px;
}
.final-sub strong { color: rgba(255,255,255,0.75); font-weight: 500; }
.final-note {
  margin-top: 16px;
  font-size: 12px; color: rgba(255,255,255,0.28);
  letter-spacing: 0.02em;
}

/* ════════════════════════════════════════════
   FOOTER — template dark style
════════════════════════════════════════════ */
.footer {
  background: var(--color-primary);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer__copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer__copy span {
  background: var(--grad-orange);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-weight: 700;
}
.footer__links { display: flex; align-items: center; gap: 20px; }
.footer__link { font-size: 12px; color: rgba(255,255,255,0.28); text-decoration: none; transition: color var(--dur-fast); }
.footer__link:hover { color: rgba(255,255,255,0.6); }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .bundle-card { max-width: 480px; margin: 0 auto; }
  .inside-grid-bottom { max-width: 100%; }
}

@media (max-width: 900px) {
  .inside-grid-top { grid-template-columns: repeat(2, 1fr); }
  .inside-grid-bottom { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
}

@media (max-width: 680px) {
  .pain-grid { grid-template-columns: 1fr; }
  .pain-col--right { padding-top: 0; }
}

@media (max-width: 640px) {
  .hero { padding: 40px 0 56px; }
  .hero__heading { letter-spacing: -1.5px; }
  .deck-scene { height: 260px; }
  .deck-doc { width: 140px; height: 182px; }
  .testi-section { padding: 64px 0; }
  .testi-card { padding: 28px 24px; }
  .testi-card__text { font-size: 15px; min-height: unset; }
  .testi-card__quote-mark { font-size: 56px; top: 20px; right: 20px; }
  .pricing-section { padding: 64px 0; }
  .pricing-card__body { padding: 28px 24px 32px; }
  .pricing-card__amount { font-size: 64px; }
  .pricing-countdown__num { font-size: 22px; }
  .faq-section { padding: 64px 0; }
  .faq-item__q { padding: 18px 20px; }
  .faq-item__a-inner { padding: 0 20px 18px; }
  .final-section { padding: 80px 0; }
  .final-heading { letter-spacing: -2px; }
  .bridge-section { padding: 64px 0; }
  .bridge-section__title { letter-spacing: -1.5px; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .inside-grid-top { grid-template-columns: repeat(2, 1fr); }
  .inside-grid-bottom { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .section { padding: 64px 0; }
}