@import url("brand-tokens.css");
/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  color: var(--brand-ink);
  line-height: 1.55;
  background: var(--brand-canvas);
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv01';
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  background: var(--brand-ink);
  color: var(--brand-lime);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  z-index: 2000;
  transition: top 0.15s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 12px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--brand-lime);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ============ LAYOUT ============ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
section { padding: 100px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } .container { padding: 0 20px; } }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 16px; z-index: 100;
  margin: 16px auto 0; max-width: 1240px; padding: 0 20px;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.nav-inner {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(10, 10, 10, 0.06);
  border-radius: 100px; padding: 10px 14px 10px 22px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 1px 3px rgba(10, 10, 10, 0.04);
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 19px; color: var(--brand-ink); letter-spacing: -0.5px;
}
.logo-mark {
  width: 28px; height: 28px; background: var(--brand-ink); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.logo-mark::after {
  content: ''; position: absolute; top: -2px; right: -2px;
  width: 10px; height: 10px; background: var(--brand-lime); border-radius: 50%;
  border: 2px solid var(--brand-canvas);
}
.nav-links { display: flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 500; }
.nav-links a:not(.nav-cta) {
  color: var(--brand-muted-strong); padding: 8px 14px; border-radius: 100px; transition: background 0.15s;
}
.nav-links a:not(.nav-cta):hover { background: rgba(10, 10, 10, 0.05); }
.nav-cta {
  background: var(--brand-ink); color: var(--brand-white); padding: 10px 18px;
  border-radius: 100px; font-size: 14px; font-weight: 600;
  margin-left: 6px; transition: transform 0.15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-cta:hover { transform: scale(1.03); }
@media (max-width: 768px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ============ HERO ============ */
.hero {
  padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
.hero-bg-glow {
  position: absolute; top: 20%; left: 50%; transform: translateX(-50%);
  width: 80%; height: 600px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(212, 237, 49, 0.15) 0%, transparent 60%);
  filter: blur(60px);
}
.hero-inner { text-align: center; position: relative; z-index: 1; max-width: 980px; margin: 0 auto; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px);
  color: var(--brand-ink); padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  border: 1px solid rgba(10, 10, 10, 0.08);
  margin-bottom: 32px;
}
.pill-dot {
  width: 8px; height: 8px; background: var(--brand-success); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.05); }
}
.hero h1 {
  font-size: clamp(44px, 7vw, 88px); line-height: 0.98; font-weight: 800;
  color: var(--brand-ink); letter-spacing: -3px; margin-bottom: 32px;
}
@media (max-width: 768px) { .hero h1 { letter-spacing: -1.5px; } }
.hero h1 .rotator-wrap {
  display: inline-block; vertical-align: top; height: 1em; overflow: hidden;
  position: relative; min-width: 5ch;
}
.hero h1 .rotator {
  display: inline-block; background: var(--brand-ink); color: var(--brand-lime);
  padding: 0 18px; border-radius: 16px; position: relative;
  animation: rotate 12s steps(1, end) infinite;
}
@keyframes rotate {
  0%, 16% { content: 'handymen'; }
  16.66%, 33% { content: 'cleaners'; }
  33.33%, 50% { content: 'window cleaners'; }
  50%, 66% { content: 'gardeners'; }
  66.66%, 83% { content: 'electricians'; }
  83.33%, 100% { content: 'plumbers'; }
}
/* JS-driven rotator content for compatibility */
.hero-sub {
  font-size: clamp(17px, 2vw, 21px); color: var(--brand-slate);
  margin: 0 auto 40px; max-width: 640px; font-weight: 400;
}
.cta-row { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
.btn-primary {
  background: var(--brand-ink); color: var(--brand-white);
  padding: 18px 28px; border-radius: 100px; font-weight: 600; font-size: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(10, 10, 10, 0.15);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(10, 10, 10, 0.25); }
.btn-secondary {
  background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(10px);
  color: var(--brand-ink); border: 1px solid rgba(10, 10, 10, 0.1);
  padding: 18px 28px; border-radius: 100px; font-weight: 600; font-size: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.15s, transform 0.15s;
}
.btn-secondary:hover { background: var(--brand-white); transform: translateY(-2px); }
.hero-meta {
  display: flex; justify-content: center; gap: 24px;
  font-size: 14px; color: var(--brand-muted); flex-wrap: wrap;
}
.hero-meta-item { display: flex; align-items: center; gap: 6px; }
.check { color: var(--brand-success); }

body.demo-modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: none;
}

