/* ── Reset + Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #111111; color: #ffffff; line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Merriweather', Georgia, serif; }
:root { --accent: #E8000E; --accent-hover: #c5000c; --bg: #111111; --bg-card: #1a1a1a; --border: rgba(255,255,255,0.08); --trans: 200ms ease; }

/* ── Cursor + Rocket ── */
#cursor-canvas { position: fixed; inset: 0; z-index: 9999; pointer-events: none; width: 100%; height: 100%; }
#cursor-glow { position: fixed; width: 280px; height: 280px; border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(232,0,14,0.09) 0%, transparent 70%); transition: opacity 0.4s ease; }
#rocket-bg { position: fixed; right: 4%; top: 0; z-index: 5; pointer-events: none; will-change: transform; }
#rocket-bg svg { opacity: 0.055; filter: blur(0.5px); }
.rocket-flame { position: absolute; top: 128px; left: 50%; transform: translateX(-50%); width: 34px; height: 75px; background: radial-gradient(ellipse at 50% 0%, rgba(255,120,0,0.85) 0%, rgba(232,0,14,0.6) 28%, rgba(200,0,10,0.2) 58%, transparent 78%); filter: blur(9px); opacity: 0; pointer-events: none; animation: flameFlicker 2.5s ease-in-out infinite; }
@keyframes flameFlicker { 0%, 100% { opacity: 0.45; height: 75px; } 33% { opacity: 0.55; height: 82px; } 66% { opacity: 0.38; height: 68px; } }

/* ── Header ── */
.site-header { position: sticky; top: 0; background: rgba(17,17,17,0.2); backdrop-filter: blur(8px); z-index: 100; border-bottom: 1px solid rgba(232,0,14,0.12); transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease; }
.site-header.nav-scrolled { background: rgba(10,10,10,0.98); backdrop-filter: blur(20px); border-bottom-color: rgba(255,255,255,0.05); box-shadow: 0 1px 0 rgba(232,0,14,0.08), 0 4px 60px rgba(0,0,0,0.6); }
.site-header::after { content: ''; position: absolute; bottom: 0; left: 0; width: 120px; height: 1px; background: linear-gradient(90deg, transparent, rgba(232,0,14,0.9) 50%, transparent); animation: navSweep 4s ease-in-out infinite alternate; pointer-events: none; opacity: 0.5; transition: opacity 0.5s ease; }
.site-header.nav-scrolled::after { opacity: 1; }
@keyframes navSweep { 0% { left: 0; } 100% { left: calc(100% - 120px); } }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.logo-img { height: 44px; width: auto; max-width: 200px; object-fit: contain; display: block; }
.logo-text { color: #fff; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: 0.04em; }
.btn-book { background: var(--accent); color: #fff; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; padding: 18px 36px; border-radius: 7px; text-decoration: none; transition: all var(--trans); white-space: nowrap; border: 2px solid var(--accent); }
.btn-book:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,0,14,0.35); }
.btn-book-outline { background: transparent; color: #fff; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; padding: 18px 36px; border-radius: 7px; text-decoration: none; transition: all var(--trans); white-space: nowrap; border: 2px solid rgba(255,255,255,0.3); }
.btn-book-outline:hover { border-color: #fff; transform: translateY(-2px); }

/* ── Intake section ── */
.intake-section { position: relative; min-height: 100vh; padding: 80px 0 100px; overflow: hidden; }

.intake-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: var(--hero-bg-opacity, 1);
  transition: opacity 0.05s;
  pointer-events: none; z-index: 0;
}
.intake-bg-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 40%, rgba(232,0,14,0.18) 0%, rgba(180,0,0,0.07) 40%, transparent 65%);
  opacity: var(--hero-bg-opacity, 1);
  transition: opacity 0.05s;
  pointer-events: none; z-index: 0;
}

/* Red scanning light along bottom border */
.border-scan {
  position: absolute; bottom: 0; left: 0;
  width: 140px; height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(232,0,14,0.9) 50%, transparent 100%);
  z-index: 2; pointer-events: none;
  animation: borderScan 3.5s ease-in-out infinite alternate;
}
@keyframes borderScan { 0% { left: 0; } 100% { left: calc(100% - 140px); } }

