/* ============================================================
   50 Side Hustle Videos with AI — FE Sales Page
   Palette: Deep Navy + Electric Cyan + Cream + RED CTA
   Premium AI/tech aesthetic — PublicProArt sales-new structure.
   Fonts: Inter (body) + Space Grotesk (headings)
   ============================================================ */

:root {
  /* navy primaries */
  --navy-darkest: #0b1220;
  --navy-dark:    #162544;
  --navy:         #1e3a5f;
  --navy-soft:    #3d4f6f;
  --navy-mute:    #7a8ba8;

  /* cyan / electric blue accents */
  --cyan:         #3b9eff;
  --cyan-light:   #38bdf8;
  --cyan-glow:    rgba(59, 158, 255, 0.22);
  --cyan-deep:    #2563eb;

  /* PLR purple (optional accent) */
  --purple:       #6E4FA0;
  --purple-deep:  #4a3470;
  --purple-glow:  rgba(110, 79, 160, 0.18);

  /* neutrals */
  --cream:        #f8fafc;
  --cream-deep:   #eef2f7;
  --paper:        #ffffff;
  --border:       #e2e8f0;
  --border-soft:  #edf2f7;

  /* yellow urgency pill */
  --yellow:       #ffd60a;
  --yellow-bright:#ffea00;

  /* high-conversion red */
  --red:          #E63946;
  --red-deep:     #C21D2E;
  --red-darker:   #8B1220;

  /* success */
  --green:        #10b981;
  --green-deep:   #059669;

  --shadow-sm:    0 4px 14px rgba(11, 18, 32, 0.08);
  --shadow-md:    0 12px 32px rgba(11, 18, 32, 0.14);
  --shadow-lg:    0 28px 60px rgba(11, 18, 32, 0.22);
  --shadow-cyan:  0 14px 36px rgba(59, 158, 255, 0.28);
  --shadow-red:   0 12px 28px rgba(230, 57, 70, 0.40);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--navy-dark);
  background: var(--paper);
  line-height: 1.65;
  margin: 0;
  padding: 0 0 130px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan-deep); text-decoration: none; }
a:hover { color: var(--red-deep); }

h1, h2, h3, h4, h5 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  color: var(--navy-dark);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  font-weight: 700;
}

.container { max-width: 1200px; }

/* =========================================================
   STICKY RED TOP BANNER
   ========================================================= */
.top-banner {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: linear-gradient(90deg, var(--red-deep) 0%, var(--red) 50%, var(--red-deep) 100%);
  color: #fff;
  padding: 11px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.20);
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
  font-family: "Inter", sans-serif;
}

.top-banner .tb-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.top-banner .tb-pulse {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--yellow-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 234, 0, 0.70);
  animation: pulse 1.6s infinite;
  margin-right: 6px;
  vertical-align: middle;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 234, 0, 0.75); }
  70%  { box-shadow: 0 0 0 12px rgba(255, 234, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 234, 0, 0); }
}

.top-banner .tb-strike {
  text-decoration: line-through;
  opacity: 0.75;
  margin-right: 4px;
}

.top-banner .tb-price {
  background: var(--yellow);
  color: #1a1010;
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 800;
}

.top-banner .tb-btn {
  background: #fff;
  color: var(--red-deep);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.top-banner .tb-btn:hover {
  transform: translateY(-1px);
  color: var(--red-darker);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(59, 158, 255, 0.28), transparent 60%),
    radial-gradient(800px 600px at -10% 110%, rgba(110, 79, 160, 0.20), transparent 60%),
    linear-gradient(160deg, var(--navy-darkest) 0%, var(--navy-dark) 60%, var(--navy) 100%);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto auto;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.012) 0 2px, transparent 2px 8px);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 158, 255, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.45);
  color: var(--cyan-light);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-eyebrow i { color: var(--cyan-light); }

h1.hero-title {
  font-size: 54px;
  line-height: 1.08;
  color: #fff;
  font-weight: 800;
  margin: 0 auto 18px;
  max-width: 950px;
  font-family: "Space Grotesk", sans-serif;
}

.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}

.hero-checklist li {
  padding: 8px 0 8px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15.5px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero-checklist li i {
  color: var(--cyan-light);
  margin-top: 3px;
  flex-shrink: 0;
}

.hero-checklist li strong { color: #fff; }

.hero-checklist-center {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin: 0 auto 32px;
  text-align: left;
}

/* Centered hero feature pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 36px;
  max-width: 820px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: rgba(255, 255, 255, 0.92);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.hero-pill i { color: var(--cyan-light); flex-shrink: 0; }

.hero-mockup-wrap {
  position: relative;
  display: block;
  width: 560px;
  max-width: 100%;
  margin: 0 auto 34px;
}

.hero-mockup {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 36px 60px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 22px rgba(59, 158, 255, 0.22));
}

.mockup-badge {
  position: absolute;
  top: -14px;
  right: -6px;
  z-index: 3;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: var(--shadow-red);
  white-space: nowrap;
}

.mockup-badge i { margin-right: 6px; color: var(--yellow); }

/* Hero video */
.hero-video {
  max-width: 760px;
  margin: 0 auto 32px;
  position: relative;
}

.hero-video::before {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  margin: 0 auto 26px;
}

.hero-video-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-red);
}

