/* ═══════════════════════════════════════════════════════════════
   SaaSControl — styles.css
   Landing page publique — www.saascontrol.fr
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Custom properties ───────────────────────────────────── */
:root {
  /* Brand colours */
  --c-navy:    #0F1E36;
  --c-slate:   #1E3A5F;
  --c-blue:    #2563EB;
  --c-teal:    #2DD4BF;
  --c-ice:     #F0F4F8;
  --c-mist:    #E2E8F0;
  --c-white:   #FFFFFF;
  --c-indigo:  #6366F1;
  /* Semantic — risk indicators only */
  --c-emerald: #059669;
  --c-amber:   #D97706;
  --c-red:     #DC2626;
  /* Text */
  --c-text:       #334155;
  --c-text-muted: #64748B;
  /* Layout */
  --max-w:        1120px;
  --section-py:   80px;
  --section-py-sm: 48px;
}

/* ── 2. Reset / base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-ice);
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; }

button { font-family: inherit; }

/* ── 3. Typography ──────────────────────────────────────────── */
h1 { font-size: 44px; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: 32px; font-weight: 600; line-height: 1.2;  letter-spacing: -0.01em; }
h3 { font-size: 20px; font-weight: 600; line-height: 1.3; }
p  { font-size: 16px; line-height: 1.65; }

.overline {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 12px;
}
.overline--teal   { color: var(--c-teal); }
.overline--indigo { color: var(--c-indigo); }

/* ── 4. Layout ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-py) 0; }
.section--white  { background: var(--c-white); }
.section--ice    { background: var(--c-ice); }
.section--navy   { background: var(--c-navy); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { color: var(--c-navy); margin-bottom: 12px; }
.section-header p  { color: var(--c-text-muted); max-width: 560px; margin: 0 auto; }
.section-header--light h2 { color: var(--c-white); }
.section-header--light p  { color: rgba(255,255,255,0.65); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

/* ── 5. Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
  transition: opacity 0.15s;
}
.btn:hover { opacity: 0.88; }

.btn--primary  { background: var(--c-blue);  color: var(--c-white); }
.btn--outline  { background: transparent; color: var(--c-blue);  border: 1.5px solid var(--c-blue); padding: 11px 20px; }
.btn--white    { background: var(--c-white);  color: var(--c-navy); }
.btn--outline-white { background: transparent; color: var(--c-white); border: 1.5px solid rgba(255,255,255,0.45); padding: 11px 20px; }
.btn--ghost    { background: transparent; color: var(--c-blue);  border: none; padding: 0; font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 5px; }
.btn--sm       { font-size: 14px; padding: 8px 16px; }

/* ── 6. Cards ───────────────────────────────────────────────── */
.card {
  background: var(--c-white);
  border: 1px solid var(--c-mist);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
  padding: 24px;
}

.card--reg { border-top: 3px solid var(--c-blue); }
.card--reg-ai { border-top: 3px solid var(--c-indigo); }

