:root {
  --ink: #0a0c12;
  --ink2: #0d101a;
  --ink3: #111420;
  --ink4: #161924;
  --blue: #007de1;
  --blue-l: #2b97f0;
  --blue-xs: rgba(0, 125, 225, 0.07);
  --blue-dim: rgba(0, 125, 225, 0.14);
  --border: rgba(255, 255, 255, 0.06);
  --border-b: rgba(0, 125, 225, 0.28);
  --t1: #f4f6ff;
  --t2: #a8b4cc;
  --t3: #5c6480;
  --green: #16a34a;
  --green-l: #22c55e;
  --red: #dc2626;
  --gold: #c9973a;
  --amber: #f59e0b;
  --r: 12px;
  --glow: 0 0 80px rgba(0, 125, 225, 0.15), 0 0 160px rgba(0, 125, 225, 0.06);
  --shadow-card: 0 4px 6px rgba(0, 0, 0, 0.2), 0 20px 60px rgba(0, 0, 0, 0.4);
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--ink);
  color: #f5f7ff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  animation: body-in 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes body-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

img {
  max-width: 100%;
  display: block;
}

/* custome know morebtn start */

.know-mr-btn-div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.know-mr-btn {
  margin-top: 15px;
  padding: 20px;
  border-radius: 20px;
  border-style: solid;
  border-color: var(--t3);
  border-width: 0.1px;
  color: var(--t1);
  text-decoration: none;
}

.know-mr-btn:hover {
  padding: 20px;
  transition-delay: 0.16s;
  border-radius: 20px;
  border-style: solid;
  border-color: var(--blue);
  border-width: 0.1px;
}

@media screen and (max-width: 640px) {
  .know-mr-btn {
    margin-top: 15px;
    padding: 10px;
    border-radius: 20px;
    border-style: solid;
    border-color: var(--t3);
    border-width: 0.1px;
    color: var(--t1);
    text-decoration: none;
   
  }
  .know-mr-btn:hover {
  padding: 10px;
  transition-delay: 0.16s;
  border-radius: 20px;
  border-style: solid;
  border-color: var(--blue);
  border-width: 0.1px;
}
}

/* custome know morebtn end */

::selection {
  background: rgba(0, 125, 225, 0.3);
  color: #fff;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--ink2);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 125, 225, 0.4);
  border-radius: 3px;
}

/* noise */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── UTILS ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffca63 !important;
  margin-bottom: 20px;
  background: rgba(255, 202, 99, 0.08) !important;
  border: 1px solid rgba(255, 202, 99, 0.28) !important;
  border-radius: 4px;
  padding: 5px 13px;
}

.eyebrow-center {
  display: flex;
  justify-content: center;
}

/* ── REVEAL ── */
.r {
  opacity: 0;
  transform: translateY(26px) scale(0.99);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.r.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.d1 {
  transition-delay: 0.08s;
}

.d2 {
  transition-delay: 0.16s;
}

.d3 {
  transition-delay: 0.24s;
}

.d4 {
  transition-delay: 0.32s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  -webkit-tap-highlight-color: transparent;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: #dce6f8 !important;
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.09) !important;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-green {
  background: #25d366;
  color: #fff !important;
  border: none;
}

.btn-green:hover {
  background: #1ebe5a;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

/* ── MAIN CTA BUTTON ── */
.btn-cta {
  background: linear-gradient(135deg, var(--blue), #0091ff);
  color: #fff !important;
  box-shadow: 0 4px 24px rgba(0, 125, 225, 0.35);
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.btn-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transform: skewX(-24deg);
  animation: btnshine 4s ease-in-out infinite;
}

@keyframes btnshine {
  0% {
    left: -120%;
  }

  55% {
    left: 140%;
  }

  100% {
    left: 140%;
  }
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(0, 125, 225, 0.5);
}

.btn-cta-full {
  width: 100%;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 14px 0;
  transition: all 0.3s;
}

nav.sc {
  background: rgba(5, 8, 15, 0.96);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* .logo {
      font-family: "Inter", sans-serif;
      font-size: 22px;
      font-weight: 900;
      letter-spacing: -.04em;
      color: var(--t1);
      text-decoration: none;
      flex-shrink: 0
    } */

.logo img {
  height: 70px;
  width: 70px;
  border-radius: 100%;
}

/* .logo span {
      color: var(--blue)
    } */

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--t2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--t1);
}

/* FIX 1: Sticky nav CTA */
#navCta {
  display: none;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: -0.01em;
  animation: nav-cta-in 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

#navCta:hover {
  background: var(--blue-l);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 125, 225, 0.4);
}

#navCta.visible {
  display: block;
}

.nav-phone {
  display: none;
  align-items: center;
  gap: 6px;
  color: #c8d4e6;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-phone:hover {
  color: #fff;
}

.nav-phone svg {
  flex-shrink: 0;
  stroke: var(--blue-l);
}

nav.sc .nav-phone {
  display: flex;
}

@keyframes nav-cta-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  -webkit-tap-highlight-color: transparent;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--t1);
  border-radius: 2px;
  transition: all 0.3s;
}

.mob-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 8, 15, 0.98);
  backdrop-filter: blur(24px);
  z-index: 350;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mob-menu.open {
  display: flex;
}

.mob-menu a {
  color: var(--t1);
  text-decoration: none;
  font-size: 22px;
  font-weight: 800;
  transition: color 0.2s;
  letter-spacing: -0.03em;
}

.mob-menu a:hover {
  color: var(--blue);
}

.mob-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--t1);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
}

/* FIX 2: Mobile bottom bar */
.mob-bottom-bar {
  display: none !important;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 250;
  background: rgba(8, 10, 18, 0.97);
  border-top: 1px solid rgba(0, 125, 225, 0.22);
  backdrop-filter: blur(24px);
  padding: 11px 14px calc(11px + env(safe-area-inset-bottom));
  gap: 9px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mob-bottom-bar.show {
  transform: translateY(0);
}

.mbb-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 8px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

.mbb-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 125, 225, 0.35);
}

.mbb-primary:active {
  background: var(--blue-l);
  transform: scale(0.97);
}

.mbb-wa {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25) !important;
  color: #25d366;
}

.mbb-wa:active {
  background: rgba(37, 211, 102, 0.2);
  transform: scale(0.97);
}

/* FIX 3: Exit intent bottom sheet */
.exit-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(8, 10, 20, 0.98);
  border-top: 1px solid rgba(0, 125, 225, 0.28);
  border-radius: 18px 18px 0 0;
  padding: 20px 18px calc(30px + env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(24px);
  display: none;
}

.exit-sheet.show {
  display: block;
  transform: translateY(0);
}

.exit-sheet-handle {
  width: 36px;
  height: 4px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  margin: 0 auto 16px;
}

.exit-sheet h4 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.exit-sheet p {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.6;
  margin-bottom: 16px;
}

.exit-sheet-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: var(--t2);
  font-size: 22px;
  cursor: pointer;
}

/* FIX 4: Urgency strip — fixed mobile alignment */
.urgency-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.22);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #f87171;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  animation: urgency-pulse 3s ease-in-out infinite;
  width: fit-content;
  max-width: 100%;
}

@keyframes urgency-pulse {
  0%,
  100% {
    border-color: rgba(239, 68, 68, 0.22);
  }

  50% {
    border-color: rgba(239, 68, 68, 0.42);
  }
}

.urgency-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  animation: blink 1.4s infinite;
  flex-shrink: 0;
}

/* hero tag also fix */
.hero-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.07);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 22px;
  width: fit-content;
  max-width: 100%;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* FIX 5: Mobile stats strip */
.hero-key-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 18px;
}

