@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bordeaux: #6B1526;
  --bordeaux-light: #8B1A30;
  --bordeaux-dark: #4A0E1A;
  --cream: #FDF8F4;
  --warm-gray: #F5F0EB;
  --dark: #1A1A1A;
  --gray: #666;
  --light-gray: #E8E3DE;
  --green: #2E7D32;
  --orange: #E65100;
  --red: #C62828;
  --blue: #1565C0;
  --gold: #D4A844;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--cream); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(253,248,244,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--light-gray);
  padding: 14px 40px; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; }
.logo img { height: 32px; width: auto; }
.logo-white img { filter: brightness(0) invert(1); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-counter { font-size: 12px; color: var(--gray); }
.nav-counter strong { color: var(--bordeaux); font-weight: 800; }
.nav-cta {
  background: var(--bordeaux); color: white; padding: 10px 24px;
  border-radius: 100px; font-size: 13px; font-weight: 700; text-decoration: none;
  transition: all 0.3s; cursor: pointer; border: none; letter-spacing: 0.3px;
}
.nav-cta:hover { background: var(--bordeaux-dark); transform: translateY(-1px); }

/* ===== HERO - STEP 1: URL ONLY ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 100px 40px 60px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(107,21,38,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner { max-width: 820px; width: 100%; text-align: center; position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: white;
  padding: 8px 18px; border-radius: 100px; font-size: 13px; color: var(--bordeaux);
  font-weight: 600; margin-bottom: 28px; box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-inner h1 {
  font-family: 'DM Serif Display', serif; font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1; color: var(--dark); margin-bottom: 20px;
}
.hero-inner h1 em { color: var(--bordeaux); font-style: italic; }
.hero-inner .hero-sub {
  font-size: 18px; color: var(--gray); line-height: 1.6; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto;
}

/* ===== URL INPUT (Step 1) ===== */
.url-form {
  display: flex; gap: 0; max-width: 640px; margin: 0 auto 28px;
  background: white; border-radius: 16px; padding: 6px;
  box-shadow: 0 8px 40px rgba(107,21,38,0.1), 0 1px 3px rgba(0,0,0,0.04);
  border: 2px solid transparent; transition: border-color 0.3s;
}
.url-form:focus-within { border-color: var(--bordeaux); }
.url-form input {
  flex: 1; padding: 16px 20px; border: none; font-size: 16px;
  font-family: 'Inter', sans-serif; background: transparent; outline: none;
  min-width: 0;
}
.url-form input::placeholder { color: #bbb; }
.url-form button {
  background: var(--bordeaux); color: white; border: none; padding: 14px 32px;
  border-radius: 12px; font-size: 15px; font-weight: 800; cursor: pointer;
  transition: all 0.3s; font-family: 'Inter', sans-serif; white-space: nowrap;
  letter-spacing: 0.3px;
}
.url-form button:hover { background: var(--bordeaux-dark); transform: scale(1.02); }

.hero-trust { display: flex; align-items: center; justify-content: center; gap: 24px; font-size: 13px; color: var(--gray); flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 6px; }
.hero-trust-item svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.hero-trust-sep { width: 1px; height: 16px; background: var(--light-gray); }

/* ===== SOCIAL PROOF BAR ===== */
.social-proof {
  background: white; border-top: 1px solid var(--light-gray); border-bottom: 1px solid var(--light-gray);
  padding: 20px 40px; display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.proof-item { text-align: center; }
.proof-number { font-size: 28px; font-weight: 900; color: var(--bordeaux); font-family: 'DM Serif Display', serif; }
.proof-label { font-size: 12px; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.proof-sep { width: 1px; height: 40px; background: var(--light-gray); }

/* ===== FEATURES ROW ===== */
.features {
  padding: 80px 40px; max-width: 1100px; margin: 0 auto;
}
.section-label { font-size: 13px; font-weight: 700; color: var(--bordeaux); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; text-align: center; }
.section-title { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 48px; text-align: center; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: white; border-radius: 16px; padding: 28px;
  border: 1px solid var(--light-gray); transition: all 0.3s; text-align: center;
}
.feature-card:hover { border-color: var(--bordeaux); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(107,21,38,0.06); }
.feature-icon { font-size: 32px; margin-bottom: 14px; }
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 80px 40px; background: white; }
.how-inner { max-width: 900px; margin: 0 auto; }
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }
.step-item { text-align: center; position: relative; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%; background: var(--bordeaux); color: white;
  display: inline-flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800;
  margin-bottom: 16px;
}
.step-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step-item p { font-size: 13px; color: var(--gray); line-height: 1.5; }
.step-arrow { position: absolute; top: 24px; right: -28px; font-size: 20px; color: var(--light-gray); }

/* ===== BOTTOM CTA (repeated URL form) ===== */
.bottom-cta {
  padding: 80px 40px; text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, white 100%);
}
.bottom-cta h2 { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 16px; }
.bottom-cta p { font-size: 16px; color: var(--gray); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== AUDIT PROCESS (scanning view) ===== */
.audit-view { display: none; min-height: 100vh; padding: 120px 40px 80px; }
.audit-view.active { display: block; }
.audit-container { max-width: 900px; margin: 0 auto; }

.audit-header { text-align: center; margin-bottom: 60px; }
.audit-header h2 { font-family: 'DM Serif Display', serif; font-size: 36px; margin-bottom: 12px; }
.audit-header p { color: var(--gray); font-size: 16px; }
.audit-url { font-weight: 700; color: var(--bordeaux); }

.progress-bar-container { width: 100%; height: 6px; background: var(--light-gray); border-radius: 3px; margin: 40px 0; overflow: hidden; }
.progress-bar-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--bordeaux), var(--gold)); border-radius: 3px; transition: width 0.5s ease; }
.progress-text { text-align: center; font-size: 14px; color: var(--gray); margin-bottom: 40px; }

