/* ═══════════════════════════════════════════
   {CODENAME} Landing — style.css
   ═══════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  --white: #ffffff;
  --bg: #f8fafc;
  --text: #0f172a;
  --text-2: #334155;
  --muted: #64748b;
  --border: #e2e8f0;
  --border-2: #cbd5e1;
  --accent: #4f46e5;
  --accent-light: #eef2ff;
  --accent-mid: #818cf8;
  --accent-dark: #3730a3;
  --green: #10b981;
  --green-light: #ecfdf5;
  --red: #ef4444;
  --red-light: #fef2f2;
  --orange: #f59e0b;
  --orange-light: #fffbeb;
  --text-3: #94a3b8;
  --surface: #f1f5f9;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
  --font-heading: system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', sans-serif;
  --max-w: 1200px;
  --max-w-narrow: 800px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-tap-highlight-color: transparent; }

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 8px 16px;
  background: var(--accent);
  color: var(--white);
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ─── BUTTONS ─── */
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-dark);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-2);
}
.btn-ghost:hover {
  background: var(--surface);
  text-decoration: none;
  border-color: var(--text-3);
}
.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; }
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
}
.logo:hover { text-decoration: none; }
.logo-mark { width: 32px; height: 32px; color: var(--accent); }
.logo-mark svg { width: 100%; height: 100%; }
.logo-name { font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }

.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-menu-links { display: flex; align-items: center; gap: 24px; }
.nav-menu-links a { color: var(--text-2); font-size: 14px; font-weight: 500; text-decoration: none; }
.nav-menu-links a:hover { color: var(--accent); }
.nav-menu-cta { display: flex; align-items: center; gap: 12px; }
.nav-menu-cta .btn-primary, .nav-menu-cta .btn-ghost { padding: 8px 16px; font-size: 14px; }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
}
.nav-dropdown-trigger:hover { color: var(--accent); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  padding: 8px 0;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: var(--text-2);
  font-size: 14px;
}
.nav-dropdown-menu a:hover { background: var(--surface); color: var(--accent); text-decoration: none; }

/* Mobile nav */
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 4px;
}
.burger-line {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s ease;
}
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--white);
  flex-direction: column;
  padding: 0 24px 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile-header {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  color: var(--text);
}
.nav-close svg { width: 100%; height: 100%; }
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
  flex: 1;
}
.nav-mobile-links a {
  padding: 12px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.nav-mobile-cta .btn-primary, .nav-mobile-cta .btn-ghost { width: 100%; }

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .nav-burger { display: flex; }
}

/* ─── HERO ─── */
.hero {
  padding: 80px 24px 60px;
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--white) 100%);
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-note { font-size: 13px; color: var(--muted); }

/* Hero mockup */
.hero-visual { display: flex; justify-content: center; }
.hero-mockup { perspective: 1000px; }
.mockup-phone {
  width: 280px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 2px solid var(--border);
  transform: rotateY(-5deg) rotateX(2deg);
}
.mockup-screen { padding: 16px; }
.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.mockup-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.mockup-title { font-size: 14px; font-weight: 600; color: var(--text); }
.mockup-card {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 10px 12px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  border-left: 3px solid var(--accent);
}
.mockup-card-urgent { border-left-color: var(--orange); background: var(--orange-light); }
.mockup-time { font-size: 12px; font-weight: 700; color: var(--accent); white-space: nowrap; }
.mockup-card-urgent .mockup-time { color: var(--orange); }
.mockup-label { font-size: 12px; color: var(--text-2); line-height: 1.4; }

/* Devis mockup */
.mockup-devis { font-size: 12px; }
.mockup-devis-title { font-weight: 600; margin-bottom: 8px; font-size: 13px; color: var(--text); }
.mockup-devis-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.mockup-devis-desc { color: var(--text-2); flex: 1; }
.mockup-devis-price { font-weight: 600; color: var(--text); white-space: nowrap; }
.mockup-devis-total {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 4px;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .hero { padding: 48px 20px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { order: -1; }
  .mockup-phone { width: 240px; transform: none; }
}

/* ─── STATS BANNER ─── */
.stats-banner {
  background: var(--text);
  color: var(--white);
  padding: 40px 24px;
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.stat-label {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
  line-height: 1.4;
}
.stat-source {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-number { font-size: 28px; }
}

/* ─── SECTION HEADERS ─── */
.section-header {
  text-align: center;
  max-width: var(--max-w-narrow);
  margin: 0 auto 48px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ─── PILLARS ─── */
.pillars { padding: 80px 24px; }
.pillars-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar {
  text-align: center;
  padding: 32px 24px;
}
.pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--accent);
}
.pillar-icon svg { width: 100%; height: 100%; }
.pillar-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.pillar-text {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pillars { padding: 48px 20px; }
  .pillars-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ─── FEATURES ─── */
.features {
  padding: 80px 24px;
  background: var(--surface);
}
.features-inner { max-width: var(--max-w); margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.feature-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.feature-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features { padding: 48px 20px; }
  .features-grid { grid-template-columns: 1fr; }
}

/* ─── COMPARISON ─── */
.comparison { padding: 80px 24px; }
.comparison-inner { max-width: var(--max-w-narrow); margin: 0 auto; }
.comparison-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table th {
  padding: 14px 16px;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid var(--border);
  color: var(--text);
}
.comparison-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
}
.comparison-feature { text-align: left !important; font-weight: 500; color: var(--text) !important; }
.comparison-highlight {
  background: var(--accent-light);
  color: var(--accent-dark) !important;
  font-weight: 600;
}
.check { color: var(--green); font-weight: 600; }
.cross { color: var(--text-3); }

@media (max-width: 768px) {
  .comparison { padding: 48px 20px; }
  .comparison-table { font-size: 13px; }
  .comparison-table th, .comparison-table td { padding: 10px 8px; }
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 80px 24px;
  background: var(--surface);
}
.testimonials-inner { max-width: var(--max-w); margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.testimonial-quote p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--text); }
.testimonial-role { font-size: 13px; color: var(--muted); }