.hero-key-points .award-badge,
.hero-key-points .urgency-strip,
.hero-key-points .hero-tag {
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
}

.hero-key-points .hero-tag {
  border-radius: 6px;
  letter-spacing: 0.14em;
}

/* .mob-stats-strip {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 10px 0 4px;
  margin-bottom: 20px;
} */

.mob-stats-strip {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 10px 0 4px;
  margin-bottom: 20px;
  justify-content: center;
  align-items: center;

  width: 100%;
}

.mob-stat-pill {
  min-width: 0;
  background: rgba(0, 125, 225, 0.08);
  border: 1px solid rgba(0, 125, 225, 0.18);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
}

.mob-stat-pill .msv {
  font-size: 17px;
  font-weight: 900;
  color: var(--blue-l);
  line-height: 1;
  letter-spacing: -0.02em;
}

.mob-stat-pill .msl {
  font-size: 11px;
  color: var(--t2);
  margin-top: 4px;
  white-space: normal;
  line-height: 1.35;
}

@media (max-width: 768px) {
  .mob-stats-strip {
    display: grid;
  }
  .logo img {
    height: 50px;
    width: 50px;
    border-radius: 100%;
  }
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(
    180deg,
    #060810 0%,
    #080c18 35%,
    #0a0e1a 65%,
    #070a14 100%
  );
  position: relative;
}

/* Thin glowing accent line at very top of hero */
#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 125, 225, 0) 15%,
    rgba(43, 151, 240, 0.7) 42%,
    rgba(100, 180, 255, 0.9) 50%,
    rgba(43, 151, 240, 0.7) 58%,
    rgba(0, 125, 225, 0) 85%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 3;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb1 {
  width: 1100px;
  height: 1100px;
  background: radial-gradient(
    circle,
    rgba(0, 125, 225, 0.16) 0%,
    rgba(0, 100, 200, 0.07) 40%,
    transparent 68%
  );
  top: -380px;
  right: -340px;
  animation: float1 8s ease-in-out infinite;
}

.hero-orb2 {
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.07) 0%,
    transparent 65%
  );
  bottom: -200px;
  left: -140px;
  animation: float2 10s ease-in-out infinite;
}

/* New: deep indigo ambient bottom-left orb */
.hero-orb3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(60, 30, 160, 0.09) 0%,
    transparent 65%
  );
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
  pointer-events: none;
  animation: float2 13s ease-in-out infinite reverse;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 125, 225, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 125, 225, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(
    ellipse 75% 65% at 65% 40%,
    black 0%,
    transparent 100%
  );
  pointer-events: none;
}

/* Shimmer horizon line across the hero top area */
.hero-shimmer-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 125, 225, 0) 20%,
    rgba(0, 145, 255, 0.55) 50%,
    rgba(0, 125, 225, 0) 80%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

@keyframes float1 {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-30px, 20px);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(20px, -15px);
  }
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: blink 2s infinite;
}

/* Hero eyebrow badge above h1 — pill style with pulsing dot */
.hero-eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.38);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
}

/* Pulsing blue dot — replaces the old horizontal pip */
.hero-eyebrow-pip {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-l);
  flex-shrink: 0;
  animation: eyebrow-pulse 2.2s ease-in-out infinite;
}

@keyframes eyebrow-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(43, 151, 240, 0.55);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 5px rgba(43, 151, 240, 0);
    opacity: 0.85;
  }
}

.hero-eyebrow-text {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-l);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
  padding-top: 16px;
}

.hero-h1 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4.2vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
  color: #f0f4ff !important;
}

/* "Wrong" — blue accent, inherits Bricolage Grotesque */
.hero-h1 .bl {
  color: var(--blue-l);
  font-weight: 800;
}

/* "Real" — Playfair Display italic, the premium editorial accent word */
.hero-h1 .gd {
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.01em;
}

.hero-sub {
  font-family: "Inter", sans-serif;
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 400;
  color: #b8c6e0 !important;
  line-height: 1.85;
  margin-bottom: 34px;
  max-width: 490px;
  letter-spacing: 0.005em;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.proof-avatars {
  display: flex;
}

/* .proof-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: linear-gradient(135deg, var(--blue), var(--blue-l));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  margin-right: -8px;
  color: #fff;
} */

.proof-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: linear-gradient(135deg, var(--blue), var(--blue-l));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  margin-right: -8px;
  color: #fff;
}

.proof-av img {
  border-radius: 50%;
}

/* Hero reg card — strong glassmorphism */
.hero-reg-card {
  background: linear-gradient(
    160deg,
    rgba(15, 19, 34, 0.78) 0%,
    rgba(9, 11, 20, 0.88) 100%
  );
  border: 1px solid rgba(0, 125, 225, 0.28);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.3),
    0 30px 80px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  margin-top: 40px;
  animation: float-card 7.5s ease-in-out infinite;
}

.hero-reg-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 55% at 90% 0%,
      rgba(0, 125, 225, 0.18),
      transparent 65%
    ),
    radial-gradient(
      ellipse 60% 40% at 10% 100%,
      rgba(0, 80, 180, 0.1),
      transparent 55%
    );
  pointer-events: none;
}

.hero-reg-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--blue-l) 30%,
    var(--amber) 60%,
    var(--blue-l) 80%,
    transparent 100%
  );
  opacity: 0.85;
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.reg-header {
  padding: 26px 26px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.reg-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.reg-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  animation: blink 1.5s infinite;
}

.reg-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.reg-sub {
  font-size: 12px;
  color: #9aafc8 !important;
  line-height: 1.5;
}

.reg-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  position: relative;
  z-index: 1;
}

.reg-stat {
  background: var(--ink2);
  padding: 16px 18px;
  text-align: center;
}

.reg-stat-v {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--t1);
  line-height: 1;
  letter-spacing: -0.04em;
}

.reg-stat-l {
  font-size: 10px;
  color: #9aafc8 !important;
  margin-top: 3px;
  line-height: 1.4;
}

.reg-body {
  padding: 20px 26px 26px;
  position: relative;
  z-index: 1;
}

.reg-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 11px;
  font-size: 13px;
  color: #d8e4f5 !important;
  line-height: 1.5;
}

.reg-feat-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #22c55e;
  font-size: 10px;
  font-weight: 700;
  margin-top: 1px;
}

.reg-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.reg-cta-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--blue), #0091ff);
  color: #fff !important;
  border: none;
  border-radius: 9px;
  padding: 16px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 125, 225, 0.35);
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.reg-cta-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transform: skewX(-24deg);
  animation: btnshine 4s ease-in-out infinite;
}

.reg-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 125, 225, 0.5);
}

.reg-wa-btn {
  width: 100%;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #25d366 !important;
  border-radius: 9px;
  padding: 11px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all 0.3s;
  margin-top: 9px;
}

.reg-wa-btn:hover {
  background: rgba(37, 211, 102, 0.16);
  transform: translateY(-1px);
}

.reg-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11px;
  color: #9aafc8 !important;
  margin-top: 11px;
}

/* ── AUTHORITY BAND ── */
#auth {
  background: var(--ink2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.auth-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.auth-cell {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
  cursor: default;
}

.auth-cell:last-child {
  border-right: none;
}

.auth-cell:hover {
  background: var(--ink3);
}

.auth-v {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--blue-l);
  line-height: 1;
  letter-spacing: -0.04em;
}

.auth-l {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  line-height: 1.5;
  font-weight: 400;
}

/* ── VSL ── */
#vsl {
  padding: 90px 0;
  background: var(--ink);
}

#vsl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-b), transparent);
}

.vsl-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.vsl-h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: #ffffff;
}

.vsl-p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}

.vsl-pts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vsl-pt {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #bfc9de !important;
}

