/* ============================================================
   AlsaTech.fr — Feuille de style principale v2
   Typographie : Plus Jakarta Sans (titres) + DM Sans (corps)
   Nouveautés v2 : motif héro géométrique SVG inline,
                   centrage texte héro, fond gris clair texturé
   ============================================================ */

/* ─── FONTS (copier dans <head> avant ce fichier) ────────────
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap" rel="stylesheet">
──────────────────────────────────────────────────────────── */

:root {
  --bg:        #ffffff;
  --bg2:       #f5f6f8;
  --bg3:       #eceef2;
  --accent:    #f05a1a;
  --accent2:   #ff8c42;
  --text:      #111827;
  --muted:     #6b7280;
  --border:    rgba(0,0,0,0.09);
  --font-h:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-b:    'DM Sans', system-ui, -apple-system, sans-serif;
  --radius:    12px;
  --max:       1080px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── NAV ──────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  height: 62px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-h);
  font-size: 1.15rem; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text); text-decoration: none;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: 0.88rem; font-weight: 500;
}
.nav-links a { color: var(--muted); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 8px 20px;
  background: var(--accent);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600; font-size: 0.85rem;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--accent2) !important; transform: translateY(-1px); }

@media (max-width: 680px) {
  nav { padding: 0 18px; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ─── WRAPPER ──────────────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ─── HERO ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 94vh;
  display: flex; align-items: center;
  padding: 80px 0 60px;
  overflow: hidden;
  /* Fond gris clair avec motif géométrique SVG inline */
  background-color: #f5f6f8;
  background-image:
    /* Grille de points */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='20' cy='20' r='1.2' fill='%23c4c7d0'/%3E%3C/svg%3E"),
    /* Trame hexagonale */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='80'%3E%3Cpolygon points='35,3 62,19 62,51 35,67 8,51 8,19' fill='none' stroke='%23dde0e8' stroke-width='0.8'/%3E%3Cpolygon points='0,43 8,19 8,51' fill='none' stroke='%23dde0e8' stroke-width='0.8'/%3E%3Cpolygon points='70,43 62,19 62,51' fill='none' stroke='%23dde0e8' stroke-width='0.8'/%3E%3C/svg%3E"),
    /* Dégradé fond clair chaud légèrement orangé côté gauche */
    linear-gradient(160deg, #fdf8f6 0%, #f5f6f8 50%, #f0f1f5 100%);
  background-repeat: repeat, repeat, no-repeat;
  background-size: 40px 40px, 70px 80px, cover;
}

/* Halo orange droit — réseau de nœuds (SVG positionné absolument) */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    /* Vignette de fondu sur les bords pour fondre le motif */
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(245,246,248,0.92) 0%, transparent 100%),
    radial-gradient(ellipse 40% 60% at 100% 0%,   rgba(240,90,26,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 0%   100%, rgba(56,165,248,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Réseau de nœuds SVG — affiché côté droit, superposé au motif */
#hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 55%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 700' preserveAspectRatio='xMidYMid slice'%3E%3Cg stroke='%23c8cad0' stroke-width='0.7' fill='none'%3E%3Cline x1='280' y1='80' x2='380' y2='150'/%3E%3Cline x1='380' y1='150' x2='460' y2='110'/%3E%3Cline x1='380' y1='150' x2='420' y2='250'/%3E%3Cline x1='420' y1='250' x2='510' y2='290'/%3E%3Cline x1='420' y1='250' x2='350' y2='340'/%3E%3Cline x1='350' y1='340' x2='460' y2='410'/%3E%3Cline x1='280' y1='80' x2='200' y2='160'/%3E%3Cline x1='200' y1='160' x2='260' y2='260'/%3E%3Cline x1='260' y1='260' x2='350' y2='340'/%3E%3Cline x1='460' y1='410' x2='500' y2='490'/%3E%3Cline x1='460' y1='410' x2='390' y2='500'/%3E%3Cline x1='390' y1='500' x2='430' y2='600'/%3E%3Cline x1='500' y1='490' x2='540' y2='570'/%3E%3C/g%3E%3Cg fill='%23bfc3cc'%3E%3Ccircle cx='280' cy='80' r='3.5'/%3E%3Ccircle cx='380' cy='150' r='4.5'/%3E%3Ccircle cx='460' cy='110' r='2.8'/%3E%3Ccircle cx='420' cy='250' r='4.5'/%3E%3Ccircle cx='510' cy='290' r='2.8'/%3E%3Ccircle cx='350' cy='340' r='5.5'/%3E%3Ccircle cx='460' cy='410' r='3.5'/%3E%3Ccircle cx='200' cy='160' r='2.8'/%3E%3Ccircle cx='260' cy='260' r='2.8'/%3E%3Ccircle cx='500' cy='490' r='2.8'/%3E%3Ccircle cx='390' cy='500' r='2.8'/%3E%3Ccircle cx='430' cy='600' r='2.5'/%3E%3Ccircle cx='540' cy='570' r='2.5'/%3E%3C/g%3E%3Ccircle cx='350' cy='340' r='9' fill='none' stroke='%23f05a1a' stroke-width='1.2' opacity='0.45'/%3E%3Ccircle cx='380' cy='150' r='7' fill='none' stroke='%23f05a1a' stroke-width='1' opacity='0.3'/%3E%3Cpolygon points='435,195 458,209 458,237 435,251 412,237 412,209' fill='none' stroke='%23c4c7d0' stroke-width='0.9' opacity='0.55'/%3E%3Cpolygon points='370,440 388,451 388,473 370,484 352,473 352,451' fill='none' stroke='%23c4c7d0' stroke-width='0.9' opacity='0.5'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

/* Fondu droit pour que le réseau disparaisse vers le bord */
.hero-network-fade {
  position: absolute;
  right: 0; top: 0;
  width: 55%; height: 100%;
  background: linear-gradient(to right, #f5f6f8 0%, transparent 25%, transparent 75%, #f5f6f8 100%);
  pointer-events: none;
  z-index: 1;
}

#hero .wrap { position: relative; z-index: 2; }

/* Hero : texte centré (correction annotation rouge) */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 52px;
  align-items: center;
  width: 100%;
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-col { order: -1; }
}

.hero-text-col { text-align: left; }

/* Sur mobile le texte se centre */
@media (max-width: 860px) {
  .hero-text-col { text-align: center; }
  .hero-pills { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(240,90,26,.35);
  background: rgba(240,90,26,.07);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 22px;
  animation: fadeUp .6s ease both;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,.8);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero-h1 {
  font-family: var(--font-h);
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  animation: fadeUp .7s .1s ease both;
}
.hero-h1 em { font-style: normal; color: var(--accent); }
.hero-h1 .underline-wrap { position: relative; display: inline-block; }
.hero-h1 .underline-wrap::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.05rem; color: var(--muted); max-width: 540px;
  margin-bottom: 28px; line-height: 1.7;
  animation: fadeUp .7s .2s ease both;
}

.hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 30px;
  animation: fadeUp .7s .3s ease both;
}
.pill {
  padding: 5px 13px; border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.8rem; color: var(--muted);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
}
.pill strong { color: var(--text); }

.hero-social-proof {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.85rem; color: var(--muted);
  animation: fadeUp .7s .4s ease both;
}
.avatars { display: flex; }
.avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #f5f6f8;
  background: linear-gradient(135deg, var(--bg3), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
  margin-left: -8px; color: #fff;
}
.avatars span:first-child { margin-left: 0; }

/* ─── FORM CARD ─────────────────────────────────────────────── */
.form-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.11);
  border-radius: 20px;
  padding: 28px 24px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06);
  animation: fadeUp .7s .2s ease both;
  position: relative; z-index: 3;
}

