:root {
  --volt: #e8ff47;
  --volt-d: #d0e630;
  --volt-dark: #bcd20e;
  --ink: #0c0c0c;
  --ink2: #161616;
  --ink3: #202020;
  --white: #ffffff;
  --off: #f8f8f5;
  --off2: #f1f1ec;
  --border: #e4e4df;
  --border2: #cfcfca;
  --text: #2a2a27;
  --muted: #535353;
  --faint: #aeaead;
  --green: #16a34a;
  --red: #dc2626;
  --ff-head: "Epilogue", sans-serif;
  --ff-body: "DM Sans", sans-serif;
  --max: 1280px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(4rem, 5vw, 6rem);

  /* === Dark background text tokens === */
  --on-dark:        rgba(255, 255, 255, 0.90); /* primary text on dark */
  --on-dark-muted:  rgba(255, 255, 255, 0.55); /* secondary / descriptive */
  --on-dark-faint:  rgba(255, 255, 255, 0.35); /* tertiary / metadata */
  --on-dark-ghost:  rgba(255, 255, 255, 0.20); /* barely-there / legal */
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* CONTAINER */
.C {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* =========================================
   NAV — fixed, simple, always readable
   ========================================= */
#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  height: 68px;
  display: flex;
  align-items: center;
  transition:
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
#nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
#nav .C {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  transition: color 0.3s;
}
#nav.scrolled .nav-logo {
  color: var(--ink);
}
.nav-logo mark {
  background: var(--volt);
  color: var(--ink);
  border-radius: 4px;
  padding: 0 5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--on-dark);
  text-decoration: none;
  transition: color 0.2s;
}
#nav.scrolled .nav-links a {
  color: var(--muted);
}
.nav-links a:hover {
  color: var(--white);
}
#nav.scrolled .nav-links a:hover {
  color: var(--ink);
}
.nav-cta {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  background: var(--volt);
  color: var(--ink);
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  flex-shrink: 0;
  transition:
    background 0.2s,
    transform 0.15s;
}
.nav-cta:hover {
  background: var(--volt-d);
  transform: translateY(-1px);
}
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.3s;
}
#nav.scrolled .ham span {
  background: var(--ink);
}
.mob-menu {
  display: none;
  position: fixed;
  inset: 68px 0 0;
  z-index: 499;
  background: var(--white);
  padding: 2rem var(--pad);
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid var(--border);
}
.mob-menu.open {
  display: flex;
}
.mob-menu a {
  font-family: var(--ff-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}
.mob-cta {
  display: block;
  background: var(--volt);
  color: var(--ink) !important;
  font-weight: 700 !important;
  padding: 14px 24px;
  border-radius: 8px;
  text-align: center;
  margin-top: 0.5rem;
}

/* =========================================
   HERO — dark, split layout
   ========================================= */
.hero {
  background: var(--ink);
  min-height: 100vh;
  padding-top: 68px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 255, 71, 0.09) 0%,
    transparent 65%
  );
  top: -20%;
  right: -15%;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5rem;
  align-items: center;
  padding: 5rem var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease both;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
}
.eyebrow-text {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--on-dark-muted);
}
.eyebrow-text b {
  color: var(--on-dark);
  font-weight: 600;
}
.hero-h1 {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(39px, 6vw, 90px);
  line-height: 1;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.75rem;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-h1 .y {
  color: var(--volt);
}
.hero-h1 .o {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.5);
  color: transparent;
  display: block;
}
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--on-dark-muted);
  line-height: 1.78;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  max-width: 900px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-sub b {
  color: var(--on-dark);
  font-weight: 500;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
  justify-content: center;
}
.btn-volt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--volt);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 29px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(232, 255, 71, 0.28);
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-volt:hover {
  background: var(--volt-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 255, 71, 0.42);
}
.btn-volt svg,
.btn-ghost svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--on-dark-muted);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  padding: 15px 22px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.13);
  transition: all 0.2s;
}
.btn-ghost:hover {
  color: var(--on-dark);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

/* STATS TICKER */
.ticker-wrap {
  background: var(--ink2);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.ticker-inner {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.t-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  white-space: nowrap;
}
.t-num {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--volt);
  letter-spacing: -0.5px;
}
.t-lbl {
  font-size: 14px;
  color: var(--on-dark-muted);
  font-weight: 400;
}

/* =========================================
   SECTION SHARED
   ========================================= */
.section {
  padding: var(--section) 0;
}
.section.bg-off {
  background: var(--off);
}
.section.bg-off2 {
  background: var(--off2);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--volt-d);
  border-radius: 2px;
  flex-shrink: 0;
}
.eyebrow span {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}
h2.sec-h2 {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -2px;
  line-height: 0.98;
  color: var(--ink);
}
h2.sec-h2 em {
  font-style: normal;
  color: var(--border2);
}
.sec-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.78;
  margin-top: 1.25rem;
}

/* REVEAL */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.rv.on {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}