/* ── 7. Badges ──────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--c-ice);
  color: var(--c-slate);
  border: 1px solid var(--c-mist);
}
.badge--blue   { background: #EFF6FF; color: #1E40AF; border-color: #BFDBFE; }
.badge--indigo { background: #EEF2FF; color: #4338CA; border-color: #C7D2FE; }
.badge--teal   { background: #F0FDFA; color: #0F766E; border-color: #99F6E4; }
/* Semantic badges — risk indicators */
.badge--low    { background: #ECFDF5; color: #065F46; border: none; }
.badge--medium { background: #FFFBEB; color: #92400E; border: none; }
.badge--high   { background: #FEF2F2; color: #991B1B; border: none; }

/* ── 8. Icon wrap ───────────────────────────────────────────── */
.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--c-ice);
  border-radius: 8px;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.icon-wrap--indigo { background: #EEF2FF; }

/* ── 9. Navbar ──────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-mist);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar__logo img, .navbar__logo svg { height: 34px; width: auto; }
.navbar__nav { display: flex; align-items: center; gap: 28px; list-style: none; }
.navbar__nav a { font-size: 14px; font-weight: 500; color: var(--c-slate); text-decoration: none; }
.navbar__nav a:hover { color: var(--c-navy); }
.navbar__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.navbar__toggle  { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--c-slate); }
.navbar__drawer  { display: none; }

/* ── 10. Hero ───────────────────────────────────────────────── */
.hero {
  background: var(--c-navy);
  padding: 88px 0 72px;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45,212,191,0.12);
  border: 1px solid rgba(45,212,191,0.25);
  border-radius: 99px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-teal);
}
.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--c-teal);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero__text { max-width: 720px; }
.hero__text h1 { color: var(--c-white); margin-bottom: 20px; }
.hero__text p  { color: rgba(255,255,255,0.68); font-size: 17px; max-width: 580px; margin: 0 auto 32px; }
.hero__ctas    { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Hero visual — mock interface */
.hero__visual {
  width: 100%;
  max-width: 800px;
  background: var(--c-slate);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.hero__visual-bar {
  background: rgba(255,255,255,0.06);
  padding: 10px 16px;
  display: flex;
  gap: 6px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot--red   { background: var(--c-red); }
.dot--amber { background: var(--c-amber); }
.dot--green { background: var(--c-emerald); }
.hero__visual-label { font-size: 12px; color: rgba(255,255,255,0.4); margin-left: 6px; }
.hero__visual-body  { padding: 20px; overflow-x: auto; }

/* Risk table inside hero */
.risk-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 540px; }
.risk-table th {
  text-align: left; padding: 8px 10px;
  color: rgba(255,255,255,0.45); font-weight: 500; font-size: 11px;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.risk-table td {
  padding: 9px 10px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.risk-table tr:last-child td { border-bottom: none; }

.score-bar   { display: flex; align-items: center; gap: 8px; }
.score-track { flex: 1; height: 5px; background: rgba(255,255,255,0.1); border-radius: 99px; overflow: hidden; }
.score-fill  { height: 100%; border-radius: 99px; }
.score-fill--high   { background: var(--c-red);     width: 78%; }
.score-fill--medium { background: var(--c-amber);   width: 61%; }
.score-fill--medium2{ background: var(--c-amber);   width: 54%; }
.score-fill--low    { background: var(--c-emerald); width: 22%; }
.score-num--high   { color: var(--c-red);     font-size: 12px; font-weight: 600; }
.score-num--medium { color: var(--c-amber);   font-size: 12px; font-weight: 600; }
.score-num--low    { color: var(--c-emerald); font-size: 12px; font-weight: 600; }

/* ── 11. Trust strip ────────────────────────────────────────── */
.trust-strip {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-mist);
  padding: 24px 0;
}
.trust-strip__items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
  border-right: 1px solid var(--c-mist);
}
.trust-strip__item:last-child { border-right: none; }
.trust-strip__value { font-size: 20px; font-weight: 700; color: var(--c-navy); line-height: 1; }
.trust-strip__label { font-size: 12px; color: var(--c-text-muted); margin-top: 4px; text-align: center; }

/* ── 12. Problem section ────────────────────────────────────── */
.pain-card h3 { color: var(--c-navy); margin-bottom: 6px; }
.pain-card p  { font-size: 14px; color: var(--c-text-muted); line-height: 1.6; }

/* ── 13. Solution section ───────────────────────────────────── */
.pillar-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.pillar-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.pillar-list__icon { flex-shrink: 0; color: var(--c-blue); margin-top: 1px; }

.mockup-panel { background: var(--c-ice); border: 1px solid var(--c-mist); border-radius: 10px; padding: 20px; }
.mockup-panel__title { font-size: 11px; font-weight: 600; color: var(--c-text-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.tool-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px;
  background: var(--c-white); border: 1px solid var(--c-mist); border-radius: 6px; margin-bottom: 8px;
}
.tool-row:last-of-type { margin-bottom: 0; }
.tool-row__name { font-size: 14px; font-weight: 500; color: var(--c-navy); }
.tool-row__dept { font-size: 12px; color: var(--c-text-muted); }
.mockup-panel__footer {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--c-mist);
  display: flex; justify-content: space-between; align-items: center;
}
.mockup-panel__footer-note { font-size: 12px; color: var(--c-text-muted); }
.mockup-panel__footer-link { font-size: 12px; font-weight: 600; color: var(--c-blue); text-decoration: none; }

/* ── 14. Feature cards ──────────────────────────────────────── */
.feature-card h3 { color: var(--c-navy); margin-bottom: 6px; }
.feature-card p  { font-size: 14px; color: var(--c-text-muted); margin-bottom: 12px; }
.feature-card .badge { margin-bottom: 6px; }

.bullet-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.bullet-list li {
  display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--c-text);
}
.bullet-list li::before {
  content: '';
  display: block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--c-blue); margin-top: 7px; flex-shrink: 0;
}