.form-card-badge {
  display: inline-block;
  padding: 3px 10px; border-radius: 999px;
  background: rgba(240,90,26,.12);
  border: 1px solid rgba(240,90,26,.25);
  font-size: 0.75rem; color: var(--accent2); font-weight: 600;
  margin-bottom: 14px;
}

.form-card h3 {
  font-family: var(--font-h);
  font-size: 1.15rem; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 6px;
}

.form-card p {
  font-size: 0.88rem; color: var(--muted);
  margin-bottom: 18px;
}

.form-field {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 12px;
}

.form-field input {
  padding: 12px 16px; border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg2); color: var(--text);
  font-family: var(--font-b); font-size: 0.95rem;
  outline: none; transition: border-color .2s;
}
.form-field input::placeholder { color: #9ca3af; }
.form-field input:focus { border-color: rgba(240,90,26,.5); }

.btn-primary {
  width: 100%; padding: 13px;
  border: none; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-family: var(--font-b);
  font-size: 0.98rem; font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(240,90,26,.4);
  transition: transform .2s, box-shadow .2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(240,90,26,.5); }

.form-bonus {
  margin-top: 12px; padding: 10px 12px; border-radius: 8px;
  background: rgba(34,197,94,.06);
  border: 1px solid rgba(34,197,94,.2);
  font-size: 0.8rem; color: #166534;
  display: flex; gap: 8px; align-items: flex-start;
}

.form-trust {
  margin-top: 10px; font-size: 0.77rem;
  color: var(--muted); text-align: center;
}

/* ─── KPI BAR ───────────────────────────────────────────────── */
.kpi-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 52px;
  position: relative; z-index: 2;
}
@media (max-width: 680px) { .kpi-bar { grid-template-columns: repeat(2, 1fr); } }