.hero-video-badge i { color: var(--yellow); }

.hero-video video {
  width: 100%;
  border-radius: var(--radius);
  border: 3px solid rgba(59, 158, 255, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 30px rgba(59, 158, 255, 0.25);
  background: #000;
  display: block;
}

.hero-video-cap {
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  max-width: 620px;
}

.btn-cta-hero { margin-bottom: 8px; }

.btn-cta-sm {
  font-size: 16px;
  padding: 14px 28px;
}

.btn-cta-pulse {
  animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: var(--shadow-red); }
  50% { box-shadow: 0 12px 36px rgba(230, 57, 70, 0.65), 0 0 0 8px rgba(230, 57, 70, 0.12); }
}

.top-banner .tb-once {
  font-size: 11px;
  opacity: 0.85;
  font-weight: 600;
  margin-left: 4px;
}

h1.hero-title .accent { color: var(--cyan-light); }
h1.hero-title .accent2 { color: var(--red); }

.hero-sub {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 880px;
  margin: 0 auto 22px;
  font-weight: 500;
  font-family: "Space Grotesk", sans-serif;
}

.hero-copy {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 880px;
  margin: 0 auto 28px;
  line-height: 1.75;
  font-family: "Inter", sans-serif;
}

.hero-copy strong { color: #fff; }
.hero-copy .cyan,
.hero-copy .gold { color: var(--cyan-light); font-weight: 700; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.h-badge {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.h-badge i { color: var(--cyan-light); }

.h-badge.price {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-red);
}

.h-badge.price i { color: var(--yellow); }

.hero-mockup {
  display: block;
  max-width: 100%;
  width: 480px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 36px 60px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 22px rgba(59, 158, 255, 0.22));
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff !important;
  padding: 18px 36px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-red);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: none;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  text-decoration: none !important;
}

.btn-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--red-darker) 100%);
  box-shadow: 0 18px 36px rgba(230, 57, 70, 0.50);
  color: #fff !important;
}

.btn-cta .price-tag {
  background: var(--yellow);
  color: #1a1010;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
}

.hero-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  margin-top: 22px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.70);
  font-size: 14px;
}

.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust i { color: var(--cyan-light); }

/* =========================================================
   INCOME STRIP
   ========================================================= */
.income-strip {
  padding: 0;
  background: var(--paper);
  margin-top: -1px;
  border-bottom: 1px solid var(--border);
}

.income-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.income-card {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  background: #fff;
}

.income-card:last-child { border-right: none; }

.income-card .ic {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--cyan-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid var(--cyan);
}

.income-card strong {
  display: block;
  font-size: 15px;
  color: var(--navy-dark);
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 4px;
}

.income-card p {
  margin: 0;
  font-size: 13px;
  color: var(--navy-soft);
}

.income-card.highlight {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-darkest) 100%);
  border-right: none;
}

.income-card.highlight strong,
.income-card.highlight p { color: #fff; }

.income-card.highlight .ic {
  background: rgba(255, 214, 10, 0.15);
  color: var(--yellow);
  border-color: var(--yellow);
}

/* =========================================================
   PROFIT PATHS
   ========================================================= */
.profit-paths {
  padding: 90px 0;
  background: var(--paper);
}

.path-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.path-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.path-card.featured {
  border: 2px solid var(--cyan);
  box-shadow: var(--shadow-cyan);
}

.path-card .path-num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: rgba(30, 58, 95, 0.08);
}

.path-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.path-card h3 i { color: var(--cyan-deep); font-size: 18px; }

.path-card p {
  color: var(--navy-soft);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.path-card .path-tag {
  display: inline-block;
  background: var(--cream-deep);
  color: var(--navy-soft);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.path-card.featured .path-tag {
  background: rgba(59, 158, 255, 0.12);
  color: var(--cyan-deep);
}

/* =========================================================
   OBJECTION BUSTER
   ========================================================= */
.objection {
  padding: 70px 0;
  background: var(--cream);
}

.obj-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.obj-card h2 {
  font-size: 28px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.obj-card h2 i { color: var(--cyan-deep); }

.obj-card .lead {
  font-size: 17px;
  color: var(--navy-soft);
  margin-bottom: 24px;
}

.obj-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.obj-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 15px;
  color: var(--navy-dark);
  border-bottom: 1px dashed var(--border-soft);
}

.obj-list li:last-child { border-bottom: none; }

.obj-list.yes li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--green);
}