.vsl-n {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-xs);
  border: 1px solid var(--border-b);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  margin-top: 1px;
}

.vid-box {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 125, 225, 0.24);
  cursor: pointer;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
  background: linear-gradient(145deg, #0c1220, #10192c);
}

.vid-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.vid-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  animation: pulseplay 2.4s infinite;
}

@keyframes pulseplay {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 125, 225, 0.4);
  }

  70% {
    box-shadow: 0 0 0 26px rgba(0, 125, 225, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 125, 225, 0);
  }
}

.vid-box:hover .vid-play {
  transform: scale(1.1);
  background: var(--blue-l);
}

.vid-lbl {
  font-size: 13px;
  color: var(--t2);
}

.vid-dur {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 11px;
  color: var(--t2);
}

/* ── PAIN ── */
#pain {
  padding: 80px 0;
  background: var(--ink2);
}

.pain-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.pain-h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: #ffffff;
}

.pain-p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}

.pain-box {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 8px;
  padding: 18px 22px;
}

.pain-box p {
  font-size: 14px;
  font-weight: 500;
  color: var(--t1);
  line-height: 1.65;
}

.pain-box em {
  color: var(--amber);
  font-style: normal;
  font-weight: 700;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 14px 16px;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.pain-item:hover {
  border-color: rgba(239, 68, 68, 0.22);
  transform: translateX(5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.px {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  color: var(--red);
  font-weight: 700;
  margin-top: 1px;
}

.pt {
  font-size: 13px;
  color: #d8e4f5 !important;
  line-height: 1.5;
}

/* ── SYSTEM ── */
#system {
  padding: 90px 0;
  background: var(--ink);
}

.sys-h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: #ffffff;
}

.sys-p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 64px;
}

.sys-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.sys-line-wrap {
  position: absolute;
  top: 52px;
  left: 11%;
  right: 11%;
  height: 2px;
  background: var(--border);
  z-index: 0;
  border-radius: 2px;
}

.sys-line-prog {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), rgba(0, 125, 225, 0.35));
  border-radius: 2px;
  transition: width 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sys-line-prog.go {
  width: 100%;
}

.sys-line-dots {
  position: absolute;
  top: 52px;
  left: 11%;
  right: 11%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}

.sys-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--ink);
  transform: translateY(-4px);
  opacity: 0;
  transition: opacity 0.3s;
}

.sys-dot.go {
  opacity: 1;
}

.sys-step {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sys-node {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--ink3);
  border: 2px solid var(--blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  cursor: default;
}

.sys-node::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 125, 225, 0.2);
  animation: spin-slow 12s linear infinite;
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.sys-step:hover .sys-node {
  background: var(--blue-dim);
  box-shadow: 0 0 52px rgba(0, 125, 225, 0.3);
  transform: scale(1.07);
}

.sys-ns {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}

.sys-nn {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 30px;
  color: var(--blue-l);
  line-height: 1;
  letter-spacing: -0.04em;
}

.sys-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--blue-l);
  margin-bottom: 10px;
}

.sys-desc {
  font-size: 12px;
  color: var(--t2);
  line-height: 1.6;
}

.sys-foot {
  margin-top: 48px;
  text-align: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.sys-foot strong {
  color: #ffffff;
  font-style: normal;
}

/* ── WHO ── */
#who {
  padding: 80px 0;
  background: var(--ink2);
}

.who-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 44px;
}

.who-head h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: #ffffff;
}

.who-head p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.swipe-hint {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--t2);
  justify-content: center;
  margin-bottom: 12px;
}

.swipe-hint svg {
  animation: swipe-anim 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes swipe-anim {
  0%,
  100% {
    transform: translateX(0);
  }

  45% {
    transform: translateX(6px);
  }

  75% {
    transform: translateX(-2px);
  }
}

@media (max-width: 768px) {
  .swipe-hint {
    display: flex;
  }
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.who-card {
  background: linear-gradient(
    180deg,
    rgba(17, 20, 32, 0.96),
    rgba(12, 15, 24, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 28px 24px 22px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s,
    box-shadow 0.35s;
  cursor: default;
}

.who-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--blue),
    rgba(43, 151, 240, 0.18),
    transparent
  );
}

.who-topline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t2);
  margin-bottom: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.wi {
  padding:10px;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(0, 125, 225, 0.18),
    rgba(0, 125, 225, 0.05)
  );
  border: 1px solid rgba(0, 125, 225, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.wi svg {
  width: 28px;
  height: 28px;
  stroke: #55adff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.who-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: #f0f4ff;
}

.who-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  font-weight: 400;
}

.who-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 125, 225, 0.3);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.who-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.who-tags span {
  font-size: 11px;
  color: #d4ecff;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 125, 225, 0.12);
  border: 1px solid rgba(0, 125, 225, 0.18);
}

/* Carousel dots */
.carousel-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.c-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  padding: 0;
}

.c-dot.active {
  background: var(--blue);
  width: 18px;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .carousel-dots {
    display: flex;
  }
}

/* FIX 6: CS Quick reveal — always visible before/after */
.cs-quick-reveal {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 32px;
}
.cs-qr-before {
  color: rgba(251, 113, 133, 0.9);
  font-size: 13px;
  line-height: 1.5;
  flex: 1;
  font-weight: 500;
}
.cs-qr-arrow {
  color: rgba(255, 255, 255, 0.3);
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
}
.cs-qr-after {
  color: rgba(74, 222, 128, 0.9);
  font-size: 13px;
  line-height: 1.5;
  flex: 1;
  text-align: right;
  font-weight: 500;
}

/* ── CASE STUDIES ── */
#results {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    var(--ink) 0%,
    #080d1a 60%,
    var(--ink) 100%
  );
  position: relative;
}

.res-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}

.res-head h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.res-head p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.ticker-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  margin-bottom: 40px;
  overflow: hidden;
  padding: 10px 16px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: blink 1.5s infinite;
}

.ticker-scroll {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: scroll-left 22s linear infinite;
}

.ticker-scroll:hover {
  animation-play-state: paused;
}

.ticker-item {
  font-size: 12px;
  color: var(--t2);
  padding: 0 32px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.cs {
  background: linear-gradient(145deg, #111827 0%, #0d1520 60%, #0a1018 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
}
.cs:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 125, 225, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  border-color: rgba(0, 125, 225, 0.25);
}

.cs-stripe {
  height: 3px;
  background: linear-gradient(
    90deg,
    #2b97f0 0%,
    rgba(43, 151, 240, 0.5) 50%,
    transparent 100%
  );
  border-radius: 3px 3px 0 0;
}

.cs-top {
  padding: 28px 32px 24px;
}

.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(43, 151, 240, 0.1);
  border: 1px solid rgba(43, 151, 240, 0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  color: #7ec8f8;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.cs-name {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.cs-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  line-height: 1.5;
}

.cs-snapshot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 0;
}

.cs-snap-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  transition:
    background 0.2s,
    border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.cs-snap-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(43, 151, 240, 0.5),
    transparent
  );
}

.cs-snap-v {
  font-size: 28px;
  font-weight: 800;
  color: #2b97f0;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.cs-snap-l {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.cs-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  cursor: pointer;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.cs-toggle:hover {
  background: rgba(43, 151, 240, 0.06);
}
.cs-toggle-label {
  font-size: 13px;
  font-weight: 600;
  color: #2b97f0;
  letter-spacing: 0.01em;
}
.cs-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(43, 151, 240, 0.1);
  border: 1px solid rgba(43, 151, 240, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2b97f0;
  font-size: 12px;
  transition:
    transform 0.3s ease,
    background 0.2s;
}
.cs-toggle.open .cs-toggle-icon {
  transform: rotate(180deg);
  background: rgba(43, 151, 240, 0.18);
}