.video-modal.open {
  display: block;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(4px);
}

.video-modal-dialog {
  position: relative;
  max-width: 960px;
  margin: 7vh auto 0;
  padding: 18px;
  border-radius: 20px;
  background: #101113;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.video-modal-title {
  margin: 0 0 10px;
  color: var(--brand-white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--brand-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
}

.video-modal video {
  width: 100%;
  max-height: 72vh;
  border-radius: 14px;
  background: #000;
}

@media (max-width: 900px) {
  .video-modal-dialog {
    margin: 4vh 12px 0;
    padding: 12px;
  }

  .video-modal-title {
    font-size: 14px;
    margin-bottom: 8px;
    padding-right: 82px;
  }

  .video-modal video {
    max-height: 62vh;
  }
}

/* ============ HERO BENTO PREVIEW ============ */
.hero-preview {
  max-width: 1100px; margin: 60px auto 0; position: relative;
}
.bento-frame {
  background: var(--brand-ink); border-radius: 24px; padding: 12px;
  box-shadow: 0 40px 80px -20px rgba(10, 10, 10, 0.4), 0 0 0 1px rgba(10, 10, 10, 0.05);
  position: relative;
}
.bento-frame::before {
  content: ''; position: absolute; top: -2px; left: 20%; right: 20%; height: 4px;
  background: linear-gradient(90deg, transparent, var(--brand-lime), transparent);
  border-radius: 2px;
}
.browser-bar {
  display: flex; align-items: center; gap: 6px; padding: 8px 12px;
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--brand-muted-strong); }
.browser-url {
  flex: 1; background: #18181b; color: var(--brand-muted-soft); font-size: 12px;
  padding: 6px 14px; border-radius: 8px; margin-left: 12px;
  font-family: ui-monospace, monospace;
}
.browser-url .lock { color: var(--brand-success); margin-right: 6px; }
.preview-canvas {
  background: var(--brand-canvas); border-radius: 14px; padding: 24px;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 16px;
  min-height: 380px;
}
@media (max-width: 768px) {
  .preview-canvas { grid-template-columns: 1fr; min-height: auto; padding: 16px; }
}

