/* Sparviko shared stylesheet. Dark hero + light body + dark accent theme. */
:root {
  --bg-dark: #0b0e15;
  --panel-dark: #161a24;
  --ink-light: #e8eaf0;
  --mute-light: #9aa0ac;
  --bg-light: #ffffff;
  --bg-alt: #f3f6fb;
  --ink-dark: #131722;
  --mute-dark: #5a6474;
  --accent: #0ea5e9;
  --accent-deep: #0369a1;
  --accent-light: #7dd3fc;
  --good: #22c55e;
  --border-dark: rgba(255,255,255,0.08);
  --border-light: rgba(10,20,40,0.10);
  --max-w: 1080px;
  --shadow: 0 10px 40px rgba(10,20,40,0.08);
  --shadow-lift: 0 16px 50px rgba(10,20,40,0.14);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-light); color: var(--ink-dark);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6; font-size: 17px; -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-deep); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
h2 { font-size: 34px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.15; }
p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }

/* NAV (always dark) */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(11,14,21,0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-dark); padding: 14px 24px; }
.nav-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; flex-wrap: wrap; }
.nav-links a { color: var(--ink-light); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--accent-light); }
.nav-links a.active { color: var(--accent-light); }
.nav-cta { background: var(--accent); color: #fff !important; padding: 9px 18px; border-radius: 8px; font-weight: 600; }
.nav-cta:hover { background: var(--accent-deep); }

/* BUTTONS */
.btn { display: inline-block; padding: 15px 30px; font-size: 16px; font-weight: 600; border-radius: 10px; cursor: pointer; border: none; font-family: inherit; transition: transform 0.12s ease, background 0.2s ease, box-shadow 0.2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 30px rgba(14,165,233,0.35); }
.btn-primary:hover { background: var(--accent-deep); color: #fff; }
.btn-secondary { background: rgba(255,255,255,0.08); color: var(--ink-light); border: 1px solid var(--border-dark); }
.btn-secondary:hover { background: rgba(255,255,255,0.14); color: #fff; }

/* HERO (dark, glow) */
.hero { position: relative; overflow: hidden; background: radial-gradient(1200px 600px at 50% -10%, rgba(14,165,233,0.22), rgba(11,14,21,0) 60%), linear-gradient(180deg, #0b0e15 0%, #0d1119 100%); color: var(--ink-light); padding: 110px 24px 96px; text-align: center; }
.hero.short { padding: 92px 24px 72px; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 80px; background: linear-gradient(180deg, rgba(255,255,255,0), var(--bg-light)); }
.hero h1 { font-size: 56px; font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 22px; max-width: 860px; margin-left: auto; margin-right: auto; }
.hero.short h1 { font-size: 44px; }
.hero h1 .grad { background: linear-gradient(90deg, var(--accent-light), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .subhead { font-size: 20px; color: #c4cbd6; max-width: 720px; margin: 0 auto 36px; line-height: 1.5; }
.hero .subhead:last-child { margin-bottom: 0; }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* STAT BAND (dark) */
.stats { background: #0d1119; color: var(--ink-light); padding: 0 24px 72px; }
.stats-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { background: var(--panel-dark); border: 1px solid var(--border-dark); border-radius: 14px; padding: 26px 20px; text-align: center; }
.stat .num { font-size: 38px; font-weight: 800; letter-spacing: -0.02em; background: linear-gradient(90deg, var(--accent-light), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1.1; }
.stat .label { color: var(--mute-light); font-size: 14px; margin-top: 8px; line-height: 1.4; }
.stat .label sup a { color: var(--accent-light); font-size: 11px; }
.stats-cite { max-width: var(--max-w); margin: 16px auto 0; text-align: center; color: #5d6675; font-size: 12px; }
.stats-cite a { color: #7d8694; text-decoration: underline; }

/* SECTIONS */
.sec { padding: 84px 0; }
.sec-light { background: var(--bg-light); }
.sec-alt { background: var(--bg-alt); }
.sec-dark { background: var(--bg-dark); color: var(--ink-light); }
.sec-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.sec-head h2 { font-size: 34px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.15; }
.sec-dark .sec-head h2 { color: var(--ink-light); }
.sec-head .kicker { color: var(--accent); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }

/* FOUNDER */
.founder { max-width: 760px; margin: 0 auto; }
.founder p { font-size: 17px; color: var(--ink-dark); margin-bottom: 20px; }
.founder .signoff { margin-top: 28px; color: var(--mute-dark); font-weight: 600; font-size: 15px; }
.founder .big { color: var(--accent-deep); font-weight: 700; }

/* NAMING NOTE */
.naming { max-width: 760px; margin: 36px auto 0; background: #fff; border: 1px solid var(--border-light); border-left: 4px solid var(--accent); border-radius: 12px; padding: 24px 28px; color: var(--mute-dark); font-size: 15px; box-shadow: var(--shadow); }
.naming strong { color: var(--ink-dark); }

/* DIFF CARDS (bento) */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 940px; margin: 0 auto; }
.diff-card { background: #fff; border: 1px solid var(--border-light); border-radius: 16px; padding: 32px; box-shadow: var(--shadow); transition: transform 0.15s ease, box-shadow 0.15s ease; }
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.diff-icon { width: 46px; height: 46px; border-radius: 11px; background: linear-gradient(135deg, var(--accent-light), var(--accent)); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.diff-icon svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 2; }
.diff-card h3 { font-size: 19px; font-weight: 700; color: var(--ink-dark); margin-bottom: 10px; }
.diff-card p { color: var(--mute-dark); font-size: 16px; line-height: 1.55; }

/* SCENARIOS */
.scenarios { display: flex; flex-direction: column; gap: 20px; max-width: 800px; margin: 0 auto; }
.scenario { background: #fff; border: 1px solid var(--border-light); border-left: 4px solid var(--accent); border-radius: 12px; padding: 22px 26px; box-shadow: var(--shadow); }
.scenario .lead { display: block; color: var(--accent-deep); margin-bottom: 8px; font-weight: 700; }
.scenario p { color: var(--ink-dark); margin-bottom: 0; }

/* KNOWS CUSTOMERS / GENERIC TEXT BLOCK */
.kc { max-width: 760px; margin: 0 auto; }
.kc p { color: var(--mute-dark); }
.kc .aside { margin-top: 24px; padding: 18px 22px; background: #fff; border: 1px solid var(--border-light); border-radius: 12px; font-size: 15px; color: var(--mute-dark); box-shadow: var(--shadow); }

/* CONTENT BLOCK (white card for body copy) */
.content-block { max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid var(--border-light); border-radius: 14px; padding: 32px 36px; box-shadow: var(--shadow); }
.content-block p { color: var(--mute-dark); }
.content-block p strong { color: var(--ink-dark); }

/* TIGHT LISTS */
ul.tight { list-style: none; padding: 0; max-width: 760px; margin: 0 auto; }
ul.tight li { position: relative; padding: 14px 0 14px 28px; color: var(--mute-dark); line-height: 1.6; border-bottom: 1px solid var(--border-light); }
ul.tight li:last-child { border-bottom: none; }
ul.tight li::before { content: ""; position: absolute; left: 6px; top: 24px; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
ul.tight li strong { color: var(--ink-dark); }
.content-block ul.tight { margin: 0; }
.content-block ul.tight li:first-child { padding-top: 0; }
.content-block ul.tight li:first-child::before { top: 10px; }
.content-block ul.tight li:last-child { padding-bottom: 0; }

/* MODE BOX */
.mode-box { background: rgba(14,165,233,0.06); border-left: 3px solid var(--accent); padding: 20px 24px; border-radius: 6px; margin: 16px 0; }
.mode-box strong { color: var(--accent-deep); display: block; margin-bottom: 4px; font-size: 16px; }
.mode-box p { color: var(--mute-dark); margin-bottom: 0; font-size: 15px; }

/* EXAMPLES PLACEHOLDER */
.examples-placeholder { background: var(--bg-alt); border: 1px dashed var(--border-light); border-radius: 8px; padding: 24px; margin-top: 20px; color: var(--mute-dark); font-size: 14px; font-style: italic; text-align: center; }

/* DASHBOARD GROUPS */
.dashboard-group { margin-bottom: 28px; }
.dashboard-group:last-child { margin-bottom: 0; }
.dashboard-group-label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-deep); font-weight: 700; margin-bottom: 8px; }
.dashboard-group-intro { color: var(--mute-dark); font-size: 15px; margin-bottom: 12px; }
.dashboard-group ul.tight li { padding: 8px 0 8px 28px; font-size: 15px; }
.dashboard-group ul.tight li::before { top: 17px; }
.dashboard-group ul.tight li:first-child::before { top: 9px; }

/* ASIDE / REQUIREMENTS */
.aside { margin-top: 24px; padding: 16px 20px; background: var(--bg-alt); border: 1px solid var(--border-light); border-radius: 8px; font-size: 14px; color: var(--mute-dark); font-style: italic; }
.requirements-note { margin-top: 24px; padding: 20px 24px; background: rgba(14,165,233,0.06); border-left: 3px solid var(--accent); border-radius: 6px; font-size: 15px; color: var(--mute-dark); }
.requirements-note strong { color: var(--accent-deep); }

/* CALL DEMOS (dark band) */
.calls { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.demo-intro { max-width: 720px; margin: 0 auto 36px; text-align: center; color: var(--mute-light); font-size: 17px; }
.call { background: var(--panel-dark); border: 1px solid var(--border-dark); border-radius: 12px; overflow: hidden; }
.call summary { list-style: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; gap: 14px; font-weight: 600; font-size: 17px; color: var(--ink-light); transition: background 0.15s ease; }
.call summary:hover { background: rgba(255,255,255,0.03); }
.call summary::-webkit-details-marker { display: none; }
.call summary .q { flex: 1; }
.call summary .tag { font-size: 12px; color: var(--mute-light); font-weight: 400; background: rgba(255,255,255,0.06); padding: 3px 9px; border-radius: 20px; }
.call summary .chev { width: 22px; height: 22px; flex-shrink: 0; position: relative; }
.call summary .chev::before, .call summary .chev::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; background: var(--accent-light); transform: translate(-50%,-50%); transition: transform 0.2s ease; }
.call summary .chev::after { transform: translate(-50%,-50%) rotate(90deg); }
.call[open] summary .chev::after { transform: translate(-50%,-50%) rotate(0deg); }
.call[open] summary { border-bottom: 1px solid var(--border-dark); }
.call-body { padding: 24px; }
.call-body audio { width: 100%; margin-bottom: 20px; }
.chat { display: flex; flex-direction: column; gap: 12px; }
.bubble { max-width: 82%; padding: 11px 15px; border-radius: 14px; font-size: 15px; line-height: 1.45; }
.bubble .who { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.bubble.brooke { align-self: flex-start; background: rgba(125,211,252,0.12); border: 1px solid rgba(125,211,252,0.2); border-bottom-left-radius: 4px; color: var(--ink-light); }
.bubble.brooke .who { color: var(--accent-light); }
.bubble.caller { align-self: flex-end; background: rgba(255,255,255,0.06); border: 1px solid var(--border-dark); border-bottom-right-radius: 4px; color: var(--ink-light); }
.bubble.caller .who { color: var(--mute-light); text-align: right; }
.tool-chip { align-self: center; font-size: 12px; color: var(--good); background: rgba(34,197,94,0.1); padding: 6px 14px; border-radius: 20px; border: 1px solid rgba(34,197,94,0.25); font-weight: 500; }
.call-soon { color: var(--mute-light); font-size: 14px; font-style: italic; }
/* dashboard-style transcript */
.tscript { margin-top: 18px; border: 1px solid var(--border-dark); border-radius: 10px; overflow: hidden; background: rgba(0,0,0,0.25); }
.tscript .trow { display: flex; gap: 14px; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.05); align-items: flex-start; }
.tscript .trow:last-child { border-bottom: none; }
.tscript .ttime { display: none; }
.tscript .twho { flex-shrink: 0; width: 78px; padding-top: 1px; }
.tscript .twho span { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 3px 8px; border-radius: 5px; display: inline-block; }
.tscript .twho.brooke span { background: rgba(245,158,11,0.15); color: #f59e0b; }
.tscript .twho.cust span { background: rgba(96,165,250,0.15); color: #60a5fa; }
.tscript .ttext { flex: 1; font-size: 14.5px; line-height: 1.5; color: #d4d8e0; }
.tscript .tool { display: flex; align-items: center; gap: 8px; padding: 9px 16px; background: rgba(34,197,94,0.07); border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 12px; color: var(--good); font-weight: 600; }
.tscript .tool::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--good); flex-shrink: 0; }
.demo-note { max-width: 760px; margin: 24px auto 0; text-align: center; color: #6b7280; font-size: 13px; }
/* browser-framed screenshot */
.browser { max-width: 960px; margin: 0 auto; border-radius: 12px; overflow: hidden; box-shadow: 0 24px 70px rgba(10,20,40,0.30); border: 1px solid var(--border-dark); background: #0b0e15; }
.browser-bar { display: flex; align-items: center; gap: 8px; padding: 11px 14px; background: #1a1f2b; border-bottom: 1px solid var(--border-dark); }
.browser-dots { display: flex; gap: 6px; }
.browser-dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.browser-dots i:nth-child(1) { background: #ff5f56; }
.browser-dots i:nth-child(2) { background: #ffbd2e; }
.browser-dots i:nth-child(3) { background: #27c93f; }
.browser-url { flex: 1; margin-left: 8px; background: #0b0e15; border: 1px solid var(--border-dark); border-radius: 6px; padding: 5px 12px; font-size: 12px; color: var(--mute-light); font-family: ui-monospace, "SF Mono", Menlo, monospace; text-align: center; }
.browser img { width: 100%; display: block; }
.browser-caption { max-width: 960px; margin: 18px auto 0; text-align: center; color: var(--mute-dark); font-size: 14px; }
.sec-dark .browser-caption { color: var(--mute-light); }
/* feature grid (overview cards that jump to detail sections) */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 980px; margin: 0 auto; }
.feature-card { background: #fff; border: 1px solid var(--border-light); border-radius: 14px; padding: 22px 20px; text-decoration: none; display: block; box-shadow: var(--shadow); transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease; }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: var(--accent); text-decoration: none; }
.feature-card .fc-ic { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, var(--accent-light), var(--accent)); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.feature-card .fc-ic svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; }
.feature-card h3 { font-size: 16px; font-weight: 700; color: var(--ink-dark); margin-bottom: 5px; }
.feature-card p { font-size: 13.5px; color: var(--mute-dark); margin: 0; line-height: 1.45; }
.scroll-anchor { scroll-margin-top: 80px; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .feature-grid { grid-template-columns: 1fr; } }

/* caller pop-out shown on a recreated Windows desktop (fabricated data) */
.desktop { max-width: 940px; margin: 0 auto; aspect-ratio: 16 / 9; border-radius: 10px; overflow: hidden; box-shadow: 0 24px 70px rgba(10,20,40,0.4); border: 1px solid var(--border-dark); position: relative; background: radial-gradient(120% 120% at 50% 35%, #1a2235 0%, #0d1119 60%, #070a10 100%); display: flex; align-items: center; justify-content: center; }
.desktop-logo { text-align: center; opacity: 0.85; padding: 0 20px; }
.desktop-logo img { width: 220px; max-width: 42%; margin: 0 auto; filter: drop-shadow(0 6px 24px rgba(0,0,0,0.5)); }
.desktop-clock { position: absolute; top: 14px; right: 18px; color: rgba(255,255,255,0.5); font-size: 12px; font-family: ui-monospace, Menlo, monospace; }
.desktop-taskbar { position: absolute; left: 0; right: 0; bottom: 0; height: 34px; background: rgba(12,16,24,0.82); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; padding: 0 12px; gap: 11px; }
.desktop-taskbar .tb-start { width: 18px; height: 18px; border-radius: 4px; background: linear-gradient(135deg, var(--accent-light), var(--accent)); flex-shrink: 0; }
.desktop-taskbar .tb-ico { width: 15px; height: 15px; border-radius: 3px; background: rgba(255,255,255,0.12); }
.desktop-taskbar .tb-time { margin-left: auto; color: rgba(255,255,255,0.55); font-size: 10px; font-family: ui-monospace, Menlo, monospace; line-height: 1.2; text-align: right; }
.popout { position: absolute; right: 12px; bottom: 44px; width: min(300px, 60%); background: #f4f5f7; border-radius: 9px; box-shadow: 0 18px 50px rgba(0,0,0,0.6); overflow: hidden; border: 1px solid rgba(0,0,0,0.12); }
.popout-head { display: flex; align-items: center; gap: 8px; padding: 8px 11px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.popout-head .badge { width: 17px; height: 17px; border-radius: 4px; background: #0b0e15; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.popout-head .badge span { color: var(--accent-light); font-size: 7px; font-weight: 800; letter-spacing: -0.5px; }
.popout-head .app { font-size: 11px; font-weight: 600; color: #1f2430; flex: 1; }
.popout-head .dots { color: #9ca3af; font-size: 13px; letter-spacing: 1px; }
.popout-body { display: flex; gap: 10px; padding: 11px; }
.popout-photo { width: 48px; height: 48px; border-radius: 6px; background: linear-gradient(135deg, #1a1f2b, #0b0e15); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.popout-photo span { color: var(--accent-light); font-size: 7px; font-weight: 800; letter-spacing: -0.5px; text-align: center; line-height: 1.1; }
.popout-info { flex: 1; min-width: 0; }
.popout-info .pname { font-size: 14px; font-weight: 700; color: #1f2430; margin-bottom: 1px; }
.popout-info .pphone { font-size: 11.5px; color: #4b5563; margin-bottom: 5px; }
.popout-info .pcars { font-size: 11px; color: #374151; line-height: 1.4; }
.popout-caption { max-width: 640px; margin: 22px auto 0; text-align: center; color: var(--mute-dark); font-size: 14px; }
.sec-dark .popout-caption, .sec-alt .popout-caption { color: var(--mute-dark); }
@media (max-width: 600px) { .desktop { aspect-ratio: 4 / 3; } .desktop-logo img { width: 200px; } .popout { width: 86%; right: 7%; left: 7%; bottom: 50px; } }

/* service history page (recreated UI, fabricated data) */
.sh { background: #0b0e15; color: #e8eaf0; font-size: 14px; }
.sh-topbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid var(--border-dark); background: #11151e; }
.sh-topbar .sh-title { color: var(--accent); font-weight: 700; font-size: 15px; }
.sh-topbar .sh-nav { color: #6b7280; font-size: 12px; }
.sh-pad { padding: 22px; }
.sh-search { display: flex; gap: 12px; align-items: flex-end; background: #141925; border: 1px solid var(--border-dark); border-radius: 10px; padding: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.sh-field label { display: block; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: #6b7280; margin-bottom: 5px; }
.sh-field .box { background: #0b0e15; border: 1px solid var(--border-dark); border-radius: 7px; padding: 9px 13px; font-family: ui-monospace, Menlo, monospace; font-size: 14px; color: #e8eaf0; min-width: 200px; }
.sh-field .box.muted { color: #4b5563; }
.sh-lookup { background: var(--accent); color: #0a0f1a; font-weight: 700; border-radius: 7px; padding: 10px 22px; font-size: 14px; }
.sh-cust { background: #141925; border: 1px solid var(--border-dark); border-radius: 12px; padding: 22px; margin-bottom: 16px; }
.sh-cust-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 12px; }
.sh-cust .cname { font-size: 24px; font-weight: 800; }
.sh-cust .cphone { color: #6b7280; font-family: ui-monospace, Menlo, monospace; font-size: 13px; margin-top: 2px; }
.sh-cust .cspend { text-align: right; }
.sh-cust .cspend .lbl { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: #6b7280; }
.sh-cust .cspend .val { color: var(--good); font-weight: 800; font-size: 19px; font-family: ui-monospace, Menlo, monospace; }
.sh-vehtabs { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.sh-veh { border: 1px solid var(--border-dark); border-radius: 9px; padding: 11px 18px; font-size: 14px; }
.sh-veh.active { border-color: var(--accent); color: var(--accent); }
.sh-veh .sub { font-size: 11px; color: #6b7280; margin-top: 2px; }
.sh-veh.active .sub { color: var(--accent-deep); }
.sh-tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 22px; }
.sh-tile { background: #141925; border: 1px solid var(--border-dark); border-radius: 10px; padding: 18px 14px; text-align: center; }
.sh-tile .n { color: var(--accent); font-weight: 800; font-size: 22px; font-family: ui-monospace, Menlo, monospace; line-height: 1.1; }
.sh-tile .l { font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; color: #6b7280; margin-top: 6px; }
.sh-hh { font-weight: 700; font-size: 15px; margin-bottom: 12px; }
.sh-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.sh-chip { font-size: 12px; padding: 6px 13px; border-radius: 20px; border: 1px solid var(--border-dark); color: #9ca3af; }
.sh-chip.on { background: var(--accent); color: #0a0f1a; border-color: var(--accent); font-weight: 600; }
.sh-chip.def { color: var(--accent); border-color: var(--accent); }
.sh-visit { background: #141925; border: 1px solid var(--border-dark); border-radius: 10px; padding: 18px; margin-bottom: 14px; }
.sh-visit-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; flex-wrap: wrap; gap: 8px; }
.sh-visit .vdate { font-weight: 700; font-size: 15px; }
.sh-visit .vmeta { font-size: 12px; color: #6b7280; font-family: ui-monospace, Menlo, monospace; display: flex; gap: 10px; align-items: center; }
.sh-visit .vmeta .wo { background: rgba(245,158,11,0.15); color: #f59e0b; padding: 2px 7px; border-radius: 4px; }
.sh-visit .vmeta .inv { background: rgba(255,255,255,0.05); padding: 2px 7px; border-radius: 4px; }
.sh-line { display: flex; gap: 11px; align-items: baseline; padding: 5px 0; }
.sh-line .tag { flex-shrink: 0; font-size: 9px; font-weight: 700; letter-spacing: 0.05em; padding: 3px 7px; border-radius: 4px; text-transform: uppercase; }
.sh-line .tag.concern { background: rgba(239,68,68,0.16); color: #ef4444; }
.sh-line .tag.inspection { background: rgba(96,165,250,0.16); color: #60a5fa; }
.sh-line .tag.service { background: rgba(34,197,94,0.16); color: #22c55e; }
.sh-line .txt { color: #d4d8e0; font-size: 14px; }
@media (max-width: 700px) {
  .sh-tiles { grid-template-columns: repeat(2, 1fr); }
  .sh-field .box { min-width: 0; width: 100%; }
  .sh-field { flex: 1; }
}

/* message card (recreated dashboard row, fabricated data) */
.msgcard-wrap { max-width: 640px; margin: 0 auto; }
.msgcard-label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-deep); font-weight: 700; margin-bottom: 10px; text-align: center; }
.msgcard { background: #0b0e15; border: 1px solid rgba(245,158,11,0.4); border-radius: 12px; padding: 20px 22px; box-shadow: 0 14px 40px rgba(10,20,40,0.25); }
.msgcard .mc-top { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.msgcard .mc-name { color: #e8eaf0; font-weight: 700; font-size: 16px; }
.msgcard .mc-phone { color: #6b7280; font-family: ui-monospace, Menlo, monospace; font-size: 13px; }
.msgcard .mc-veh { color: #6b7280; font-size: 13px; margin-top: 3px; }
.msgcard .mc-msg { color: #e8eaf0; font-size: 15px; margin-top: 12px; line-height: 1.5; }
.msgcard .mc-msg b { color: #f59e0b; font-weight: 700; }
.msgcard .mc-meta { color: #4b5563; font-size: 12px; font-family: ui-monospace, Menlo, monospace; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; gap: 10px; align-items: center; }
.msgcard .mc-tag { background: rgba(34,197,94,0.14); color: #22c55e; font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 3px 8px; border-radius: 4px; }
.msgcard-caption { text-align: center; color: var(--mute-dark); font-size: 13px; margin-top: 16px; }

/* real Google review + reply examples */
.reviews-ex { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; margin-top: 24px; }
.rev { background: #fff; border: 1px solid var(--border-light); border-radius: 14px; padding: 22px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.rev-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.rev-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-light), var(--accent)); color: #fff; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rev-who { line-height: 1.2; }
.rev-who .rn { font-weight: 700; color: var(--ink-dark); font-size: 14px; }
.rev-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; }
.rev-text { color: var(--ink-dark); font-size: 14px; line-height: 1.5; margin-bottom: 14px; }
.rev-reply { background: var(--bg-alt); border-radius: 10px; padding: 12px 14px; margin-top: auto; }
.rev-reply .rl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent-deep); margin-bottom: 5px; display: flex; align-items: center; gap: 6px; }
.rev-reply .rl::before { content: ""; width: 14px; height: 14px; border-radius: 3px; background: linear-gradient(135deg, var(--accent-light), var(--accent)); display: inline-block; }
.rev-reply .rt { color: var(--mute-dark); font-size: 13px; line-height: 1.5; }
.reviews-caption { text-align: center; color: var(--mute-dark); font-size: 13px; margin-top: 18px; }
@media (max-width: 820px) { .reviews-ex { grid-template-columns: 1fr; } }

/* compact stat strip (e.g. in a hero) */
.hstats { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; max-width: 820px; margin: 28px auto 0; }
.hstat { background: rgba(255,255,255,0.05); border: 1px solid var(--border-dark); border-radius: 12px; padding: 14px 20px; text-align: center; min-width: 150px; flex: 1; }
.hstat .n { font-size: 26px; font-weight: 800; line-height: 1.1; background: linear-gradient(90deg, var(--accent-light), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hstat .l { color: #c4cbd6; font-size: 12.5px; margin-top: 5px; line-height: 1.35; }
.hstat .l sup a { color: var(--accent-light); font-size: 10px; }
.hstats-cite { text-align: center; color: #5d6675; font-size: 11px; margin: 12px auto 0; }
.hstats-cite a { color: #7d8694; text-decoration: underline; }
@media (max-width: 600px) { .hstat { min-width: 0; flex-basis: 45%; padding: 12px 10px; } .hstat .n { font-size: 22px; } }
@media (max-width: 768px) {
  .tscript .trow { flex-wrap: wrap; gap: 6px 10px; }
  .tscript .ttext { flex-basis: 100%; }
}

/* QUOTE */
.quote-block { background: #fff; border: 1px solid var(--border-light); border-top: 4px solid var(--accent); border-radius: 16px; padding: 48px; text-align: center; max-width: 700px; margin: 0 auto; box-shadow: var(--shadow); }
.quote-block .qh { font-size: 26px; font-weight: 800; color: var(--accent-deep); margin-bottom: 18px; line-height: 1.3; }
.quote-block .qb { font-size: 17px; line-height: 1.6; margin-bottom: 22px; color: var(--ink-dark); }
.quote-block .qa { color: var(--mute-dark); font-size: 14px; font-style: italic; }

/* CONNECT */
.connect { max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid var(--border-light); border-radius: 14px; padding: 32px; box-shadow: var(--shadow); }
.connect p { color: var(--mute-dark); margin-bottom: 0; }

/* MATH BLOCK (shops) */
.math-block { max-width: 820px; margin: 0 auto; background: #fff; border: 1px solid var(--border-light); border-radius: 16px; padding: 40px; text-align: center; box-shadow: var(--shadow); }
.math-block p { color: var(--ink-dark); font-size: 18px; }
.math-block .punchline { color: var(--accent-deep); font-weight: 700; margin-top: 24px; font-size: 19px; }

/* VALUE STACK (pricing) */
.stack-block { max-width: 700px; margin: 0 auto; background: #fff; border: 1px solid var(--border-light); border-radius: 16px; padding: 40px; border-top: 4px solid var(--accent); box-shadow: var(--shadow); }
.stack-intro { color: var(--ink-dark); font-size: 18px; font-weight: 600; margin-bottom: 24px; text-align: center; }
.stack-list { list-style: none; padding: 0; margin: 0 0 24px; }
.stack-list li { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 13px 0; border-bottom: 1px solid var(--border-light); color: var(--ink-dark); font-size: 16px; }
.stack-list li:last-child { border-bottom: none; }
.stack-list .check { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: rgba(34,197,94,0.15); color: var(--good); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }
.stack-foot { color: var(--mute-dark); font-size: 15px; margin-bottom: 0; line-height: 1.6; }

/* PRICING-HOW (how billing works, no numbers) */
.price-how { max-width: 700px; margin: 28px auto 0; }
.price-how .row { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--border-light); border-radius: 12px; padding: 22px 26px; margin-bottom: 14px; box-shadow: var(--shadow); }
.price-how .row:last-child { margin-bottom: 0; }
.price-how .row .ic { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, var(--accent-light), var(--accent)); display: flex; align-items: center; justify-content: center; }
.price-how .row .ic svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; }
.price-how .row h3 { font-size: 17px; font-weight: 700; color: var(--ink-dark); margin-bottom: 4px; }
.price-how .row p { color: var(--mute-dark); font-size: 15px; margin-bottom: 0; }
.price-quote { max-width: 700px; margin: 32px auto 0; text-align: center; background: var(--bg-dark); color: var(--ink-light); border-radius: 16px; padding: 40px; }
.price-quote h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; color: #fff; }
.price-quote p { color: var(--mute-light); margin-bottom: 24px; font-size: 16px; }

/* EMAIL / CONTACT */
.email-block { background: #fff; border: 1px solid var(--border-light); border-top: 4px solid var(--accent); border-radius: 16px; padding: 48px; text-align: center; max-width: 700px; margin: 0 auto; box-shadow: var(--shadow); }
.email-block h2 { margin-bottom: 20px; }
.email-address { font-size: 28px; font-weight: 800; color: var(--accent-deep); margin-bottom: 24px; word-break: break-word; }
.email-block p { color: var(--mute-dark); font-size: 16px; line-height: 1.6; }
.already-customer { background: #fff; border: 1px solid var(--border-light); border-radius: 12px; padding: 32px; margin: 28px auto 0; max-width: 700px; box-shadow: var(--shadow); }
.already-customer h2 { font-size: 20px; color: var(--accent-deep); margin-bottom: 12px; }
.already-customer p { color: var(--mute-dark); margin-bottom: 0; font-size: 15px; }
.address-block { margin: 28px auto 0; padding: 24px; background: var(--bg-alt); border: 1px solid var(--border-light); border-radius: 12px; text-align: center; color: var(--mute-dark); font-size: 14px; max-width: 700px; }
.address-block strong { color: var(--ink-dark); display: block; margin-bottom: 8px; font-size: 15px; }
.address-block .addr { line-height: 1.6; }

/* FOOTER CTA + FOOTER */
.footer-cta { text-align: center; padding: 72px 24px; background: linear-gradient(180deg, var(--bg-alt), #e8eef7); }
.footer-cta h2 { font-size: 30px; margin-bottom: 16px; color: var(--ink-dark); }
.footer-cta p { color: var(--mute-dark); margin-bottom: 8px; }
.footer-cta .btn { margin-top: 8px; }
.footer { border-top: 1px solid var(--border-dark); background: var(--bg-dark); padding: 44px 24px; text-align: center; color: var(--mute-light); font-size: 14px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer img { height: 30px; margin: 0 auto 18px; opacity: 0.9; }
.footer-address { line-height: 1.6; font-size: 13px; }
.footer-nav { margin-top: 20px; display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.footer-nav a { color: var(--mute-light); font-size: 13px; }
.footer-nav a:hover { color: var(--accent-light); }

/* RESPONSIVE */
@media (max-width: 768px) {
  body { font-size: 16px; }
  .hero { padding: 64px 16px 56px; }
  .hero h1, .hero.short h1 { font-size: 32px; }
  .hero .subhead { font-size: 17px; }
  .container { padding: 0 16px; }
  .sec { padding: 52px 0; }
  .sec-head h2, h2 { font-size: 26px; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat .num { font-size: 30px; }
  .nav { padding: 12px 16px; }
  .nav-inner { flex-direction: column; gap: 12px; }
  .nav-links { gap: 14px; font-size: 14px; justify-content: center; }
  .nav-logo img { height: 28px; }
  .diff-grid { grid-template-columns: 1fr; gap: 16px; }
  .diff-card { padding: 26px; }
  .founder p { font-size: 16px; }
  .quote-block { padding: 32px 24px; }
  .quote-block .qh { font-size: 22px; }
  .scenario { padding: 18px 20px; }
  .content-block, .math-block, .stack-block { padding: 28px 22px; }
  .email-block { padding: 32px 24px; }
  .email-address { font-size: 22px; }
  .price-quote { padding: 32px 24px; }
}