.cs-detail {
  display: none;
  padding: 24px 32px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.cs-detail.open {
  display: block;
}

.cs-ba {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 24px;
  font-size: 13px;
  line-height: 1.6;
}
.cs-before {
  color: rgba(251, 113, 133, 0.85);
  flex: 1;
}
.cs-arr {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  font-size: 18px;
  flex-shrink: 0;
}
.cs-after {
  color: rgba(74, 222, 128, 0.85);
  flex: 1;
}

.cs-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 0;
}

.cs-col-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 14px;
}

.cs-action {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.cs-action:last-child {
  border-bottom: none;
}
.cs-arr-small {
  color: #2b97f0;
  flex-shrink: 0;
  font-weight: 600;
  margin-top: 1px;
}

.cs-results-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-res-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.cs-ck {
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.cs-rt strong {
  color: #ffffff;
  font-weight: 600;
}

.classified-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c4b5fd;
}

/* FIX 7: Testimonials with avatar badges */
#testimonials {
  padding: 80px 0;
  background: var(--ink2);
}

.test-head {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 44px;
}

.test-head h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.test-head p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.review-card {
  background: linear-gradient(
    180deg,
    rgba(17, 20, 32, 0.96),
    rgba(12, 15, 24, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s,
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}

.review-card::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  color: rgba(0, 125, 225, 0.12);
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 125, 225, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.33);
}

.review-stars {
  letter-spacing: 0.18em;
  color: #f7b84d;
  font-size: 13px;
  margin-bottom: 14px;
}

.review-copy {
  font-size: 14px;
  color: var(--t1);
  line-height: 1.75;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  flex: 1;
}

.review-meta-row {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  margin-right: 10px;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.review-meta strong {
  font-size: 13px;
  color: #fff;
  font-weight: 700;
}

.review-meta span {
  font-size: 11px;
  color: #9aafc8 !important;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── COMPARISON ── */
#comparison {
  padding: 80px 0;
  background: var(--ink);
}

.comp-head {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 40px;
}

.comp-head h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.comp-table {
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.comp-hdr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--ink4);
  border-bottom: 1px solid var(--border);
}

.comp-th {
  padding: 16px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t3);
  border-right: 1px solid var(--border);
}

.comp-th:last-child {
  border-right: none;
  color: var(--blue);
  background: var(--blue-xs);
}

.comp-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.comp-row:last-child {
  border-bottom: none;
}

.comp-row:hover {
  background: rgba(0, 125, 225, 0.04);
}

.comp-td {
  padding: 13px 20px;
  font-size: 13px;
  color: #d8e4f5 !important;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1.4;
}

.comp-td:last-child {
  border-right: none;
  color: var(--t1);
  background: rgba(245, 158, 11, 0.04);
}

.x {
  color: var(--red);
  font-size: 14px;
  flex-shrink: 0;
}

.ck {
  color: var(--green);
  font-size: 12px;
  flex-shrink: 0;
}

/* ── NEXT STEPS ── */
#plans {
  padding: 90px 0;
  background: var(--ink2);
}

.plans-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.plans-head h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.plans-head p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.next-card {
  background: linear-gradient(
    180deg,
    rgba(17, 20, 32, 0.95),
    rgba(12, 15, 24, 0.98)
  );
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s,
    box-shadow 0.3s;
}

.next-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.next-card:hover {
  border-color: rgba(0, 125, 225, 0.28);
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.3);
}

.next-no {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(0, 125, 225, 0.12);
  border: 1px solid rgba(0, 125, 225, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #71bdff;
  margin-bottom: 18px;
}

.next-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: #f0f4ff;
}

.next-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  font-weight: 400;
}

.plan-note {
  text-align: center;
  margin-top: 28px;
  font-size: 12px;
  color: #9aafc8 !important;
  line-height: 1.65;
}

/* ── QUALIFY ── */
#qualify {
  padding: 80px 0;
  background: var(--ink);
}

.qualify-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.qualify-h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  margin-bottom: 26px;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.q-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.q-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 9px;
  font-size: 13px;
  color: #d8e4f5 !important;
  line-height: 1.45;
  transition: transform 0.2s;
}

.q-item.yes {
  background: rgba(34, 197, 94, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.1);
}

.q-item.no {
  background: rgba(239, 68, 68, 0.03);
  border: 1px solid rgba(239, 68, 68, 0.09);
}

.q-item:hover {
  transform: translateX(3px);
}

.qi {
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 1px;
}

/* ── CTA ── */
#cta {
  padding: 90px 0;
  background: var(--ink2);
}

#cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.cta-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.cta-h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: #ffffff;
}

.cta-p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-promises {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-pr {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  color: #d8e4f5 !important;
}

.cpr-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-xs);
  border: 1px solid var(--border-b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.bluecc-preview-card {
  background: linear-gradient(
    180deg,
    rgba(17, 20, 32, 0.96),
    rgba(12, 15, 24, 0.99)
  );
  border: 1px solid rgba(0, 125, 225, 0.22);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.42);
  position: relative;
  overflow: hidden;
}

.bluecc-preview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(0, 125, 225, 0.2),
    transparent 34%
  );
  pointer-events: none;
}

.bluecc-preview-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--blue),
    rgba(0, 125, 225, 0.2),
    transparent
  );
}

.bluecc-preview-head {
  position: relative;
  z-index: 1;
}

.bluecc-preview-head h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.bluecc-preview-head p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.bluecc-mini {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 125, 225, 0.12);
  border: 1px solid rgba(0, 125, 225, 0.2);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6fb8ff;
  font-weight: 800;
  margin-bottom: 14px;
}

.bluecc-points {
  display: grid;
  gap: 11px;
  margin: 20px 0;
  position: relative;
  z-index: 1;
}

.bluecc-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 13px;
  transition: border-color 0.2s;
}

.bluecc-point:hover {
  border-color: rgba(0, 125, 225, 0.2);
}

.bluecc-point span {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(0, 125, 225, 0.14);
  border: 1px solid rgba(0, 125, 225, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #82c4ff;
  font-size: 12px;
  font-weight: 800;
}

.bluecc-point strong {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
  color: #f7f9ff;
}

.bluecc-point small {
  display: block;
  font-size: 12px;
  color: #9aafc8 !important;
  line-height: 1.55;
}

.form-privacy {
  text-align: center;
  font-size: 11px;
  color: #9aafc8 !important;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ── MODALS ── */
.bluecc-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.bluecc-modal.active {
  display: flex;
}

.bluecc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(14px);
}

.bluecc-box {
  position: relative;
  width: 100%;
  max-width: 860px;
  height: 90vh;
  background: var(--ink2);
  border: 1px solid var(--border-b);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.65);
  animation: modal-in 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.bluecc-head {
  padding: 22px 24px;
  background: linear-gradient(
    135deg,
    rgba(0, 125, 225, 0.24),
    rgba(255, 255, 255, 0.04)
  );
  border-bottom: 1px solid var(--border);
}

.bluecc-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-l);
  margin-bottom: 6px;
}

.bluecc-head h3 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
  color: #f7f9ff !important;
}

.bluecc-head p {
  font-size: 13px;
  color: #9aafc8 !important;
  line-height: 1.55;
}

.bluecc-frame {
  width: 100%;
  height: calc(90vh - 116px);
  border: 0;
  background: #fff;
}