/* ── 15. How it works ───────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: start;
  margin-bottom: 40px;
}
.step { text-align: center; padding: 0 12px; }
.step__num { font-size: 36px; font-weight: 700; color: var(--c-teal); line-height: 1; margin-bottom: 14px; }
.step h3   { font-size: 18px; color: var(--c-white); margin-bottom: 8px; }
.step p    { font-size: 14px; color: rgba(255,255,255,0.62); }
.step__arrow { display: flex; align-items: center; justify-content: center; padding-top: 16px; color: var(--c-teal); }

.how__note {
  text-align: center; font-size: 13px; color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px; max-width: 560px; margin: 0 auto 32px;
}
.how__cta { text-align: center; }

/* ── 16. Use cases ──────────────────────────────────────────── */
.usecase-card h3 { font-size: 18px; color: var(--c-navy); margin-bottom: 6px; }
.usecase-card__quote {
  font-style: italic; font-size: 14px; color: var(--c-text-muted);
  margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--c-mist);
}

/* ── 17. AI section ─────────────────────────────────────────── */
.ai-mockup { background: var(--c-white); border: 1px solid var(--c-mist); border-radius: 10px; padding: 20px; }
.ai-mockup__title { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-text-muted); margin-bottom: 14px; }
.ai-tool { background: var(--c-ice); border: 1px solid var(--c-mist); border-radius: 8px; padding: 14px; margin-bottom: 10px; }
.ai-tool:last-child { margin-bottom: 0; }
.ai-tool__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.ai-tool__name { font-size: 14px; font-weight: 600; color: var(--c-navy); }
.ai-tool__sub  { font-size: 12px; color: var(--c-text-muted); }
.ai-crit-list  { display: flex; flex-direction: column; gap: 5px; }
.ai-crit-row   { display: flex; align-items: center; font-size: 11px; color: var(--c-text-muted); }
.ai-crit-row__label { flex: 0 0 130px; }
.ai-crit-row__bar { flex: 1; height: 3px; background: var(--c-mist); border-radius: 99px; margin: 0 8px; overflow: hidden; }
.ai-crit-fill  { height: 100%; border-radius: 99px; }
.ai-crit-fill--h { background: var(--c-red);     width: 80%; }
.ai-crit-fill--m { background: var(--c-amber);   width: 55%; }
.ai-crit-fill--l { background: var(--c-emerald); width: 25%; }
.ai-crit-row__val { font-weight: 600; width: 52px; text-align: right; }
.ai-crit-row__val--h { color: var(--c-red); }
.ai-crit-row__val--m { color: var(--c-amber); }
.ai-crit-row__val--l { color: var(--c-emerald); }