.obj-list.no li::before {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--red);
}

.obj-close {
  margin-top: 20px;
  padding: 18px 22px;
  background: rgba(59, 158, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--navy-dark);
  font-weight: 600;
  font-size: 15.5px;
  border-left: 4px solid var(--cyan);
}

/* =========================================================
   COMPARISON TABLE
   ========================================================= */
.compare {
  padding: 90px 0;
  background: var(--cream-deep);
}

.compare-table {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
}

.compare-head {
  background: var(--navy-darkest);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.compare-head > div,
.compare-row > div {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.compare-head .col-bad { color: rgba(255, 255, 255, 0.55); text-align: center; }
.compare-head .col-good { color: var(--cyan-light); text-align: center; }

.compare-row > div:first-child {
  font-weight: 600;
  color: var(--navy-dark);
}

.compare-row .col-bad {
  text-align: center;
  color: var(--navy-mute);
  text-decoration: line-through;
  font-size: 14.5px;
}

.compare-row .col-good {
  text-align: center;
  color: var(--green-deep);
  font-weight: 700;
}

.compare-row .col-good i { margin-right: 4px; }

.compare-row .price-hl {
  font-size: 28px;
  color: var(--red-deep);
  font-family: "Space Grotesk", sans-serif;
}

.compare-row:last-child > div { border-bottom: none; }

/* =========================================================
   FILE TREE
   ========================================================= */
.file-tree {
  background: var(--navy-darkest);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 8px;
  overflow-x: auto;
  border: 1px solid rgba(59, 158, 255, 0.25);
}

.file-tree pre {
  margin: 0;
  font-family: "SF Mono", "Fira Code", "Consolas", monospace;
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.file-tree code span {
  color: var(--navy-mute);
  font-size: 12px;
}

.file-tree code em {
  color: var(--cyan-light);
  font-style: normal;
}

.muted-note {
  color: var(--navy-soft);
  font-size: 14.5px;
}

.muted-note i { color: var(--cyan); }

/* Real video grid (preview section) */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.video-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: var(--navy-darkest);
  object-fit: cover;
}

.video-card .vc-meta {
  padding: 16px 18px 18px;
}

.video-card .vc-meta h5 {
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--navy-dark);
  font-family: "Space Grotesk", sans-serif;
}

.video-card .vc-meta p {
  margin: 0;
  font-size: 12.5px;
  color: var(--cyan-deep);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.video-card .vc-meta p i { margin-right: 5px; color: var(--cyan); }

.video-list .section-sub.light {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 36px;
}

.vid-item .num,
.vid-item .vid-num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-deep) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  font-family: "Space Grotesk", sans-serif;
}

.price-per {
  text-align: center;
  color: var(--navy-soft);
  font-size: 15px;
  margin: -8px 0 20px;
}

.price-per strong { color: var(--navy-dark); }

.secure-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
  font-size: 13px;
  color: var(--navy-mute);
  font-weight: 600;
}

.secure-row i { color: var(--green); margin-right: 6px; }

.final-cta .strike {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 22px;
  margin-left: 8px;
}

/* =========================================================
   SECTION TITLES
   ========================================================= */
.section-eyebrow {
  text-align: center;
  color: var(--cyan-deep);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
}

.section-eyebrow i { margin-right: 4px; color: var(--cyan); }

.section-title {
  text-align: center;
  font-size: 42px;
  line-height: 1.16;
  margin-bottom: 14px;
  color: var(--navy-dark);
  font-family: "Space Grotesk", sans-serif;
}

.section-title .accent { color: var(--cyan-deep); }

.section-sub {
  text-align: center;
  color: var(--navy-soft);
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 17px;
  line-height: 1.7;
}

/* =========================================================
   PREVIEW STRIP
   ========================================================= */
.preview-strip {
  padding: 70px 0 40px;
  background: var(--cream);
  border-top: 1px solid var(--border);
  position: relative;
}

.preview-strip::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.scroller {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 14px 4px 28px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan) transparent;
}

.scroller::-webkit-scrollbar { height: 10px; }
.scroller::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 6px; }

