/* ==========================================================================
   Legal Leadz AI — Premium Legal Marketing Agency
   Bespoke Design System
   Aesthetic: Data War Room — Dark, Premium, Results-Driven
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700&family=JetBrains+Mono:wght@400;500&display=swap');

/* --- Tokens --- */
:root {
  --bg-primary: #060B14;
  --bg-elevated: #0C1322;
  --bg-card: #111A2E;
  --bg-card-hover: #162040;
  --bg-surface: #0A1020;
  --bg-warm: #F8F6F3;
  --bg-warm-alt: #F0EDE8;
  --bg-white: #FFFFFF;

  --accent: #D4A843;
  --accent-bright: #E4BE6A;
  --accent-muted: rgba(212, 168, 67, 0.12);
  --accent-border: rgba(212, 168, 67, 0.2);
  --success: #10B981;
  --success-muted: rgba(16, 185, 129, 0.12);
  --gold: #D4A843;
  --gold-muted: rgba(212, 168, 67, 0.1);
  --warn: #F59E0B;
  --error: #EF4444;

  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-dark: #1E293B;
  --text-dark-secondary: #475569;
  --text-dark-muted: #94A3B8;

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(212, 168, 67, 0.25);
  --border-dark: rgba(0, 0, 0, 0.08);

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(212, 168, 67, 0.15);
  --shadow-glow-sm: 0 0 20px rgba(212, 168, 67, 0.1);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --transition: 0.35s var(--ease);
  --transition-fast: 0.2s var(--ease);

  --max-w: 1200px;
  --max-w-narrow: 880px;
  --max-w-wide: 1400px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.65; color: var(--text-dark); background: var(--bg-primary); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 5.5vw, 4.5rem); font-weight: 400; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 1.85rem); font-weight: 400; }
h4 { font-size: 1.2rem; font-weight: 400; }
p { font-size: 1rem; }
.text-lg { font-size: 1.15rem; line-height: 1.7; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-accent { color: var(--accent-bright); }
.text-success { color: var(--success); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-secondary); }
.font-mono { font-family: var(--font-mono); }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
em { font-style: italic; }

/* --- Layout --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
.container--narrow { max-width: var(--max-w-narrow); }
.container--wide { max-width: var(--max-w-wide); }
.section { padding: clamp(64px, 10vw, 120px) 0; position: relative; }
.section--dark { background: var(--bg-primary); color: var(--text-primary); }
.section--elevated { background: var(--bg-elevated); color: var(--text-primary); }
.section--surface { background: var(--bg-surface); color: var(--text-primary); }
.section--warm { background: var(--bg-warm); color: var(--text-dark); }
.section--white { background: var(--bg-white); color: var(--text-dark); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }

/* --- Navigation --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
  background: transparent;
}
.nav.scrolled {
  background: rgba(6, 11, 20, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.nav__inner {
  max-width: var(--max-w-wide); margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-body); font-size: 1.25rem; font-weight: 700;
  color: var(--text-primary); letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 2px;
}
.nav__logo-mark {
  color: var(--accent-bright);
}
.nav__links { display: flex; gap: 32px; align-items: center; }
.nav__links a {
  font-size: 0.875rem; font-weight: 500; color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}
.nav__links a:hover { color: var(--text-primary); }
.nav__links a.active { color: var(--text-primary); }
.nav__links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent); border-radius: 1px;
}
.nav__right { display: flex; align-items: center; gap: 20px; }
.nav__phone {
  font-size: 0.875rem; font-weight: 500; color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.nav__phone:hover { color: var(--accent-bright); }
.nav__hamburger { display: none; padding: 8px; }
.nav__hamburger span {
  display: block; width: 22px; height: 2px; background: var(--text-primary);
  transition: all var(--transition-fast);
}
.nav__hamburger span + span { margin-top: 5px; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 600;
  padding: 12px 28px; border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn--primary {
  background: var(--accent); color: white;
}
.btn--primary:hover {
  background: var(--accent-bright);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn--outline:hover {
  border-color: var(--accent); color: var(--accent-bright);
}
.btn--dark {
  background: var(--bg-primary); color: var(--text-primary);
}
.btn--dark:hover {
  background: var(--bg-elevated);
  transform: translateY(-1px);
}
.btn--lg { padding: 16px 36px; font-size: 0.9375rem; }
.btn--sm { padding: 8px 20px; font-size: 0.8125rem; }
.btn--pill { border-radius: var(--radius-pill); }

/* --- Hero --- */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  background: var(--bg-primary); overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 1;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 11, 20, 0.5) 0%,
    rgba(6, 11, 20, 0.3) 30%,
    rgba(6, 11, 20, 0.7) 70%,
    rgba(6, 11, 20, 0.95) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: clamp(120px, 18vh, 200px) clamp(20px, 5vw, 48px) clamp(80px, 12vh, 140px);
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent-bright);
  margin-bottom: 28px;
}
.hero__eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  animation: pulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero h1 { color: var(--text-primary); max-width: 720px; margin-bottom: 24px; }
.hero h1 em { color: var(--accent-bright); font-style: italic; }
.hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--text-secondary);
  max-width: 540px; margin-bottom: 40px; line-height: 1.7;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 72px; }