/* preview cards */
.pcard {
  background: var(--brand-white); border-radius: 16px; padding: 20px;
  border: 1px solid rgba(10, 10, 10, 0.05);
}
.pcard.dark { background: var(--brand-ink); color: var(--brand-white); }
.pcard.lime { background: var(--brand-lime); color: var(--brand-ink); }
.pcard-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--brand-muted); margin-bottom: 8px;
}
.pcard.dark .pcard-label { color: var(--brand-muted-soft); }
.pcard.lime .pcard-label { color: #1a3a00; }
.pcard-value { font-size: 32px; font-weight: 800; letter-spacing: -1.5px; }
.pcard-trend { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; color: var(--brand-success); margin-top: 4px; }
.pcard.dark .pcard-trend { color: var(--brand-lime); }

.preview-left { display: flex; flex-direction: column; gap: 14px; }
.preview-mid { display: flex; flex-direction: column; gap: 14px; }
.preview-right { display: flex; flex-direction: column; gap: 14px; }

/* Job item */
.job-item {
  background: var(--brand-white); border-radius: 12px; padding: 14px;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(10, 10, 10, 0.05);
}
.job-emoji {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--brand-canvas); display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.job-text { flex: 1; min-width: 0; }
.job-text-title { font-size: 13px; font-weight: 700; color: var(--brand-ink); }
.job-text-sub { font-size: 11px; color: var(--brand-muted); }
.job-price { font-size: 13px; font-weight: 800; color: var(--brand-ink); }

/* Mini WA card */
.wa-mini { background: #25D366; color: var(--brand-white); padding: 14px; border-radius: 12px; }
.wa-mini-label { font-size: 11px; font-weight: 600; opacity: 0.9; }
.wa-mini-text { font-size: 13px; font-weight: 700; margin-top: 4px; line-height: 1.3; }
.wa-mini-meta { font-size: 11px; opacity: 0.8; margin-top: 6px; }

/* ============ TRADE MARQUEE ============ */
.marquee-section { padding: 40px 0; overflow: hidden; }
.marquee-label {
  text-align: center; font-size: 12px; font-weight: 700; color: var(--brand-muted);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px;
}
.marquee {
  display: flex; gap: 16px; animation: scroll 30s linear infinite;
  width: max-content;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  background: var(--brand-white); padding: 12px 24px; border-radius: 100px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  font-size: 15px; font-weight: 600; color: var(--brand-ink);
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.marquee-item .emoji { font-size: 18px; }

/* ============ SECTION HEADERS ============ */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 70px; }
.section-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700;
  color: var(--brand-slate); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(32px, 5vw, 56px); line-height: 1.05; font-weight: 800;
  color: var(--brand-ink); letter-spacing: -2px; margin-bottom: 20px;
}
.section-header p { font-size: clamp(16px, 1.8vw, 19px); color: var(--brand-slate); }

/* ============ STATS / PROBLEM ============ */
.stats { padding: 60px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat {
  background: var(--brand-white); border-radius: 20px; padding: 28px 24px;
  border: 1px solid rgba(10, 10, 10, 0.06);
}
.stat-number {
  font-size: clamp(40px, 5vw, 56px); font-weight: 800; letter-spacing: -2px;
  color: var(--brand-ink); line-height: 1; margin-bottom: 10px;
}
.stat-number .unit { color: var(--brand-muted); font-size: 0.6em; font-weight: 600; }
.stat-label { font-size: 14px; color: var(--brand-slate); font-weight: 500; }

/* ============ BENTO FEATURES ============ */
.features { padding: 100px 0; }
.bento {
  display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(120px, auto);
  gap: 20px; max-width: 1180px; margin: 0 auto;
}
@media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); } }

.bento-card {
  background: var(--brand-white); border-radius: 24px; padding: 32px;
  border: 1px solid rgba(10, 10, 10, 0.06);
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -10px rgba(10, 10, 10, 0.08); }
.bento-card.dark { background: var(--brand-ink); color: var(--brand-white); }
.bento-card.lime { background: var(--brand-lime); color: var(--brand-ink); }
.bento-card.cream { background: #fcf9f2; }

.b-large { grid-column: span 4; grid-row: span 2; }
.b-medium { grid-column: span 2; grid-row: span 2; }
.b-small { grid-column: span 2; grid-row: span 1; }
.b-wide { grid-column: span 4; grid-row: span 1; }
.b-tall { grid-column: span 2; grid-row: span 3; }
@media (max-width: 900px) {
  .b-large, .b-medium, .b-small, .b-wide, .b-tall { grid-column: span 2; grid-row: auto; }
}

.bento-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  color: var(--brand-muted); text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 14px;
}
.bento-card.dark .bento-tag { color: var(--brand-lime); }
.bento-card.lime .bento-tag { color: #1a3a00; }

.bento-card h3 {
  font-size: clamp(20px, 2.4vw, 28px); font-weight: 800; line-height: 1.15;
  letter-spacing: -0.8px; margin-bottom: 12px;
}
.bento-card p { font-size: 15px; color: var(--brand-slate); line-height: 1.55; }
.bento-card.dark p { color: var(--brand-muted-soft); }
.bento-card.lime p { color: #1a3a00; opacity: 0.8; }

/* Specific bento visuals */
.bento-visual { margin-top: 20px; }

.quote-visual {
  background: var(--brand-white); border-radius: 14px; padding: 16px;
  border: 1px solid rgba(10, 10, 10, 0.06);
}
.qv-line { display: flex; justify-content: space-between; font-size: 13px; padding: 4px 0; }
.qv-total { font-weight: 800; font-size: 16px; padding-top: 8px; border-top: 1px solid #f0ece4; margin-top: 6px; }
.qv-cta {
  background: #25D366; color: var(--brand-white); text-align: center;
  padding: 10px; border-radius: 8px; font-size: 12px; font-weight: 700;
  margin-top: 10px;
}

.review-visual {
  display: flex; flex-direction: column; gap: 10px;
}
.star-row { color: #fbbf24; font-size: 18px; }
.review-text { font-size: 14px; color: var(--brand-ink); font-weight: 500; line-height: 1.5; }
.review-author-mini { font-size: 12px; color: var(--brand-muted); }

.pay-visual {
  text-align: center; padding: 12px;
}
.pay-big { font-size: 36px; font-weight: 800; letter-spacing: -1.5px; margin: 8px 0; }
.pay-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255, 255, 255, 0.15); padding: 6px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
}
.bento-card.lime .pay-tag { background: rgba(10, 10, 10, 0.1); }

.gallery-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  position: relative;
}
.gallery-visual::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.65);
  z-index: 2;
  pointer-events: none;
}
.gallery-visual::after {
  content: 'Before / After';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.78);
  color: var(--brand-white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: 0 8px 18px rgba(10, 10, 10, 0.22);
}
.gv-tile {
  aspect-ratio: 1; border-radius: 8px; position: relative;
  display: flex; align-items: flex-end; padding: 6px;
  overflow: hidden;
}
.gv-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gv-label { background: rgba(10, 10, 10, 0.8); color: var(--brand-white); padding: 2px 6px; border-radius: 4px; font-size: 9px; font-weight: 700; text-transform: uppercase; }
.gv-caption {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  padding: 6px 8px;
  border-radius: 6px;
  background: rgba(10, 10, 10, 0.62);
  color: var(--brand-white);
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
  backdrop-filter: blur(4px);
}

