/* === Design Tokens — Angular YSF Brand ===
   Angular: sharp corners (0-4px radius), grid-aligned, readable
   Brand: Primary #1B3A6B, Accent #C0392B, White, Inter font
*/
:root {
  --bg: #FFFFFF;
  --bg-alt: #F4F7FB;
  --bg-subtle: #EDF1F7;
  --primary: #1B3A6B;       /* deep navy */
  --primary-light: #2A4F8A;
  --primary-hover: #152D54;
  --accent: #C0392B;       /* YSF red */
  --accent-light: #FCEAEA;
  --text: #1A2233;
  --text-muted: #6B7A8D;
  --text-light: #9AABB8;
  --border: #D9E2EC;
  --border-strong: #B5C0D0;
  --white: #FFFFFF;
  --success: #0D7A5F;
  --success-bg: #E6F7F2;
  --warning: #B45309;
  --warning-bg: #FEF3C7;
  --danger: #B91C1C;
  --danger-bg: #FEE2E2;
  /* Angular: minimal radius */
  --radius: 2px;           /* flat — no pill shapes */
  --radius-sm: 0px;
  --radius-lg: 4px;        /* max 4px */
  --shadow-sm: 0 1px 3px rgba(27,58,107,0.08);
  --shadow-md: 0 4px 16px rgba(27,58,107,0.10);
  --shadow-lg: 0 8px 32px rgba(27,58,107,0.12);
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-mono: 'Courier Prime', 'Courier New', monospace;
  --transition: 0.18s ease;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}
h1 { font-size: clamp(26px, 3.5vw, 44px); }
h2 { font-size: clamp(20px, 2.5vw, 32px); }
h3 { font-size: clamp(16px, 1.8vw, 22px); }
p { line-height: 1.65; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* === Navigation === */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 246, 241, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 60px; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo-img {
  height: 38px; width: auto;
  border-radius: var(--radius);
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  text-decoration: none; transition: color var(--transition);
  padding: 4px 0; position: relative;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); font-weight: 600; }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--accent); border-radius: var(--radius);
}
.nav-cta {
  background: var(--primary); color: var(--white);
  padding: 8px 18px; border-radius: var(--radius);
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--primary-hover); }
.lang-toggle {
  display: flex; gap: 4px; align-items: center;
  font-size: 12px; font-weight: 600; font-family: var(--font-mono);
  letter-spacing: 0.08em;
}
.lang-toggle a { color: var(--text-muted); padding: 2px 6px; border-radius: var(--radius); text-decoration: none; transition: background var(--transition); }
.lang-toggle a:hover { color: var(--primary); background: var(--accent-light); }
.lang-toggle a.active { color: var(--primary); background: var(--accent-light); font-weight: 700; }
.lang-toggle .sep { color: var(--border); }

/* === Section Labels === */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px; display: block;
}
.section-label.inverted { color: rgba(255,255,255,0.6); }