.tile {
  flex: 0 0 auto;
  width: 240px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.tile .img-wrap {
  height: 150px;
  background: var(--navy-darkest);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.tile .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.tile .img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.tile .play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: rgba(59, 158, 255, 0.90);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.tile .meta {
  padding: 14px 16px 18px;
  text-align: center;
}

.tile .meta h5 {
  font-size: 15.5px;
  margin: 0 0 4px;
  color: var(--navy-dark);
  font-family: "Space Grotesk", sans-serif;
}

.tile .meta p {
  font-size: 11.5px;
  color: var(--cyan-deep);
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

/* =========================================================
   TRANSFORMATION (Before / After)
   ========================================================= */
.transformation {
  padding: 90px 0;
  background: var(--navy-darkest);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.transformation::before,
.transformation::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.transformation::before {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -120px;
  background: radial-gradient(circle, rgba(59, 158, 255, 0.22), transparent 70%);
}

.transformation::after {
  width: 360px;
  height: 360px;
  bottom: -110px;
  left: -110px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.20), transparent 70%);
}

.transformation .container { position: relative; z-index: 2; }
.transformation .section-title { color: #fff; }
.transformation .section-title .accent { color: var(--cyan-light); }
.transformation .section-eyebrow { color: var(--cyan-light); }
.transformation .section-sub { color: rgba(255, 255, 255, 0.72); }

.t-col {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  padding: 30px 30px 26px;
  backdrop-filter: blur(8px);
  height: 100%;
}

.t-col.before { border-color: rgba(230, 57, 70, 0.40); }
.t-col.after  { border-color: rgba(56, 189, 248, 0.50); }

.t-col h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
}

.t-col.before h3 i { color: var(--red); }
.t-col.after h3 i  { color: var(--cyan-light); }

.t-col ul { list-style: none; padding: 0; margin: 0; }

.t-col li {
  padding: 11px 0 11px 34px;
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15.5px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.10);
  font-family: "Inter", sans-serif;
}

.t-col li:last-child { border-bottom: none; }

.t-col.before li::before {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--red);
}

.t-col.after li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--cyan-light);
}

.t-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--cyan);
  padding: 24px 0;
}

/* =========================================================
   PROBLEM
   ========================================================= */
.problem {
  padding: 90px 0;
  background: var(--paper);
}

.prob-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 44px;
  border-left: 6px solid var(--red);
  box-shadow: var(--shadow-md);
}

.prob-card .lead {
  font-size: 18px;
  color: var(--navy-dark);
  line-height: 1.78;
  margin-bottom: 16px;
}

.prob-card .lead strong { color: var(--navy-darkest); }

.prob-card .quests {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}

.prob-card .quests li {
  padding: 9px 0 9px 30px;
  position: relative;
  color: var(--navy-dark);
  font-weight: 600;
  font-size: 15px;
}

.prob-card .quests li::before {
  content: "\f059";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--red);
}

.prob-close {
  margin-top: 20px;
  padding: 18px 22px;
  background: rgba(230, 57, 70, 0.08);
  border-radius: var(--radius-sm);
  color: var(--red-deep);
  font-weight: 700;
  font-size: 16.5px;
  border-left: 4px solid var(--red);
}

.prob-close i { margin-right: 10px; }

/* =========================================================
   SOLUTION
   ========================================================= */
.solution {
  padding: 90px 0;
  background: linear-gradient(140deg, var(--cream) 0%, var(--cream-deep) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.solution::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(600px 300px at 50% 50%, rgba(59, 158, 255, 0.10), transparent 70%);
  pointer-events: none;
}

.solution .container { position: relative; z-index: 2; }

.solution-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy-dark);
  color: #fff;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 17px;
  margin-top: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cyan);
  font-family: "Inter", sans-serif;
}

.solution-tagline i { color: var(--cyan-light); }

/* =========================================================
   WHAT YOU GET
   ========================================================= */
.whatyouget {
  padding: 90px 0;
  background: var(--cream);
}

.block-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 34px 32px;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.block-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan-deep), var(--cyan), var(--cyan-light));
  border-radius: var(--radius) var(--radius) 0 0;
}

.block-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.block-card h3 {
  font-size: 23px;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px dashed var(--border);
  font-family: "Space Grotesk", sans-serif;
}

.block-card h3 i { color: var(--cyan); font-size: 22px; }

.block-card ul { list-style: none; padding: 0; margin: 0; }

.block-card li {
  padding: 9px 0 9px 30px;
  position: relative;
  color: var(--navy-dark);
  font-size: 15.5px;
}

.block-card li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--green);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.fmt {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.fmt:hover { transform: translateY(-4px); }

.fmt .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: var(--cream-deep);
  color: var(--cyan-deep);
  border: 1px solid var(--cyan);
}

.fmt.red .icon {
  background: rgba(230, 57, 70, 0.10);
  color: var(--red-deep);
  border-color: rgba(230, 57, 70, 0.40);
}

.fmt.cyan .icon {
  background: rgba(59, 158, 255, 0.12);
  color: var(--cyan-deep);
  border-color: rgba(59, 158, 255, 0.40);
}