/* Hero Metrics Strip */
.hero__metrics {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border-subtle); border-radius: var(--radius-md);
  overflow: hidden; max-width: 720px;
  border: 1px solid var(--border-subtle);
}
.hero__metric {
  background: rgba(12, 19, 34, 0.7);
  backdrop-filter: blur(12px);
  padding: clamp(18px, 3vw, 28px) clamp(12px, 2vw, 20px);
  text-align: center;
}
.hero__metric-value {
  font-family: var(--font-mono); font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--text-primary); line-height: 1;
  margin-bottom: 6px;
}
.hero__metric-value .highlight { color: var(--success); }
.hero__metric-label {
  font-size: 0.7rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted);
}

/* --- Overline / Label --- */
.overline {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.overline::before {
  content: ''; width: 32px; height: 1px; background: var(--accent);
}
.overline--light { color: var(--accent-bright); }
.overline--light::before { background: var(--accent-bright); }
.overline--center { justify-content: center; }
.overline--center::before { display: none; }
.overline--dark { color: var(--text-dark-muted); }
.overline--dark::before { background: var(--text-dark-muted); }

/* --- Cards --- */
.card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: clamp(28px, 4vw, 40px);
  transition: all var(--transition);
  position: relative;
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-sm);
}
.card__icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--accent-muted); display: flex; align-items: center;
  justify-content: center; color: var(--accent-bright); margin-bottom: 20px;
}
.card h4 { color: var(--text-primary); margin-bottom: 10px; font-family: var(--font-body); font-weight: 600; font-size: 1.1rem; }
.card p { color: var(--text-secondary); font-size: 0.925rem; line-height: 1.65; }

/* Light card variant */
.card--light {
  background: var(--bg-white); border-color: var(--border-dark);
}
.card--light:hover {
  border-color: var(--accent); background: var(--bg-white);
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.08);
}
.card--light h4 { color: var(--text-dark); }
.card--light p { color: var(--text-dark-secondary); }
.card--light .card__icon { background: rgba(212, 168, 67, 0.08); }

/* --- Stats Row --- */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 32px 16px; }
.stat__value {
  font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400; color: var(--accent-bright); line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.85rem; color: var(--text-secondary); font-weight: 500;
}

/* --- Process Steps --- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; counter-reset: step; }
.step {
  position: relative; padding: 36px 28px; counter-increment: step;
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); transition: all var(--transition);
}
.step:hover { border-color: var(--border-accent); }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600;
  color: var(--accent); background: var(--accent-muted);
  padding: 4px 10px; border-radius: var(--radius-sm);
  display: inline-block; margin-bottom: 20px;
}
.step h4 { color: var(--text-primary); margin-bottom: 10px; font-family: var(--font-body); font-weight: 600; }
.step p { color: var(--text-secondary); font-size: 0.925rem; }

/* --- Image Block --- */
.img-block {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}
.img-block img { width: 100%; height: 100%; object-fit: cover; }

/* --- Testimonial --- */
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: clamp(36px, 5vw, 56px);
  position: relative;
}
.testimonial-card__mark {
  font-family: var(--font-display); font-size: 6rem;
  color: var(--accent-muted); position: absolute; top: 16px; left: 32px;
  line-height: 1; pointer-events: none;
}
.testimonial-card__text {
  font-family: var(--font-display); font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-style: italic; color: var(--text-primary); line-height: 1.5;
  position: relative; z-index: 1; margin-bottom: 28px;
}
.testimonial-card__author { display: flex; align-items: center; gap: 14px; }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-muted); display: flex; align-items: center;
  justify-content: center; color: var(--accent-bright);
  font-weight: 700; font-size: 0.95rem;
}
.testimonial-card__name { font-weight: 600; color: var(--text-primary); font-size: 0.95rem; }
.testimonial-card__role { color: var(--text-muted); font-size: 0.8rem; }