.bluecc-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--t1);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.bluecc-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* FIX 2b: Full-screen modal on mobile */
@media (max-width: 768px) {
  .bluecc-modal {
    padding: 0;
    align-items: flex-end;
  }

  .bluecc-box {
    height: 100dvh;
    border-radius: 0;
    max-width: 100%;
    animation: sheet-in 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  @keyframes sheet-in {
    from {
      transform: translateY(100%);
    }

    to {
      transform: translateY(0);
    }
  }

  .bluecc-frame {
    height: calc(100dvh - 110px);
  }
}

/* Prequal */
.prequal-modal,
.prequal-result {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.prequal-modal.active,
.prequal-result.active {
  display: flex;
}

.prequal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(14px);
}

.prequal-box {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: var(--ink2);
  border: 1px solid var(--border-b);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.65);
  animation: modal-in 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.prequal-box.small {
  max-width: 480px;
}

.prequal-head {
  padding: 22px 24px;
  background: linear-gradient(
    135deg,
    rgba(0, 125, 225, 0.24),
    rgba(255, 255, 255, 0.04)
  );
  border-bottom: 1px solid var(--border);
}

.prequal-head h3 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
  color: #f7f9ff !important;
}

.prequal-head p {
  font-size: 13px;
  color: #9aafc8 !important;
  line-height: 1.6;
}

.prequal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--t1);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prequal-body {
  padding: 24px;
}

.prequal-field {
  margin-bottom: 14px;
}

.prequal-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 8px;
}

.prequal-field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--t1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 13px 14px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.prequal-field select:focus {
  border-color: var(--blue);
}

.prequal-field select option {
  background: var(--ink3);
}

.prequal-note {
  font-size: 12px;
  line-height: 1.6;
  color: #d8e4f5;
  background: rgba(0, 125, 225, 0.08);
  border: 1px solid rgba(0, 125, 225, 0.14);
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 14px;
}

.prequal-note.muted {
  background: none;
  border: none;
  padding: 0;
  margin-top: 12px;
  margin-bottom: 0;
  color: var(--t3);
  text-align: center;
}

@media (max-width: 768px) {
  .prequal-modal,
  .prequal-result {
    padding: 0;
    align-items: flex-end;
  }

  .prequal-box {
    border-radius: 18px 18px 0 0;
    max-width: 100%;
    animation: sheet-in 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 40px;
}

.fb-desc {
  font-size: 13px;
  color: #9aafc8 !important;
  line-height: 1.72;
  margin-top: 12px;
  max-width: 280px;
}

.fc h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 14px;
}

.fc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fc ul a {
  font-size: 13px;
  color: #9aafc8 !important;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

.fc ul a:hover {
  color: var(--blue) !important;
}

.footer-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 11px;
  color: var(--t2);
}

.wa-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0, 125, 225, 0.1);
  border: 1px solid rgba(0, 125, 225, 0.2);
  color: #fff !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
  cursor: pointer;
}

.wa-footer:hover {
  background: rgba(0, 125, 225, 0.18);
}

/* ══════════════════════════════
   V7: MOBILE UX + ANIMATION OVERHAUL
══════════════════════════════ */

/* ── Better mobile hero layout ── */
@media (max-width: 768px) {
  #hero {
    padding: 96px 0 48px;
    min-height: 100svh;
    align-items: flex-start;
  }

  .hero-eyebrow-line {
    margin-bottom: 18px;
    padding: 5px 14px 5px 9px;
  }

  .hero-eyebrow-pip {
    width: 6px;
    height: 6px;
  }

  .hero-eyebrow-text {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .hero-h1 {
    font-size: clamp(28px, 8.5vw, 44px) !important;
    line-height: 1.08;
    letter-spacing: -0.025em;
  }

  .hero-sub {
    font-size: 14px !important;
    line-height: 1.78 !important;
    margin-bottom: 18px;
    color: #c0ceea !important;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero-btns .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 15px;
  }

  .hero-btns .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }

  .hero-trust {
    flex-direction: column;
    gap: 8px;
    padding-top: 18px;
  }

  /* Hero layout blocks */
  .hero-layout > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-key-points {
    width: 100%;
  }

  .hero-key-points .award-badge,
  .hero-key-points .urgency-strip,
  .hero-key-points .hero-tag {
    align-self: stretch;
  }

  /* Hide hero reg card on mobile — stats strip replaces it */
  .hero-reg-card {
    display: none;
  }
}

/* ── Pain section mobile ── */
@media (max-width: 768px) {
  #pain {
    padding: 56px 0;
  }

  .pain-wrap {
    gap: 28px;
  }

  .pain-h2 {
    font-size: clamp(26px, 7.5vw, 38px) !important;
  }

  .pain-item {
    padding: 12px 14px;
  }

  .pt {
    font-size: 13px !important;
  }
}

/* ── System section mobile ── */
@media (max-width: 768px) {
  #system {
    padding: 56px 0;
  }

  .sys-h2 {
    font-size: clamp(28px, 8vw, 40px) !important;
  }

  .sys-p {
    font-size: 14px !important;
    margin-bottom: 40px;
  }

  .sys-step {
    padding: 0 8px;
  }

  .sys-title {
    font-size: 16px;
  }

  .sys-desc {
    font-size: 11px;
  }

  /* Process widget mobile overrides */
  .pw-panel-title {
    font-size: 18px;
  }

  .pw-panel-tagline {
    font-size: 13px;
  }

  .pw-action-text strong {
    font-size: 14px;
  }

  .pw-action-text span {
    font-size: 12px;
  }

  .pw-metric-v {
    font-size: 22px;
  }

  .pw-metric-l {
    font-size: 11px;
  }
}

/* ── VSL section mobile ── */
@media (max-width: 768px) {
  #vsl {
    padding: 56px 0;
  }

  .vsl-wrap {
    gap: 28px;
  }

  .vsl-h2 {
    font-size: clamp(24px, 7vw, 34px) !important;
  }

  .vsl-p {
    font-size: 14px !important;
  }

  .vid-play {
    width: 60px;
    height: 60px;
  }
}

/* ── Who section mobile ── */
@media (max-width: 768px) {
  #who {
    padding: 56px 0;
  }

  .who-head {
    margin-bottom: 28px;
  }

  .who-head h2 {
    font-size: clamp(26px, 7vw, 36px) !important;
  }

  .who-card {
    padding: 22px 18px 18px;
  }

  .who-card h3 {
    font-size: 16px;
  }

  .who-card p {
    font-size: 12px !important;
  }

  .wi {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .wi svg {
    width: 22px;
    height: 22px;
  }
}

/* ── Case studies mobile ── */
@media (max-width: 768px) {
  #results {
    padding: 56px 0;
  }

  .res-head {
    margin-bottom: 28px;
  }

  .res-head h2 {
    font-size: clamp(26px, 7vw, 36px) !important;
  }

  .cs-quick-reveal {
    padding: 14px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .cs-qr-after {
    text-align: left;
  }

  .cs-qr-arrow {
    font-size: 18px;
  }
}

/* ── Testimonials mobile ── */
@media (max-width: 768px) {
  #testimonials {
    padding: 56px 0;
  }

  .test-head {
    margin-bottom: 28px;
  }

  .test-head h2 {
    font-size: clamp(26px, 7vw, 36px) !important;
  }

  .review-copy {
    font-size: 13px !important;
    line-height: 1.65;
  }

  .review-avatar {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .review-meta strong {
    font-size: 12px;
  }

  .review-meta span {
    font-size: 10px !important;
  }
}

/* ── Comparison mobile ── */
@media (max-width: 768px) {
  #comparison {
    padding: 56px 0;
  }

  .comp-head h2 {
    font-size: clamp(26px, 7vw, 36px) !important;
  }

  .comp-td {
    font-size: 12px;
    padding: 11px 14px;
    gap: 5px;
  }

  .comp-th {
    padding: 13px 14px;
    font-size: 10px;
  }
}