/* =========================================
   SECTION 1 — STORY / HOOK with image
   ========================================= */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-img-wrap {
  position: relative;
}
.story-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  background-color: var(--volt-d);
}
.story-badge-float {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  width: 220px;
}
.sbf-num {
  font-family: var(--ff-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--volt);
  letter-spacing: -1.5px;
  line-height: 1;
}
.sbf-lbl {
  font-size: 12px;
  color: var(--on-dark-muted);
  margin-top: 4px;
  line-height: 1.4;
}
.story-text {
}
.story-text h2 {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -1.5px;
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.story-text h2 em {
  font-style: normal;
  color: var(--border2);
}
.story-text p {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.125rem;
}
.story-text p b {
  color: var(--ink);
  font-weight: 600;
}
.checks {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.chk-dot {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--volt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chk-dot svg {
  width: 12px;
  height: 12px;
}

/* =========================================
   PROBLEM — bold numbered cards
   ========================================= */
.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.problem-head h2 {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: -2px;
  line-height: 0.98;
  color: var(--ink);
  margin: 1.25rem 0 1.5rem;
}
.problem-head p {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.problem-img {
  width: 100%;
  border-radius: 20px;
  display: block;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.pcard {
  background: var(--white);
  padding: 2rem 2.25rem;
  transition: background 0.25s;
  position: relative;
}
.pcard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--volt);
  transition: width 0.35s;
}
.pcard:hover {
  background: var(--off);
}
.pcard:hover::before {
  width: 4px;
}
.pc-n {
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--faint);
  margin-bottom: 0.875rem;
}
.pc-h {
  font-family: var(--ff-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.3px;
}
.pc-p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}
.pc-tag {
  display: inline-block;
  margin-top: 0.75rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

/* STAT VISUAL */
.stat-visual {
  background: var(--ink);
  border-radius: 20px;
  padding: 2.5rem;
  position: sticky;
  top: 88px;
  overflow: hidden;
}
.sv-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(232, 255, 71, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.sv-label {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--on-dark-faint);
  margin-bottom: 1.75rem;
  position: relative;
}
.sv-stat {
  position: relative;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.sv-stat:last-child {
  border-bottom: none;
}
.stats-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.sv-num {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 50px;
  color: var(--volt);
  letter-spacing: -2.5px;
  line-height: 1;
}
.sv-desc {
  font-size: 16px;
  color: var(--on-dark-muted);
  margin-top: 5px;
  line-height: 1.5;
}
.sv-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  margin-top: 12px;
  overflow: hidden;
}
.sv-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--volt);
}

/* =========================================
   SERVICES
   ========================================= */
.svc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.svc-head-r {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  max-width: 280px;
  line-height: 1.75;
  text-align: left;
}
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.svc {
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.svc:hover {
  border-color: var(--ink);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.07);
  transform: translateY(-4px);
}
.svc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.svc-n {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--faint);
}
.svc-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-ico svg {
  width: 22px;
  height: 22px;
  stroke: var(--volt);
}
.svc h3 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.svc > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.75rem;
  flex: 1;
}
.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-list li {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 9px;
}
.svc-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--volt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-dot svg {
  width: 9px;
  height: 9px;
}
.svc-foot {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.svc-price {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.svc-time {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: var(--off);
  padding: 4px 10px;
  border-radius: 100px;
}

/* =========================================
   NICHES — image-led cards
   ========================================= */
.niches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 3.5rem;
}
.niche {
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.niche:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
}
.niche-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  object-position: top;
}
.niche-body {
  padding: 2.25rem;
}
.niche-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--volt);
  color: var(--ink);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.niche-body h3 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(24px, 2.5vw, 32px);
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.niche-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.niche-pains {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 1.5rem;
}
.pain {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}
.pain-arr {
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.niche-result {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: 10px;
  padding: 11px 15px;
  font-size: 13px;
  font-weight: 600;
  color: #15803d;
}

/* =========================================
   PROCESS
   ========================================= */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.process-left {
  position: sticky;
  top: 88px;
}
.process-left h2 {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(30px, 3.5vw, 48px);
  letter-spacing: -1.5px;
  color: var(--ink);
  line-height: 1.02;
  margin: 1.25rem 0 1.25rem;
}
.process-left h2 em {
  font-style: normal;
  color: var(--volt-dark);
}
.process-left p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.btn-ink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-ink:hover {
  background: var(--ink2);
  transform: translateY(-2px);
}
.btn-ink svg {
  width: 16px;
  height: 16px;
}
.steps-col {
  display: flex;
  flex-direction: column;
}
.step {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.25s;
}
.step:first-child {
  padding-top: 0;
}
.step:last-child {
  border-bottom: none;
}
.step:hover {
  padding-left: 0.5rem;
}
.step:hover .s-num {
  background: var(--volt);
  color: var(--ink);
  border-color: var(--volt);
}
.s-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  flex-shrink: 0;
  transition: all 0.25s;
  margin-top: 2px;
}
.step-body h4 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin-bottom: 6px;
}
.step-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}
.step-chip {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--muted);
  background: var(--off);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 100px;
}

