*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bp-bg: #0b1628;
  --bp-grid: rgba(60, 120, 200, 0.07);
  --bp-grid-major: rgba(60, 120, 200, 0.13);
  --bp-line: rgba(100, 180, 255, 0.25);
  --bp-text: rgba(180, 210, 240, 0.85);
  --bp-muted: rgba(140, 180, 220, 0.65);
  --bp-bright: rgba(220, 235, 255, 0.95);
  --bp-accent: rgba(100, 180, 255, 0.7);
  --bp-card: rgba(10, 25, 50, 0.7);
  --bp-border: rgba(60, 120, 200, 0.2);
  --green: #34d399;
  --yellow: #fbbf24;
  --red: #ef4444;
  --hand: 'Architects Daughter', cursive;
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Inter', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans); background: var(--bp-bg); color: var(--bp-text); line-height: 1.6;
  background-image:
    linear-gradient(var(--bp-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--bp-grid) 1px, transparent 1px),
    linear-gradient(var(--bp-grid-major) 1px, transparent 1px),
    linear-gradient(90deg, var(--bp-grid-major) 1px, transparent 1px);
  background-size: 20px 20px, 20px 20px, 100px 100px, 100px 100px;
  background-attachment: fixed;
}

/* NAV */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 56px;
  background: rgba(11, 22, 40, 0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bp-border);
}
.topbar-left { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo { width: 30px; height: 30px; flex-shrink: 0; object-fit: contain; }
.brand { font-family: var(--hand); font-size: 1.15rem; color: var(--bp-bright); text-decoration: none; }
.accent { color: var(--bp-accent); }
.topbar-right { display: flex; align-items: center; gap: 1.5rem; }
.topbar-right a { font-family: var(--hand); font-size: 0.9rem; color: var(--bp-muted); text-decoration: none; transition: color 0.2s; }
.topbar-right a:hover { color: var(--bp-bright); }
.nav-cta { color: var(--bp-accent) !important; border: 1px solid var(--bp-accent); padding: 4px 14px; border-radius: 2px; }
.nav-cta:hover { background: rgba(100, 180, 255, 0.1); }
.mobile-toggle { display: none; background: none; border: none; color: var(--bp-text); font-size: 1.4rem; cursor: pointer; }

/* HERO */
.hero { padding: 10rem 2rem 4rem; text-align: center; max-width: 800px; margin: 0 auto; }
.hero-tag { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.2em; color: var(--red); text-transform: uppercase; margin-bottom: 1.5rem; animation: fadeInDown 0.8s ease; }
.hero h1 { font-family: var(--hand); font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--bp-bright); margin-bottom: 1.5rem; line-height: 1.2; animation: fadeInDown 0.8s ease 0.1s both; }
.red { color: var(--red); }
.hero-sub { font-size: 1.1rem; color: var(--bp-text); max-width: 600px; margin: 0 auto 2rem; line-height: 1.7; animation: fadeInDown 0.8s ease 0.2s both; }
.hero-cta {
  display: inline-block; font-family: var(--hand); font-size: 1.1rem;
  color: var(--bp-bg); background: var(--bp-accent); padding: 12px 32px;
  border-radius: 2px; text-decoration: none; transition: all 0.2s;
  animation: fadeInDown 0.8s ease 0.3s both;
}
.hero-cta:hover { opacity: 0.85; transform: translateY(-1px); }
.hero-note { font-family: var(--mono); font-size: 0.6rem; color: var(--bp-muted); margin-top: 1rem; letter-spacing: 0.08em; animation: fadeInDown 0.8s ease 0.4s both; }

/* HERO PIPELINE */
.hero-pipeline {
  display: flex; align-items: center; justify-content: center; gap: 0;
  margin: 2.5rem auto; max-width: 600px;
}
.pipe-node {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: var(--bp-muted); position: relative;
}
.pipe-node svg { transition: color 0.3s; }
.pipe-node[data-label]::after {
  content: attr(data-label); font-family: var(--mono); font-size: 0.5rem;
  color: var(--bp-muted); letter-spacing: 0.06em; white-space: nowrap;
}
.pipe-node.active { color: var(--green); }
.pipe-node.active svg { stroke: var(--green); }
.pipe-line { flex: 1; height: 2px; background: var(--bp-border); position: relative; overflow: hidden; }
.pipe-line::after {
  content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 0;
  background: var(--green); transition: width 0.5s ease;
}
.pipe-line.filled::after { width: 100%; }