/* ── Next steps mobile ── */
@media (max-width: 768px) {
  #plans {
    padding: 56px 0;
  }

  .plans-head h2 {
    font-size: clamp(24px, 6.5vw, 34px) !important;
  }

  .plans-head p {
    font-size: 15px !important;
  }

  .next-card {
    padding: 20px 18px;
  }

  .next-card h3 {
    font-size: 17px;
  }

  .next-card p {
    font-size: 13px !important;
  }

  .next-no {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 13px;
  }
}

/* ── Qualify mobile ── */
@media (max-width: 768px) {
  #qualify {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  .qualify-h2 {
    font-size: clamp(22px, 6vw, 30px) !important;
    margin-bottom: 18px;
  }

  .q-item {
    font-size: 13px !important;
    padding: 11px 13px;
  }
}

/* ── CTA section mobile ── */
@media (max-width: 768px) {
  #cta {
    padding: 56px 0;
  }

  .cta-h2 {
    font-size: clamp(26px, 7vw, 36px) !important;
  }

  .cta-p {
    font-size: 14px !important;
  }

  .cta-pr {
    font-size: 13px !important;
  }

  .cpr-icon {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .bluecc-preview-card {
    padding: 20px 18px;
  }

  .bluecc-preview-head h3 {
    font-size: 22px !important;
  }

  .bluecc-preview-head p {
    font-size: 13px !important;
  }

  .bluecc-point {
    padding: 11px;
  }

  .bluecc-point strong {
    font-size: 13px;
  }

  .bluecc-point small {
    font-size: 11px !important;
  }

  .bluecc-point span {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    font-size: 11px;
  }
}

/* ── Footer mobile ── */
@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }

  .footer-grid {
    gap: 20px;
  }

  .footer-bot {
    padding-bottom: 8px;
  }

  .fb-desc {
    font-size: 12px !important;
  }

  .fc h4 {
    font-size: 9px;
  }

  .fc ul a {
    font-size: 12px !important;
  }

  .footer-copy {
    font-size: 10px;
  }
}

/* ── Prequal modal mobile ── */
@media (max-width: 768px) {
  .prequal-head h3 {
    font-size: 19px !important;
  }

  .prequal-head p {
    font-size: 12px !important;
  }

  .prequal-field label {
    font-size: 12px;
  }

  .prequal-field select {
    font-size: 13px;
    padding: 12px;
  }

  .prequal-note {
    font-size: 11px;
  }
}

/* ═══ ENHANCED ANIMATIONS ═══ */

/* Staggered pain items */
.pain-item:nth-child(1) {
  transition-delay: 0.05s;
}

.pain-item:nth-child(2) {
  transition-delay: 0.1s;
}

.pain-item:nth-child(3) {
  transition-delay: 0.15s;
}

.pain-item:nth-child(4) {
  transition-delay: 0.2s;
}

.pain-item:nth-child(5) {
  transition-delay: 0.25s;
}

.pain-item:nth-child(6) {
  transition-delay: 0.3s;
}

.pain-item:nth-child(7) {
  transition-delay: 0.35s;
}

/* Case study card hover lift — handled in main .cs block above */

/* Who card entrance animation improvement */
.who-card {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s,
    box-shadow 0.35s,
    opacity 0.3s;
}

/* Next card stagger */
.next-card:nth-child(1) {
  transition-delay: 0.06s;
}

.next-card:nth-child(2) {
  transition-delay: 0.14s;
}

.next-card:nth-child(3) {
  transition-delay: 0.22s;
}

/* Review card stagger */
.review-card {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s,
    box-shadow 0.35s;
}

/* Bluecc points hover */
.bluecc-point {
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s;
}

.bluecc-point:hover {
  transform: translateX(3px);
}

/* Q items */
.q-item {
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.q-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Comparison rows */
.comp-row {
  transition:
    background 0.15s,
    transform 0.15s;
}

/* CTA section glow pulse */
#cta::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 125, 225, 0.4),
    transparent
  );
  animation: cta-glow 3s ease-in-out infinite;
}

@keyframes cta-glow {
  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

/* Hero orbs improved */
.hero-orb1 {
  animation:
    float1 8s ease-in-out infinite,
    orb-scale 12s ease-in-out infinite;
}

@keyframes orb-scale {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

/* Mobile tap feedback */
@media (max-width: 768px) {
  .btn-cta:active {
    transform: scale(0.97) !important;
    transition: transform 0.1s;
  }

  .reg-cta-btn:active {
    transform: scale(0.97) !important;
  }

  .who-card:active {
    transform: scale(0.98);
  }

  .cs:active {
    transform: scale(0.99);
  }
}

/* ═══ CONVERSION TRUST SIGNALS ═══ */

/* Hero bottom trust bar on mobile */
.mob-trust-bar {
  display: none;
  background: rgba(0, 125, 225, 0.06);
  border: 1px solid rgba(0, 125, 225, 0.14);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 16px;
  margin-bottom: 4px;
}

.mob-trust-bar p {
  font-size: 11px;
  color: var(--t2);
  text-align: center;
  line-height: 1.5;
}

.mob-trust-bar strong {
  color: var(--t1);
}

@media (max-width: 768px) {
  .mob-trust-bar {
    display: block;
  }
}

/* Section dividers */
#vsl::after,
#who::after,
#comparison::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 125, 225, 0.18),
    transparent
  );
}

/* Ticker improved — see main .ticker-wrap block above */

@media (max-width: 768px) {
  .ticker-wrap {
    margin-bottom: 20px;
    padding: 8px 12px;
  }

  .ticker-item {
    font-size: 11px;
    padding: 0 20px;
  }
}

/* Floating WA button desktop */
.wa-float-desk {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 199;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  animation: wa-float-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 2s both;
}

.wa-float-desk:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.5);
}

@keyframes wa-float-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 768px) {
  .wa-float-desk {
    display: none;
  }
}

/* ═══ GLOBAL SECTION PADDING FIX ═══ */
@media (max-width: 768px) {
  section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .container {
    padding: 0 16px;
  }

  h2 {
    word-break: break-word;
  }
}