.fmt.purple .icon {
  background: rgba(110, 79, 160, 0.12);
  color: var(--purple);
  border-color: rgba(110, 79, 160, 0.40);
}

.fmt.ink .icon {
  background: rgba(11, 18, 32, 0.08);
  color: var(--navy-dark);
  border-color: rgba(11, 18, 32, 0.30);
}

.fmt h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--navy-dark);
  font-family: "Space Grotesk", sans-serif;
}

.fmt p {
  color: var(--navy-soft);
  margin: 0;
  font-size: 13.5px;
}

.plr-banner {
  margin-top: 40px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-darkest) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 38px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(110, 79, 160, 0.40);
}

.plr-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 220px at 80% 0, rgba(110, 79, 160, 0.28), transparent 60%);
  pointer-events: none;
}

.plr-banner > * { position: relative; z-index: 2; }

.plr-banner .key {
  width: 80px;
  height: 80px;
  margin: 0 auto 14px;
  background: rgba(110, 79, 160, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: var(--cyan-light);
  border: 1px solid rgba(110, 79, 160, 0.50);
}

.plr-banner h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 28px;
  font-family: "Space Grotesk", sans-serif;
}

.plr-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin: 5px 0;
  font-size: 15.5px;
}

.plr-banner p i { color: var(--cyan-light); margin-right: 8px; }

.plr-banner .pill {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 12px;
}

/* =========================================================
   VIDEO LIST (50 videos)
   ========================================================= */
.video-list {
  padding: 90px 0;
  background:
    radial-gradient(800px 400px at 50% 0, rgba(59, 158, 255, 0.08), transparent 70%),
    linear-gradient(180deg, var(--navy-darkest) 0%, var(--navy-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.video-list::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.012) 0 2px, transparent 2px 8px);
  pointer-events: none;
}

.video-list .container { position: relative; z-index: 2; }
.video-list .section-eyebrow { color: var(--cyan-light); }
.video-list .section-title { color: #fff; }
.video-list .section-title .accent { color: var(--cyan-light); }
.video-list .section-sub { color: rgba(255, 255, 255, 0.72); }

.vid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.vid-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.vid-item:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 158, 255, 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.vid-item .vid-num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-deep) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  font-family: "Space Grotesk", sans-serif;
  box-shadow: 0 4px 12px rgba(59, 158, 255, 0.30);
}

.vid-item:nth-child(6n+2) .vid-num { background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%); }
.vid-item:nth-child(6n+3) .vid-num { background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%); }
.vid-item:nth-child(6n+4) .vid-num { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-darkest) 100%); }
.vid-item:nth-child(6n+5) .vid-num { background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%); }
.vid-item:nth-child(6n+6) .vid-num { background: linear-gradient(135deg, var(--cyan-light) 0%, var(--cyan) 100%); color: var(--navy-darkest); }

.vid-item .vid-text { flex: 1; min-width: 0; }

.vid-item .vid-text h5 {
  font-size: 15px;
  margin: 0 0 4px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  line-height: 1.35;
}