/* Large testimonial on vertical pages */
.vertical-testimonial {
  padding: 60px 24px;
  background: var(--accent-light);
}
.vertical-testimonial-inner {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  text-align: center;
}
.testimonial-quote-large p {
  font-size: 22px;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
}
.vertical-testimonial .testimonial-author { justify-content: center; }

@media (max-width: 768px) {
  .testimonials { padding: 48px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-quote-large p { font-size: 18px; }
}

/* ─── PRICING ─── */
.pricing { padding: 80px 24px; }
.pricing-inner { max-width: var(--max-w); margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
}
.pricing-card-highlight {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.pricing-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.pricing-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.pricing-price { margin-bottom: 4px; }
.pricing-amount {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.pricing-period {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
}
.pricing-ht {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 20px;
}
.pricing-cta { width: 100%; margin-bottom: 8px; }
.pricing-cta-note { font-size: 12px; color: var(--muted); margin-bottom: 24px; }
.pricing-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.4;
}
.pricing-features li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.pricing-features li.included svg { color: var(--green); }
.pricing-features li.excluded { color: var(--text-3); }
.pricing-features li.excluded svg { color: var(--text-3); }
.pricing-features li.bold { font-weight: 600; color: var(--accent-dark); }

/* Pricing details */
.pricing-details { padding: 60px 24px; background: var(--surface); }
.pricing-details-inner { max-width: var(--max-w); margin: 0 auto; }
.pricing-details .section-title { text-align: center; margin-bottom: 40px; }
.pricing-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-detail {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.pricing-detail h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.pricing-detail p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

@media (max-width: 768px) {
  .pricing { padding: 48px 20px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-amount { font-size: 36px; }
  .pricing-details-grid { grid-template-columns: 1fr; }
}

/* ─── FAQ ─── */
.faq { padding: 80px 24px; }
.faq-inner { max-width: var(--max-w-narrow); margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.2s ease;
}
details[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 0 20px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq { padding: 48px 20px; }
}

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  text-align: center;
}
.cta-inner { max-width: var(--max-w-narrow); margin: 0 auto; }
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-text {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 28px;
}
.cta-buttons { margin-bottom: 16px; }
.cta-section .btn-primary {
  background: var(--white);
  color: var(--accent-dark);
}
.cta-section .btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}
.cta-note { font-size: 13px; opacity: 0.7; }

@media (max-width: 768px) {
  .cta-section { padding: 48px 20px; }
}

/* ─── VERTICAL PAIN POINTS ─── */
.vertical-pain { padding: 60px 24px; }
.vertical-pain-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 32px auto 24px;
  text-align: left;
}
.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--red-light);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(239,68,68,0.15);
}
.pain-icon { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.pain-card p { font-size: 14px; color: var(--text-2); line-height: 1.5; }
.pain-solution {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; }
}

/* ─── VERTICAL SERVICES ─── */
.vertical-services { padding: 60px 24px; background: var(--surface); }
.vertical-services-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 700px;
  margin: 32px auto 0;
}
.service-tag {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
}

/* ─── PAGE HERO (compact) ─── */
.page-hero {
  padding: 60px 24px 40px;
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--white) 100%);
  text-align: center;
}
.page-hero-compact { padding: 48px 24px 32px; }
.page-hero-inner { max-width: var(--max-w-narrow); margin: 0 auto; }
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.page-hero-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 64px 24px 24px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand .logo-mark { color: var(--accent-mid); }
.footer-tagline { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.footer-trust { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.footer-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.footer-trust li svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-mid);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}
.footer-cta:hover { text-decoration: underline; }
.footer-cta svg { width: 16px; height: 16px; }
.footer-heading {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  text-decoration: none;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── LEGAL CONTENT (mentions, confidentialite, CGV, CGU) ─── */
.legal-content { padding: 48px 24px 80px; }
.legal-content-inner {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
}
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 40px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 8px;
}
.legal-content p,
.legal-content li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 12px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content ul li {
  margin-bottom: 6px;
}
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}
.legal-content strong { color: var(--text); font-weight: 600; }
.legal-meta {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 768px) {
  .legal-content { padding: 32px 20px 60px; }
  .legal-content h2 { font-size: 20px; }
  .legal-content h3 { font-size: 16px; }
}