.ai-criteria { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.ai-criteria li { display: flex; gap: 12px; align-items: flex-start; }
.ai-criteria__icon {
  width: 32px; height: 32px; background: #EEF2FF; border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--c-indigo);
}
.ai-criteria li div strong { display: block; font-size: 14px; font-weight: 600; color: var(--c-navy); margin-bottom: 2px; }
.ai-criteria li div span  { font-size: 13px; color: var(--c-text-muted); }

/* ── 18. Audit form section ─────────────────────────────────── */
.audit-header { text-align: center; margin-bottom: 48px; }
.audit-beta-badge {
  display: inline-block;
  background: #F0FDFA; border: 1px solid #99F6E4; color: #0F766E;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  padding: 4px 12px; border-radius: 99px; margin-bottom: 16px;
}
.audit-header h2 { color: var(--c-navy); margin-bottom: 12px; }
.audit-header p  { color: var(--c-text-muted); max-width: 520px; margin: 0 auto; }

.audit-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  align-items: start;
}

/* Left column — info */
.audit-links { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--c-mist); }
.audit-links a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; color: var(--c-blue); text-decoration: none;
}
.audit-links a:hover { text-decoration: underline; }
.audit-checklist-title { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-text-muted); margin-bottom: 12px; }
.audit-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.audit-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--c-text); }
.check-sm {
  flex-shrink: 0; width: 18px; height: 18px;
  background: #EFF6FF; border-radius: 4px;
  display: flex; align-items: center; justify-content: center; margin-top: 1px; color: var(--c-blue);
}

/* Right column — form */
.audit-form-wrap {
  background: var(--c-white);
  border: 1px solid var(--c-mist);
  border-radius: 10px;
  padding: 32px;
}
.audit-form-wrap h3 { font-size: 16px; color: var(--c-navy); margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--c-slate); }
.form-group label span { font-weight: 400; color: var(--c-text-muted); }
.form-required { color: var(--c-red); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 14px;
  color: var(--c-navy);
  background: var(--c-white);
  border: 1.5px solid var(--c-mist);
  border-radius: 6px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--c-blue); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #94A3B8; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-group textarea { resize: vertical; min-height: 88px; }
.form-hint { font-size: 12px; color: var(--c-text-muted); margin-top: 4px; }

.form-submit { margin-top: 20px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 15px; padding: 13px; }

.form-mailto-note {
  display: flex; align-items: flex-start; gap: 8px; margin-top: 12px;
  padding: 10px 12px;
  background: var(--c-ice); border: 1px solid var(--c-mist); border-radius: 6px;
  font-size: 12px; color: var(--c-text-muted); line-height: 1.55;
}
.form-mailto-note svg { flex-shrink: 0; margin-top: 1px; }
.form-mailto-note a { color: var(--c-blue); text-decoration: none; font-weight: 500; }

.form-guarantees {
  display: flex; gap: 16px; margin-top: 14px;
  font-size: 12px; color: var(--c-text-muted);
  justify-content: center; flex-wrap: wrap;
}
.form-guarantees span { display: flex; align-items: center; gap: 4px; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.55;
}
.form-consent input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--c-blue);
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.form-consent a { color: var(--c-blue); text-decoration: none; }
.form-consent a:hover { text-decoration: underline; }

/* ── 19. FAQ ────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--c-mist); }
.faq-btn {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; cursor: pointer; font-size: 15px; font-weight: 600;
  color: var(--c-navy); font-family: inherit;
}
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--c-text-muted); transition: transform 0.2s; }
.faq-answer { font-size: 15px; color: var(--c-text-muted); padding: 0 0 20px; display: none; line-height: 1.65; }
.faq-item[open] .faq-answer { display: block; }
.faq-item[open] .faq-icon   { transform: rotate(45deg); }
.faq-contact { text-align: center; margin-top: 32px; font-size: 15px; color: var(--c-text-muted); }
.faq-contact a { color: var(--c-blue); text-decoration: none; font-weight: 500; }

/* ── 20. Final CTA ──────────────────────────────────────────── */
.cta-final { padding: var(--section-py) 0; background: var(--c-navy); text-align: center; }
.cta-final h2 { color: var(--c-white); margin-bottom: 14px; }
.cta-final p  { color: rgba(255,255,255,0.62); max-width: 480px; margin: 0 auto 36px; }
.cta-final__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-final__note { font-size: 12px; color: rgba(255,255,255,0.32); margin-top: 20px; }