.vid-item .vid-text small {
  font-size: 11px;
  color: var(--cyan-light);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.vid-item .vid-text p {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.vid-item i.vid-icon {
  color: rgba(56, 189, 248, 0.70);
  font-size: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* =========================================================
   AUDIENCE
   ========================================================= */
.audience {
  padding: 90px 0;
  background: var(--paper);
}

.aud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.aud {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aud:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.aud .ic {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--cyan-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border: 1px solid var(--cyan);
}

.aud:nth-child(4n+2) .ic {
  background: rgba(230, 57, 70, 0.10);
  color: var(--red-deep);
  border-color: rgba(230, 57, 70, 0.35);
}

.aud:nth-child(4n+3) .ic {
  background: rgba(11, 18, 32, 0.06);
  color: var(--navy-dark);
  border-color: rgba(11, 18, 32, 0.25);
}

.aud:nth-child(4n+4) .ic {
  background: rgba(110, 79, 160, 0.10);
  color: var(--purple);
  border-color: rgba(110, 79, 160, 0.35);
}

.aud h4 {
  font-size: 15px;
  margin: 0;
  color: var(--navy-dark);
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

/* =========================================================
   PLR RIGHTS USES
   ========================================================= */
.uses {
  padding: 90px 0;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-deep) 100%);
}

.uses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.use-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy-dark);
  font-weight: 600;
  font-size: 15px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.use-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.use-item i {
  width: 42px;
  height: 42px;
  background: var(--cream-deep);
  color: var(--cyan-deep);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
  border: 1px solid var(--cyan);
}

.use-item:nth-child(3n+2) i {
  background: rgba(230, 57, 70, 0.10);
  color: var(--red-deep);
  border-color: rgba(230, 57, 70, 0.35);
}

.use-item:nth-child(3n+3) i {
  background: rgba(110, 79, 160, 0.10);
  color: var(--purple);
  border-color: rgba(110, 79, 160, 0.35);
}

.note-card {
  margin-top: 30px;
  background: #fff;
  border-radius: var(--radius-sm);
  border-left: 5px solid var(--cyan);
  padding: 20px 24px;
  color: var(--navy-soft);
  font-size: 14.5px;
  line-height: 1.7;
}

.note-card h5 {
  font-size: 13px;
  margin-bottom: 8px;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Inter", sans-serif;
}

.note-card h5 i { color: var(--cyan-deep); margin-right: 8px; }

/* =========================================================
   VALUE STACK
   ========================================================= */
.value {
  padding: 90px 0;
  background: var(--cream);
}

.value-list {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.value-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 26px;
  border-bottom: 1px dashed var(--border);
}

.value-row:last-of-type { border-bottom: none; }

.value-row .v-ic {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--cream-deep);
  color: var(--cyan-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid var(--cyan);
}

.value-row:nth-child(2n) .v-ic {
  background: rgba(11, 18, 32, 0.06);
  color: var(--navy-dark);
  border-color: rgba(11, 18, 32, 0.30);
}

.value-row .v-info { flex: 1; }

.value-row .v-info h5 {
  margin: 0;
  font-size: 16.5px;
  color: var(--navy-dark);
  font-family: "Space Grotesk", sans-serif;
}

.value-row .v-info small { color: var(--navy-mute); font-size: 12.5px; }

.value-row .v-price {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  color: var(--green-deep);
  font-size: 22px;
}

.value-total {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-darkest) 100%);
  color: #fff;
  padding: 24px 28px;
  font-weight: 800;
  font-size: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
}

.value-total .price { color: var(--cyan-light); font-size: 32px; }

.price-row {
  background: var(--paper);
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.price-row .price-cell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--navy-dark);
}

.price-row .price-cell strong {
  color: var(--navy-darkest);
  font-size: 18px;
  font-family: "Space Grotesk", sans-serif;
}

.price-row .price-cell.highlight {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-red);
}

.price-row .price-cell.highlight strong {
  color: var(--yellow);
  font-size: 24px;
}

.value-note {
  text-align: center;
  margin-top: 24px;
  background: var(--cream-deep);
  color: var(--cyan-deep);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  border: 1px dashed var(--cyan);
}

.value-note i { color: var(--red); margin-right: 8px; }

/* =========================================================
   PRICING / BUY BOX
   ========================================================= */
.pricing {
  padding: 90px 0;
  background:
    radial-gradient(700px 400px at 0 0, rgba(59, 158, 255, 0.14), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(11, 18, 32, 0.08), transparent 60%),
    var(--cream);
}

.price-box {
  background: #fff;
  border: 3px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 44px 46px;
  box-shadow: 0 30px 60px rgba(230, 57, 70, 0.20);
  position: relative;
  overflow: hidden;
}

.price-box::before {
  content: "BEST VALUE";
  position: absolute;
  top: 20px;
  right: -44px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  padding: 6px 52px;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2.5px;
  transform: rotate(35deg);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.45);
  font-family: "Inter", sans-serif;
}

.price-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.price-checklist li {
  padding: 11px 0 11px 34px;
  position: relative;
  font-size: 16px;
  color: var(--navy-dark);
  border-bottom: 1px dashed var(--border);
}

.price-checklist li:last-child { border-bottom: none; }

.price-checklist li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--green);
  font-size: 18px;
}

.price-display {
  text-align: center;
  margin: 26px 0 24px;
}

.price-display .price-old {
  font-family: "Space Grotesk", sans-serif;
  text-decoration: line-through;
  color: var(--navy-mute);
  font-size: 32px;
  font-weight: 700;
  margin-right: 18px;
  vertical-align: middle;
}

.price-display .price-new {
  font-family: "Space Grotesk", sans-serif;
  font-size: 84px;
  font-weight: 800;
  color: var(--red-deep);
  vertical-align: middle;
  line-height: 1;
}

.price-display .price-new sup {
  font-size: 32px;
  top: -36px;
}

.price-urg {
  margin-top: 24px;
  background: rgba(230, 57, 70, 0.08);
  color: var(--red-deep);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-align: center;
  font-size: 15px;
  border: 1px solid rgba(230, 57, 70, 0.25);
}

.price-urg i { margin-right: 8px; }

/* =========================================================
   GUARANTEE
   ========================================================= */
.guarantee {
  padding: 90px 0;
  background: var(--paper);
  text-align: center;
}