.kpi-cell {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  padding: 20px 16px; text-align: center;
}
.kpi-num {
  font-family: var(--font-h);
  font-size: 1.9rem; font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent); margin-bottom: 4px;
}
.kpi-label { font-size: 0.82rem; color: var(--muted); }

/* ─── TICKER ────────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden; white-space: nowrap;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.ticker {
  display: inline-flex; gap: 60px;
  animation: scroll 30s linear infinite;
}
@keyframes scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item {
  font-size: 0.82rem; color: var(--muted);
  display: flex; align-items: center; gap: 10px;
}
.ticker-item span { color: var(--accent); font-weight: 700; }

/* ─── SECTIONS COMMUNES ─────────────────────────────────────── */
.section-label {
  font-family: var(--font-h);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}

.section-h2 {
  font-family: var(--font-h);
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.025em; margin-bottom: 14px;
}
.section-h2 em { font-style: normal; color: var(--accent); }

.section-intro {
  font-size: 1.02rem; color: var(--muted);
  max-width: 560px; margin-bottom: 40px;
  line-height: 1.7;
}

section { padding: 90px 0; position: relative; }
section + section { border-top: 1px solid var(--border); }

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

/* ─── PROBLÈME ──────────────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; margin-top: 36px;
}
@media (max-width: 680px) { .pain-grid { grid-template-columns: 1fr; } }

.pain-item {
  background: var(--bg2); padding: 28px 24px;
  transition: background .2s;
}
.pain-item:hover { background: var(--bg3); }
.pain-icon { font-size: 1.6rem; margin-bottom: 12px; }
.pain-item h3 {
  font-family: var(--font-h);
  font-size: 0.98rem; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 8px;
}
.pain-item p { font-size: 0.88rem; color: var(--muted); }

/* ─── SOLUTION ──────────────────────────────────────────────── */
.content-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px; margin-top: 36px;
}
@media (max-width: 720px) { .content-showcase { grid-template-columns: 1fr; } }

.content-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: border-color .2s, transform .2s;
}
.content-card:hover { border-color: rgba(240,90,26,.3); transform: translateY(-3px); }

.content-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(240,90,26,.12);
  border: 1px solid rgba(240,90,26,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 14px;
}
.content-card h3 {
  font-family: var(--font-h);
  font-size: 1rem; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 8px;
}
.content-card p { font-size: 0.88rem; color: var(--muted); }