/* =========================================
   TESTIMONIALS — with images
   ========================================= */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3.5rem;
}
.proof {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem;
  transition:
    box-shadow 0.3s,
    transform 0.3s,
    border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.proof:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
  transform: translateY(-4px);
  border-color: var(--border2);
}
.proof-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1.25rem;
}
.proof-stars span {
  color: #f59e0b;
  font-size: 15px;
}
.proof-q {
  font-family: var(--ff-head);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1.5rem;
  flex: 1;
}
.proof-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.proof-nm {
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.proof-rl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
}
.proof-metric {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}
.proof-metric::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* =========================================
   PRICING
   ========================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3.5rem;
}
.pc {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.pc:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
  transform: translateY(-3px);
}
.pc.pop {
  border: 2px solid var(--ink);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.pop-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--volt);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
}
.pc-tier {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1.25rem;
}
.pc-name {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.pc-amt {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 48px;
  color: var(--ink);
  letter-spacing: -2.5px;
  line-height: 1;
}
.pc-per {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 1.75rem;
}
.pc-sep {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}
.pc-feats {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.pf-y {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.pf-n {
  color: var(--border2);
  font-size: 16px;
  flex-shrink: 0;
}
.pc-feats li.dim {
  color: var(--faint);
}
.pc-btn {
  margin-top: 2rem;
}
.pcb {
  display: block;
  text-align: center;
  text-decoration: none;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 700;
  padding: 13px;
  border-radius: 10px;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}
.pcb.s {
  background: var(--volt);
  color: var(--ink);
  box-shadow: 0 2px 12px rgba(232, 255, 71, 0.28);
}
.pcb.s:hover {
  background: var(--volt-d);
  transform: translateY(-1px);
}
.pcb.g {
  border: 1.5px solid var(--border2);
  color: var(--ink);
}
.pcb.g:hover {
  border-color: var(--ink);
  background: var(--off);
}
.pricing-foot {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 13px;
  color: var(--muted);
}

/* =========================================
   CTA FINAL — dark, big
   ========================================= */
.cta-section {
  background: var(--ink);
  padding: var(--section) var(--pad);
  position: relative;
  overflow: hidden;
}
.cta-blob-l {
  position: absolute;
  top: -40%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 255, 71, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-blob-r {
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-inner-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 6rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-h2 {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: -4px;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.cta-h2 em {
  font-style: normal;
  color: var(--volt);
  display: block;
}
.cta-sub {
  font-size: 18px;
  color: var(--on-dark-muted);
  line-height: 1.78;
  max-width: 500px;
}
.cta-right-col p {
  font-size: 15px;
  color: var(--on-dark-muted);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}
.cta-links {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.cta-lnk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--on-dark-muted);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  transition: color 0.2s;
}
.cta-lnk:last-child {
  border-bottom: none;
}
.cta-lnk:hover {
  color: var(--on-dark);
}
.cta-lnk svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 1;
}
.cta-note {
  font-size: 11px;
  color: var(--on-dark-ghost);
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

/* FOOTER */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.ft-logo {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
}
.ft-logo mark {
  background: var(--volt);
  color: var(--ink);
  border-radius: 3px;
  padding: 0 4px;
}
.ft-copy {
  font-size: 12px;
  color: var(--on-dark-muted);
}
.ft-nav {
  display: flex;
  gap: 1.5rem;
}
.ft-nav a {
  font-size: 12px;
  color: var(--on-dark-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.ft-nav a:hover {
  color: var(--volt);
}

/* ANIMS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(48px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes gmb-pulse {
  0% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scale(3.5);
  }
}

/* =========================================
   MOBILE
   ========================================= */
@media (max-width: 900px) {
	.stats-wrap{
		grid-template-columns: 1fr;
		gap: 10px;
	}
  .ham {
    display: flex;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 4rem var(--pad) 3rem;
  }
  .hero-phone {
    display: none;
  }
  .story-grid,
  .problem-layout,
  .process-grid,
  .cta-inner-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .stat-visual {
    position: static;
  }
  .story-badge-float {
    position: relative;
    left: 0;
    bottom: 0;
    width: auto;
    margin-top: 1rem;
    display: inline-block;
  }
  .svc-grid,
  .niches-grid,
  .proof-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .svc-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .svc-head-r {
    text-align: left;
    max-width: 100%;
  }
  .process-left {
    position: static;
  }
  h2.sec-h2 {
    letter-spacing: -1.5px;
  }
  .cta-h2 {
    letter-spacing: -2px;
  }
  .ft-nav {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .eyebrow-text {
    font-size: 11px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .svc {
    padding: 1.5rem;
  }
  .pcard {
    padding: 1.5rem 1.25rem;
  }
  .pc,
  .proof,
  .niche-body {
    padding: 1.5rem;
  }
}