.guarantee .guar-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-deep) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  box-shadow: 0 18px 36px rgba(59, 158, 255, 0.30);
  border: 4px solid #fff;
  outline: 1px solid var(--cyan);
}

.guarantee p.desc {
  font-size: 17.5px;
  color: var(--navy-soft);
  max-width: 740px;
  margin: 0 auto 20px;
}

.guarantee .closing {
  display: inline-block;
  background: #fff;
  border: 2px solid var(--cyan);
  padding: 13px 26px;
  border-radius: 999px;
  color: var(--cyan-deep);
  font-weight: 700;
}

.guarantee .closing i { margin-right: 8px; color: var(--cyan); }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: 90px 0;
  background: var(--cream);
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  padding: 20px 24px;
  cursor: pointer;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover { border-color: var(--cyan); box-shadow: var(--shadow-sm); }
.faq-item.active { border-color: var(--red); box-shadow: var(--shadow-md); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.45;
  font-family: "Inter", sans-serif;
}

.faq-q i.toggle {
  color: var(--red-deep);
  transition: transform 0.2s ease, color 0.2s ease;
  margin-left: 16px;
  font-size: 18px;
  flex-shrink: 0;
}

.faq-item.active .faq-q i.toggle::before {
  content: "\f068";
}

.faq-a {
  display: none;
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  color: var(--navy-soft);
  font-size: 15px;
  line-height: 1.75;
}

.faq-item.active .faq-a { display: block; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  padding: 90px 0 110px;
  background: linear-gradient(135deg, var(--navy-darkest) 0%, var(--navy-dark) 50%, var(--navy) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.final-cta::before {
  width: 520px;
  height: 520px;
  top: -210px;
  right: -160px;
  background: radial-gradient(circle, rgba(59, 158, 255, 0.28), transparent 70%);
}

.final-cta::after {
  width: 520px;
  height: 520px;
  bottom: -210px;
  left: -160px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.26), transparent 70%);
}

.final-cta .container { position: relative; z-index: 2; }

.final-cta h2 {
  color: #fff;
  font-size: 46px;
  margin-bottom: 22px;
  font-family: "Space Grotesk", sans-serif;
}

.final-cta h2 .accent { color: var(--cyan-light); }

.final-cta p {
  color: rgba(255, 255, 255, 0.90);
  font-size: 17px;
  max-width: 800px;
  margin: 10px auto;
  line-height: 1.7;
}

.final-cta .final-price {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: var(--cyan-light);
  margin: 30px 0 18px;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer,
.footer-section {
  background: var(--navy-darkest);
  color: rgba(255, 255, 255, 0.70);
  padding: 60px 0 36px;
  font-size: 13.5px;
  line-height: 1.7;
  border-top: 1px solid rgba(59, 158, 255, 0.18);
}

footer .footer-disclaimer,
.footer-section .footer-disclaimer {
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius-sm);
}

footer .footer-disclaimer p,
footer .wplus_spdisclaimer,
.footer-section .wplus_spdisclaimer {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12.5px;
  line-height: 1.7;
  margin: 0;
}

footer .footer-disclaimer strong,
.footer-section .footer-disclaimer strong {
  color: var(--cyan-light);
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
}

footer .footer-extra,
.footer-section .footer-extra {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px dashed rgba(255, 255, 255, 0.10);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

footer .footer-extra strong,
.footer-section .footer-extra strong {
  color: var(--cyan-light);
  font-weight: 700;
}

footer .footer-links,
.footer-section .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin: 24px 0 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

footer .footer-links a,
.footer-section .footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.15s ease;
}

footer .footer-links a:hover,
.footer-section .footer-links a:hover {
  color: var(--cyan-light);
}

footer .footer-links a i,
.footer-section .footer-links a i {
  color: var(--cyan);
}

footer .footer-copy,
.footer-section .footer-copy {
  text-align: center;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12.5px;
  letter-spacing: 0.3px;
  font-family: "Inter", sans-serif;
}

/* =========================================================
   BOTTOM STICKY POPUP
   ========================================================= */
.sticky-bottom {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1040;
  width: calc(100% - 32px);
  max-width: 1020px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  border-radius: 18px;
  padding: 14px 22px;
  box-shadow: 0 18px 40px rgba(230, 57, 70, 0.45);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.sticky-bottom.hidden {
  display: none;
}

.sticky-bottom .left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.sticky-bottom .left .ic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--yellow);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.sticky-bottom .text { line-height: 1.3; }

.sticky-bottom .text strong {
  display: block;
  font-size: 15.5px;
  font-weight: 800;
}

.sticky-bottom .text small {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
}

.sticky-bottom .price-pill {
  background: var(--yellow);
  color: #1a1010;
  padding: 5px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  margin: 0 12px;
  flex-shrink: 0;
}