/* ─── APERÇU ÉDITION ────────────────────────────────────────── */
.preview-card {
  background: linear-gradient(160deg, rgba(240,90,26,.06), rgba(56,165,248,.04)), var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; margin-top: 36px;
}
.preview-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.preview-date { font-size: 0.8rem; color: var(--muted); }
.preview-chip {
  padding: 3px 10px; border-radius: 999px;
  background: rgba(240,90,26,.12);
  border: 1px solid rgba(240,90,26,.2);
  font-size: 0.75rem; color: var(--accent2);
}
.preview-items { display: flex; flex-direction: column; gap: 14px; }
.preview-item { display: flex; gap: 14px; align-items: flex-start; }
.preview-cat {
  flex-shrink: 0; width: 80px; padding: 3px 0;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--muted); text-align: right;
}
.preview-cat.hl { color: var(--accent2); }
.preview-line { flex: 1; border-top: 1px solid var(--border); padding-top: 3px; }
.preview-line strong { font-size: 0.92rem; }
.preview-line p { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

/* ─── OFFRES ────────────────────────────────────────────────── */
#offres { background: var(--bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 42px;
}
@media (max-width: 840px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; } }

.pricing-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px;
  display: flex; flex-direction: column;
  transition: transform .2s, border-color .2s;
}
.pricing-card:hover { transform: translateY(-4px); border-color: rgba(240,90,26,.2); }

.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(240,90,26,.08) 0%, var(--bg2) 60%);
  position: relative;
}
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 4px 14px; border-radius: 999px;
  background: var(--accent); color: #fff;
  font-size: 0.75rem; font-weight: 700; letter-spacing: .03em;
  white-space: nowrap;
}
.pricing-name {
  font-family: var(--font-h);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-h);
  font-size: 2.6rem; font-weight: 800;
  line-height: 1; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 4px;
}
.pricing-price span { font-size: 1rem; color: var(--muted); font-weight: 400; letter-spacing: 0; }
.pricing-tagline {
  font-size: 0.88rem; color: var(--muted);
  margin-bottom: 22px; padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.pricing-features { list-style: none; flex: 1; margin-bottom: 22px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.88rem; padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-features li .chk { color: #16a34a; flex-shrink: 0; margin-top: 2px; }

.btn-outline {
  display: block; width: 100%; padding: 12px;
  border: 1px solid var(--border); border-radius: 10px;
  background: transparent; color: var(--text);
  font-family: var(--font-b); font-size: 0.9rem; font-weight: 600;
  text-align: center; text-decoration: none; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--accent); background: rgba(240,90,26,.05); }

.btn-primary-sm {
  display: block; width: 100%; padding: 12px;
  border: none; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-family: var(--font-b);
  font-size: 0.9rem; font-weight: 600;
  text-align: center; text-decoration: none; cursor: pointer;
  box-shadow: 0 8px 24px rgba(240,90,26,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary-sm:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(240,90,26,.45); }

/* ─── TÉMOIGNAGES ───────────────────────────────────────────── */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 36px;
}
@media (max-width: 720px) { .quotes-grid { grid-template-columns: 1fr; } }

.quote-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; position: relative;
}
.quote-card::before {
  content: '\201C';
  position: absolute; top: 10px; left: 14px;
  font-family: Georgia, serif;
  font-size: 3rem; line-height: 1;
  color: rgba(240,90,26,.25);
}
.quote-text {
  font-size: 0.9rem; color: var(--muted);
  margin-bottom: 14px; padding-top: 20px; line-height: 1.6;
}
.quote-author { font-size: 0.8rem; color: var(--text); font-weight: 600; }
.quote-author span { display: block; font-weight: 400; color: var(--muted); margin-top: 2px; }

/* ─── SUJETS ────────────────────────────────────────────────── */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 36px;
}
@media (max-width: 720px) { .topics-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .topics-grid { grid-template-columns: 1fr; } }

.topic-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px;
  transition: border-color .2s; cursor: default;
}
.topic-card:hover { border-color: rgba(240,90,26,.3); }
.topic-card .t-icon { font-size: 1.4rem; margin-bottom: 8px; }
.topic-card h4 {
  font-family: var(--font-h);
  font-size: 0.86rem; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 4px;
}
.topic-card p { font-size: 0.8rem; color: var(--muted); }

