/* ============================================================
   ZAPTURE MEDIA — Design System
   Palette: brand blue #0745c4 (logo), deep navy, green accent
   Fonts: Sora (display) + Inter (body)
   ============================================================ */

:root {
  --blue: #0745c4;
  --blue-bright: #1a5ef0;
  --blue-deep: #052d85;
  --navy: #04102e;
  --navy-2: #071a45;
  --green: #16c964;
  --green-dark: #0fa551;
  --ink: #0b1a3d;
  --muted: #5b6b8f;
  --muted-2: #8b98b8;
  --bg: #f5f8ff;
  --card: #ffffff;
  --line: #dfe7f7;
  --line-dark: rgba(255, 255, 255, 0.12);
  --glow: rgba(22, 201, 100, 0.35);
  --radius: 18px;
  --shadow: 0 18px 50px rgba(7, 34, 102, 0.10);
  --shadow-lg: 0 30px 80px rgba(4, 16, 46, 0.16);
  --font-display: "Sora", "Inter", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 800; }
h3 { font-size: 1.18rem; font-weight: 700; }
h1 em, h2 em { font-style: normal; color: var(--green); position: relative; }
.wrap { width: min(1180px, 92vw); margin: 0 auto; }
.wrap.narrow { width: min(860px, 92vw); }
.section { padding: clamp(72px, 9vw, 120px) 0; }
.center { text-align: center; }
.section-intro { max-width: 640px; margin: 18px auto 0; color: var(--muted); font-size: 1.06rem; }

