/* ===== ServiceSurge Website — core styles ===== */
:root {
  --indigo: #181A52;
  --indigo-deep: #111335;
  --indigo-light: #252870;
  --indigo-ink: #0A0B23;
  --yellow: #FFBC11;
  --yellow-dark: #c99200;
  --yellow-soft: rgba(255, 188, 17, 0.12);
  --silver-lake: #7392B7;
  --silver-lake-light: #e8eef5;
  --slate-gray: #7D8491;
  --slate-light: #A6ADBB;
  --white: #FFFFFF;
  --off-white: #F5F5F7;
  --paper: #FAFAFB;
  --light-gray: #E8E8EC;
  --line: #E4E4EA;
  --rich-black: #0E0F2E;
  --charcoal: #3D3D4E;
  --ink: #1A1B2E;
  --red: #DC2626;
  --green: #16A34A;

  --font-head: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(16, 17, 45, 0.06), 0 1px 3px rgba(16, 17, 45, 0.04);
  --shadow-md: 0 8px 24px -8px rgba(16, 17, 45, 0.12), 0 2px 6px rgba(16, 17, 45, 0.06);
  --shadow-lg: 0 24px 60px -12px rgba(16, 17, 45, 0.25), 0 8px 16px -6px rgba(16, 17, 45, 0.10);
  --shadow-yellow: 0 10px 30px -8px rgba(255, 188, 17, 0.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }
input, textarea, select { font-family: inherit; font-size: 100%; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(17, 19, 53, 0.88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: 68px;
  display: flex; align-items: center;
  transition: background 0.2s;
}
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--indigo-deep); border: 2px solid var(--indigo-deep);
  display: grid; place-items: center; position: relative;
}
.nav-logo-mark svg { width: 16px; height: 16px; fill: var(--yellow); }
.nav-logo-text {
  font-family: var(--font-head); font-weight: 800; font-size: 17px;
  color: var(--white); letter-spacing: -0.01em;
}
.nav-logo-text span { color: var(--yellow); }
.nav ul {
  list-style: none; display: flex; gap: 2px;
}
.nav ul a {
  display: inline-block; padding: 8px 14px; border-radius: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px; font-weight: 500; letter-spacing: 0.01em;
  transition: all 0.15s;
}
.nav ul a:hover { color: var(--yellow); background: rgba(255, 255, 255, 0.04); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-link-subtle {
  color: rgba(255,255,255,0.72); font-size: 13px; font-weight: 500; padding: 8px 10px;
}
.nav-link-subtle:hover { color: var(--yellow); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--indigo-deep);
  font-family: var(--font-head); font-weight: 800; font-size: 13px;
  padding: 10px 16px; border-radius: 8px; letter-spacing: -0.01em;
  transition: all 0.15s; white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-yellow); }