@media (max-width: 380px) {
  .container {
    padding: 0 14px;
  }

  .hero-h1 {
    font-size: clamp(26px, 10vw, 40px) !important;
    line-height: 1.08;
  }

  .hero-eyebrow-text {
    font-size: 9px;
    letter-spacing: 0.13em;
  }

  .urgency-strip {
    font-size: 10px;
    padding: 6px 11px;
  }

  .hero-tag {
    font-size: 9px;
    padding: 5px 11px;
  }
}

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-reg-card {
    max-width: 500px;
  }

  .vsl-wrap,
  .pain-wrap,
  .cta-wrap,
  .qualify-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sys-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .sys-line-wrap,
  .sys-line-dots {
    display: none;
  }

  .cs-2col {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav-phone {
    display: none !important;
  }

  #navCta {
    display: none !important;
  }

  #hero {
    padding: 96px 0 56px;
  }

  .hero-h1 {
    font-size: clamp(28px, 8.5vw, 44px) !important;
    line-height: 1.08;
    letter-spacing: -0.025em;
  }

  .hero-sub {
    font-size: 14px !important;
    line-height: 1.78 !important;
    margin-bottom: 20px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns a {
    width: 100%;
    justify-content: center;
  }

  .auth-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .auth-cell:nth-child(2) {
    border-right: none;
  }

  .auth-cell:nth-child(3) {
    border-top: 1px solid var(--border);
  }

  .auth-cell:nth-child(4) {
    border-top: 1px solid var(--border);
    border-right: none;
  }

  .sys-steps {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .sys-node {
    width: 80px;
    height: 80px;
  }

  .sys-node::after {
    display: none;
  }

  .sys-nn {
    font-size: 26px;
  }

  /* Who horizontal scroll */
  .who-grid {
    display: grid !important;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    grid-template-columns: none !important;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 4px 2px 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .who-grid::-webkit-scrollbar {
    display: none;
  }

  .who-card {
    scroll-snap-align: start;
  }

  .cs-snapshot {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .cs-snap-item {
    padding: 14px 10px;
  }

  .cs-snap-v {
    font-size: 22px;
  }

  .cs-snap-l {
    font-size: 10px;
  }

  .cs-top {
    padding: 20px 20px 18px;
  }

  .cs-name {
    font-size: clamp(22px, 8vw, 30px) !important;
  }

  .cs-toggle {
    padding: 12px 20px;
  }

  .cs-detail {
    padding: 16px 20px 24px;
  }

  .cs-quick-reveal {
    padding: 14px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .cs-qr-after {
    text-align: left;
  }

  .cs-ba {
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
  }

  .cs-2col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Reviews horizontal scroll */
  .review-grid {
    display: grid !important;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    grid-template-columns: none !important;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 4px 2px 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .review-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    scroll-snap-align: start;
    padding: 20px 18px;
    min-height: 230px;
  }

  .review-copy {
    font-size: 13px !important;
  }

  .comp-hdr,
  .comp-row {
    grid-template-columns: 1fr 1fr;
  }

  .comp-th:nth-child(2),
  .comp-td:nth-child(2) {
    display: none;
  }

  .next-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .qualify-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cta-wrap {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bot {
    flex-direction: column;
    text-align: center;
  }

  .reg-header {
    padding: 20px 18px 16px;
  }

  .reg-body {
    padding: 16px 18px 20px;
  }

  .hero-reg-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .sys-steps {
    grid-template-columns: 1fr;
  }

  .auth-grid {
    grid-template-columns: 1fr 1fr;
  }

  .who-grid {
    grid-auto-columns: 88%;
  }

  .review-grid {
    grid-auto-columns: 90%;
  }

  .cs-2col {
    grid-template-columns: 1fr;
  }

  .cs-snapshot {
    grid-template-columns: 1fr;
  }

  .cs-snap-item:last-child {
    grid-column: auto;
  }
}

/* ── AWARD SECTION ── */
.award-section {
  padding: 56px 0;
  background: var(--ink2);
  position: relative;
  overflow: hidden;
}

.award-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 151, 58, 0.4),
    transparent
  );
}

.award-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 151, 58, 0.2),
    transparent
  );
}

.award-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.award-left {
}

.award-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201, 151, 58, 0.1);
  border: 1px solid rgba(201, 151, 58, 0.28);
  border-radius: 4px;
  padding: 5px 13px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0c060;
  margin-bottom: 20px;
}

.award-h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: #ffffff;
}

.award-h2 span {
  color: #f0c060;
}

.award-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}

.award-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.award-detail {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  color: #c8d4e6;
}

.award-detail-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(201, 151, 58, 0.1);
  border: 1px solid rgba(201, 151, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.award-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 151, 58, 0.2);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.award-img-wrap:hover {
  transform: scale(1.02);
}

.award-img-wrap::before {
  display: none;
}

.award-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.award-img-caption {
  display: none;
}

/* Shimmer on award image */
.award-img-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.06),
    transparent
  );
  transform: skewX(-20deg);
  animation: award-shimmer 5s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes award-shimmer {
  0% {
    left: -100%;
  }

  40% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

@media (max-width: 768px) {
  .award-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .award-h2 {
    font-size: clamp(24px, 7vw, 34px) !important;
  }

  .award-desc {
    font-size: 14px !important;
  }

  .award-img-wrap {
    border-radius: 12px;
  }

  .award-section {
    padding: 44px 0;
  }
}

.award-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(
    135deg,
    rgba(201, 151, 58, 0.1),
    rgba(245, 158, 11, 0.06)
  );
  border: 1px solid rgba(201, 151, 58, 0.32);
  border-radius: 8px;
  padding: 9px 14px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.award-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 151, 58, 0.5),
    transparent
  );
}

.award-icon {
  font-size: 20px;
  flex-shrink: 0;
  animation: trophy-pulse 3s ease-in-out infinite;
}

@keyframes trophy-pulse {
  0%,
  100% {
    transform: scale(1) rotate(-3deg);
  }

  50% {
    transform: scale(1.12) rotate(3deg);
  }
}

.award-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.award-title {
  font-size: 12px;
  font-weight: 800;
  color: #f0c060;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.award-sub {
  font-size: 10px;
  color: rgba(240, 192, 96, 0.7);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Compact inline version for ticker + footer */
.award-inline {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(
    135deg,
    rgba(201, 151, 58, 0.12),
    rgba(245, 158, 11, 0.06)
  );
  border: 1px solid rgba(201, 151, 58, 0.28);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #f0c060;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .award-badge {
    padding: 8px 12px;
  }

  .award-title {
    font-size: 11px;
  }

  .award-sub {
    font-size: 9px;
  }
}

.count-target {
  display: inline-block;
}

/* ── YOU'RE QUALIFIED SCREEN ── */
.qualified-screen {
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
}

.qualified-screen.active {
  display: flex;
}

.qualified-box {
  background: var(--ink3);
  border: 1px solid rgba(0, 125, 225, 0.28);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  position: relative;
  animation: qual-in 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes qual-in {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.qual-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(22, 163, 74, 0.2),
    rgba(34, 197, 94, 0.1)
  );
  border: 2px solid rgba(34, 197, 94, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: check-pulse 2s ease-in-out infinite;
}

@keyframes check-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.25);
  }

  60% {
    box-shadow: 0 0 0 14px rgba(34, 197, 94, 0);
  }
}

.qual-check svg {
  animation: check-draw 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@keyframes check-draw {
  from {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.qual-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4ade80;
  margin-bottom: 14px;
}

.qual-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: #ffffff;
}

.qual-sub {
  font-size: 14px;
  color: #bfc9de;
  line-height: 1.65;
  margin-bottom: 24px;
}

.qual-bar-wrap {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
}

.qual-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), #22c55e);
  border-radius: 2px;
  transition: width 2.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.qual-bar-lbl {
  font-size: 11px;
  color: var(--t2);
  text-align: center;
}

@media (max-width: 768px) {
  .qualified-box {
    padding: 28px 22px;
    max-width: 100%;
    margin: 0 16px;
  }

  .qual-title {
    font-size: 20px !important;
  }

  .qual-sub {
    font-size: 13px !important;
  }
}

/* ── MOBILE CONTRAST BOOST ──
   Extra brightness for outdoor/sunlight reading
   All key body text pushed to minimum 7:1 contrast ratio */
@media (max-width: 768px) {
  /* Section body text — boosted for outdoor/sunlight readability */
  .hero-sub,
  .vsl-p,
  .pain-p,
  .sys-p,
  .who-head p,
  .res-head p,
  .test-head p,
  .plans-head p,
  .cta-p,
  .fb-desc {
    color: rgba(255, 255, 255, 0.78) !important;
  }

  /* Card descriptions */
  .who-card p,
  .vsl-pt,
  .pain-item .pt,
  .review-copy,
  .next-card p,
  .bluecc-point small,
  .qual-sub {
    color: #c2cee2 !important;
  }

  /* Sub-labels and captions */
  .reg-stat-l,
  .reg-sub,
  .reg-feat,
  .reg-security,
  .cs-sub,
  .cs-snap-l,
  .cs-toggle-label,
  .cs-action span,
  .cs-rt,
  .comp-td,
  .q-item,
  .cta-pr,
  .prequal-note,
  .fc ul a,
  .footer-copy {
    color: #b8c6da !important;
  }

  /* Tiny labels that MUST be readable */
  .mob-stat-pill .msl,
  .who-topline,
  .eyebrow,
  .ticker-item,
  .swipe-hint,
  .vid-lbl,
  .form-privacy,
  .qual-bar-lbl,
  .plan-note {
    color: #a8b8cc !important;
  }

  /* Pain items specifically */
  .pt {
    color: #c8d4e6 !important;
  }

  /* Review meta */
  .review-meta span {
    color: #a8b8cc !important;
  }

  /* Case study detail text */
  .cs-ba,
  .cs-action,
  .cs-res-item .cs-rt {
    color: #c2cee2 !important;
  }

  /* System step description */
  .sys-desc {
    color: #b8c6da !important;
    font-size: 12px !important;
  }

  /* Comparison table */
  .comp-td {
    color: #c2cee2 !important;
  }

  /* Qualify items */
  .q-item {
    color: #c8d4e6 !important;
  }

  /* Bluecc preview */
  .bluecc-preview-head p {
    color: #c2cee2 !important;
  }
}