/* Dark sections */
.section-dark { background: var(--navy); color: #fff; }
.section-dark .section-intro, .section-dark p { color: #b9c6e4; }
.section-dark h2 { color: #fff; }

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue);
}
.eyebrow span { width: 26px; height: 2px; background: var(--green); display: inline-block; }
.eyebrow.centered { justify-content: center; }
.section-dark .eyebrow, .on-dark .eyebrow { color: #7ea3ff; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 16px 30px; border-radius: 12px; text-decoration: none;
  border: 0; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary {
  background: var(--green); color: #03240f;
  box-shadow: 0 12px 32px var(--glow);
}
.btn-primary:hover { transform: translateY(-2px); background: #1adf70; box-shadow: 0 18px 44px var(--glow); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 12px 32px rgba(7, 69, 196, 0.35); }
.btn-blue:hover { transform: translateY(-2px); background: var(--blue-bright); }
.btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.section-dark .btn-outline { color: #fff; border-color: var(--line-dark); }
.section-dark .btn-outline:hover { border-color: var(--green); color: var(--green); }
.micro { font-size: 0.84rem; color: var(--muted-2); margin-top: 12px; }
.text-link { color: var(--blue); font-weight: 600; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

/* Topbar */
.topbar {
  background: var(--navy); color: #cdd9f5; font-size: 0.82rem; font-weight: 500;
  text-align: center; padding: 9px 16px; letter-spacing: 0.04em;
}
.topbar b { color: var(--green); font-weight: 700; }
.pulse {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); margin-right: 6px; animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--glow); }
  70% { box-shadow: 0 0 0 9px rgba(22, 201, 100, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 201, 100, 0); }
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 14px min(4vw, 48px);
  background: rgba(4, 16, 46, 0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-dark);
}
.brand {
  display: inline-flex; align-items: baseline; text-decoration: none;
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: #fff;
  letter-spacing: -0.03em;
}
.brand i { font-style: normal; color: var(--green); }
.brand small {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.3em; color: #8fa5d8;
  margin-left: 9px; text-transform: uppercase;
}
.main-nav { display: flex; gap: 26px; }
.main-nav a {
  color: #c3d0ee; text-decoration: none; font-size: 0.92rem; font-weight: 600;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--green); }
.header-cta {
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  background: var(--green); color: #03240f; padding: 11px 22px; border-radius: 10px;
  text-decoration: none; transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.header-cta:hover { background: #1adf70; transform: translateY(-1px); }

/* ============ HERO ============ */
.hero {
  background:
    radial-gradient(900px 500px at 78% -10%, rgba(26, 94, 240, 0.5), transparent 62%),
    radial-gradient(700px 420px at 8% 110%, rgba(22, 201, 100, 0.16), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, #051638 45%, var(--blue-deep) 130%);
  color: #fff; position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 5vw, 72px); align-items: center;
  padding: clamp(64px, 8vw, 110px) 0 clamp(48px, 6vw, 84px);
}
.hero h1 { margin: 20px 0 22px; }
.hero-lead { font-size: 1.13rem; color: #c6d3f0; max-width: 560px; }
.hero-checks { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 26px 0 30px; }
.hero-checks span { font-size: 0.93rem; font-weight: 600; color: #dfe8fb; }
.hero-checks b { color: var(--green); }
.hero .micro { color: #8fa0c9; }

/* Hero console card */
.console-card {
  background: rgba(7, 26, 69, 0.75); border: 1px solid rgba(126, 163, 255, 0.22);
  border-radius: 20px; padding: 26px 26px 22px; backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg); position: relative;
}
.console-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; color: #8fa5d8; text-transform: uppercase;
  padding-bottom: 16px; border-bottom: 1px solid var(--line-dark); margin-bottom: 8px;
}
.console-head .live { color: var(--green); display: inline-flex; align-items: center; }
.console-row {
  display: grid; grid-template-columns: 1fr auto; gap: 4px 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.console-row:last-of-type { border-bottom: 0; }
.console-row small { color: #93a5cd; font-size: 0.8rem; grid-column: 1 / -1; }
.console-row span { font-size: 0.94rem; font-weight: 600; color: #e7edfb; }
.console-row strong {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; color: var(--green);
  text-align: right; white-space: nowrap;
}
.console-bar-track { grid-column: 1 / -1; height: 6px; border-radius: 4px; background: rgba(255,255,255,0.08); overflow: hidden; margin-top: 8px; }
.console-bar-track i {
  display: block; height: 100%; border-radius: 4px; width: 0;
  background: linear-gradient(90deg, var(--blue-bright), var(--green));
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.console-foot { font-size: 0.76rem; color: #7c8db5; margin-top: 14px; }

/* Hero channel strip */
.hero-strip {
  position: relative; display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 14px 26px; padding: 20px 4vw 30px;
  font-family: var(--font-display); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.18em; color: #7e91bd;
}
.hero-strip i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }

/* ============ METRICS STRIP ============ */
.metrics { padding: 54px 0; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.metric strong {
  display: block; font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 800; color: #fff;
}
.metric strong em { font-style: normal; color: var(--green); }
.metric > span { font-size: 0.88rem; color: #93a5cd; font-weight: 500; }

/* ============ PAIN ============ */
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 52px; }
.pain-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 30px 26px; position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pain-card b {
  position: absolute; top: 14px; right: 20px; font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 800; color: rgba(7, 69, 196, 0.08);
}
.pain-card .icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(7, 69, 196, 0.08); color: var(--blue); font-size: 1.25rem; margin-bottom: 18px;
}
.pain-card h3 { margin-bottom: 10px; }
.pain-card p { color: var(--muted); font-size: 0.96rem; }
.pain-card .tag {
  display: inline-block; margin-top: 16px; font-family: var(--font-display);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; color: var(--green-dark);
  background: rgba(22, 201, 100, 0.1); padding: 6px 12px; border-radius: 30px;
}

/* ============ TWO PATHS ============ */
.paths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 52px; }
.path-card {
  border-radius: 22px; padding: 42px 38px; color: #fff; position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 16px; text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid rgba(126, 163, 255, 0.18);
}
.path-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.path-ecom { background: linear-gradient(150deg, #062057 0%, var(--blue-deep) 60%, var(--blue) 140%); }
.path-lead { background: linear-gradient(150deg, #04122e 0%, var(--navy-2) 60%, #0a3f7d 140%); }
.path-card .path-label {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; color: var(--green);
}
.path-card h3 { font-size: 1.7rem; letter-spacing: -0.02em; }
.path-card p { color: #bccbec; font-size: 0.98rem; }
.path-card ul { list-style: none; display: grid; gap: 9px; margin: 6px 0 10px; }
.path-card ul li { font-size: 0.93rem; color: #dde7fa; padding-left: 24px; position: relative; }
.path-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.path-card .path-go {
  margin-top: auto; font-family: var(--font-display); font-weight: 700; color: var(--green);
  display: inline-flex; align-items: center; gap: 8px;
}
.path-card:hover .path-go { text-decoration: underline; }

/* ============ CALCULATORS ============ */
.calc-tabs { display: inline-flex; background: #eaf0fd; border-radius: 12px; padding: 5px; margin-top: 34px; gap: 4px; }
.calc-tabs button {
  font-family: var(--font-display); font-weight: 700; font-size: 0.92rem;
  border: 0; background: transparent; color: var(--muted); padding: 12px 28px;
  border-radius: 9px; cursor: pointer; transition: all 0.2s;
}
.calc-tabs button.active { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(7, 69, 196, 0.3); }
.calc-panel { display: none; }
.calc-panel.active { display: block; }
.calculator-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0; margin-top: 34px;
  border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.console-strip {
  grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center;
  background: var(--navy); color: #8fa5d8; padding: 14px 28px;
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
}
.console-strip .live-dot { display: inline-flex; align-items: center; color: var(--green); }
.tool-panel { background: #fff; padding: 38px 36px; }
.tool-heading { display: flex; gap: 16px; margin-bottom: 28px; }
.tool-heading > span {
  font-family: var(--font-display); font-weight: 800; color: var(--blue);
  font-size: 0.95rem; background: rgba(7, 69, 196, 0.08); height: 40px; min-width: 40px;
  display: grid; place-items: center; border-radius: 10px;
}
.tool-heading p { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
.slider-field { margin-bottom: 24px; }
.slider-field label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-weight: 600; font-size: 0.94rem; margin-bottom: 10px; gap: 12px;
}
.slider-field output {
  font-family: var(--font-display); font-weight: 800; color: var(--blue); font-size: 1.05rem;
  white-space: nowrap;
}
input[type="range"] {
  width: 100%; appearance: none; -webkit-appearance: none; height: 8px; border-radius: 6px;
  background: linear-gradient(to right, var(--green) 0%, var(--green) 50%, #e4ebfa 50%);
  outline: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none; -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 4px solid var(--green); box-shadow: 0 4px 14px rgba(4, 16, 46, 0.25);
}
input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 4px solid var(--green); box-shadow: 0 4px 14px rgba(4, 16, 46, 0.25);
}
.calc-note { font-size: 0.78rem; color: var(--muted-2); margin-top: 4px; }
.result-panel {
  background: linear-gradient(165deg, var(--navy) 0%, var(--blue-deep) 130%);
  color: #fff; padding: 38px 36px; display: flex; flex-direction: column; gap: 20px;
}
.result-panel > span {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; color: #8fa5d8;
}
.big-number { display: flex; flex-direction: column; }
.big-number strong {
  font-family: var(--font-display); font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  font-weight: 800; color: var(--green); line-height: 1.05; letter-spacing: -0.02em;
}
.big-number small { color: #aebde2; font-size: 0.9rem; margin-top: 6px; }
.result-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.result-stats > div {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 16px 18px;
}
.result-stats em {
  font-style: normal; font-family: var(--font-display); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.14em; color: #8fa5d8; display: block;
}
.result-stats b { font-family: var(--font-display); font-size: 1.45rem; font-weight: 800; color: #fff; }
.result-stats span { display: block; font-size: 0.78rem; color: #aebde2; }
.result-panel .btn { align-self: flex-start; }
.result-panel > p { font-size: 0.75rem; color: #8fa0c9; }

/* ============ METHOD ============ */
.method-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 52px; }
.method-step {
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-dark);
  border-radius: 16px; padding: 26px 22px; position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.method-step:hover { border-color: var(--green); transform: translateY(-4px); }
.method-step strong {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--green);
  display: block; margin-bottom: 12px;
}
.method-step h3 { color: #fff; font-size: 1.02rem; margin-bottom: 8px; }
.method-step p { font-size: 0.85rem; color: #aebde2; }
.method-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 34px; margin-top: 54px; }
.method-point { display: flex; gap: 16px; align-items: flex-start; }
.method-point i {
  font-style: normal; flex: none; width: 30px; height: 30px; border-radius: 8px;
  background: rgba(22, 201, 100, 0.14); color: var(--green); display: grid; place-items: center;
  font-weight: 800; font-size: 0.9rem; margin-top: 3px;
}
.method-point b { color: #fff; display: block; margin-bottom: 3px; font-family: var(--font-display); font-size: 0.98rem; }
.method-point p { font-size: 0.88rem; color: #aebde2; }

/* ============ SERVICES ============ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.service-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card .icon {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--blue), var(--blue-bright)); color: #fff;
  font-size: 1.3rem; margin-bottom: 20px; box-shadow: 0 10px 22px rgba(7, 69, 196, 0.28);
}
.service-card h3 { margin-bottom: 10px; font-size: 1.08rem; }
.service-card p { color: var(--muted); font-size: 0.92rem; }
.service-card .service-metric {
  margin-top: 16px; font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  color: var(--green-dark); letter-spacing: 0.06em;
}

/* ============ RESULTS / CASE CARDS ============ */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.result-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.25s, box-shadow 0.25s; position: relative; overflow: hidden;
}
.result-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
.result-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.result-card .rc-tag {
  font-family: var(--font-display); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; color: var(--muted-2); text-transform: uppercase;
}
.result-card strong {
  font-family: var(--font-display); font-size: 2.1rem; font-weight: 800; color: var(--blue);
  line-height: 1.1; letter-spacing: -0.02em;
}
.result-card strong em { font-style: normal; color: var(--green); }
.result-card h3 { font-size: 1.02rem; }
.result-card p { color: var(--muted); font-size: 0.9rem; }
.result-card .rc-client { margin-top: auto; font-size: 0.8rem; font-weight: 600; color: var(--ink); padding-top: 10px; }
.results-disclaimer { text-align: center; font-size: 0.78rem; color: var(--muted-2); margin-top: 34px; }

/* ============ TESTIMONIALS ============ */
.testi-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.testi-nav { display: flex; gap: 10px; }
.testi-nav button {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-dark);
  background: rgba(255,255,255,0.05); color: #fff; font-size: 1.15rem; cursor: pointer;
  transition: all 0.2s;
}
.testi-nav button:hover { background: var(--green); color: #03240f; border-color: var(--green); }
.testi-track {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 46px 4px 20px; margin: 0 -4px;
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  flex: 0 0 min(400px, 84vw); scroll-snap-align: start;
  background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark);
  border-radius: 20px; padding: 30px 28px; display: flex; flex-direction: column; gap: 18px;
}
.testi-card .stars { color: var(--green); letter-spacing: 3px; font-size: 0.95rem; }
.testi-card blockquote { font-size: 1rem; color: #dbe4f8; line-height: 1.65; }
.testi-who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testi-who i {
  font-style: normal; width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800;
  background: linear-gradient(140deg, var(--blue), var(--blue-bright)); color: #fff;
}
.testi-who b { display: block; color: #fff; font-size: 0.94rem; }
.testi-who span { font-size: 0.8rem; color: #93a5cd; }
.testi-video {
  padding: 0; overflow: hidden; position: relative; justify-content: flex-end; min-height: 320px;
  background: linear-gradient(155deg, #0a2c74, #04122e); cursor: pointer; border: 1px solid rgba(126,163,255,0.25);
}
.testi-video .play-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%);
  width: 72px; height: 72px; border-radius: 50%; background: var(--green);
  display: grid; place-items: center; box-shadow: 0 0 0 12px rgba(22, 201, 100, 0.2);
  transition: transform 0.25s;
}
.testi-video:hover .play-badge { transform: translate(-50%, -60%) scale(1.08); }
.testi-video .play-badge i {
  width: 0; height: 0; border-left: 18px solid #03240f; border-top: 11px solid transparent;
  border-bottom: 11px solid transparent; margin-left: 5px; font-size: 0;
}
.testi-video .tv-copy { position: relative; padding: 26px 26px 24px; background: linear-gradient(transparent, rgba(4,16,46,0.9) 40%); }
.testi-video .tv-copy small {
  font-family: var(--font-display); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em;
  color: var(--green); display: block; margin-bottom: 6px;
}
.testi-video .tv-copy b { color: #fff; font-size: 1.02rem; line-height: 1.4; display: block; }
.testi-video .tv-copy span { color: #93a5cd; font-size: 0.8rem; }

/* ============ COMPARE ============ */
.compare-table { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 52px; align-items: stretch; }
.compare-col { border-radius: 20px; padding: 38px 34px; }
.compare-col h3 { margin-bottom: 22px; font-size: 1.25rem; }
.compare-col p { padding: 11px 0; font-size: 0.95rem; border-bottom: 1px solid rgba(130, 145, 180, 0.15); }
.compare-col p:last-child { border-bottom: 0; }
.compare-col.old { background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-dark); color: #93a5cd; }
.compare-col.old h3 { color: #b9c6e4; }
.compare-col.new {
  background: linear-gradient(160deg, rgba(7, 69, 196, 0.35), rgba(22, 201, 100, 0.08));
  border: 1px solid rgba(22, 201, 100, 0.4); color: #e7eefc; position: relative;
}
.compare-col.new h3 { color: #fff; }
.compare-col.new p b { color: var(--green); }
.recommended {
  position: absolute; top: -14px; left: 34px; background: var(--green); color: #03240f;
  font-family: var(--font-display); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.14em;
  padding: 6px 14px; border-radius: 30px;
}

/* ============ PROCESS ============ */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px; }
.timeline article {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; position: relative;
}
.timeline strong {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 800;
  background: linear-gradient(140deg, var(--blue), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block;
}
.timeline small {
  font-family: var(--font-display); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em;
  color: var(--muted-2); display: block; margin: 4px 0 12px;
}
.timeline h3 { margin-bottom: 8px; font-size: 1.05rem; }
.timeline p { color: var(--muted); font-size: 0.88rem; }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.about-visual {
  background: linear-gradient(160deg, var(--navy), var(--blue-deep));
  border-radius: 24px; padding: 40px 36px; color: #fff; box-shadow: var(--shadow-lg);
}
.about-visual .big-quote { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; line-height: 1.45; }
.about-visual .big-quote em { font-style: normal; color: var(--green); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.about-stats div { background: rgba(255,255,255,0.07); border-radius: 14px; padding: 16px; }
.about-stats b { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--green); display: block; }
.about-stats span { font-size: 0.78rem; color: #aebde2; }
.about-copy h2 { margin: 16px 0 20px; }
.about-copy p { color: var(--muted); margin-bottom: 16px; }
.principles { list-style: none; display: grid; gap: 12px; margin-top: 26px; }
.principles li { display: flex; gap: 12px; font-size: 0.95rem; }
.principles li i {
  font-style: normal; flex: none; color: var(--green); font-weight: 800;
}
.principles li b { font-weight: 700; }

/* ============ CHECK LIST ============ */
.check-list { list-style: none; display: grid; gap: 12px; margin: 22px 0; }
.check-list li { padding-left: 30px; position: relative; font-size: 0.98rem; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 800;
}

/* ============ FAQ ============ */
.faq-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 70px); align-items: start; }
.sticky-copy { position: sticky; top: 110px; }
.sticky-copy h2 { margin: 16px 0 18px; }
.sticky-copy p { color: var(--muted); margin-bottom: 24px; }
.accordion { display: grid; gap: 14px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-item button {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: 0; text-align: left; padding: 20px 24px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--ink); cursor: pointer;
}
.faq-item button span { color: var(--green); font-size: 1.3rem; transition: transform 0.25s; flex: none; }
.faq-item div { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item div p { padding: 0 24px 22px; color: var(--muted); font-size: 0.94rem; }
.faq-item.open div { max-height: 320px; }
.faq-item.open button span { transform: rotate(45deg); }

/* ============ AUDIT / CTA ============ */
.audit { background:
  radial-gradient(800px 440px at 85% 0%, rgba(26, 94, 240, 0.45), transparent 60%),
  radial-gradient(600px 380px at 0% 100%, rgba(22, 201, 100, 0.14), transparent 60%),
  linear-gradient(160deg, var(--navy) 0%, #051638 50%, var(--blue-deep) 140%);
  color: #fff;
}
.audit-box { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.audit-copy h2 { margin: 16px 0 18px; }
.audit-copy > p { color: #bccbec; }
.audit-copy .check-list li { color: #dde7fa; }
.scarcity {
  display: flex; align-items: center; gap: 10px; margin-top: 26px; font-size: 0.9rem; color: #bccbec;
  background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark);
  padding: 14px 18px; border-radius: 12px;
}
.scarcity b { color: #fff; }
.lead-form {
  background: #fff; color: var(--ink); border-radius: 22px; padding: 36px 34px;
  display: grid; gap: 16px; box-shadow: var(--shadow-lg); position: relative;
}
.form-head span { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; display: block; }
.form-head small { color: var(--muted); font-size: 0.85rem; }
.lead-form label { display: grid; gap: 7px; font-size: 0.85rem; font-weight: 600; }
.lead-form input, .lead-form select, .lead-form textarea {
  font-family: var(--font-body); font-size: 0.95rem; padding: 13px 15px;
  border: 1.5px solid var(--line); border-radius: 10px; background: #f9fbff;
  transition: border-color 0.2s; width: 100%;
}
.lead-form textarea { resize: vertical; min-height: 84px; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; }
.consent { font-size: 0.74rem; color: var(--muted-2); text-align: center; }
.form-success {
  display: none; text-align: center; background: rgba(22, 201, 100, 0.1);
  border: 1px solid rgba(22, 201, 100, 0.4); border-radius: 12px; padding: 18px;
}
.form-success b { color: var(--green-dark); display: block; }
.form-success span { font-size: 0.85rem; color: var(--muted); }
.lead-form.submitted .form-success { display: block; }
.lead-form.submitted .form-submit { display: none; }

/* ============ FOOTER ============ */
footer { background: var(--navy); color: #93a5cd; padding: 64px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line-dark); }
.footer-grid p { font-size: 0.9rem; margin-top: 14px; max-width: 320px; }
.footer-grid b {
  display: block; font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; color: #fff; margin-bottom: 16px;
}
.footer-grid a { display: block; color: #93a5cd; text-decoration: none; font-size: 0.9rem; padding: 5px 0; }
.footer-grid a:hover { color: var(--green); }
.copyright {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 26px; font-size: 0.8rem; color: #6b7ca6;
}
.footer-disclaimer { font-size: 0.74rem; color: #6b7ca6; margin-top: 22px; line-height: 1.6; }

/* ============ VIDEO MODAL ============ */
.video-modal {
  position: fixed; inset: 0; background: rgba(4, 10, 26, 0.88); z-index: 100;
  display: none; align-items: center; justify-content: center; padding: 4vw;
}
.video-modal.open { display: flex; }
body.modal-open { overflow: hidden; }
.modal-close {
  position: absolute; top: 22px; right: 30px; background: none; border: 0;
  color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1;
}
.modal-inner { width: min(960px, 94vw); aspect-ratio: 16 / 9; }
.modal-inner iframe { width: 100%; height: 100%; border: 0; border-radius: 16px; }
.placeholder-video {
  width: 100%; height: 100%; border-radius: 16px; border: 1px dashed rgba(126, 163, 255, 0.4);
  background: var(--navy-2); color: #fff; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 24px;
}
.placeholder-video .play-badge {
  width: 64px; height: 64px; border-radius: 50%; background: var(--green); display: grid; place-items: center;
}
.placeholder-video .play-badge i {
  width: 0; height: 0; border-left: 16px solid #03240f; border-top: 10px solid transparent;
  border-bottom: 10px solid transparent; margin-left: 4px;
}
.placeholder-video p { color: #93a5cd; font-size: 0.9rem; max-width: 420px; }
.placeholder-video code { color: var(--green); }

/* ============ SUBPAGE HERO ============ */
.subhero { padding-bottom: clamp(48px, 6vw, 80px); }
.subhero .hero-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.subhero .hero-lead { margin: 0 auto; }
.subhero .hero-checks { justify-content: center; }
.breadcrumb { font-size: 0.82rem; color: #8fa0c9; position: relative; padding-top: 26px; }
.breadcrumb a { color: #b9c6e4; text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }

/* ============ REVEAL ============ */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.visible { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1020px) {
  .main-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .console-card { max-width: 560px; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .results-grid, .timeline { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .audit-box, .faq-layout { grid-template-columns: 1fr; }
  .sticky-copy { position: static; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
}
@media (max-width: 640px) {
  .pain-grid, .paths-grid, .services-grid, .results-grid, .timeline,
  .compare-table, .method-grid, .method-points, .result-stats, .form-row { grid-template-columns: 1fr; }
  .calculator-grid { grid-template-columns: 1fr; }
  .brand small { display: none; }
  .site-header { padding: 12px 4vw; }
  .header-cta { font-size: 0.8rem; padding: 10px 16px; }
  .section { padding: 64px 0; }
  .testi-card { flex-basis: 86vw; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