.nav-cta svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .nav ul { display: none; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800; font-size: 15px;
  padding: 16px 26px; border-radius: 10px; letter-spacing: -0.01em;
  transition: all 0.18s; cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--yellow); color: var(--indigo-deep); box-shadow: 0 4px 14px rgba(255, 188, 17, 0.25); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-yellow); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost-dark { background: rgba(255,255,255,0.06); color: var(--white); border: 1px solid rgba(255,255,255,0.18); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
.btn-ghost-light { background: transparent; color: var(--indigo); border: 1.5px solid var(--line); }
.btn-ghost-light:hover { border-color: var(--indigo); }
.btn-lg { font-size: 17px; padding: 18px 32px; }
.btn-arrow { width: 14px; height: 14px; transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* =========================================================
   SHARED SECTION BLOCKS
   ========================================================= */
section { position: relative; }
.section-pad { padding: clamp(72px, 9vw, 130px) 0; }
.section-pad-sm { padding: clamp(56px, 6vw, 90px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #FFBC11;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--yellow); border-radius: 2px; }
.eyebrow-on-dark { color: var(--yellow); }
.eyebrow-on-dark::before { background: var(--yellow); }

.section-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1; letter-spacing: -0.025em;
  color: var(--indigo);
}
.section-title.on-dark { color: var(--white); }
.section-title em { font-style: normal; color: var(--yellow); }
.section-lead {
  font-size: clamp(16px, 1.4vw, 18px); line-height: 1.65;
  color: var(--slate-gray); max-width: 680px;
}
.section-lead.on-dark { color: rgba(255,255,255,0.7); }

.section-head { margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head .section-title { margin-bottom: 20px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: var(--indigo-deep);
  color: var(--white);
  padding: 140px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 50% at 18% 10%, rgba(255, 188, 17, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(115, 146, 183, 0.14), transparent 60%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: -1; opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 40%, transparent 80%);
}

.hero-inner { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 64px; align-items: center; }
@media (max-width: 960px) { .hero-inner { grid-template-columns: 1fr; gap: 56px; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 188, 17, 0.10);
  border: 1px solid rgba(255, 188, 17, 0.28);
  color: var(--yellow);
  padding: 7px 14px 7px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,188,17,0.25);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255,188,17,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(255,188,17,0); }
}

.hero h1 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(40px, 6.2vw, 82px);
  line-height: 0.98; letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.hero h1 .hl {
  color: var(--yellow);
  position: relative; display: inline-block;
}
.hero h1 .strike {
  position: relative; color: rgba(255,255,255,0.35);
}
.hero h1 .strike::after {
  content: ''; position: absolute; left: -2%; right: -2%;
  top: 52%; height: 0.09em; background: var(--yellow);
  transform: rotate(-3deg);
}

.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6;
  color: rgba(255, 255, 255, 0.72); max-width: 580px;
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--white); font-weight: 600; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

.hero-ticker {
  display: flex; align-items: center; gap: 16px;
  font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.02em;
}
.hero-ticker-label {
  text-transform: uppercase; font-weight: 700; letter-spacing: 0.12em;
  font-size: 10px; color: rgba(255,255,255,0.4); white-space: nowrap;
}
.ticker-mask {
  flex: 1; overflow: hidden; position: relative; height: 22px;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.ticker-track {
  display: flex; gap: 28px; white-space: nowrap;
  animation: tick 30s linear infinite;
  position: absolute; top: 50%; transform: translateY(-50%);
  will-change: transform;
}
.ticker-track span {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.58);
  display: inline-flex; align-items: center; gap: 10px;
}
.ticker-track span::after { content: '•'; color: var(--yellow); margin-left: 28px; }
@keyframes tick {
  from { transform: translate(0, -50%); }
  to { transform: translate(-50%, -50%); }
}

/* Hero dashboard card — right side visual */
.hero-visual {
  position: relative; min-height: 520px;
}
.dashcard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 22px;
  box-shadow: var(--shadow-lg);
}
.dashcard-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dashcard-title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800; font-size: 13px;
  color: var(--white); letter-spacing: 0.02em;
}
.dashcard-title::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,0.22);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green { 0%,100% { box-shadow: 0 0 0 3px rgba(22,163,74,0.25); } 50% { box-shadow: 0 0 0 8px rgba(22,163,74,0); } }
.dashcard-meta {
  font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em;
}
.dash-metrics {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 18px;
}
.dash-metric {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm); padding: 12px 14px;
}
.dash-metric-label { font-size: 10px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 6px; }
.dash-metric-val { font-family: var(--font-head); font-weight: 900; font-size: 26px; color: var(--white); line-height: 1; letter-spacing: -0.02em; }
.dash-metric-delta { display: inline-flex; align-items: center; gap: 3px; margin-top: 6px; font-size: 10px; font-weight: 700; color: #4ade80; }
.dash-metric-delta svg { width: 9px; height: 9px; }
.dash-metric.primary { background: rgba(255,188,17,0.08); border-color: rgba(255,188,17,0.28); }
.dash-metric.primary .dash-metric-val { color: var(--yellow); }
.dash-metric.primary .dash-metric-label { color: rgba(255,188,17,0.7); }

.dash-feed-title {
  font-size: 10px; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700;
  margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between;
}
.dash-feed { display: flex; flex-direction: column; gap: 6px; }
.dash-feed-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
  animation: fadein 0.5s ease-out both;
}
.dash-feed-row[data-variant="call"] { border-left: 2px solid var(--green); }
.dash-feed-row[data-variant="review"] { border-left: 2px solid var(--yellow); }
.dash-feed-row[data-variant="miss"] { border-left: 2px solid var(--silver-lake); }
.dash-feed-ic {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  background: rgba(255,255,255,0.06);
}
.dash-feed-ic svg { width: 13px; height: 13px; }
.dash-feed-ic.g { background: rgba(22,163,74,0.18); color: #4ade80; }
.dash-feed-ic.y { background: rgba(255,188,17,0.16); color: var(--yellow); }
.dash-feed-ic.b { background: rgba(115,146,183,0.18); color: var(--silver-lake); }
.dash-feed-body { flex: 1; min-width: 0; }
.dash-feed-primary { color: var(--white); font-weight: 600; font-size: 12px; }
.dash-feed-secondary { color: rgba(255,255,255,0.45); font-size: 11px; }
.dash-feed-time { font-size: 10px; color: rgba(255,255,255,0.35); font-variant-numeric: tabular-nums; font-family: var(--font-mono); }
@keyframes fadein { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* Hero mini stat floaters */
.float-stat {
  position: absolute;
  background: var(--white);
  color: var(--indigo);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
  z-index: 2;
}
.float-stat svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--yellow-dark); }
.float-stat strong { font-family: var(--font-head); font-weight: 900; font-size: 18px; color: var(--indigo); display: block; line-height: 1; }
.float-stat span { font-size: 11px; color: var(--slate-gray); font-weight: 600; }
.float-stat-1 { top: 12%; left: -6%; }
.float-stat-2 { bottom: 8%; right: -4%; }
@media (max-width: 1100px) { .float-stat-1 { left: 0; } .float-stat-2 { right: 0; } }
@media (max-width: 960px) { .hero-visual { min-height: 480px; } }