.intake-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 460px; gap: 64px; align-items: start; }

/* ── Left hero ── */
.intake-badge { display: inline-block; background: rgba(232,0,14,0.12); border: 1px solid rgba(232,0,14,0.35); color: var(--accent); font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; padding: 6px 16px; border-radius: 4px; margin-bottom: 24px; }
.intake-h1 { font-family: 'Merriweather', Georgia, serif; font-size: clamp(30px,3.8vw,52px); font-weight: 900; line-height: 1.12; letter-spacing: -0.01em; color: #fff; margin-bottom: 22px; }
.red-text { color: var(--accent); }
.intake-sub { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 520px; margin-bottom: 36px; }
.intake-bullets { list-style: none; }
.intake-bullets li { display: flex; align-items: center; gap: 14px; font-size: 15px; color: rgba(255,255,255,0.75); font-weight: 500; margin-bottom: 14px; }
.bullet-check { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.bullet-check::after { content: ''; display: block; width: 6px; height: 10px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg) translate(-1px,-1px); }

/* ── Form card ── */
.form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 40px; box-shadow: 0 40px 80px rgba(0,0,0,0.5); position: sticky; top: 92px; }
.form-card-header { margin-bottom: 28px; }
.form-card-heading { font-family: 'Merriweather', Georgia, serif; font-size: clamp(22px,2.2vw,28px); font-weight: 900; color: #fff; margin-bottom: 8px; line-height: 1.2; }
.price-tag { font-family: 'Merriweather', Georgia, serif; font-size: 22px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 10px; }
.form-card-sub { font-size: 14px; color: rgba(255,255,255,0.4); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.req { color: var(--accent); }
.form-group input, .form-group select { width: 100%; padding: 12px 14px; background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,255,255,0.1); border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 14px; color: #fff; transition: border-color var(--trans); outline: none; appearance: none; -webkit-appearance: none; }
.form-group input::placeholder { color: rgba(255,255,255,0.22); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-group select option { background: #1a1a1a; color: #fff; }
.form-group input:focus, .form-group select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,0,14,0.1); }
.input-error { border-color: var(--accent) !important; }
.form-error { background: rgba(232,0,14,0.08); border: 1px solid rgba(232,0,14,0.3); border-radius: 6px; padding: 12px 14px; font-size: 13px; color: var(--accent); margin-bottom: 16px; }
.btn-submit { width: 100%; background: var(--accent); color: #fff; border: none; border-radius: 6px; padding: 18px 24px; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all var(--trans); margin-top: 4px; }
.btn-submit:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,0,14,0.4); }
.form-fine-print { text-align: center; font-size: 12px; color: rgba(255,255,255,0.2); margin-top: 14px; }

/* ── Loading screen ── */
.loading-screen { min-height: calc(100vh - 72px); display: flex; align-items: center; justify-content: center; background: #111; padding: 40px 24px; position: relative; overflow: hidden; }
.loading-screen::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 52px 52px; pointer-events: none; }
.loading-screen::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 40%, rgba(232,0,14,0.1) 0%, transparent 60%); pointer-events: none; }
.loading-inner { text-align: center; max-width: 500px; position: relative; z-index: 1; }
.loading-spinner { width: 64px; height: 64px; border: 3px solid rgba(255,255,255,0.06); border-top: 3px solid var(--accent); border-right: 3px solid var(--accent); border-radius: 50%; animation: spin 0.9s linear infinite; margin: 0 auto 32px; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-heading { font-family: 'Merriweather', Georgia, serif; font-size: clamp(20px,2.5vw,28px); font-weight: 700; color: #fff; margin-bottom: 36px; }
.loading-biz { color: var(--accent); }
.loading-steps { list-style: none; text-align: left; display: inline-block; margin-bottom: 28px; min-width: 320px; }
.loading-step { font-size: 14px; color: rgba(255,255,255,0.25); padding: 12px 0 12px 32px; position: relative; border-left: 2px solid rgba(255,255,255,0.07); transition: all 0.5s ease; }
.loading-step::before { content: ''; position: absolute; left: -6px; top: 50%; transform: translateY(-50%); width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.08); transition: all 0.5s ease; }
.loading-step.active { color: #fff; font-weight: 600; border-left-color: var(--accent); }
.loading-step.active::before { background: var(--accent); box-shadow: 0 0 10px rgba(232,0,14,0.5); }
.loading-note { font-size: 13px; color: rgba(255,255,255,0.25); }

/* ── Report hero band ── */
.report-hero-band { background: #0a0a0a; padding: 60px 0; border-bottom: 1px solid rgba(232,0,14,0.15); position: relative; overflow: hidden; }
.report-hero-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(232,0,14,0.12) 0%, transparent 55%); pointer-events: none; }
.report-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 1; }
.report-eyebrow { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.report-biz-name { font-family: 'Merriweather', Georgia, serif; font-size: clamp(28px,4vw,52px); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 12px; }
.report-meta { font-size: 15px; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
.report-date { font-size: 13px; color: rgba(255,255,255,0.25); }
.score-dial { width: 160px; height: 160px; border-radius: 50%; border: 6px solid var(--dial-color); display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: rgba(255,255,255,0.03); }
.score-dial-inner { text-align: center; }
.score-number { font-family: 'Merriweather', Georgia, serif; font-size: 44px; font-weight: 900; line-height: 1; }
.score-out { font-size: 14px; color: rgba(255,255,255,0.35); font-weight: 500; }
.score-grade { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }

/* ── Report sections ── */
.report-section { padding: 70px 0; background: #111; }
.report-section-alt { background: #0e0e0e; }
.report-section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-heading { font-family: 'Merriweather', Georgia, serif; font-size: clamp(22px,3vw,34px); font-weight: 900; color: #fff; margin-bottom: 10px; }
.section-sub { font-size: 16px; color: rgba(255,255,255,0.4); margin-bottom: 36px; }

/* Charts */
.charts-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; align-items: center; }
.chart-wrap { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 24px; }

/* Score cards — 4 columns for 8 categories */
.score-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.score-card { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 18px 20px; }
.score-card-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.score-card-number { font-family: 'Merriweather', Georgia, serif; font-size: 32px; font-weight: 900; line-height: 1; margin-bottom: 10px; }
.score-mini-bar { height: 3px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.score-mini-fill { height: 100%; border-radius: 2px; transition: width 1s ease; }

/* Findings */
.finding-card { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.06); border-left: 4px solid var(--accent); border-radius: 10px; padding: 28px 32px; margin-bottom: 14px; }
.finding-category { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.finding-title { font-family: 'Merriweather', Georgia, serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.finding-body { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.75; }

/* Competitors */
.comp-chart-wrap { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 24px; margin-bottom: 28px; }
.comp-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.comp-row { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 20px 24px; }
.comp-name { font-weight: 700; color: #fff; margin-bottom: 14px; }
.comp-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; font-size: 13px; color: rgba(255,255,255,0.35); }
.comp-bar-row span { width: 80px; flex-shrink: 0; text-align: right; }
.comp-bar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.comp-bar-fill { height: 100%; border-radius: 3px; background: rgba(255,255,255,0.2); transition: width 1s ease; }
.comp-observations { list-style: none; padding-left: 0; }
.comp-observations li { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 10px; line-height: 1.65; padding-left: 20px; position: relative; }
.comp-observations li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }

/* Priorities */
.priorities-list { display: flex; flex-direction: column; gap: 18px; }
.priority-card { display: flex; align-items: flex-start; gap: 20px; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.06); border-left: 4px solid var(--accent); border-radius: 10px; padding: 28px 32px; }
.priority-num { font-family: 'Merriweather', Georgia, serif; font-size: 48px; font-weight: 900; color: rgba(232,0,14,0.15); line-height: 1; flex-shrink: 0; width: 56px; }
.priority-title { font-family: 'Merriweather', Georgia, serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.priority-desc { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.75; }

/* Quick wins */
.quickwins-list { display: flex; flex-direction: column; gap: 10px; }
.quickwin-card { display: flex; align-items: flex-start; gap: 16px; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 18px 22px; }
.quickwin-icon { width: 36px; height: 36px; background: rgba(232,0,14,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.quickwin-title { display: block; font-weight: 700; color: #fff; font-size: 14px; margin-bottom: 3px; }
.quickwin-desc { font-size: 13px; color: rgba(255,255,255,0.45); }

/* Roadmap */
.roadmap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.roadmap-col { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.06); border-top: 3px solid var(--accent); border-radius: 12px; padding: 28px 24px; }
.roadmap-col-header { font-family: 'Merriweather', Georgia, serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.roadmap-items { list-style: none; }
.roadmap-items li { font-size: 14px; color: rgba(255,255,255,0.6); padding: 9px 0 9px 18px; border-bottom: 1px solid rgba(255,255,255,0.05); position: relative; line-height: 1.55; }
.roadmap-items li::before { content: ''; position: absolute; left: 0; top: 17px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.roadmap-items li:last-child { border-bottom: none; }

/* CTA blocks */
.cta-dark { background: #0a0a0a; padding: 56px 24px; text-align: center; border-top: 1px solid rgba(232,0,14,0.1); border-bottom: 1px solid rgba(232,0,14,0.1); position: relative; overflow: hidden; }
.cta-dark::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(232,0,14,0.1) 0%, transparent 60%); pointer-events: none; }
.cta-dark-copy { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto 28px; line-height: 1.7; position: relative; z-index: 1; }
.cta-light { background: rgba(232,0,14,0.04); border-top: 1px solid rgba(232,0,14,0.12); border-bottom: 1px solid rgba(232,0,14,0.12); padding: 56px 24px; text-align: center; }
.cta-light-copy { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto 28px; line-height: 1.7; }
.btn-cta { display: inline-block; background: var(--accent); color: #fff; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; padding: 16px 36px; border-radius: 6px; text-decoration: none; transition: all var(--trans); position: relative; z-index: 1; pointer-events: auto; cursor: pointer; }
.btn-cta:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,0,14,0.4); }

/* Final CTA */
.final-cta { background: #0a0a0a; padding: 90px 24px; text-align: center; border-top: 1px solid rgba(232,0,14,0.15); position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 60%, rgba(232,0,14,0.12) 0%, transparent 60%); pointer-events: none; }
.final-cta-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.final-eyebrow { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.final-heading { font-family: 'Merriweather', Georgia, serif; font-size: clamp(24px,3vw,40px); font-weight: 900; color: #fff; margin-bottom: 20px; line-height: 1.2; }
.final-bold { font-size: 18px; font-weight: 700; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.final-body { font-size: 16px; color: rgba(255,255,255,0.45); line-height: 1.75; margin-bottom: 36px; }
.btn-final-cta { display: inline-block; background: var(--accent); color: #fff; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; padding: 20px 48px; border-radius: 6px; text-decoration: none; transition: all var(--trans); }
.btn-final-cta:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(232,0,14,0.45); }
.final-fine { font-size: 13px; color: rgba(255,255,255,0.22); margin-top: 16px; }

/* ── Value Proposition Section ── */
.vp-section { background: #111; padding: 80px 0 100px; position: relative; }
.vp-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.vp-card-wrap { border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 64px 56px; background: #1a1a1a; position: relative; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.5); }
.vp-card-wrap::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(232,0,14,0.08) 0%, transparent 60%); pointer-events: none; }
.vp-header { text-align: center; max-width: 780px; margin: 0 auto 72px; }
.vp-h2 { font-family: 'Merriweather', Georgia, serif; font-size: clamp(26px,3.2vw,46px); font-weight: 900; color: #fff; line-height: 1.15; margin: 18px 0 22px; }
.vp-lead { font-size: 18px; color: rgba(255,255,255,0.5); line-height: 1.75; }
.vp-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 72px; }
.vp-card { background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 36px 32px; transition: border-color 300ms ease, background 300ms ease; }
.vp-card:hover { border-color: rgba(232,0,14,0.25); background: rgba(232,0,14,0.03); }
.vp-icon { width: 52px; height: 52px; background: rgba(232,0,14,0.1); border: 1px solid rgba(232,0,14,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 22px; }
.vp-card-title { font-family: 'Merriweather', Georgia, serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 14px; line-height: 1.3; }
.vp-card-body { font-size: 15px; color: rgba(255,255,255,0.48); line-height: 1.8; }
.vp-proof-bar { display: flex; align-items: center; justify-content: center; gap: 0; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 36px 24px; flex-wrap: wrap; }
.vp-proof-item { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; min-width: 140px; padding: 12px 16px; }
.vp-proof-num { font-family: 'Merriweather', Georgia, serif; font-size: clamp(22px,2.5vw,34px); font-weight: 900; color: #fff; line-height: 1; }
.vp-proof-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); text-align: center; }
.vp-proof-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.08); flex-shrink: 0; }
@media (max-width: 768px) {
  .vp-cards { grid-template-columns: 1fr; }
  .vp-proof-divider { display: none; }
  .vp-proof-bar { gap: 16px; }
  .vp-proof-item { min-width: 120px; }
  .vp-card-wrap { padding: 40px 24px; border-radius: 16px; }
}

/* ── Sample Audit Preview Section ── */
.sample-audit-wrap { background: #0d0d0d; border-top: 1px solid rgba(255,255,255,0.06); }
.sample-audit-intro { padding: 80px 24px 60px; text-align: center; position: relative; overflow: hidden; }
.sample-audit-intro::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(232,0,14,0.10) 0%, transparent 60%); pointer-events: none; }
.sample-audit-badge { display: inline-block; background: rgba(232,0,14,0.12); border: 1px solid rgba(232,0,14,0.35); color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; padding: 6px 18px; border-radius: 20px; margin-bottom: 22px; position: relative; z-index: 1; }
.sample-audit-intro h2 { font-family: 'Merriweather', Georgia, serif; font-size: clamp(24px,3vw,40px); font-weight: 900; color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
.sample-audit-intro p  { font-size: 16px; color: rgba(255,255,255,0.45); max-width: 560px; margin: 0 auto; line-height: 1.75; position: relative; z-index: 1; }
.sample-inner { position: relative; pointer-events: none; }
.sample-watermark { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 10; pointer-events: none; overflow: hidden; }
.sample-watermark::after { content: 'SAMPLE'; font-family: 'Inter', sans-serif; font-size: clamp(80px,15vw,160px); font-weight: 900; color: rgba(232,0,14,0.04); letter-spacing: 0.12em; transform: rotate(-35deg); white-space: nowrap; pointer-events: none; }
.sample-cta-bar { background: #111; border-top: 1px solid rgba(232,0,14,0.12); padding: 64px 24px; text-align: center; }
.sample-cta-bar h3 { font-family: 'Merriweather', Georgia, serif; font-size: clamp(22px,3vw,34px); font-weight: 900; color: #fff; margin-bottom: 12px; }
.sample-cta-bar p  { font-size: 16px; color: rgba(255,255,255,0.4); margin-bottom: 30px; }
.sample-cta-roadmap { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-top: -16px; margin-bottom: 28px; }

/* Footer */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
footer { background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.06); padding: 70px 0 40px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-brand .logo { display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 20px; }
.footer-contact p { font-size: 14px; color: #666; margin-bottom: 6px; }
.footer-contact a { color: #666; text-decoration: none; transition: color var(--trans); }
.footer-contact a:hover { color: var(--accent); }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: #555; text-decoration: none; margin-bottom: 10px; transition: color var(--trans); }
.footer-col a:hover { color: var(--accent); }
.footer-col span { display: block; font-size: 14px; color: #555; margin-bottom: 10px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06); flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: #444; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: #444; text-decoration: none; transition: color var(--trans); }
.footer-bottom-links a:hover { color: var(--accent); }
.footer-tagline { font-size: 12px; color: var(--accent); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 8px; }

/* ── Background Particles ── */
.site-particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.sp { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.55); opacity: 0; }
.sp1 { width:2px; height:2px; left:12%; top:30%; animation: spFloat 9s ease-in-out infinite; }
.sp2 { width:1px; height:1px; left:67%; top:18%; animation: spFloat 13s ease-in-out infinite 1.5s; }
.sp3 { width:2px; height:2px; left:38%; top:72%; animation: spFloat 11s ease-in-out infinite 3s; }
.sp4 { width:3px; height:3px; left:84%; top:44%; animation: spFloat 15s ease-in-out infinite 0.8s; }
.sp5 { width:1px; height:1px; left:52%; top:60%; animation: spFloat 8s ease-in-out infinite 5s; }
.sp6 { width:2px; height:2px; left:24%; top:85%; animation: spFloat 12s ease-in-out infinite 2.5s; }
.sp7 { width:1px; height:1px; left:78%; top:75%; animation: spFloat 10s ease-in-out infinite 7s; }
.sp8 { width:2px; height:2px; left:44%; top:12%; animation: spFloat 16s ease-in-out infinite 4s; }
@keyframes spFloat {
  0% { opacity: 0; transform: translateY(0) translateX(0); }
  10% { opacity: 0.7; }
  90% { opacity: 0.25; }
  100% { opacity: 0; transform: translateY(-70px) translateX(12px); }
}

/* ── Responsive ── */
@media (max-width: 1024px) { .score-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
  .intake-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-card { position: static; }
  .charts-row { grid-template-columns: 1fr; }
  .report-hero-inner { flex-direction: column; align-items: flex-start; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .score-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .intake-section { padding: 60px 0 80px; }
  .form-card { padding: 28px 20px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .btn-cta, .btn-final-cta { width: 100%; text-align: center; display: block; }
  .priority-card { flex-direction: column; gap: 12px; }
  .priority-num { font-size: 32px; width: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── Mobile nav ── */
.audit-nav-btns { display: flex; align-items: center; gap: 14px; }
.audit-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 12px; color: #fff; line-height: 0; touch-action: manipulation; -webkit-tap-highlight-color: transparent; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.audit-hamburger svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(14,14,14,0.98); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 28px 24px 36px; z-index: 99;
  max-height: calc(100vh - 72px); overflow-y: auto;
}
.mobile-menu.open { display: block; animation: auditMenuSlide 0.22s ease; }
@keyframes auditMenuSlide { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.mobile-section-toggle { background: none; border: none; font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.65); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); width: 100%; text-align: left; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-family: inherit; letter-spacing: 0; text-transform: none; }
.mobile-section-toggle:hover { color: #fff; }
.mobile-section-toggle svg { transition: transform 0.2s ease; flex-shrink: 0; opacity: 0.5; width: 16px; height: 16px; stroke: currentColor; }
.mobile-section-toggle[aria-expanded="true"] { color: #fff; }
.mobile-section-toggle[aria-expanded="true"] svg { transform: rotate(180deg); opacity: 1; }
.mobile-services-grid { display: none; grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 4px; margin-top: 8px; }
.mobile-services-grid.open { display: grid; }
.mobile-services-grid a { display: block; padding: 10px 14px; color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; font-weight: 500; border-radius: 6px; transition: all 200ms ease; }
.mobile-services-grid a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.mobile-nav-link { display: block; padding: 12px 0; color: rgba(255,255,255,0.65); text-decoration: none; font-size: 15px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 200ms ease; }
.mobile-nav-link:hover { color: #fff; }
.mobile-nav-link:last-of-type { border-bottom: none; }
.mobile-cta-row { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.07); }
.mobile-cta-row .btn { margin: 0; width: 100%; justify-content: center; font-size: 14px; padding: 14px 28px; }
/* btn classes mirrored for audit page mobile menu */
.mobile-cta-row .btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); border-radius: 6px; font-family: 'Inter', sans-serif; font-weight: 700; text-decoration: none; text-transform: uppercase; display: flex; align-items: center; justify-content: center; transition: all 200ms ease; }
.mobile-cta-row .btn-outline:hover { border-color: #fff; }
.mobile-cta-row .btn-primary { background: var(--accent); color: #fff; border: 2px solid var(--accent); border-radius: 6px; font-family: 'Inter', sans-serif; font-weight: 700; text-decoration: none; text-transform: uppercase; display: flex; align-items: center; justify-content: center; transition: all 200ms ease; }
.mobile-cta-row .btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
@media (max-width: 768px) {
  .audit-nav-btns { display: none; }
  .audit-hamburger { display: block; }
  .btn-book { font-size: 14px; padding: 14px 28px; }
  .btn-book-outline { font-size: 14px; padding: 14px 28px; }
}