/* ════════════════════════════════════════
   PROCESS WIDGET — Full CSS (mobile-first)
════════════════════════════════════════ */
.pw-wrap {
  margin-top: 40px;
  background: #0f1624;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
}

/* ── Flow strip ── */
.pw-flow {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 0;
}

.pw-flow-item {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.pw-flow-last {
  flex: 0 0 auto;
}

.pw-fn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--t3);
  white-space: nowrap;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
  letter-spacing: -0.01em;
}

.pw-fn.active {
  color: #ffffff;
}

.pw-fn.done {
  color: var(--green-l);
}

.pw-fn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: all 0.3s;
}

.pw-fn.active .pw-fn-dot {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 125, 225, 0.2);
}

.pw-fn.done .pw-fn-dot {
  background: var(--green-l);
  border-color: var(--green-l);
}

.pw-fn-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 6px;
  border-radius: 2px;
  overflow: hidden;
  min-width: 8px;
}

.pw-fn-prog {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--blue-l));
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pw-fn-prog.done {
  width: 100%;
}

/* ── Step tabs ── */
.pw-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}

.pw-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 12px;
  cursor: pointer;
  transition: all 0.25s;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}

.pw-tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.pw-tab.active {
  background: rgba(0, 125, 225, 0.15);
  border-bottom: 2px solid #2b97f0;
}

.pw-tab.active::after {
  transform: scaleX(1);
}

.pw-tab.done {
  background: rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.15);
}

.pw-tab-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  flex-shrink: 0;
}

.pw-tab-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--t3);
  transition: stroke 0.25s;
}

.pw-tab.active .pw-tab-icon {
  background: rgba(0, 125, 225, 0.14);
  border-color: rgba(0, 125, 225, 0.28);
}

.pw-tab.active .pw-tab-icon svg {
  stroke: var(--blue-l);
}

.pw-tab.done .pw-tab-icon {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.22);
}

.pw-tab.done .pw-tab-icon svg {
  stroke: var(--green-l);
}

.pw-tab-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.pw-tab-num {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
}

.pw-tab.active .pw-tab-num {
  color: var(--blue);
}

.pw-tab.done .pw-tab-num {
  color: var(--green-l);
}

.pw-tab-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--t3);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.pw-tab.active .pw-tab-name {
  color: #ffffff;
}

.pw-tab.done .pw-tab-name {
  color: var(--green-l);
}

/* ── Panels ── */
.pw-panels {
  position: relative;
}

.pw-panel {
  display: none;
  animation: pw-in 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.pw-panel.active {
  display: block;
}

@keyframes pw-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Panel head */
.pw-panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent),
    linear-gradient(
      135deg,
      var(--pw-accent, rgba(0, 125, 225, 0.08)),
      transparent
    );
  border: 1px solid var(--pw-accent-border, rgba(0, 125, 225, 0.22));
  border-radius: 14px 14px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 20px 18px;
}

.pw-panel-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pw-panel-icon svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.pw-panel-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 3px;
}

.pw-panel-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* Panel body */
.pw-panel-body {
  background: var(--ink3);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 14px 14px;
  padding: 18px;
}

.pw-section-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

/* Actions list */
.pw-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.pw-action {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.pw-action:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.pw-action:active {
  transform: scale(0.99);
}

.pw-action-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pw-action-icon svg {
  flex-shrink: 0;
}

.pw-action-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.pw-action-text strong {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.pw-action-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
}

/* Result callout */
.pw-result {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.pw-result-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pw-result span {
  font-size: 14px;
  font-weight: 600;
  color: #86efac;
  line-height: 1.5;
}

/* Metrics */
.pw-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pw-metric {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.pw-metric-v {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pw-metric-l {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  line-height: 1.4;
}

/* CTA strip (last panel) */
.pw-cta-strip {
  background: linear-gradient(
    135deg,
    rgba(0, 125, 225, 0.1),
    rgba(0, 125, 225, 0.04)
  );
  border: 1px solid rgba(0, 125, 225, 0.2);
  border-top: none;
  border-radius: 0 0 14px 14px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.pw-cta-text {
  font-size: 13px;
  font-weight: 600;
  color: #c8d4e6;
}

/* Bottom navigation */
.pw-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  gap: 8px;
}

.pw-nav-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #c8d4e6;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.pw-nav-btn:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 125, 225, 0.25);
}

.pw-nav-btn:active {
  transform: scale(0.97);
}

.pw-next {
  background: #2b97f0;
  color: #ffffff;
  border-color: #2b97f0;
}

.pw-next:hover {
  background: #1e87e0;
  border-color: #1e87e0;
}

.pw-step-counter {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ── Mobile tweaks for widget ── */
@media (max-width: 600px) {
  /* Flow strip: hide text labels on very small screens, show dots only */
  .pw-fn {
    font-size: 11px;
    gap: 4px;
  }

  .pw-fn-line {
    margin: 0 4px;
    min-width: 4px;
  }

  /* Tabs: smaller on mobile */
  .pw-tabs {
    gap: 5px;
  }

  .pw-tab {
    padding: 10px 4px 8px;
    border-radius: 10px;
  }

  .pw-tab-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .pw-tab-icon svg {
    width: 16px;
    height: 16px;
  }

  .pw-tab-num {
    font-size: 8px;
  }

  .pw-tab-name {
    font-size: 9px;
  }

  /* Panel head: stack on very small */
  .pw-panel-head {
    padding: 14px 14px;
    gap: 11px;
  }

  .pw-panel-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .pw-panel-icon svg {
    width: 20px;
    height: 20px;
  }

  .pw-panel-title {
    font-size: 15px;
  }

  .pw-panel-tagline {
    font-size: 11px;
  }

  /* Body */
  .pw-panel-body {
    padding: 14px;
  }

  .pw-action {
    padding: 10px 11px;
    gap: 9px;
  }

  .pw-action-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
  }

  .pw-action-text strong {
    font-size: 12px;
  }

  .pw-action-text span {
    font-size: 11px;
  }

  .pw-metric-v {
    font-size: 19px;
  }

  .pw-metric-l {
    font-size: 10px;
  }

  .pw-metric {
    padding: 10px 10px;
  }

  .pw-result {
    padding: 10px 11px;
  }

  .pw-result span {
    font-size: 12px;
  }

  .pw-cta-strip {
    padding: 14px;
  }

  .pw-nav-btn {
    font-size: 12px;
    padding: 9px 13px;
  }
}

@media (max-width: 380px) {
  .pw-flow {
    display: none;
  }

  /* hide flow strip on tiny screens — tabs are enough */
  .pw-tab-name {
    display: none;
  }

  /* icon + number only */
  .pw-tab {
    padding: 10px 6px 8px;
  }

  .pw-tab-icon {
    width: 32px;
    height: 32px;
  }
}