/* =========================================================
   LOGO STRIP / trust bar
   ========================================================= */
.trust-bar {
  background: var(--indigo-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0; color: rgba(255,255,255,0.55);
}
.trust-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.trust-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.trust-logos { display: flex; flex-wrap: wrap; gap: 28px 40px; align-items: center; }
.trust-logos .pl {
  font-family: var(--font-head); font-weight: 800; font-size: 16px;
  color: rgba(255,255,255,0.4); letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 8px;
}
.trust-logos .pl svg { width: 18px; height: 18px; opacity: 0.6; }

/* =========================================================
   PROBLEM / anti-agency contrast
   ========================================================= */
.contrast {
  background: var(--white);
}
.contrast-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.contrast-grid::before {
  content: 'VS';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--indigo-deep); color: var(--yellow);
  font-family: var(--font-head); font-weight: 900; font-size: 13px;
  display: grid; place-items: center; letter-spacing: 0.06em;
  z-index: 3; border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}
.contrast-col { padding: 44px 40px; min-width: 0; }
.contrast-col.bad {
  background: #FDFBFB;
  border-right: 1px solid var(--line);
  padding-right: 64px;
}
.contrast-col.good {
  background: linear-gradient(180deg, #FFFAE8 0%, #FFFDF4 100%);
  padding-left: 64px;
}
@media (max-width: 820px) {
  .contrast-col.bad { padding-right: 40px; }
  .contrast-col.good { padding-left: 40px; }
}
.contrast-col h3 {
  font-family: var(--font-head); font-weight: 800; font-size: 20px;
  margin-bottom: 6px; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px;
}
.contrast-col.bad h3 { color: #9B1C1C; }
.contrast-col.good h3 { color: var(--indigo); }
.contrast-col .tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  display: inline-block; margin-bottom: 16px; padding: 3px 8px; border-radius: 4px;
}
.contrast-col.bad .tag { color: #9B1C1C; background: rgba(220,38,38,0.08); }
.contrast-col.good .tag { color: var(--yellow-dark); background: rgba(255,188,17,0.15); }
.contrast-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
.contrast-list li { display: grid; grid-template-columns: 20px 1fr; gap: 12px; font-size: 14.5px; line-height: 1.55; align-items: start; }
.contrast-list li .ic {
  width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0;
  margin-top: 2px;
}
.contrast-col.bad .ic { background: rgba(220,38,38,0.1); color: var(--red); }
.contrast-col.good .ic { background: rgba(22,163,74,0.12); color: var(--green); }
.contrast-list li .ic svg { width: 10px; height: 10px; }
.contrast-col.bad li { color: #6B4444; text-decoration: line-through; text-decoration-color: rgba(220,38,38,0.35); text-decoration-thickness: 1px; }
.contrast-col.good li { color: var(--charcoal); }
.contrast-col.good li strong { color: var(--indigo); font-weight: 700; }

@media (max-width: 820px) {
  .contrast-grid { grid-template-columns: 1fr; }
  .contrast-col.bad { border-right: none; border-bottom: 1px solid var(--line); }
  .contrast-grid::before { left: 50%; top: auto; bottom: 50%; transform: translate(-50%, 50%); }
}

/* =========================================================
   MATH / CALCULATOR
   ========================================================= */
.math {
  background: var(--indigo-deep); color: var(--white);
  position: relative; overflow: hidden;
}
.math::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(255, 188, 17, 0.08), transparent 70%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(115, 146, 183, 0.1), transparent 70%);
  pointer-events: none;
}
.math .wrap { position: relative; z-index: 1; }
.math-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 72px; align-items: center;
}
@media (max-width: 900px) { .math-grid { grid-template-columns: 1fr; gap: 44px; } }