/* --- CTA Block --- */
.cta-block {
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: clamp(48px, 7vw, 80px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.1) 0%, transparent 70%);
}
.cta-block h2 { color: var(--text-primary); margin-bottom: 16px; }
.cta-block p { color: var(--text-secondary); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-block .btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --- Form --- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group--full { grid-column: 1 / -1; }
.form-label {
  display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-dark);
  margin-bottom: 6px; letter-spacing: 0.01em;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  font-size: 0.9375rem; color: var(--text-dark); background: var(--bg-white);
  border: 1px solid var(--border-dark); border-radius: var(--radius-sm);
  transition: all var(--transition-fast); outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-muted);
}
.form-textarea { min-height: 120px; resize: vertical; }

/* --- Page Header --- */
.page-hero {
  background: var(--bg-primary); padding: clamp(140px, 18vh, 200px) 0 clamp(60px, 8vh, 100px);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(transparent, var(--bg-primary));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--text-primary); margin-bottom: 16px; }
.page-hero p { color: var(--text-secondary); font-size: 1.15rem; max-width: 560px; }

/* --- Footer --- */
.footer {
  background: var(--bg-primary); color: var(--text-secondary);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-subtle);
}
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px); margin-bottom: 60px;
}
.footer__brand { max-width: 300px; }
.footer__brand-logo {
  font-family: var(--font-body); font-size: 1.25rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 14px;
}
.footer__brand-logo span { color: var(--accent-bright); }
.footer__brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; }
.footer__heading {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-muted); margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a {
  font-size: 0.875rem; color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.footer__links a:hover { color: var(--text-primary); }
.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 28px; display: flex; justify-content: space-between;
  align-items: center; font-size: 0.8rem; color: var(--text-muted);
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a:hover { color: var(--accent-bright); }

/* --- Live Indicator --- */
.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--success-muted); border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 6px 16px; border-radius: var(--radius-pill);
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--success);
}
.live-badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--success);
  animation: pulse 2s ease-in-out infinite;
}

/* --- Divider --- */
.divider { border: none; height: 1px; background: var(--border-subtle); margin: 40px 0; }

/* --- Scroll Animations --- */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(32px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.08s; } .d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; } .d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.4s; } .d6 { transition-delay: 0.48s; }

/* --- Blog Article --- */
.article-content { max-width: var(--max-w-narrow); margin: 0 auto; }
.article-content h2 { margin: 48px 0 16px; color: var(--text-dark); }
.article-content h3 { margin: 36px 0 12px; color: var(--text-dark); }
.article-content p { margin-bottom: 20px; color: var(--text-dark-secondary); line-height: 1.8; }
.article-content ul, .article-content ol {
  margin: 16px 0 24px 24px; color: var(--text-dark-secondary);
}
.article-content li { margin-bottom: 8px; line-height: 1.7; list-style: disc; }
.article-content ol li { list-style: decimal; }
.article-content strong { color: var(--text-dark); }
.article-meta {
  display: flex; gap: 16px; align-items: center;
  font-size: 0.85rem; color: var(--text-dark-muted); margin-bottom: 32px;
}

/* --- Blog Card --- */
.blog-card {
  background: var(--bg-white); border: 1px solid var(--border-dark);
  border-radius: var(--radius-md); overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border-color: var(--accent);
}
.blog-card__body { padding: 24px; }
.blog-card__tag {
  font-family: var(--font-mono); font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 10px;
}
.blog-card__title {
  font-family: var(--font-body); font-weight: 600; font-size: 1.05rem;
  color: var(--text-dark); margin-bottom: 8px; line-height: 1.4;
}
.blog-card__excerpt { font-size: 0.875rem; color: var(--text-dark-secondary); line-height: 1.6; margin-bottom: 16px; }
.blog-card__date { font-size: 0.75rem; color: var(--text-dark-muted); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-2 { gap: 40px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .stat-row, .hero__metrics { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__phone { display: none; }
  .nav__hamburger { display: block; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(6, 11, 20, 0.98);
    backdrop-filter: blur(24px);
    padding: 20px clamp(20px, 5vw, 48px); gap: 16px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .steps { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__metrics { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer__legal { justify-content: center; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-block { padding: 40px 24px; }
  .testimonial-card { padding: 32px 24px; }
  .testimonial-card__text { font-size: 1.15rem; }
}

@media (max-width: 480px) {
  .hero__metric { padding: 16px 12px; }
  .hero__metric-value { font-size: 1.25rem; }
  .stat__value { font-size: 2rem; }
  .nav__logo { font-size: 1.1rem; }
}

/* --- Print --- */
@media print {
  .nav, .footer, .cta-block { display: none; }
  body { background: white; color: black; }
  .section--dark, .section--elevated, .section--surface { background: white; color: black; }
  .card, .step { border: 1px solid #ddd; }
}