.sticky-bottom .sb-btn {
  background: #fff;
  color: var(--red-deep);
  font-weight: 800;
  font-size: 14.5px;
  padding: 11px 22px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.15s ease;
  flex-shrink: 0;
}

.sticky-bottom .sb-btn:hover {
  transform: translateY(-1px);
  color: var(--red-darker);
}

.sticky-bottom .close {
  background: rgba(255, 255, 255, 0.18);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 11px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.sticky-bottom .close:hover {
  background: rgba(255, 255, 255, 0.30);
}

/* =========================================================
   RESPONSIVE (mobile-first breakpoints)
   ========================================================= */
@media (max-width: 991.98px) {
  h1.hero-title { font-size: 40px; }
  .hero-checklist { max-width: 520px; margin-left: auto; margin-right: auto; }
  .hero-sub { font-size: 19px; }
  .video-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .section-title { font-size: 34px; }
  .final-cta h2 { font-size: 36px; }
  .aud-grid { grid-template-columns: repeat(3, 1fr); }
  .uses-grid { grid-template-columns: repeat(2, 1fr); }
  .format-grid { grid-template-columns: repeat(2, 1fr); }
  .price-row { grid-template-columns: 1fr; }
  .prob-card .quests { grid-template-columns: 1fr; }
  .vid-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .income-grid { grid-template-columns: repeat(2, 1fr); }
  .income-card:nth-child(2) { border-right: none; }
  .income-card { border-bottom: 1px solid var(--border); }
  .compare-head, .compare-row { grid-template-columns: 1.2fr 0.9fr 0.9fr; font-size: 13px; }
}

@media (max-width: 767.98px) {
  body { padding-bottom: 150px; }

  .hero { padding: 40px 0 48px; }
  h1.hero-title { font-size: 28px; }
  .hero-mockup { width: 100%; }
  .hero-video-cap { font-size: 13px; }
  .income-grid { grid-template-columns: 1fr; }
  .income-card { border-right: none; }
  .obj-card { padding: 28px 22px; }
  .compare-head, .compare-row { grid-template-columns: 1fr; }
  .compare-head > div:first-child,
  .compare-row > div:first-child { background: var(--cream-deep); font-weight: 800; }
  .compare-row .col-bad,
  .compare-row .col-good { text-align: left; padding-left: 32px; }
  .hero-sub { font-size: 17px; }
  .hero-copy { font-size: 15px; }
  .btn-cta { font-size: 15.5px; padding: 14px 24px; }
  .section-title { font-size: 27px; }
  .section-sub { font-size: 15px; }

  .aud-grid { grid-template-columns: repeat(2, 1fr); }
  .uses-grid { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; }

  .prob-card { padding: 28px 22px; }
  .price-box { padding: 28px 22px; }
  .price-display .price-new { font-size: 58px; }
  .price-display .price-old { font-size: 24px; }

  .top-banner { font-size: 13px; padding: 9px 14px; }
  .top-banner .tb-flex { gap: 10px; }
  .top-banner .tb-btn { padding: 5px 12px; font-size: 12.5px; }

  .sticky-bottom { padding: 10px 14px; gap: 10px; }
  .sticky-bottom .left .ic { width: 38px; height: 38px; font-size: 16px; }
  .sticky-bottom .text strong { font-size: 13.5px; }
  .sticky-bottom .text small { display: none; }
  .sticky-bottom .price-pill { font-size: 14px; padding: 3px 10px; margin: 0 6px; }
  .sticky-bottom .sb-btn { font-size: 12.5px; padding: 8px 14px; }

  .value-row { padding: 14px 16px; gap: 12px; }
  .value-row .v-info h5 { font-size: 14.5px; }
  .value-row .v-price { font-size: 18px; }

  .tile { width: 210px; }
  .tile .img-wrap { height: 130px; }

  .final-cta h2 { font-size: 30px; }
  .vid-grid { grid-template-columns: 1fr; }
  .video-list { padding: 60px 0 70px; }

  footer,
  .footer-section { padding: 44px 0 30px; }

  footer .footer-disclaimer,
  .footer-section .footer-disclaimer { padding: 20px 18px; }

  footer .footer-links,
  .footer-section .footer-links { gap: 16px; }

  footer .footer-links a,
  .footer-section .footer-links a { font-size: 12.5px; }
}

@media (max-width: 575.98px) {
  h1.hero-title { font-size: 28px; }
  .hero-badges { gap: 8px; }
  .h-badge { font-size: 12px; padding: 7px 12px; }
  .price-display .price-new { font-size: 48px; }
  .sticky-bottom .left .ic { display: none; }
  .aud-grid { grid-template-columns: 1fr; }
}