.math h2 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(32px, 4.2vw, 54px);
  color: var(--white); line-height: 1.05; letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.math h2 em { font-style: normal; color: var(--yellow); }
.math p { color: rgba(255,255,255,0.7); font-size: 17px; line-height: 1.65; max-width: 500px; margin-bottom: 28px; }
.math-note { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.01em; }

.calc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg); padding: 32px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.calc-row { margin-bottom: 22px; }
.calc-row:last-child { margin-bottom: 0; }
.calc-label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.75);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px;
}
.calc-value {
  font-family: var(--font-head); font-weight: 900; font-size: 22px; color: var(--yellow);
  letter-spacing: -0.01em;
  text-transform: none;
}
input[type="range"].calc-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; background: rgba(255,255,255,0.08);
  border-radius: 100px; outline: none;
}
input[type="range"].calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--yellow); border: 3px solid var(--indigo-deep);
  box-shadow: 0 0 0 1px var(--yellow), 0 4px 10px rgba(255, 188, 17, 0.4);
  cursor: pointer; transition: transform 0.1s;
}
input[type="range"].calc-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--yellow); border: 3px solid var(--indigo-deep); cursor: pointer;
}
input[type="range"].calc-slider::-webkit-slider-thumb:active { transform: scale(1.15); }

.calc-result {
  margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
}
.calc-result-label {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.calc-result-label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.calc-result-value {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(44px, 5.5vw, 72px);
  color: var(--yellow); letter-spacing: -0.035em;
  line-height: 1; margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.calc-result-sub {
  font-size: 13px; color: rgba(255,255,255,0.55);
}
.calc-result-sub strong { color: var(--white); font-weight: 600; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how { background: var(--paper); }
.how-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  position: relative;
}
@media (max-width: 980px) { .how-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .how-steps { grid-template-columns: 1fr; } }

.step-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px;
  position: relative; transition: all 0.2s;
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--slate-light); }
.step-num {
  font-family: var(--font-head); font-size: 12px; font-weight: 800;
  letter-spacing: 0.12em; color: var(--yellow-dark); margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 8px;
}
.step-num::before {
  content: ''; width: 20px; height: 2px; background: var(--yellow); border-radius: 2px;
}
.step-ic {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--indigo-deep); color: var(--yellow);
  display: grid; place-items: center; margin-bottom: 18px;
}
.step-ic svg { width: 20px; height: 20px; }
.step-card h3 {
  font-family: var(--font-head); font-weight: 800; font-size: 17px;
  color: var(--indigo); margin-bottom: 10px; letter-spacing: -0.01em;
}
.step-card p { font-size: 14px; color: var(--charcoal); line-height: 1.6; }

/* =========================================================
   OFFERS
   ========================================================= */
.offers { background: var(--indigo-deep); color: var(--white); }
.offers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 980px) { .offers-grid { grid-template-columns: 1fr; } }