/* SECTIONS */
.section { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; }
.section-label { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.label-line { flex: 1; height: 1px; background: var(--bp-border); }
.label-text { font-family: var(--hand); font-size: 1.1rem; color: var(--bp-accent); white-space: nowrap; }

/* CALCULATOR */
.calc-card {
  border: 1px solid var(--bp-border); border-radius: 2px; padding: 2rem;
  background: var(--bp-card); display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  position: relative;
}
.calc-card::before, .calc-card::after {
  content: ''; position: absolute; width: 12px; height: 12px;
  border-color: var(--bp-line); border-style: solid;
}
.calc-card::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.calc-card::after { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
.calc-field { margin-bottom: 1.25rem; }
.calc-field label {
  font-family: var(--mono); font-size: 0.65rem; color: var(--bp-muted);
  letter-spacing: 0.08em; display: block; margin-bottom: 0.5rem;
}
.calc-field input[type="range"] {
  width: 100%; -webkit-appearance: none; height: 4px; border-radius: 2px;
  background: var(--bp-border); outline: none;
}
.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--bp-accent); cursor: pointer; border: 2px solid var(--bp-bg);
}
.calc-val {
  font-family: var(--hand); font-size: 1.3rem; color: var(--bp-bright);
  display: block; margin-top: 0.3rem;
}
.calc-result { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.calc-result-label { font-size: 0.85rem; color: var(--bp-muted); margin-bottom: 0.5rem; }
.calc-result-amount {
  font-family: var(--hand); font-size: 3.5rem; color: var(--red);
  line-height: 1; margin-bottom: 0.5rem; transition: all 0.3s;
}
.calc-result-note { font-family: var(--mono); font-size: 0.7rem; color: var(--bp-muted); }
.calc-result-note span { color: var(--red); }

/* LEAKS */
.leaks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.leak-card {
  border: 1px solid var(--bp-border); border-radius: 2px; padding: 1.5rem;
  background: var(--bp-card); position: relative; transition: border-color 0.3s;
}
.leak-card:hover { border-color: var(--bp-accent); }
.leak-card::before, .leak-card::after {
  content: ''; position: absolute; width: 12px; height: 12px;
  border-color: var(--bp-line); border-style: solid;
}
.leak-card::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.leak-card::after { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
.leak-num { font-family: var(--mono); font-size: 0.6rem; color: var(--red); letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.leak-icon { margin-bottom: 0.75rem; }
.leak-card h3 { font-family: var(--hand); font-size: 1.15rem; color: var(--bp-bright); margin-bottom: 0.5rem; }
.leak-card p { font-size: 0.85rem; color: var(--bp-text); line-height: 1.6; }
.leak-fix { font-family: var(--mono); font-size: 0.65rem; color: var(--green); margin-top: 0.75rem; display: block; }
.leak-expand {
  font-family: var(--mono); font-size: 0.65rem; color: var(--bp-accent);
  margin-top: 1rem; cursor: pointer; letter-spacing: 0.06em; transition: color 0.2s;
}
.leak-expand:hover { color: var(--bp-bright); }
.leak-detail {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
  padding-top: 0;
}
.leak-card.expanded .leak-detail {
  max-height: 200px; padding-top: 1rem;
}
.leak-flow {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 0; border-top: 1px solid var(--bp-border);
}
.flow-step { text-align: center; }
.flow-dot {
  width: 10px; height: 10px; border-radius: 50%; margin: 0 auto 0.3rem;
}
.flow-dot.red { background: var(--red); box-shadow: 0 0 6px var(--red); }
.flow-dot.yellow { background: var(--yellow); box-shadow: 0 0 6px var(--yellow); }
.flow-dot.blue { background: var(--bp-accent); box-shadow: 0 0 6px var(--bp-accent); }
.flow-dot.green { background: var(--green); box-shadow: 0 0 6px var(--green); }
.flow-label { font-family: var(--mono); font-size: 0.55rem; color: var(--bp-muted); white-space: nowrap; }
.flow-arrow { font-family: var(--mono); font-size: 0.8rem; color: var(--bp-accent); }

/* Style A: SVG mini-icons */
.flow-svg { display: block; margin: 0 auto 0.3rem; }

/* Style B: Blueprint timeline */
.leak-flow-timeline {
  position: relative; display: flex; justify-content: space-between;
  padding: 1.25rem 0 0; border-top: 1px solid var(--bp-border);
}
.tl-line {
  position: absolute; top: 1.25rem; left: 10%; right: 10%; height: 2px;
  background: var(--bp-border);
}
.tl-line::after {
  content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 75%;
  background: var(--bp-accent); opacity: 0.5;
}
.tl-tick { text-align: center; position: relative; z-index: 1; flex: 1; }
.tl-mark {
  width: 8px; height: 8px; background: var(--bp-border); border: 2px solid var(--bp-bg);
  border-radius: 1px; margin: 0 auto 0.4rem; transform: rotate(45deg);
}
.tl-mark.active { background: var(--green); box-shadow: 0 0 6px var(--green); }

/* Style C: Numbered steps */
.leak-flow-numbered {
  display: flex; align-items: center; justify-content: center; gap: 0;
  padding: 0.75rem 0; border-top: 1px solid var(--bp-border);
}
.fn-step { text-align: center; flex: 1; }
.fn-num {
  font-family: var(--mono); font-size: 0.7rem; color: var(--bp-accent);
  display: block; margin-bottom: 0.3rem; letter-spacing: 0.05em;
}
.fn-connector {
  width: 20px; height: 1px; background: var(--bp-border); flex-shrink: 0;
  position: relative; top: -0.4rem;
}
.fn-connector::after {
  content: ''; position: absolute; right: -2px; top: -3px;
  border: solid var(--bp-accent); border-width: 0 1px 1px 0;
  padding: 2px; transform: rotate(-45deg);
}

/* COMPARE */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.compare-col {
  border: 1px solid var(--bp-border); border-radius: 2px; padding: 1.5rem;
  background: var(--bp-card); position: relative;
}
.compare-col::before, .compare-col::after {
  content: ''; position: absolute; width: 12px; height: 12px;
  border-color: var(--bp-line); border-style: solid;
}
.compare-col::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.compare-col::after { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
.compare-header {
  font-family: var(--hand); font-size: 1.1rem; margin-bottom: 1rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--bp-border);
}
.compare-bad .compare-header { color: var(--red); }
.compare-good .compare-header { color: var(--green); }
.compare-col ul { list-style: none; }
.compare-col li {
  font-size: 0.85rem; color: var(--bp-text); padding: 0.4rem 0 0.4rem 1.2rem;
  position: relative; line-height: 1.5;
}
.compare-bad li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-family: var(--mono); font-size: 0.75rem; }
.compare-good li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-family: var(--mono); font-size: 0.75rem; }

/* STEPS */
.steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num { font-family: var(--hand); font-size: 2rem; color: var(--bp-accent); min-width: 40px; text-align: center; line-height: 1; }
.step-content h3 { font-family: var(--hand); font-size: 1.05rem; color: var(--bp-bright); margin-bottom: 0.3rem; }
.step-content p { font-size: 0.85rem; color: var(--bp-text); line-height: 1.6; }

/* VERTICALS */
.verticals { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 1rem; }
.vert-tag {
  font-family: var(--mono); font-size: 0.65rem; color: var(--bp-muted);
  border: 1px solid var(--bp-border); padding: 5px 14px; border-radius: 2px;
  letter-spacing: 0.06em; transition: all 0.2s;
}
.vert-tag:hover { border-color: var(--bp-accent); color: var(--bp-accent); }
.vert-note { text-align: center; font-size: 0.85rem; color: var(--bp-muted); margin-top: 1rem; }

/* PROOF */
.proof-card {
  border: 1px solid var(--bp-border); border-radius: 2px; padding: 2.5rem;
  background: var(--bp-card); text-align: center; position: relative;
}
.proof-card::before, .proof-card::after {
  content: ''; position: absolute; width: 12px; height: 12px;
  border-color: var(--bp-line); border-style: solid;
}
.proof-card::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.proof-card::after { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
.proof-stat { font-family: var(--hand); font-size: 3rem; color: var(--bp-accent); margin-bottom: 0.5rem; }
.proof-label { font-size: 0.9rem; color: var(--bp-text); margin-bottom: 1.5rem; }
.proof-quote {
  font-size: 0.95rem; color: var(--bp-text); font-style: italic; line-height: 1.7;
  max-width: 500px; margin: 0 auto; padding-top: 1.5rem;
  border-top: 1px solid var(--bp-border);
}

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.price-card {
  border: 1px solid var(--bp-border); border-radius: 2px; padding: 2rem 1.5rem;
  background: var(--bp-card); text-align: center; position: relative; transition: border-color 0.3s;
}
.price-card:hover { border-color: var(--bp-accent); }
.price-card::before, .price-card::after {
  content: ''; position: absolute; width: 12px; height: 12px;
  border-color: var(--bp-line); border-style: solid;
}
.price-card::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.price-card::after { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
.price-label { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.12em; color: var(--bp-accent); text-transform: uppercase; margin-bottom: 0.75rem; }
.price-amount { font-family: var(--hand); font-size: 2.5rem; color: var(--bp-bright); margin-bottom: 0.25rem; }
.price-period { font-family: var(--mono); font-size: 0.65rem; color: var(--bp-muted); margin-bottom: 1rem; }
.price-desc { font-size: 0.85rem; color: var(--bp-text); line-height: 1.6; margin-bottom: 1.25rem; }
.price-features { list-style: none; text-align: left; padding: 0; }
.price-features li { font-size: 0.82rem; color: var(--bp-text); padding: 0.3rem 0 0.3rem 1.2rem; position: relative; }
.price-features li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-family: var(--mono); font-size: 0.75rem; }

/* CTA */

/* DASHBOARD PREVIEW */
.dash-preview-sub {
  text-align: center; font-size: 0.9rem; color: var(--bp-muted); margin-bottom: 2rem;
}
.dash-preview {
  background: #131620; border: 1px solid var(--bp-border); border-radius: 6px;
  padding: 1.25rem; position: relative; overflow: hidden; max-height: 600px;
}
.dp-stats {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.4rem; margin-bottom: 1rem;
}
.dp-stat {
  background: #1a1e2e; border: 1px solid rgba(60,120,200,0.15); border-radius: 6px;
  padding: 10px 8px; text-align: center; position: relative; overflow: hidden;
}
.dp-stat-val { font-family: var(--mono); font-size: 1.2rem; color: var(--bp-bright); font-weight: 700; }
.dp-stat-label { font-size: 0.5rem; font-family: var(--mono); color: var(--bp-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.dp-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; }
.dp-bar-new { background: var(--yellow); }
.dp-bar-contacted { background: #22d3ee; }
.dp-bar-estimate { background: #6366f1; }
.dp-bar-booked { background: #8b5cf6; }
.dp-bar-completed { background: var(--green); }
.dp-bar-review { background: #f97316; }
.dp-leads { display: flex; flex-direction: column; gap: 0.75rem; }
.dp-lead {
  background: #1a1e2e; border: 1px solid rgba(60,120,200,0.15); border-radius: 8px;
  padding: 1rem;
}
.dp-lead-top {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.6rem; flex-wrap: wrap;
}
.dp-pill {
  font-family: var(--mono); font-size: 0.5rem; letter-spacing: 0.06em;
  padding: 2px 7px; border-radius: 8px; text-transform: uppercase; font-weight: 600;
}
.dp-pill-phone { color: #22d3ee; background: rgba(34,211,238,0.1); }
.dp-pill-website { color: var(--green); background: rgba(52,211,153,0.1); }
.dp-pill-new { color: var(--yellow); background: rgba(251,191,36,0.1); }
.dp-pill-estimate { color: #6366f1; background: rgba(99,102,241,0.1); }
.dp-pill-booked { color: #8b5cf6; background: rgba(139,92,246,0.1); }
.dp-lead-name { color: var(--bp-bright); font-weight: 600; font-size: 0.85rem; }
.dp-lead-phone { color: var(--bp-muted); font-size: 0.7rem; font-family: var(--mono); }
.dp-lead-time { color: var(--bp-muted); font-size: 0.6rem; font-family: var(--mono); margin-left: auto; }
.dp-track { display: flex; gap: 2px; margin-bottom: 0.6rem; height: 3px; border-radius: 2px; overflow: hidden; }
.dp-track-seg { flex: 1; background: rgba(60,120,200,0.15); border-radius: 1px; }
.dp-seg-done { background: var(--green); }
.dp-seg-current { background: #8b5cf6; animation: pulse-seg 2s infinite; }
@keyframes pulse-seg { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.dp-lead-fields {
  display: flex; gap: 1.25rem; margin-bottom: 0.5rem; flex-wrap: wrap;
}
.dp-field {
  font-size: 0.72rem; color: var(--bp-text); font-family: var(--sans);
}
.dp-field-label {
  font-family: var(--mono); font-size: 0.55rem; color: var(--bp-muted);
  text-transform: uppercase; letter-spacing: 0.06em; margin-right: 0.3rem;
}
.dp-lead-log {
  background: #161a28; border: 1px solid rgba(60,120,200,0.1); border-radius: 4px;
  padding: 0.6rem; margin-top: 0.5rem;
}
.dp-log-label {
  font-family: var(--mono); font-size: 0.5rem; color: var(--bp-muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem;
}
.dp-log-entry { padding: 0.4rem 0; border-bottom: 1px solid rgba(60,120,200,0.08); }
.dp-log-entry:last-child { border-bottom: none; }
.dp-log-ts { font-family: var(--mono); font-size: 0.55rem; color: var(--bp-muted); margin-bottom: 0.15rem; }
.dp-log-body { font-size: 0.75rem; color: var(--bp-text); line-height: 1.4; }
.dp-log-vm { font-size: 0.7rem; margin-top: 0.2rem; }
.dp-log-vm a { color: #22d3ee; text-decoration: none; font-family: var(--mono); font-size: 0.6rem; }
.dp-log-transcript {
  font-size: 0.72rem; color: var(--bp-text); font-style: italic; margin-top: 0.2rem;
  padding-left: 0.6rem; border-left: 2px solid #8b5cf6;
}
.dp-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(transparent, #131620);
  pointer-events: none;
}

@media (max-width: 768px) {
  .dp-stats { grid-template-columns: repeat(3, 1fr); }
  .dp-lead-top { flex-direction: column; align-items: flex-start; }
  .dp-lead-time { margin-left: 0; }
}

.cta-section { text-align: center; padding: 5rem 2rem; max-width: 900px; margin: 0 auto; }
.cta-section h2 { font-family: var(--hand); font-size: 2rem; color: var(--bp-bright); margin-bottom: 1rem; }
.cta-section p { font-size: 1rem; color: var(--bp-text); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btn {
  display: inline-block; font-family: var(--hand); font-size: 1.1rem;
  color: var(--bp-bg); background: var(--bp-accent); padding: 14px 36px;
  border-radius: 2px; text-decoration: none; transition: all 0.2s;
}
.cta-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.cta-note { font-family: var(--mono); font-size: 0.6rem; color: var(--bp-muted); margin-top: 1rem; letter-spacing: 0.08em; }

/* AUDIT MODAL */
.audit-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(5, 12, 24, 0.85); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 1rem;
}
.audit-overlay.open { display: flex; }
.audit-modal {
  width: 100%; max-width: 480px; background: var(--bp-bg);
  border: 1px solid var(--bp-border); border-radius: 2px; position: relative;
  background-image:
    linear-gradient(var(--bp-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--bp-grid) 1px, transparent 1px);
  background-size: 20px 20px; max-height: 90vh; overflow-y: auto;
}
.audit-modal::before, .audit-modal::after {
  content: ''; position: absolute; width: 14px; height: 14px;
  border-color: var(--bp-line); border-style: solid;
}
.audit-modal::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.audit-modal::after { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
.audit-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem 0.75rem; border-bottom: 1px solid var(--bp-border);
}
.audit-title { font-family: var(--hand); font-size: 1.15rem; color: var(--bp-bright); }
.audit-close {
  background: none; border: none; color: var(--bp-muted); font-size: 1.3rem;
  cursor: pointer; line-height: 1; transition: color 0.2s;
}
.audit-close:hover { color: var(--bp-bright); }
.audit-form { padding: 1rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: 0.85rem; }
.af-group { display: flex; flex-direction: column; gap: 0.3rem; }
.af-group label {
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.1em;
  color: var(--bp-muted); text-transform: uppercase;
}
.af-group input, .af-group select, .af-group textarea {
  font-family: var(--sans); font-size: 0.85rem; color: var(--bp-bright);
  background: rgba(10, 25, 50, 0.6); border: 1px solid var(--bp-border);
  border-radius: 2px; padding: 0.6rem 0.75rem; outline: none; transition: border-color 0.2s;
}
.af-group input:focus, .af-group select:focus, .af-group textarea:focus { border-color: var(--bp-accent); }
.af-group input::placeholder, .af-group textarea::placeholder { color: rgba(140,180,220,0.3); }
.af-group select { cursor: pointer; appearance: none; }
.af-group select option { background: #0b1628; color: var(--bp-text); }
.af-group textarea { resize: vertical; min-height: 60px; }
.af-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.af-submit {
  font-family: var(--hand); font-size: 1rem; color: var(--bp-bg);
  background: var(--bp-accent); border: none; border-radius: 2px;
  padding: 0.65rem 1.5rem; cursor: pointer; transition: opacity 0.2s; margin-top: 0.25rem;
}
.af-submit:hover { opacity: 0.85; }
@media (max-width: 768px) { .af-row { grid-template-columns: 1fr; } }

/* FOOTER */
.footer-final { border-top: 1px solid var(--bp-border); padding: 2.5rem 2rem; max-width: 900px; margin: 0 auto; text-align: center; }
.ff-brand { font-family: var(--hand); font-size: 1.1rem; color: var(--bp-bright); margin-bottom: 1rem; }
.ff-label {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem;
}
.ff-line { flex: 1; height: 1px; background: var(--bp-border); }
.ff-label-text {
  font-family: var(--hand); font-size: 0.95rem; color: var(--bp-accent); white-space: nowrap;
}
.ff-row {
  display: flex; justify-content: center; align-items: center; gap: 1.5rem; margin-bottom: 1rem;
}
.ff-social {
  display: inline-flex; align-items: center; gap: 0.4rem; text-decoration: none;
  color: var(--bp-muted); font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.06em; transition: color 0.2s;
}
.ff-social:hover { color: var(--bp-accent); }
.ff-social svg { width: 16px; height: 16px; flex-shrink: 0; fill: currentColor; }
.ff-dot { color: var(--bp-border); font-size: 0.5rem; }
.ff-legal p { font-size: 0.65rem; color: var(--bp-muted); margin-top: 0.75rem; }

/* ANIMATIONS */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* MOBILE */
@media (max-width: 768px) {
  .topbar-right { display: none; position: absolute; top: 56px; left: 0; right: 0; background: rgba(11, 22, 40, 0.97); flex-direction: column; padding: 1.5rem 2rem; gap: 1rem; border-bottom: 1px solid var(--bp-border); }
  .topbar-right.open { display: flex; }
  .mobile-toggle { display: block; }
  .hero { padding: 8rem 1.5rem 3rem; }
  .hero-pipeline { flex-wrap: wrap; gap: 0.5rem; }
  .pipe-line { display: none; }
  .section { padding: 3rem 1.25rem; }
  .leaks-grid, .pricing-grid, .compare, .calc-card { grid-template-columns: 1fr; }
  .step { flex-direction: column; gap: 0.5rem; }
  .calc-result { margin-top: 1rem; }
}