/* ─── ROADMAP ───────────────────────────────────────────────── */
.roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; margin-top: 36px;
}
@media (max-width: 720px) { .roadmap { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .roadmap { grid-template-columns: 1fr; } }

.roadmap-step { background: var(--bg2); padding: 22px 18px; }
.roadmap-num {
  font-family: var(--font-h);
  font-size: 1.8rem; font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(240,90,26,.25); margin-bottom: 8px;
}
.roadmap-step h3 {
  font-family: var(--font-h);
  font-size: 0.92rem; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 6px;
}
.roadmap-step p { font-size: 0.82rem; color: var(--muted); }

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-list { margin-top: 36px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none;
  color: var(--text); font-family: var(--font-b);
  font-size: 0.98rem; font-weight: 600;
  padding: 18px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left;
}
.faq-q .ico {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--muted);
  transition: transform .3s;
}
.faq-item.open .faq-q .ico { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  font-size: 0.9rem; color: var(--muted);
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .2s;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 16px; }

/* ─── CTA FINAL ─────────────────────────────────────────────── */
#cta-final {
  text-align: center; padding: 110px 0 90px;
}
.cta-final-glow {
  position: absolute;
  width: 600px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,90,26,.15) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
#cta-final h2 {
  font-family: var(--font-h);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.15; margin-bottom: 16px;
}
#cta-final h2 em { font-style: normal; color: var(--accent); }
#cta-final > .wrap > p { font-size: 1.02rem; color: var(--muted); margin-bottom: 32px; }

.cta-form-inline {
  display: flex; gap: 10px;
  max-width: 460px; margin: 0 auto 14px;
}
@media (max-width: 520px) { .cta-form-inline { flex-direction: column; } }

.cta-form-inline input {
  flex: 1; padding: 13px 18px; border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg2); color: var(--text);
  font-family: var(--font-b); font-size: 0.95rem;
  outline: none; transition: border-color .2s;
}
.cta-form-inline input:focus { border-color: rgba(240,90,26,.4); }
.cta-form-inline input::placeholder { color: #9ca3af; }

.cta-form-inline button {
  padding: 13px 24px; border: none; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-family: var(--font-b);
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  box-shadow: 0 8px 24px rgba(240,90,26,.35);
  transition: transform .2s;
}
.cta-form-inline button:hover { transform: translateY(-2px); }

.cta-trust {
  font-size: 0.8rem; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap;
}
.cta-trust span::before { content: '✓ '; color: #16a34a; }

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
  padding: 56px 0 28px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 48px; margin-bottom: 40px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
  font-family: var(--font-h);
  font-size: 1.1rem; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text); text-decoration: none;
  display: block; margin-bottom: 10px;
}
.footer-logo span { color: var(--accent); }

.footer-tagline {
  font-size: 0.85rem; color: var(--muted);
  line-height: 1.6; margin-bottom: 18px;
}
.footer-col-title {
  font-family: var(--font-h);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}

.footer-faq-item { border-bottom: 1px solid var(--border); }
.footer-faq-q {
  width: 100%; background: none; border: none;
  color: var(--text); font-family: var(--font-b);
  font-size: 0.88rem; font-weight: 600;
  padding: 12px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left; gap: 10px;
}
.footer-faq-q .ico {
  flex-shrink: 0; color: var(--muted); font-size: 1rem;
  transition: transform .3s;
}
.footer-faq-item.open .footer-faq-q .ico { transform: rotate(45deg); color: var(--accent); }
.footer-faq-a {
  font-size: 0.82rem; color: var(--muted);
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .2s;
  line-height: 1.6;
}
.footer-faq-item.open .footer-faq-a { max-height: 160px; padding-bottom: 12px; }

.footer-legal-links {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-legal-links a {
  font-size: 0.88rem; color: var(--muted);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: color .2s;
}
.footer-legal-links a:hover { color: var(--text); }
.footer-legal-links a::before { content: '→'; font-size: 0.75rem; color: var(--accent); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  padding-top: 22px; border-top: 1px solid var(--border);
}
.footer-copy { font-size: 0.78rem; color: var(--muted); }