.offer-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg); padding: 36px 32px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: all 0.2s;
}
.offer-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.05); }
.offer-card.featured {
  background: linear-gradient(160deg, rgba(255,188,17,0.08), rgba(255,188,17,0.02));
  border-color: rgba(255,188,17,0.4);
  box-shadow: 0 24px 48px -20px rgba(255, 188, 17, 0.3);
}
.offer-card.featured::before {
  content: 'Most Popular'; position: absolute; top: 16px; right: 16px;
  background: var(--yellow); color: var(--indigo-deep);
  font-family: var(--font-head); font-weight: 800; font-size: 10px; letter-spacing: 0.08em;
  padding: 4px 10px; border-radius: 100px; text-transform: uppercase;
}
.offer-tier {
  font-family: var(--font-head); font-weight: 800; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow);
  margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.offer-tier-num {
  width: 24px; height: 24px; border-radius: 6px;
  background: rgba(255,188,17,0.12); color: var(--yellow);
  font-size: 11px; font-weight: 900;
  display: grid; place-items: center; font-family: var(--font-mono);
}
.offer-card h3 {
  font-family: var(--font-head); font-weight: 900; font-size: 30px;
  color: var(--white); margin-bottom: 8px; letter-spacing: -0.02em;
}
.offer-tagline {
  font-size: 14px; color: var(--yellow); margin-bottom: 22px;
  font-weight: 500; min-height: 44px;
}
.offer-desc {
  font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6;
  margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08);
  min-height: 115px;
}
.offer-price {
  margin-bottom: 26px; min-height: 80px;
}
.offer-price-main {
  font-family: var(--font-head); font-weight: 900;
  display: flex; align-items: baseline; gap: 6px; color: var(--white);
  font-size: 36px; letter-spacing: -0.02em; line-height: 1;
}
.offer-price-main .per {
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  color: rgba(255,255,255,0.55); letter-spacing: 0;
}
.offer-price-setup {
  font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 8px; min-height: 32px;
}
.offer-price-setup strong { color: var(--yellow); font-weight: 700; }

.offer-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; min-height: 310px; flex: 1; }
.offer-features li {
  font-size: 13.5px; color: rgba(255,255,255,0.78); line-height: 1.5;
  display: flex; gap: 10px; align-items: flex-start;
}
.offer-features li::before {
  content: ''; width: 14px; height: 14px; border-radius: 50%;
  background: rgba(255,188,17,0.18); color: var(--yellow);
  display: grid; place-items: center; flex-shrink: 0; margin-top: 3px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path d='M2 5.5l2 2 4-5' fill='none' stroke='%23FFBC11' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: center;
}
.offer-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 20px; border-radius: 10px;
  font-family: var(--font-head); font-weight: 800; font-size: 14px;
  transition: all 0.15s; letter-spacing: -0.005em;
}
.offer-card .offer-cta { background: rgba(255,255,255,0.06); color: var(--white); border: 1px solid rgba(255,255,255,0.12); }
.offer-card .offer-cta:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.22); }
.offer-card.featured .offer-cta { background: var(--yellow); color: var(--indigo-deep); border: 1px solid var(--yellow); }
.offer-card.featured .offer-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-yellow); }
.offer-cta svg { width: 14px; height: 14px; transition: transform 0.15s; }
.offer-cta:hover svg { transform: translateX(3px); }

.offer-app-note {
  font-size: 11px; color: rgba(255,255,255,0.45);
  margin-top: 14px; text-align: center; min-height: 16px;
}
}

/* =========================================================
   QUOTE / big callout
   ========================================================= */