@media (max-width: 640px) {
  .gallery-visual::before {
    top: 8px;
    bottom: 8px;
  }

  .gallery-visual::after {
    font-size: 8px;
    padding: 4px 8px;
  }

  .gv-caption {
    font-size: 9px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    padding: 5px 6px;
  }
}

.stat-visual { display: flex; align-items: baseline; gap: 12px; margin-top: 12px; }
.stat-big {
  font-size: 64px; font-weight: 800; letter-spacing: -3px; line-height: 1;
  background: linear-gradient(135deg, var(--brand-ink) 0%, var(--brand-slate) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.bento-card.dark .stat-big { background: linear-gradient(135deg, var(--brand-lime) 0%, #a3c700 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.trade-tabs {
  display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px;
}
.trade-tab {
  background: rgba(10, 10, 10, 0.06); padding: 6px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 600; color: var(--brand-ink);
}
.bento-card.dark .trade-tab { background: rgba(255, 255, 255, 0.1); color: var(--brand-white); }

/* ============ HOW IT WORKS ============ */
.how { background: var(--brand-ink); color: var(--brand-white); border-radius: 32px 32px 0 0; margin: 0 16px; }
.how .section-header h2 { color: var(--brand-white); }
.how .section-header p { color: var(--brand-muted-soft); }
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 768px) { .how-grid { grid-template-columns: 1fr; } }
.how-card {
  background: #18181b; border: 1px solid #262626;
  border-radius: 24px; padding: 32px;
  position: relative; overflow: hidden;
}
.how-num {
  display: inline-block; background: var(--brand-lime); color: var(--brand-ink);
  width: 36px; height: 36px; border-radius: 50%;
  text-align: center; line-height: 36px; font-weight: 800; font-size: 16px;
  margin-bottom: 20px;
}
.how-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; color: var(--brand-white); letter-spacing: -0.5px; }
.how-card p { color: var(--brand-muted-soft); font-size: 15px; }
.how-time {
  display: inline-block; margin-top: 16px;
  background: rgba(212, 237, 49, 0.1); color: var(--brand-lime);
  padding: 4px 10px; border-radius: 100px;
  font-size: 12px; font-weight: 700;
}

/* ============ SOCIAL PROOF ============ */
.proof {
  background: var(--brand-canvas);
  padding: 80px 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) { .proof-grid { grid-template-columns: 1fr; } }
.proof-card {
  background: var(--brand-white);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 8px 18px rgba(10, 10, 10, 0.04);
}
.proof-rating {
  color: var(--brand-warning);
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.proof-quote {
  font-size: 16px;
  color: #171717;
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 500;
}
.proof-author {
  font-size: 13px;
  color: var(--brand-slate);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.proof-outcome {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 100px;
  background: rgba(22, 163, 74, 0.08);
  color: #166534;
  font-size: 12px;
  font-weight: 700;
}
.proof-strip {
  max-width: 1100px;
  margin: 22px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.proof-chip {
  background: var(--brand-ink);
  color: var(--brand-lime);
  padding: 10px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

/* ============ LEAD FALLBACK ============ */
.lead-fallback {
  padding: 70px 0 80px;
  background: var(--brand-canvas);
}
.lead-card {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--brand-white);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(10, 10, 10, 0.06);
}
.lead-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.lead-card-title {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
}
.lead-card-sub {
  color: var(--brand-slate);
  font-size: 15px;
  max-width: 560px;
}
.lead-badge {
  background: var(--brand-ink);
  color: var(--brand-lime);
  border-radius: 100px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.lead-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.lead-grid .span-2 { grid-column: span 2; }
@media (max-width: 980px) {
  .lead-grid { grid-template-columns: 1fr 1fr; }
  .lead-grid .span-2 { grid-column: span 2; }
}
@media (max-width: 640px) {
  .lead-grid { grid-template-columns: 1fr; }
  .lead-grid .span-2 { grid-column: span 1; }
}
.lead-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lead-field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-slate);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.lead-field input,
.lead-field select {
  border: 1px solid rgba(10, 10, 10, 0.15);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--brand-ink);
  background: var(--brand-white);
}
.lead-field input:focus,
.lead-field select:focus {
  outline: none;
  border-color: var(--brand-ink);
  box-shadow: 0 0 0 3px rgba(212, 237, 49, 0.35);
}
.lead-actions {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.lead-submit {
  background: var(--brand-ink);
  color: var(--brand-white);
  border: none;
  border-radius: 100px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.lead-submit[disabled] { opacity: 0.7; cursor: not-allowed; }
.lead-note {
  font-size: 13px;
  color: var(--brand-slate);
}
.lead-feedback {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  display: none;
}
.lead-feedback.ok { color: #166534; display: block; }
.lead-feedback.err { color: #991b1b; display: block; }

/* ============ MOBILE STICKY CTA ============ */
.mobile-sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1200;
  display: none;
}
.mobile-sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 100px;
  background: var(--brand-ink);
  color: var(--brand-lime);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(10, 10, 10, 0.3);
}
@media (max-width: 768px) {
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 88px; }
}

/* ============ PRICING ============ */
.pricing { background: var(--brand-ink); color: var(--brand-white); margin: 0 16px; padding: 60px 0 100px; }
.pricing .section-header h2 { color: var(--brand-white); }
.pricing .section-header p { color: var(--brand-muted-soft); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: #18181b; border: 1px solid #262626;
  border-radius: 24px; padding: 36px 28px;
  position: relative; transition: transform 0.2s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  background: linear-gradient(180deg, #1a1f0d 0%, #18181b 100%);
  border-color: var(--brand-lime);
}
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brand-lime); color: var(--brand-ink); padding: 6px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
}
.price-name { font-size: 14px; font-weight: 700; color: var(--brand-muted-soft); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.price-fit {
  display: inline-block;
  margin-top: 4px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-lime);
  background: rgba(212, 237, 49, 0.12);
  padding: 5px 10px;
  border-radius: 100px;
}
.price-amount { font-size: 52px; font-weight: 800; color: var(--brand-white); letter-spacing: -2px; line-height: 1; }
.price-period { font-size: 16px; color: var(--brand-muted-soft); font-weight: 500; }
.price-tagline { font-size: 14px; color: var(--brand-muted-soft); margin: 12px 0 24px; }
.price-list { list-style: none; padding: 0; margin-bottom: 28px; }
.price-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #e5e5e5; margin-bottom: 12px;
}
.price-list li::before {
  content: ''; flex-shrink: 0; width: 18px; height: 18px;
  background: rgba(22, 163, 74, 0.15); color: #4ade80;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%234ade80' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.price-list li.muted { color: var(--brand-muted-on-dark); }
.price-list li.muted::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23b8b8b8' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  background-color: rgba(115, 115, 115, 0.1);
}
.price-cta {
  display: block; text-align: center; padding: 14px;
  background: var(--brand-white); color: var(--brand-ink); border-radius: 100px;
  font-weight: 700; font-size: 15px;
  transition: transform 0.15s;
}
.price-cta:hover { transform: scale(1.02); }
.price-card.featured .price-cta {
  background: var(--brand-lime); color: var(--brand-ink);
}

.pricing-compare {
  margin: 30px auto 0;
  max-width: 1100px;
  background: #121214;
  border: 1px solid #2a2a2d;
  border-radius: 20px;
  overflow: hidden;
}
.pricing-compare-head {
  padding: 14px 18px;
  border-bottom: 1px solid #2a2a2d;
  color: var(--brand-lime);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.pricing-compare th,
.pricing-compare td {
  padding: 12px 14px;
  border-bottom: 1px solid #222326;
  text-align: center;
}
.pricing-compare th:first-child,
.pricing-compare td:first-child {
  text-align: left;
  color: #e5e5e5;
  font-weight: 700;
}
.pricing-compare th {
  color: var(--brand-muted-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.pricing-compare .yes { color: #4ade80; font-weight: 800; }
.pricing-compare .no { color: var(--brand-muted-on-dark); }
.pricing-risk {
  max-width: 1100px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 900px) {
  .pricing-risk { grid-template-columns: 1fr; }
  .pricing-compare { overflow-x: auto; }
  .pricing-compare table { min-width: 680px; }
}
.risk-item {
  background: #18181b;
  border: 1px solid #2a2a2d;
  border-radius: 14px;
  padding: 12px 14px;
  color: #d4d4d8;
  font-size: 13px;
  font-weight: 600;
}
.risk-item strong { color: #fff; font-weight: 800; }

/* ============ FAQ ============ */
.faq { background: var(--brand-canvas); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--brand-white); border-radius: 16px; margin-bottom: 12px;
  overflow: hidden; border: 1px solid rgba(10, 10, 10, 0.06);
}
.faq-question {
  padding: 22px 26px; font-weight: 700; color: var(--brand-ink); font-size: 16px;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  list-style: none; letter-spacing: -0.3px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: ''; width: 24px; height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  transition: transform 0.25s;
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 26px 22px; color: var(--brand-slate); font-size: 15px; line-height: 1.7; }

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--brand-lime); color: var(--brand-ink);
  text-align: center; margin: 0 16px; border-radius: 32px;
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute;
  top: -100px; right: -100px; width: 300px; height: 300px;
  background: rgba(255, 255, 255, 0.3); border-radius: 50%;
  filter: blur(60px);
}
.final-cta::after {
  content: ''; position: absolute;
  bottom: -100px; left: -100px; width: 300px; height: 300px;
  background: rgba(10, 10, 10, 0.05); border-radius: 50%;
  filter: blur(60px);
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: clamp(36px, 6vw, 64px); font-weight: 800;
  letter-spacing: -2px; margin-bottom: 20px; line-height: 1;
}
.final-cta p { font-size: 18px; color: #1a3a00; opacity: 0.8; margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }
.final-cta .btn-primary { background: var(--brand-ink); color: var(--brand-white); }

/* ============ FOOTER ============ */
footer {
  background: var(--brand-canvas); color: var(--brand-slate); padding: 80px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 60px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col h4 { color: var(--brand-ink); font-size: 13px; font-weight: 700; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.footer-col ul li a { color: var(--brand-slate); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--brand-ink); }
.footer-brand p { font-size: 14px; max-width: 320px; margin-top: 14px; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--brand-muted);
}
.made-uk { display: flex; align-items: center; gap: 8px; }

@supports (content-visibility: auto) {
  .features,
  .how,
  .proof,
  .lead-fallback,
  .pricing,
  .faq,
  .final-cta,
  footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee {
    animation: none !important;
    transform: none !important;
  }
  .pill-dot,
  .hero h1 .rotator {
    animation: none !important;
  }
}