/* ── 21. Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--c-navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 0 28px;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__brand-desc { font-size: 14px; color: rgba(255,255,255,0.45); margin-top: 12px; max-width: 260px; line-height: 1.6; }
.footer__col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__col ul a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; }
.footer__col ul a:hover { color: var(--c-white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer__bottom span { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ── 22. Responsive ─────────────────────────────────────────── */
@media (max-width: 1023px) {
  h1 { font-size: 36px; }
  .two-col { gap: 40px; }
  .audit-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 767px) {
  :root {
    --section-py: var(--section-py-sm);
  }

  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }

  .hero { padding: 56px 0 40px; }

  .navbar__nav     { display: none; }
  .navbar__actions .btn--outline { display: none; }
  .navbar__toggle  { display: block; }

  /* Mobile nav drawer */
  .navbar__drawer {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--c-white);
    z-index: 200;
    padding: 24px;
    flex-direction: column;
    gap: 0;
  }
  .navbar__drawer.is-open { display: flex; }
  .navbar__drawer-close { margin-left: auto; background: none; border: none; cursor: pointer; color: var(--c-slate); margin-bottom: 24px; }
  .navbar__drawer-nav { list-style: none; display: flex; flex-direction: column; }
  .navbar__drawer-nav a { display: block; padding: 16px 0; font-size: 18px; font-weight: 600; color: var(--c-navy); text-decoration: none; border-bottom: 1px solid var(--c-mist); }
  .navbar__drawer-cta { margin-top: 28px; }
  .navbar__drawer-cta .btn { width: 100%; justify-content: center; }

  .hero__ctas    { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4, .two-col, .steps, .footer__grid { grid-template-columns: 1fr; }
  .two-col--reverse { direction: ltr; }

  .steps { display: flex; flex-direction: column; gap: 24px; }
  .step__arrow { display: none; }

  .trust-strip__items { flex-direction: column; }
  .trust-strip__item { border-right: none; border-bottom: 1px solid var(--c-mist); width: 100%; padding: 14px 24px; flex-direction: row; justify-content: space-between; align-items: center; }
  .trust-strip__item:last-child { border-bottom: none; }
  .trust-strip__label { text-align: right; }

  .audit-form-wrap { padding: 20px; }
  .form-grid { grid-template-columns: 1fr; }

  .cta-final__actions { flex-direction: column; }
  .cta-final__actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 26px; }
}

/* ── 23. Legal pages ────────────────────────────────────────── */
.legal-header {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-mist);
}
.legal-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.legal-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 56px 0 80px;
}
.legal-content h1 {
  font-size: 36px;
  color: var(--c-navy);
  margin-bottom: 8px;
}
.legal-meta {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 48px;
  display: block;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-mist);
}

.legal-section {
  margin-bottom: 48px;
}
.legal-section h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-mist);
}
.legal-section p {
  margin-bottom: 12px;
  color: var(--c-text);
  line-height: 1.7;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul {
  margin: 8px 0 12px 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.legal-section ul li {
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.65;
}
.legal-section a {
  color: var(--c-blue);
  text-decoration: none;
}
.legal-section a:hover { text-decoration: underline; }

.legal-placeholder {
  display: inline-block;
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  border-radius: 4px;
  padding: 1px 7px;
  color: #C2410C;
  font-size: 13px;
  font-weight: 500;
  font-style: italic;
}

@media (max-width: 767px) {
  .legal-content { padding: 36px 0 56px; }
  .legal-content h1 { font-size: 28px; }
  .legal-header__inner .btn { display: none; }
}