.bigquote {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0 88px;
}
.bigquote-inner {
  max-width: 960px; margin: 0 auto; padding: 0 var(--gutter);
  text-align: center;
}
.bigquote-mark {
  font-family: var(--font-head); font-weight: 900; font-size: 64px;
  color: var(--yellow); line-height: 1; margin-bottom: 0;
}
.bigquote-text {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.25; letter-spacing: -0.02em;
  color: var(--indigo); text-wrap: balance;
}
.bigquote-text em { font-style: normal; color: #FFBC11; }
.bigquote-cite {
  margin-top: 28px;
  font-size: 13px; color: var(--slate-gray);
  letter-spacing: 0.02em;
}
.bigquote-cite strong { color: var(--indigo); font-weight: 700; }

/* =========================================================
   TRUTH STRIP / what we track
   ========================================================= */
.truth { background: var(--paper); }
.truth-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 900px) { .truth-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .truth-grid { grid-template-columns: 1fr; } }
.truth-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
}
.truth-card .label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--slate-gray); margin-bottom: 12px;
}
.truth-card .val {
  font-family: var(--font-head); font-weight: 900;
  font-size: 28px; color: var(--indigo); line-height: 1.15; margin-bottom: 12px;
  letter-spacing: -0.02em;
  height: 66px;
}
.truth-card .val em { font-style: normal; color: #FFBC11; }
.truth-card .desc { font-size: 13px; color: var(--charcoal); line-height: 1.5; }

/* =========================================================
   AUDIT FORM
   ========================================================= */
.audit {
  background: linear-gradient(180deg, #FFFDF4 0%, #FFFAE8 100%);
  border-top: 1px solid #F1E5AE;
}
.audit-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 72px; align-items: center;
}
@media (max-width: 920px) { .audit-grid { grid-template-columns: 1fr; gap: 44px; } }

.audit h2 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--indigo); line-height: 1.05; letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.audit h2 em { font-style: normal; color: #FFBC11; }
.audit p { font-size: 17px; color: var(--charcoal); line-height: 1.65; max-width: 500px; margin-bottom: 24px; }
.audit-checks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.audit-checks li { display: flex; gap: 10px; font-size: 14.5px; color: var(--charcoal); font-weight: 500; align-items: flex-start; }
.audit-checks li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%;
  background: var(--indigo); flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2.5 6.5l2.5 2.5 5-6' fill='none' stroke='%23FFBC11' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: center;
}
.audit-guarantee {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(24,26,82,0.05); border: 1px solid rgba(24,26,82,0.08);
  color: var(--indigo); padding: 10px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.02em;
}
.audit-guarantee svg { width: 14px; height: 14px; color: var(--yellow-dark); }

.audit-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--indigo);
  padding: 32px;
  box-shadow: 0 32px 64px -24px rgba(24, 26, 82, 0.22);
  position: relative;
}
.audit-form::before {
  content: ''; position: absolute; top: -8px; left: -8px;
  width: 60px; height: 60px; border-radius: var(--radius-lg) 0 var(--radius-lg) 0;
  background: var(--yellow); z-index: -1;
}
.audit-form-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--line);
}
.audit-form-head strong {
  font-family: var(--font-head); font-weight: 800; font-size: 16px;
  color: var(--indigo); letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px;
}
.audit-form-head strong::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow);
}
.audit-form-head .step {
  font-size: 11px; color: var(--slate-gray); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 12px; font-weight: 700; color: var(--indigo);
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 6px;
}
.field input, .field select {
  width: 100%; padding: 13px 14px; border-radius: 8px;
  border: 1.5px solid var(--line); background: var(--white);
  font-size: 15px; color: var(--indigo);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(24,26,82,0.08);
}
.field input::placeholder { color: var(--slate-light); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.audit-form .btn { width: 100%; margin-top: 8px; }
.audit-form-fine {
  margin-top: 14px; font-size: 11px; color: var(--slate-gray);
  text-align: center; line-height: 1.5;
}
.audit-form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.audit-form-success.active { display: block; }
.audit-form-success .ico {
  width: 56px; height: 56px; border-radius: 50%; background: var(--indigo);
  color: var(--yellow); margin: 0 auto 18px; display: grid; place-items: center;
}
.audit-form-success .ico svg { width: 26px; height: 26px; }
.audit-form-success h4 { font-family: var(--font-head); font-weight: 900; font-size: 22px; color: var(--indigo); margin-bottom: 10px; letter-spacing: -0.015em; }
.audit-form-success p { font-size: 14px; color: var(--charcoal); max-width: none; margin: 0 auto; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 64px; align-items: start; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }

.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; text-align: left; padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-head); font-weight: 700; font-size: 17px;
  color: var(--indigo); letter-spacing: -0.01em;
  transition: color 0.15s;
}
.faq-q:hover { color: #FFBC11; }
.faq-q-ic {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--off-white); color: var(--indigo);
  display: grid; place-items: center; flex-shrink: 0;
  transition: all 0.2s;
}
.faq-q-ic svg { width: 12px; height: 12px; transition: transform 0.2s; }
.faq-item.open .faq-q-ic { background: var(--yellow); color: var(--indigo); }
.faq-item.open .faq-q-ic svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 260px; }
.faq-a-inner {
  padding: 0 40px 22px 0;
  font-size: 15px; color: var(--charcoal); line-height: 1.65;
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.finalcta {
  background: var(--indigo-deep); color: var(--white);
  padding: clamp(90px, 11vw, 150px) 0;
  position: relative; overflow: hidden;
}
.finalcta::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255,188,17,0.14), transparent 60%);
}
.finalcta .wrap { position: relative; z-index: 1; text-align: center; }
.finalcta h2 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(36px, 5.5vw, 80px); line-height: 0.98; letter-spacing: -0.035em;
  color: var(--white); margin-bottom: 24px;
}
.finalcta h2 em { font-style: normal; color: var(--yellow); }
.finalcta p { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 580px; margin: 0 auto 36px; line-height: 1.6; }
.finalcta-ctas { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--indigo-ink);
  color: rgba(255,255,255,0.55);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.foot-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 760px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 440px) { .foot-top { grid-template-columns: 1fr; } }