/* === Buttons — Angular: near-square === */
.btn-primary {
  background: var(--primary); color: var(--white);
  padding: 11px 22px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: opacity var(--transition);
  border: none; cursor: pointer;
}
.btn-primary:hover { opacity: 0.85; }
.btn-primary:active { opacity: 0.7; }
.btn-outline {
  background: transparent; color: var(--primary);
  padding: 11px 22px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; text-decoration: none;
  border: 1.5px solid var(--border);
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover { border-color: var(--primary); background: var(--bg-alt); }
.btn-outline-inv {
  background: transparent; color: var(--white);
  padding: 11px 22px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline-inv:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }

/* === Hero === */
.hero {
  max-width: 1200px; margin: 0 auto; padding: 72px 40px 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--accent-light); border: 1px solid var(--accent);
  color: var(--primary); font-size: 12px; font-weight: 600;
  padding: 4px 12px; border-radius: var(--radius); margin-bottom: 20px;
  font-family: var(--font-mono);
}
.hero-h1 {
  font-size: clamp(28px, 3.8vw, 46px);
  color: var(--primary); margin-bottom: 16px; line-height: 1.12;
}
.hero-tagline {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 32px; max-width: 440px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-demo { font-size: 14px; color: var(--text-muted); }
.hero-demo a { color: var(--primary); font-weight: 600; border-bottom: 1px solid var(--accent); }
.hero-demo a:hover { color: var(--accent); }

/* === Control Room Card === */
.control-room-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  overflow: hidden;
}
.cr-header {
  background: var(--primary); color: white; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.cr-title { font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.cr-live-dot {
  width: 8px; height: 8px; background: #10B981;
  border-radius: 50%; animation: cr-pulse 2s infinite;
}
@keyframes cr-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.cr-header-right { display: flex; gap: 12px; align-items: center; }
.cr-badge {
  font-size: 11px; background: rgba(255,255,255,0.15);
  padding: 3px 8px; border-radius: var(--radius); font-weight: 600;
}
.cr-body { padding: 0; }
.cr-stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.cr-stat { padding: 16px 12px; text-align: center; border-right: 1px solid var(--border); }
.cr-stat:last-child { border-right: none; }
.cr-stat-val { font-family: var(--font-sans); font-weight: 700; font-size: 22px; color: var(--primary); }
.cr-stat-label {
  font-size: 10px; color: var(--text-muted);
  font-family: var(--font-mono); text-transform: uppercase;
  letter-spacing: 0.06em; margin-top: 2px;
}
.cr-claims { padding: 16px; }
.cr-claims-title {
  font-size: 12px; font-weight: 700; color: var(--text-muted);
  font-family: var(--font-mono); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 10px;
}
.cr-claim-item {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px;
}
.cr-claim-item:last-child { border-bottom: none; }
.cr-claim-ref { font-weight: 600; color: var(--primary); min-width: 80px; font-family: var(--font-mono); }
.cr-claim-status {
  padding: 2px 8px; border-radius: var(--radius); font-size: 11px; font-weight: 600;
}
.status-en-cours { background: #DBEAFE; color: #1D4ED8; }
.status-expert { background: #FEF9C3; color: #A16207; }
.status-garage { background: #D1FAE5; color: #065F46; }
.status-resolu { background: #F0FDF4; color: #166534; }
.cr-claim-amount { margin-left: auto; font-weight: 600; color: var(--primary); }

/* === Social Proof Bar === */
.social-proof-bar { background: var(--primary); color: white; padding: 20px 40px; }
.social-proof-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.sp-stat-group { display: flex; gap: 40px; align-items: center; }
.sp-stat { text-align: center; }
.sp-stat-val { font-family: var(--font-sans); font-weight: 700; font-size: 28px; color: var(--accent); }
.sp-stat-label { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.sp-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }
.sp-pilot { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.85); }
.sp-pilot-badge {
  background: var(--accent); color: var(--primary);
  padding: 2px 10px; border-radius: var(--radius);
  font-size: 11px; font-weight: 700; font-family: var(--font-mono);
}

/* === Value Props Section === */
.vp-section { max-width: 1200px; margin: 0 auto; padding: 80px 40px; }
.vp-section-header { text-align: center; margin-bottom: 56px; }
.vp-section-title {
  font-size: clamp(24px, 3vw, 38px); color: var(--primary);
  max-width: 600px; margin: 0 auto 16px;
}
.vp-section-sub { font-size: 16px; color: var(--text-muted); max-width: 520px; margin: 0 auto; }
.vp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.vp-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.vp-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.vp-icon {
  width: 48px; height: 48px; background: var(--accent-light);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 24px;
}
.vp-card h3 { font-size: 20px; color: var(--primary); margin-bottom: 10px; font-weight: 700; }
.vp-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.vp-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  font-family: var(--font-mono); letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 10px; border-radius: var(--radius);
  margin-bottom: 10px;
}
.tag-data { background: #DBEAFE; color: #1D4ED8; }
.tag-fraude { background: #FEE2E2; color: #991B1B; }
.tag-workflow { background: #FEF9C3; color: #A16207; }
.tag-sla { background: #D1FAE5; color: #065F46; }

/* === WeProov Section === */
.weproov-section { background: var(--bg-alt); padding: 80px 40px; }
.weproov-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.weproov-content .section-label { display: block; margin-bottom: 12px; }
.weproov-content h2 { font-size: clamp(22px, 2.5vw, 34px); color: var(--primary); margin-bottom: 16px; }
.weproov-content p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.weproov-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.wf-item { display: flex; align-items: flex-start; gap: 12px; }
.wf-icon { color: var(--accent); font-size: 18px; margin-top: 1px; }
.wf-text { font-size: 14px; color: var(--text); }
.wf-text strong { font-weight: 600; }
.weproov-visual {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; text-align: center;
}
.wv-photo-placeholder {
  background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
  border-radius: var(--radius); padding: 48px 24px; margin-bottom: 20px;
  border: 2px dashed var(--border);
}
.wv-photo-placeholder .wv-camera { font-size: 48px; margin-bottom: 12px; }
.wv-photo-placeholder p { font-size: 13px; color: var(--text-muted); }
.wv-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.wv-tag {
  background: var(--bg-alt); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: var(--radius);
  font-size: 11px; font-weight: 600; color: var(--primary);
}

/* === CTA Section === */
.cta-section { max-width: 1200px; margin: 0 auto; padding: 80px 40px; }
.cta-inner {
  background: var(--primary); border-radius: var(--radius); padding: 64px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(192,57,43,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner .section-label { color: rgba(255,255,255,0.5); }
.cta-inner h2 {
  font-size: clamp(24px, 3vw, 36px); color: white;
  max-width: 560px; margin: 0 auto 16px;
}
.cta-inner p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn-primary { background: var(--accent); color: var(--white); }
.cta-actions .btn-primary:hover { opacity: 0.9; }
.cta-actions .btn-outline { border-color: rgba(255,255,255,0.3); color: white; }
.cta-actions .btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* === Demo Form === */
.demo-form-wrap {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; max-width: 520px; margin: 0 auto;
}
.demo-form-wrap h2 { font-size: 24px; color: var(--primary); margin-bottom: 4px; font-weight: 700; }
.demo-form-wrap .form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 12px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 15px; color: var(--text);
  background: var(--bg); transition: border-color 0.15s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 80px; }
.btn-submit {
  width: 100%; background: var(--accent); color: var(--white);
  padding: 12px; border: none; border-radius: var(--radius);
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: opacity 0.15s; font-family: var(--font-sans);
}
.btn-submit:hover { opacity: 0.85; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; }
.form-success h3 { color: var(--primary); margin-bottom: 8px; }
.form-success p { color: var(--text-muted); font-size: 14px; }

/* === Blog Ressources Section === */
.blog-ressources {
  max-width: 1200px; margin: 0 auto;
  padding: 64px 40px;
  border-top: 1px solid var(--border);
}
.blog-ressources-header { margin-bottom: 32px; }
.blog-ressources-title {
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; color: var(--primary);
  margin: 8px 0 0;
}
.blog-ressources-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.blog-ressources-card {
  display: block; background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  text-decoration: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.blog-ressources-card:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.blog-card-cat {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.blog-card-title { font-weight: 700; font-size: 15px; color: var(--primary); line-height: 1.3; margin-bottom: 8px; }
.blog-card-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.blog-ressources-footer { text-align: center; margin-top: 28px; }
.blog-ressources-link {
  font-size: 14px; font-weight: 600; color: var(--primary);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.blog-ressources-link:hover { color: var(--accent); }

/* === Footer === */
.footer { background: var(--primary); color: white; padding: 48px 40px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 24px;
}
.footer-brand .footer-logo { font-family: var(--font-sans); font-size: 18px; font-weight: 700; color: white; margin-bottom: 12px; }
.footer-brand .footer-logo img { height: 38px; width: auto; border-radius: var(--radius); margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col li a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-col li a:hover { color: white; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.footer-contact-item .icon { font-size: 16px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.45);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* === Pipeline Admin === */
.admin-wrap { max-width: 1200px; margin: 0 auto; padding: 40px; }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.admin-header h1 { font-size: 28px; color: var(--primary); }
.back-link { font-size: 14px; color: var(--text-muted); text-decoration: none; display: flex; align-items: center; gap: 6px; }
.back-link:hover { color: var(--primary); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow-sm);
}
.stat-card .stat-label {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-muted);
}
.stat-card .stat-value {
  font-family: var(--font-sans); font-size: 32px; font-weight: 700; color: var(--primary); margin-top: 4px;
}
.stat-card.highlight { border-color: var(--accent); background: var(--accent-light); }

/* Stage badges */
.stage-badge {
  display: inline-block; padding: 3px 10px; border-radius: var(--radius);
  font-size: 12px; font-weight: 600;
}
.stage-new { background: var(--accent-light); color: var(--accent); }
.stage-contacted { background: var(--warning-bg); color: var(--warning); }
.stage-qualified { background: var(--success-bg); color: var(--success); }
.stage-demo_scheduled { background: var(--accent-light); color: var(--primary); }
.stage-converted { background: var(--success-bg); color: var(--success); }
.stage-lost { background: var(--danger-bg); color: var(--danger); }

/* Pipeline table */
.pipeline-table-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.pipeline-table { width: 100%; border-collapse: collapse; }
.pipeline-table th {
  text-align: left; padding: 12px 16px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--text-muted); background: var(--bg-alt); border-bottom: 1px solid var(--border);
}
.pipeline-table td { padding: 12px 16px; font-size: 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.pipeline-table tr:last-child td { border-bottom: none; }
.pipeline-table tr:hover td { background: var(--bg-alt); }
.lead-name { font-weight: 600; color: var(--primary); }
.lead-email, .lead-company { color: var(--text-muted); font-size: 13px; }
.time-badge { font-size: 13px; color: var(--text-muted); }
.time-badge.fast { color: var(--success); font-weight: 600; }
.time-badge.slow { color: var(--warning); }
.stage-select {
  padding: 6px 10px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 13px; background: var(--white); color: var(--text); cursor: pointer; outline: none;
  transition: border-color var(--transition);
}
.stage-select:focus { border-color: var(--accent); }
.delete-btn {
  color: var(--danger); background: none; border: none; cursor: pointer;
  font-size: 18px; opacity: 0.45; padding: 2px 6px; border-radius: var(--radius);
  transition: opacity var(--transition), background var(--transition);
}
.delete-btn:hover { opacity: 1; background: var(--danger-bg); }
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-state h3 { font-size: 20px; color: var(--primary); margin-bottom: 8px; }
.loading-row td { color: var(--text-muted); font-style: italic; }

/* === Breadcrumb === */
.breadcrumb { max-width: 1200px; margin: 0 auto; padding: 20px 40px 0; font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }

/* === Separator === */
.sep-line { border: none; border-top: 1px solid var(--border); margin: 0 40px; }

/* === Responsive === */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px; }
  .vp-grid { grid-template-columns: 1fr; }
  .weproov-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .social-proof-inner { flex-direction: column; gap: 16px; }
  .sp-stat-group { flex-wrap: wrap; gap: 20px; }
  .cr-stat-row { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { padding: 48px 24px; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .cr-stat-row { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}