.scan-steps { display: flex; flex-direction: column; gap: 12px; }
.scan-step {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px;
  background: white; border-radius: 12px; border: 1px solid var(--light-gray);
  transition: all 0.5s; opacity: 0.4;
}
.scan-step.active { opacity: 1; border-color: var(--bordeaux); background: white; }
.scan-step.done { opacity: 1; border-color: var(--green); }
.scan-step .step-icon {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; background: var(--warm-gray); transition: all 0.5s;
}
.scan-step.active .step-icon { background: var(--bordeaux); color: white; animation: spinIcon 1s linear infinite; }
.scan-step.done .step-icon { background: var(--green); color: white; }
@keyframes spinIcon { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.scan-step .step-text { flex: 1; }
.scan-step .step-title { font-size: 15px; font-weight: 600; }
.scan-step .step-detail { font-size: 13px; color: var(--gray); }
.scan-step .step-score { font-size: 18px; font-weight: 800; opacity: 0; transition: all 0.5s; }
.scan-step.done .step-score { opacity: 1; }

/* ===== EMAIL GATE MODAL (appears during scan at ~70%) ===== */
.email-gate-overlay {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); z-index: 2000; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); animation: fadeIn 0.3s ease;
}
.email-gate-overlay.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.email-gate {
  background: white; border-radius: 24px; padding: 48px; max-width: 480px; width: 90%;
  text-align: center; position: relative; animation: slideUp 0.4s ease;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}