.foot-brand .nav-logo { margin-bottom: 20px; }
.foot-brand p { font-size: 13px; max-width: 280px; line-height: 1.6; color: rgba(255,255,255,0.5); }
.foot-col h4 {
  font-family: var(--font-head); font-weight: 800; font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--white); margin-bottom: 18px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.foot-col a:hover { color: var(--yellow); }
.foot-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px; color: rgba(255,255,255,0.35);
}

/* =========================================================
   TWEAKS PANEL
   ========================================================= */
#tweaks-panel {
  position: fixed; bottom: 24px; right: 24px; z-index: 1000;
  width: 320px; background: var(--white);
  border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,0.25);
  padding: 20px; display: none;
  font-family: var(--font-body);
  max-height: calc(100vh - 48px); overflow-y: auto;
}
#tweaks-panel.open { display: block; }
#tweaks-panel header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
#tweaks-panel header strong {
  font-family: var(--font-head); font-weight: 800; font-size: 14px;
  color: var(--indigo); letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 8px;
}
#tweaks-panel header strong::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); }
#tweaks-panel .twk-row { margin-bottom: 14px; }
#tweaks-panel label.twk-label {
  display: block; font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--slate-gray); margin-bottom: 6px;
}
#tweaks-panel select, #tweaks-panel input[type="text"] {
  width: 100%; padding: 9px 11px; border-radius: 7px;
  border: 1px solid var(--line); background: var(--white);
  font-size: 13px; color: var(--indigo); font-family: inherit;
}
#tweaks-panel .twk-seg {
  display: flex; background: var(--off-white); border-radius: 7px; padding: 3px; gap: 2px;
}
#tweaks-panel .twk-seg button {
  flex: 1; padding: 7px 8px; border-radius: 5px;
  font-size: 11px; font-weight: 700; color: var(--slate-gray); font-family: inherit;
  transition: all 0.15s; letter-spacing: 0.02em;
}
#tweaks-panel .twk-seg button.active { background: var(--indigo); color: var(--white); }
#tweaks-panel .twk-range { display: flex; flex-direction: column; gap: 6px; }
#tweaks-panel .twk-range-top { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; color: var(--indigo); }
#tweaks-panel input[type="range"] { accent-color: var(--yellow-dark); }
#tweaks-panel .twk-close {
  width: 24px; height: 24px; border-radius: 6px; background: var(--off-white);
  display: grid; place-items: center; color: var(--slate-gray);
}
#tweaks-panel .twk-close:hover { background: var(--light-gray); color: var(--indigo); }
#tweaks-panel .twk-close svg { width: 12px; height: 12px; }
#tweaks-panel .twk-foot {
  margin-top: 6px; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: 11px; color: var(--slate-gray); line-height: 1.4;
}
