/* ══════════════════════════════════════
   TRAIXON — style.css (Design System partagé)
   Importé par toutes les pages du site.
══════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --bg: #f7f8fc;
  --bg2: #eef0f7;
  --surface: #ffffff;
  --border: #e4e7f0;
  --border2: #d0d5e8;
  --text: #0c1120;
  --text2: #3d4762;
  --muted: #8892aa;
  --teal: #00c49a;
  --teal-dark: #009e7c;
  --teal-light: rgba(0,196,154,0.1);
  --teal-xlight: rgba(0,196,154,0.06);
  --red: #ff4d6a;
  --red-light: rgba(255,77,106,0.1);
  --amber: #f59e0b;
  --navy: #06091a;
  --font-title: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 2px 12px rgba(6,9,26,0.07), 0 1px 3px rgba(6,9,26,0.05);
  --shadow-md: 0 8px 32px rgba(6,9,26,0.10), 0 2px 8px rgba(6,9,26,0.06);
  --shadow-lg: 0 20px 60px rgba(6,9,26,0.12), 0 4px 16px rgba(6,9,26,0.08);
}

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 0;
  transition: box-shadow .3s;
  overflow: hidden;
}

nav.scrolled { box-shadow: var(--shadow); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 32px; height: 32px;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}

.nav-logo-icon svg { width: 20px; height: 20px; }

.nav-logo-text {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 17px;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav-logo-text span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}

.nav-links a:hover { background: var(--bg); color: var(--text); }

.nav-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all .18s;
  border: none;
  letter-spacing: -0.01em;
}

.btn-ghost { background: transparent; color: var(--text2); padding: 8px 14px; }
.btn-ghost:hover { background: var(--bg); color: var(--text); }

.btn-primary { background: var(--navy); color: white; padding: 10px 20px; box-shadow: 0 2px 8px rgba(6,9,26,0.25); }
.btn-primary:hover { background: #0f1630; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(6,9,26,0.3); }

.btn-teal { background: var(--teal); color: white; padding: 14px 28px; font-size: 15px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,196,154,0.35); }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(0,196,154,0.4); }

.btn-outline { background: transparent; color: var(--text2); border: 1.5px solid var(--border2); padding: 13px 24px; font-size: 15px; border-radius: 12px; }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-xlight); }

.btn-teal-inverse { background: var(--teal); color: var(--navy); font-family: var(--font-body); font-weight: 700; font-size: 15px; padding: 15px 30px; border-radius: 12px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all .18s; box-shadow: 0 4px 20px rgba(0,196,154,0.4); }
.btn-teal-inverse:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,196,154,0.5); }

.btn-white-outline { background: transparent; color: rgba(255,255,255,0.75); font-family: var(--font-body); font-weight: 600; font-size: 15px; padding: 14px 26px; border-radius: 12px; border: 1.5px solid rgba(255,255,255,0.18); text-decoration: none; transition: all .18s; }
.btn-white-outline:hover { border-color: rgba(255,255,255,0.4); color: white; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 120px 40px 80px;
  text-align: center;
  position: relative; overflow: hidden;
  background: var(--white);
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px; opacity: 0.5;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

.hero-bg-glow {
  position: absolute; top: 10%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,196,154,0.12) 0%, transparent 70%);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-light); border: 1px solid rgba(0,196,154,0.25);
  border-radius: 99px; padding: 6px 16px 6px 10px;
  font-size: 12px; font-weight: 600; color: var(--teal-dark);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 32px; opacity: 0; animation: fadeUp .6s .1s forwards;
}

.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); animation: pulse 2s infinite; }

@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }

.hero h1 {
  font-family: var(--font-title); font-weight: 700;
  font-size: clamp(38px, 5.5vw, 70px); line-height: 1.08;
  letter-spacing: 0em; color: var(--navy); max-width: 860px;
  margin-bottom: 24px; opacity: 0; animation: fadeUp .7s .2s forwards;
}

.hero h1 em { font-style: normal; color: var(--teal); position: relative; }

.hero-sub {
  font-size: clamp(16px, 2vw, 19px); color: var(--text2); max-width: 540px;
  font-weight: 400; line-height: 1.6; margin-bottom: 40px;
  opacity: 0; animation: fadeUp .7s .3s forwards;
}

.hero-actions {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .7s .4s forwards; margin-bottom: 60px;
}

.hero-trust { display: flex; align-items: center; gap: 24px; opacity: 0; animation: fadeUp .7s .5s forwards; }

.hero-trust-item { font-size: 12px; color: var(--muted); font-weight: 500; display: flex; align-items: center; gap: 6px; }

.hero-trust-item::before {
  content: ''; width: 14px; height: 14px;
  background: var(--teal-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M3 7l3 3 5-5' stroke='%2300c49a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.llm-pills { display: flex; align-items: center; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; opacity: 0; animation: fadeUp .7s .45s forwards; }

.llm-pill { display: flex; align-items: center; gap: 6px; background: var(--white); border: 1px solid var(--border); border-radius: 99px; padding: 5px 12px; font-size: 12px; font-weight: 600; color: var(--text2); box-shadow: var(--shadow); }

.llm-pill-dot { width: 7px; height: 7px; border-radius: 50%; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* ── DEMO WIDGET ── */
.demo-wrapper { max-width: 900px; width: 100%; margin: 0 auto 0; opacity: 0; animation: fadeUp .8s .6s forwards; }
.demo-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.demo-topbar { background: var(--bg); border-bottom: 1px solid var(--border); padding: 12px 18px; display: flex; align-items: center; gap: 8px; }
.demo-dot { width: 11px; height: 11px; border-radius: 50%; }
.demo-dot:nth-child(1) { background: #ff5f57; }
.demo-dot:nth-child(2) { background: #febc2e; }
.demo-dot:nth-child(3) { background: #28c840; }
.demo-url { margin-left: 12px; background: var(--white); border: 1px solid var(--border); border-radius: 7px; padding: 4px 12px; font-size: 12px; color: var(--muted); font-family: var(--font-mono); }
.demo-body { display: grid; grid-template-columns: 1fr 1fr; min-height: 320px; }
.demo-col { padding: 28px 28px; }
.demo-col:first-child { border-right: 1px solid var(--border); }
.demo-col-label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.demo-col-label-dot { width: 6px; height: 6px; border-radius: 50%; }
.demo-before { background: var(--white); }
.demo-after { background: linear-gradient(135deg, rgba(0,196,154,0.04) 0%, var(--white) 100%); }
.demo-query-box { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; font-size: 13.5px; color: var(--text2); line-height: 1.5; margin-bottom: 16px; font-style: italic; }
.demo-absent-list { display: flex; flex-direction: column; gap: 8px; }
.demo-result-row { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 9px; background: var(--bg); border: 1px solid var(--border); }
.demo-result-row.absent { opacity: 0.5; position: relative; }
.demo-result-icon { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.demo-result-name { font-size: 13px; font-weight: 600; color: var(--text); }
.demo-result-sub { font-size: 11px; color: var(--muted); }
.demo-absent-tag { margin-left: auto; font-size: 10px; font-weight: 700; color: var(--red); background: var(--red-light); padding: 2px 8px; border-radius: 5px; letter-spacing: 0.05em; text-transform: uppercase; }
.demo-present-tag { margin-left: auto; font-size: 10px; font-weight: 700; color: var(--teal-dark); background: var(--teal-light); padding: 2px 8px; border-radius: 5px; letter-spacing: 0.05em; text-transform: uppercase; }
.demo-llm-response { background: var(--navy); border-radius: 12px; padding: 16px 18px; margin-top: 4px; }
.demo-llm-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.demo-llm-badge { font-size: 10px; font-weight: 700; color: var(--teal); background: rgba(0,196,154,0.15); padding: 3px 8px; border-radius: 5px; font-family: var(--font-mono); letter-spacing: 0.06em; }
.demo-llm-text { font-size: 12.5px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.demo-llm-brand { color: var(--teal); font-weight: 700; }

/* ── SECTIONS ── */
section { padding: 100px 40px; }
.container { max-width: 1080px; margin: 0 auto; }
.section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 14px; }
.section-title { font-family: var(--font-title); font-weight: 700; font-size: clamp(28px, 4vw, 44px); line-height: 1.15; letter-spacing: 0em; color: var(--navy); margin-bottom: 16px; }
.section-title em { font-style: normal; color: var(--teal); }
.section-sub { font-size: 17px; color: var(--text2); max-width: 560px; line-height: 1.6; font-weight: 300; }

/* ── STATS BAND ── */
.stats-band { background: var(--navy); padding: 56px 40px; }
.stats-grid { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border-radius: var(--radius); overflow: hidden; }
.stat-item { background: var(--navy); padding: 36px 40px; text-align: center; }
.stat-num { font-family: var(--font-title); font-weight: 800; font-size: 52px; line-height: 1; color: var(--teal); letter-spacing: -0.03em; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.55); font-weight: 400; line-height: 1.4; }

/* ── STEPS ── */
.steps-section { background: var(--bg); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.step-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 30px; position: relative; transition: transform .2s, box-shadow .2s; }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num { font-family: var(--font-mono); font-size: 11px; font-weight: 500; color: var(--teal); background: var(--teal-light); border-radius: 7px; padding: 4px 10px; margin-bottom: 20px; display: inline-block; letter-spacing: 0.06em; }
.step-icon { width: 48px; height: 48px; background: var(--bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; border: 1px solid var(--border); }
.step-title { font-family: var(--font-title); font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.01em; }
.step-desc { font-size: 14px; color: var(--text2); line-height: 1.6; }
.step-effort { margin-top: 20px; font-size: 11px; font-weight: 600; color: var(--muted); font-family: var(--font-mono); letter-spacing: 0.06em; }

/* ── OFFERS ── */
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.offer-card { border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.offer-card.featured { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(0,196,154,0.1), var(--shadow-md); }
.offer-header { padding: 26px 26px 22px; border-bottom: 1px solid var(--border); }
.offer-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; margin-bottom: 16px; display: inline-block; }
.offer-tag-default { color: var(--muted); background: var(--bg); border: 1px solid var(--border); }
.offer-tag-featured { color: white; background: var(--teal); }
.offer-name { font-family: var(--font-title); font-size: 23px; font-weight: 700; color: var(--navy); margin-bottom: 4px; letter-spacing: 0em; line-height: 1.2; }
.offer-tagline { font-size: 13px; color: var(--muted); margin-bottom: 20px; font-style: italic; }
.offer-price { display: flex; flex-direction: column; gap: 2px; }
.offer-price-num { font-family: var(--font-body); font-size: 56px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; line-height: 1; white-space: nowrap; font-variant-numeric: tabular-nums; }
.offer-price-unit { font-size: 12px; color: var(--muted); font-weight: 500; line-height: 1.3; }
.offer-body { padding: 22px 28px; flex: 1; }
.offer-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.offer-features li { font-size: 13.5px; color: var(--text2); display: flex; align-items: flex-start; gap: 9px; line-height: 1.4; }
.offer-features li::before { content: ''; width: 16px; height: 16px; background: var(--teal-light); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8l3 3 5-5' stroke='%2300c49a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); flex-shrink: 0; margin-top: 1px; }
.offer-footer { padding: 20px 28px; border-top: 1px solid var(--border); }

/* ── AUDIT WIDGET ── */
.audit-section { background: var(--bg); }
.audit-widget { max-width: 680px; margin: 50px auto 0; background: var(--white); border: 1.5px solid var(--border2); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.audit-widget-header { padding: 24px 28px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 14px; }
.audit-widget-icon { width: 42px; height: 42px; background: var(--teal-light); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.audit-widget-title { font-family: var(--font-title); font-size: 18px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.audit-widget-sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.audit-form { padding: 28px; }
.audit-input-row { display: flex; gap: 10px; }
.audit-input { flex: 1; height: 48px; border: 1.5px solid var(--border2); border-radius: 11px; padding: 0 16px; font-family: var(--font-body); font-size: 14px; color: var(--text); background: var(--white); outline: none; transition: border-color .15s; }
.audit-input:focus { border-color: var(--teal); }
.audit-input::placeholder { color: var(--muted); }
.audit-btn { height: 48px; background: var(--navy); color: white; border: none; border-radius: 11px; padding: 0 22px; font-family: var(--font-title); font-size: 14px; font-weight: 700; cursor: pointer; white-space: nowrap; transition: background .15s, transform .15s; display: flex; align-items: center; gap: 7px; }
.audit-btn:hover { background: var(--teal); transform: translateY(-1px); }
.audit-results { padding: 0 28px 28px; display: none; }
.audit-results.visible { display: block; }
.audit-score-row { display: flex; align-items: center; gap: 20px; padding: 20px 0; border-top: 1px solid var(--border); }
.audit-score-circle { width: 72px; height: 72px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; position: relative; }
.audit-score-num { font-family: var(--font-title); font-size: 26px; font-weight: 800; line-height: 1; }
.audit-score-label { font-size: 9px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
.score-low .audit-score-num { color: var(--red); }
.score-low { border: 3px solid var(--red); background: var(--red-light); }
.score-mid .audit-score-num { color: var(--amber); }
.score-mid { border: 3px solid var(--amber); background: rgba(245,158,11,0.08); }
.score-good .audit-score-num { color: var(--teal-dark); }
.score-good { border: 3px solid var(--teal); background: var(--teal-xlight); }
.audit-score-text { font-size: 13.5px; color: var(--text2); line-height: 1.5; }
.audit-score-text strong { color: var(--text); }
.audit-bars { display: flex; flex-direction: column; gap: 9px; padding-top: 8px; }
.audit-bar-row { display: flex; align-items: center; gap: 12px; }
.audit-bar-label { font-size: 12px; color: var(--text2); width: 150px; flex-shrink: 0; }
.audit-bar-track { flex: 1; height: 7px; background: var(--bg2); border-radius: 4px; overflow: hidden; }
.audit-bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--teal-dark), var(--teal)); transition: width 1.2s cubic-bezier(.2,.8,.3,1); }
.audit-bar-fill.low { background: linear-gradient(90deg, #ff4d6a, #ff7a8a); }
.audit-bar-fill.mid { background: linear-gradient(90deg, var(--amber), #fbbf24); }
.audit-bar-score { font-size: 11px; font-weight: 600; color: var(--muted); width: 36px; text-align: right; font-family: var(--font-mono); }
.audit-cta-row { display: flex; gap: 10px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.audit-gate { background: rgba(247,248,252,0.95); backdrop-filter: blur(8px); border-radius: 11px; padding: 24px; text-align: center; margin-top: 16px; border: 1.5px dashed var(--border2); display: none; }
.audit-gate.visible { display: block; }
.audit-gate-icon { font-size: 28px; margin-bottom: 10px; }
.audit-gate-title { font-family: var(--font-title); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.audit-gate-sub { font-size: 13px; color: var(--text2); margin-bottom: 16px; }
.audit-gate-input { width: 100%; height: 44px; border: 1.5px solid var(--border2); border-radius: 9px; padding: 0 14px; font-family: var(--font-body); font-size: 14px; color: var(--text); background: white; outline: none; margin-bottom: 10px; transition: border-color .15s; }
.audit-gate-input:focus { border-color: var(--teal); }
.audit-gate-btn { width: 100%; height: 44px; background: var(--teal); color: white; border: none; border-radius: 9px; font-family: var(--font-title); font-size: 14px; font-weight: 700; cursor: pointer; transition: background .15s; }
.audit-gate-btn:hover { background: var(--teal-dark); }

/* ── PILLARS ── */
.pillars-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 56px; }
.pillar-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 18px; background: var(--white); transition: border-color .2s, box-shadow .2s; cursor: default; }
.pillar-card:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(0,196,154,0.12); }
.pillar-icon { font-size: 26px; margin-bottom: 14px; display: block; }
.pillar-name { font-family: var(--font-title); font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 7px; letter-spacing: -0.01em; }
.pillar-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ── CTA SECTION ── */
.cta-section { background: var(--navy); padding: 100px 40px; text-align: center; }
.cta-section .section-title { color: white; }
.cta-section .section-sub { color: rgba(255,255,255,0.55); margin: 0 auto 40px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 40px 40px;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 16px;
  color: white;
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}

.footer-logo span { color: var(--teal); }

.footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }

.footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-cta { gap: 6px; }
  .nav-cta .btn-ghost { display: none; }
  .nav-cta .btn-primary { font-size: 13px; padding: 8px 14px; }

  .hero { padding: 96px 20px 52px; }
  .hero h1 { font-size: 34px; line-height: 1.12; }
  .hero-sub { font-size: 15px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 40px; }
  .hero-actions .btn { width: 100%; justify-content: center; font-size: 15px; padding: 14px 20px; }
  .hero-trust { flex-wrap: wrap; justify-content: center; gap: 12px; }

  section { padding: 56px 20px; }
  .section-title { font-size: 26px; }

  .demo-body { grid-template-columns: 1fr; }
  .demo-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-grid { grid-template-columns: 1fr; gap: 1px; }
  .stat-item { padding: 24px 28px; }
  .stat-num { font-size: 38px; }
  .steps-grid { grid-template-columns: 1fr; gap: 12px; }
  .offers-grid { grid-template-columns: 1fr; gap: 16px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-actions a { width: 100%; justify-content: center; text-align: center; }
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 12px; }
}