@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.email-gate::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--bordeaux), var(--gold)); border-radius: 24px 24px 0 0;
}
.email-gate .gate-icon { font-size: 48px; margin-bottom: 16px; }
.email-gate h3 { font-family: 'DM Serif Display', serif; font-size: 24px; margin-bottom: 8px; }
.email-gate .gate-sub { color: var(--gray); font-size: 14px; margin-bottom: 24px; line-height: 1.5; }
.email-gate .gate-preview {
  background: var(--warm-gray); border-radius: 12px; padding: 16px; margin-bottom: 24px;
  display: flex; gap: 12px; align-items: center; text-align: left;
}
.email-gate .gate-preview-scores { display: flex; gap: 8px; }
.email-gate .gate-preview-score {
  width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-weight: 800; font-size: 14px; color: white;
}
.email-gate .gate-preview-text { font-size: 13px; color: var(--gray); line-height: 1.4; }
.email-gate .gate-preview-text strong { color: var(--dark); }
.gate-form { display: flex; gap: 8px; }
.gate-form input {
  flex: 1; padding: 14px 16px; border: 1.5px solid var(--light-gray); border-radius: 12px;
  font-size: 15px; font-family: 'Inter', sans-serif; background: var(--cream); min-width: 0;
}
.gate-form input:focus { outline: none; border-color: var(--bordeaux); background: white; box-shadow: 0 0 0 4px rgba(107,21,38,0.08); }
.gate-form button {
  background: var(--bordeaux); color: white; border: none; padding: 14px 24px;
  border-radius: 12px; font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all 0.3s; font-family: 'Inter', sans-serif; white-space: nowrap;
}
.gate-form button:hover { background: var(--bordeaux-dark); }
.gate-cgv { display: flex; align-items: flex-start; gap: 8px; margin-top: 10px; text-align: left; }
.gate-cgv input[type="checkbox"] { margin-top: 3px; accent-color: var(--bordeaux); min-width: 16px; min-height: 16px; cursor: pointer; }
.gate-cgv label { font-size: 11px; color: #888; line-height: 1.5; cursor: pointer; }
.gate-cgv label a { color: var(--bordeaux); text-decoration: underline; }
.gate-footer { margin-top: 12px; font-size: 11px; color: #aaa; }
.gate-footer a { color: var(--bordeaux); }
.gate-skip { margin-top: 16px; }
.gate-skip a {
  color: #bbb; font-size: 12px; text-decoration: underline; cursor: pointer;
  transition: color 0.3s;
}
.gate-skip a:hover { color: var(--gray); }

/* ===== REPORT VIEW ===== */
.report-view { display: none; padding: 100px 40px 80px; }
.report-view.active { display: block; }
.report-container { max-width: 1100px; margin: 0 auto; }

.report-hero {
  background: linear-gradient(135deg, var(--bordeaux-dark), var(--bordeaux));
  border-radius: 24px; padding: 60px; color: white; margin-bottom: 40px;
  position: relative; overflow: hidden;
}
.report-hero::after {
  content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.report-hero-inner { display: flex; align-items: center; gap: 40px; position: relative; z-index: 1; }
.report-hero-screenshot {
  flex-shrink: 0; width: 280px; height: 180px; border-radius: 12px; overflow: hidden;
  background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.report-hero-screenshot img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.report-hero-screenshot .screenshot-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 48px; opacity: 0.4;
}
.report-hero-info { flex: 1; }
.report-hero-info .report-url { font-size: 22px; font-weight: 700; opacity: 1; margin-bottom: 4px; word-break: break-all; }
.report-hero-info .report-date { font-size: 14px; opacity: 0.6; margin-bottom: 20px; }
.report-hero-score {
  display: inline-flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.15); border-radius: 16px; padding: 16px 28px;
  backdrop-filter: blur(10px);
}
.report-hero-score .hero-score-num { font-size: 48px; font-weight: 900; line-height: 1; }
.report-hero-score .hero-score-max { font-size: 20px; font-weight: 600; opacity: 0.7; }
.report-hero-score .hero-score-label { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; font-weight: 600; }
@media (max-width: 768px) {
  .report-hero-inner { flex-direction: column; text-align: center; gap: 24px; }
  .report-hero-screenshot { width: 200px; height: 130px; }
}

.score-overview {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px;
}
.score-card {
  background: white; border-radius: 16px; padding: 28px; text-align: center;
  border: 1px solid var(--light-gray); position: relative; overflow: hidden;
}
.score-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.score-card.green::before { background: var(--green); }
.score-card.orange::before { background: var(--orange); }
.score-card.red::before { background: var(--red); }
.score-value { font-size: 42px; font-weight: 800; margin-bottom: 4px; }
.score-card.green .score-value { color: var(--green); }
.score-card.orange .score-value { color: var(--orange); }
.score-card.red .score-value { color: var(--red); }
.score-label { font-size: 13px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; }

.report-sections { display: flex; flex-direction: column; gap: 24px; }
.report-section {
  background: white; border-radius: 20px; border: 1px solid var(--light-gray); overflow: hidden;
}
.report-section-header {
  padding: 24px 32px; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s;
}
.report-section-header:hover { background: var(--warm-gray); }
.report-section-header h3 { font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 12px; }
.section-badge {
  display: inline-flex; padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 700;
}
.section-badge.good { background: #E8F5E9; color: var(--green); }
.section-badge.warning { background: #FFF3E0; color: var(--orange); }
.section-badge.critical { background: #FFEBEE; color: var(--red); }
.section-arrow { font-size: 20px; color: var(--gray); transition: transform 0.3s; }
.report-section.open .section-arrow { transform: rotate(180deg); }
.report-section-body { padding: 0 32px 24px; display: none; }
.report-section.open .report-section-body { display: block; }

/* Blurred teaser for non-converted */
.report-section.locked .report-section-body { filter: blur(6px); pointer-events: none; user-select: none; display: block; position: relative; }
.report-section.locked .lock-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.6); z-index: 10;
}
.lock-btn {
  background: var(--bordeaux); color: white; padding: 12px 28px; border: none;
  border-radius: 100px; font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: all 0.3s;
}
.lock-btn:hover { background: var(--bordeaux-dark); transform: scale(1.05); }

.finding {
  display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--warm-gray);
}
.finding:last-child { border-bottom: none; }
.finding-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.finding-text { font-size: 14px; line-height: 1.6; }
.finding-text strong { color: var(--dark); }

.report-cta {
  background: linear-gradient(135deg, var(--bordeaux-dark), var(--bordeaux));
  border-radius: 24px; padding: 60px; text-align: center; color: white; margin-top: 40px;
}
.report-cta h2 { font-family: 'DM Serif Display', serif; font-size: 32px; margin-bottom: 12px; }
.report-cta p { font-size: 16px; opacity: 0.8; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.report-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--bordeaux); padding: 16px 40px;
  border-radius: 100px; font-size: 16px; font-weight: 700; text-decoration: none;
  transition: all 0.3s; cursor: pointer; border: none; font-family: 'Inter', sans-serif;
}
.report-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* Global score */
.global-score-block { text-align: center; margin-bottom: 12px; }
.global-score-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 140px; height: 140px; border-radius: 50%;
  border: 6px solid var(--bordeaux); position: relative; margin-bottom: 12px;
}
.global-score-num { font-size: 56px; font-weight: 900; color: var(--bordeaux); line-height: 1; }
.global-score-num span { font-size: 22px; font-weight: 600; }
.global-score-label { font-size: 14px; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* Urgency banner */
.urgency-banner {
  background: linear-gradient(90deg, #FFF3E0, #FFECB3); border: 1px solid #FFB74D;
  border-radius: 12px; padding: 16px 24px; text-align: center; margin-bottom: 32px;
  font-size: 14px; color: #E65100; font-weight: 600;
}
.urgency-banner strong { color: #BF360C; }

/* PDF download button */
.pdf-download-bar {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: white; border: 2px dashed var(--bordeaux); border-radius: 16px;
  padding: 20px 32px; margin-bottom: 32px; cursor: pointer; transition: all 0.3s;
}
.pdf-download-bar:hover { background: rgba(107,21,38,0.04); border-style: solid; }
.pdf-download-bar .pdf-icon { font-size: 28px; }
.pdf-download-bar .pdf-text { font-size: 15px; font-weight: 700; color: var(--bordeaux); }
.pdf-download-bar .pdf-sub { font-size: 12px; color: var(--gray); font-weight: 400; }

/* PDF Gate modal */
.pdf-gate-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 2000; align-items: center; justify-content: center; padding: 20px;
}
.pdf-gate-overlay.active { display: flex; }
.pdf-gate {
  background: white; border-radius: 24px; padding: 40px; max-width: 460px; width: 100%;
  text-align: center; box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
.pdf-gate h3 { font-family: 'DM Serif Display', serif; font-size: 24px; margin-bottom: 8px; color: var(--dark); }
.pdf-gate p { font-size: 14px; color: var(--gray); margin-bottom: 20px; }
.pdf-gate-form { display: flex; flex-direction: column; gap: 10px; }
.pdf-gate-form input {
  padding: 14px 16px; border: 1.5px solid var(--light-gray); border-radius: 12px;
  font-size: 15px; font-family: 'Inter', sans-serif; background: var(--cream);
}
.pdf-gate-form input:focus { outline: none; border-color: var(--bordeaux); background: white; box-shadow: 0 0 0 4px rgba(107,21,38,0.08); }
.pdf-gate-form .pdf-row { display: flex; gap: 10px; }
.pdf-gate-form button {
  background: var(--bordeaux); color: white; border: none; padding: 14px 24px;
  border-radius: 12px; font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all 0.3s; font-family: 'Inter', sans-serif; margin-top: 4px;
}
.pdf-gate-form button:hover { background: var(--bordeaux-dark); }
.pdf-gate-close { margin-top: 12px; font-size: 12px; color: #bbb; cursor: pointer; text-decoration: underline; }

/* Contacts in report */
.report-contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; margin-bottom: 24px; }
.contact-card {
  background: var(--warm-gray); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 4px;
}
.contact-card .contact-name { font-size: 16px; font-weight: 800; color: var(--bordeaux); }
.contact-card .contact-title { font-size: 13px; color: var(--gray); font-style: italic; margin-bottom: 8px; }
.contact-card .contact-info { font-size: 13px; color: var(--dark); display: flex; align-items: center; gap: 6px; }

/* ===== FOOTER ===== */
footer {
  padding: 40px; text-align: center; color: var(--gray); font-size: 13px;
  border-top: 1px solid var(--light-gray);
}
footer a { color: var(--bordeaux); text-decoration: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 90px 20px 40px; }
  .hero-inner h1 { font-size: 32px; }
  .url-form { flex-direction: column; }
  .url-form button { width: 100%; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .hero-trust-sep { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; gap: 24px; }
  .step-arrow { display: none; }
  .score-overview { grid-template-columns: repeat(2, 1fr); }
  .social-proof { gap: 20px; }
  .proof-sep { display: none; }
  .navbar { padding: 10px 16px; }
  .nav-counter { display: none; }
  .gate-form { flex-direction: column; }
  .email-gate { padding: 32px 24px; }
  .report-contacts { grid-template-columns: 1fr; }
  .pdf-gate-form .pdf-row { flex-direction: column; }
  .pdf-download-bar { flex-direction: column; text-align: center; }
}