/* ============================================================
   CLEANY CLIM — Design System v2
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #07090f;
  --bg2:       #0b0f1e;
  --bg3:       #0d1427;
  --card:      rgba(255,255,255,0.03);
  --card-h:    rgba(255,255,255,0.055);
  --border:    rgba(255,255,255,0.07);
  --border-b:  rgba(48,100,249,0.28);

  --blue:      #3064f9;
  --blue-h:    #4a78ff;
  --blue-glow: rgba(48,100,249,0.22);
  --blue-lt:   #60a5fa;
  --green:     #00cf8d;
  --gold:      #fbbf24;

  --text:      #e8edf5;
  --muted:     #7a8aa0;
  --dim:       #3f4f65;

  --r:   16px;
  --r-s: 10px;
  --r-x: 7px;
  --tr:  180ms ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ── Utilities ────────────────────────────────────────────── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
img { display: block; max-width: 100%; }
a { color: inherit; }

.section { padding: 100px 0; }
.section-alt { background: var(--bg2); }

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-lt);
  background: rgba(48,100,249,.1);
  border: 1px solid rgba(48,100,249,.22);
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.sec-title {
  font-size: clamp(1.9rem, 4.5vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.12;
  margin-bottom: 14px;
}

.sec-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
}

.center { text-align: center; }
.center .sec-sub { margin: 0 auto 48px; }
.sec-cta { text-align: center; margin-top: 48px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--r-s);
  font-size: .95rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--tr);
  white-space: nowrap;
  line-height: 1;
}
.btn-lg   { padding: 15px 30px; font-size: 1rem; border-radius: 12px; }
.btn-sm   { padding: 9px 18px; font-size: .85rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 18px rgba(48,100,249,.38);
}
.btn-primary:hover {
  background: var(--blue-h);
  box-shadow: 0 4px 28px rgba(48,100,249,.55);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
  transform: translateY(-1px);
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition: background var(--tr), border-color var(--tr), transform var(--tr);
}
.card:hover {
  background: var(--card-h);
  border-color: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

/* ── Scroll reveal ────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}
[data-reveal].revealed { opacity: 1; transform: none; }

/* ── Logo ─────────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}
.logo img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(255,255,255,.1);
}

/* ============================================================
   HEADER
   ============================================================ */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 300ms, border-color 300ms, padding 300ms;
}
.hdr.scrolled {
  background: rgba(7,9,15,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.hdr-inner { display: flex; align-items: center; gap: 32px; }

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.hdr-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  transition: color var(--tr);
}
.hdr-nav a:hover { color: var(--text); }
.hdr-cta { margin-left: 8px; }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 200ms ease;
}
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

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

.hero-glow-1 {
  position: absolute;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(48,100,249,.14) 0%, transparent 68%);
  top: -140px; right: -60px;
  filter: blur(40px);
}
.hero-glow-2 {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,.08) 0%, transparent 68%);
  bottom: -60px; left: 5%;
  filter: blur(40px);
}
.hero-gridlines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 40px 0 80px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--blue-lt);
  background: rgba(48,100,249,.1);
  border: 1px solid rgba(48,100,249,.24);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  animation: blink 2.2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }

.hero-copy h1 {
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero-accent {
  background: linear-gradient(135deg, #3064f9 0%, #00b4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.68;
  max-width: 480px;
  margin-bottom: 18px;
}

.hero-price { font-size: 1rem; color: var(--muted); margin-bottom: 6px; }
.hero-price strong {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -.025em;
  color: var(--text);
}

.hero-reassure { font-size: .82rem; color: var(--dim); margin-bottom: 28px; }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; }
.trust-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--muted);
}
.trust-chip svg { color: var(--green); flex-shrink: 0; }

/* ── Hero visual card ─────────────────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hv-card {
  width: 100%;
  max-width: 400px;
  background: rgba(11,18,36,.9);
  border: 1px solid rgba(48,100,249,.22);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,255,255,.04),
    0 0 60px rgba(48,100,249,.08);
  backdrop-filter: blur(10px);
}

.hv-titlebar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.hv-dots { display: flex; gap: 5px; }
.hv-dot { width: 10px; height: 10px; border-radius: 50%; }
.hv-dot-r { background: #ff5f57; }
.hv-dot-a { background: #febc2e; }
.hv-dot-g { background: #28c840; }

.hv-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: rgba(255,255,255,.22);
  margin-left: 5px;
  flex: 1;
}

.hv-statuspill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,207,141,.1);
  border: 1px solid rgba(0,207,141,.3);
  color: var(--green);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
}
.hv-sdot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s infinite;
}

.hv-ac-wrap { padding: 20px 20px 10px; }
.hv-ac-wrap svg { width: 100%; height: auto; display: block; }

@keyframes airflow {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -24; }
}
.af  { animation: airflow 1.8s linear infinite; }
.af2 { animation: airflow 2.2s linear infinite; }
.af3 { animation: airflow 1.5s linear infinite; }

.hv-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.05);
}
.hv-chk {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: .77rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.hv-chk:nth-child(2n) { border-right: none; }
.hv-chk:nth-child(3),
.hv-chk:nth-child(4)  { border-bottom: none; }

.ok {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(0,207,141,.14);
  border: 1px solid rgba(0,207,141,.32);
  flex-shrink: 0;
}
.ok::after {
  content: '';
  width: 7px; height: 4.5px;
  border-left: 1.8px solid var(--green);
  border-bottom: 1.8px solid var(--green);
  transform: rotate(-45deg) translateY(-1px);
}

.hv-float {
  position: absolute;
  background: rgba(9,13,26,.97);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
}

.hv-badge-stars {
  top: -18px;
  right: -20px;
  animation: floatA 4s ease-in-out infinite;
}
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

.hv-badge-speed {
  bottom: 24px;
  left: -24px;
  display: flex;
  align-items: center;
  gap: 9px;
  animation: floatB 4s ease-in-out infinite;
}
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }

.fl-stars { color: var(--gold); font-size: .72rem; margin-bottom: 2px; }
.fl-text  { font-size: .7rem; color: var(--muted); white-space: nowrap; }
.fl-icon  { font-size: 1.3rem; line-height: 1; }
.fl-info b     { display: block; font-size: .78rem; font-weight: 700; }
.fl-info span  { display: block; font-size: .68rem; color: var(--muted); white-space: nowrap; }

/* ============================================================
   SECTION 2 — PROBLÈMES
   ============================================================ */
.prob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.prob-card { text-align: center; }
.prob-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(48,100,249,.1);
  border: 1px solid rgba(48,100,249,.2);
  margin: 0 auto 18px;
  color: var(--blue-lt);
}
.prob-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.prob-card p  { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   SECTION 3 — INCLUS
   ============================================================ */
.inclus-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.inclus-copy .sec-title { text-align: left; }
.inclus-copy .sec-sub   { text-align: left; margin-bottom: 32px; }

.checklist { display: flex; flex-direction: column; }
.cl-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  font-size: .93rem;
  font-weight: 500;
}
.cl-item:last-child { border-bottom: none; }
.cl-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(0,207,141,.12);
  border: 1px solid rgba(0,207,141,.32);
  flex-shrink: 0;
}
.cl-check::after {
  content: '';
  width: 9px; height: 5.5px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg) translateY(-1px);
}

/* ============================================================
   SECTION 4 — POUR QUI
   ============================================================ */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.who-card { text-align: center; padding: 32px 20px; }
.who-emoji { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.who-card h3 { font-size: .92rem; font-weight: 600; line-height: 1.4; }

/* ============================================================
   SECTION 5 — TARIFS
   ============================================================ */
.tarif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}
.tarif-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.tarif-featured {
  border-color: var(--border-b);
  background: rgba(48,100,249,.05);
  box-shadow: 0 0 0 1px rgba(48,100,249,.18), 0 8px 40px rgba(48,100,249,.12);
}
.tarif-pill {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  padding: 4px 15px;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
}
.tarif-card h3 { font-size: 1.05rem; font-weight: 700; margin-top: 6px; }
.tarif-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 2px 0;
}
.tarif-price strong { font-size: 2.2rem; font-weight: 900; letter-spacing: -.02em; }
.tarif-price span   { font-size: .8rem; color: var(--muted); }
.tarif-card > p     { font-size: .86rem; color: var(--muted); line-height: 1.55; }

.tarif-list { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.tarif-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .85rem;
  color: var(--muted);
}
.tarif-list li::before {
  content: '';
  display: inline-flex;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: rgba(0,207,141,.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' fill='none'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%2300cf8d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  border: 1px solid rgba(0,207,141,.28);
  flex-shrink: 0;
}

/* ============================================================
   SECTION 6 — COMMENT ÇA MARCHE
   ============================================================ */
.steps-row {
  display: flex;
  align-items: flex-start;
  max-width: 860px;
  margin: 48px auto 0;
}
.step { flex: 1; text-align: center; padding: 0 28px; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(48,100,249,.1);
  border: 2px solid rgba(48,100,249,.3);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--blue-lt);
  margin-bottom: 20px;
}
.step h3 { font-size: .98rem; font-weight: 700; margin-bottom: 10px; }
.step p   { font-size: .86rem; color: var(--muted); line-height: 1.65; }
.step-arrow {
  font-size: 1.5rem;
  color: rgba(48,100,249,.35);
  margin-top: 13px;
  flex-shrink: 0;
  font-weight: 300;
}

/* ============================================================
   SECTION 7 — AVIS
   ============================================================ */
.avis-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.avis-head .sec-title { margin-bottom: 0; }

.g-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251,191,36,.08);
  border: 1px solid rgba(251,191,36,.22);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: .83rem;
  font-weight: 600;
}

.avis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.avis-card { display: flex; flex-direction: column; gap: 12px; }
.avis-stars { color: var(--gold); font-size: .88rem; letter-spacing: 1px; }
.avis-card p { font-size: .91rem; color: var(--text); line-height: 1.68; font-style: italic; flex: 1; }
.avis-author { display: flex; align-items: center; gap: 10px; }
.avis-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(48,100,249,.18);
  border: 1px solid rgba(48,100,249,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  color: var(--blue-lt);
  flex-shrink: 0;
}
.avis-author b    { display: block; font-size: .86rem; font-weight: 700; }
.avis-author span { display: block; font-size: .75rem; color: var(--muted); }

/* ============================================================
   SECTION 8 — CTA + FORMULAIRE
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #070b18 0%, #0c1428 55%, #07090f 100%);
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(48,100,249,.12) 0%, transparent 68%);
  top: -220px; left: -100px;
  pointer-events: none;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.cta-copy h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.18;
  margin-bottom: 14px;
}
.cta-copy > p { font-size: 1.05rem; color: var(--muted); line-height: 1.65; margin-bottom: 30px; }
.cta-actions  { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.cta-zone     { font-size: .8rem; color: var(--dim); }

.devis-box {
  background: rgba(11,16,32,.78);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
}
.devis-box h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.fg label {
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
}
.fg input,
.fg select,
.fg textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--r-x);
  padding: 11px 14px;
  color: var(--text);
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--tr), background var(--tr);
  width: 100%;
}
.fg input::placeholder,
.fg textarea::placeholder { color: var(--dim); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: rgba(48,100,249,.5);
  background: rgba(48,100,249,.04);
}
.fg select option { background: #0a0e1c; color: var(--text); }
.fg textarea { resize: vertical; }
.fg input[type="file"] { cursor: pointer; font-size: .83rem; }

.form-note { text-align: center; font-size: .75rem; color: var(--dim); margin-top: 12px; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  text-align: center;
  gap: 14px;
  padding: 32px;
}
.form-success.show { display: flex; }

.success-ring {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(0,207,141,.12);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--green);
  animation: pop .3s ease;
}
@keyframes pop { from{transform:scale(.6)} to{transform:scale(1)} }
.form-success h3 { font-size: 1.3rem; font-weight: 800; }
.form-success p  { font-size: .92rem; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #040508;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.ft-brand .logo { margin-bottom: 12px; }
.ft-brand p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 16px;
}
.ft-contacts { display: flex; flex-direction: column; gap: 6px; }
.ft-contacts a {
  color: var(--muted);
  text-decoration: none;
  font-size: .85rem;
  transition: color var(--tr);
}
.ft-contacts a:hover { color: var(--text); }

.ft-col { display: flex; flex-direction: column; gap: 10px; }
.ft-col h4 {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 4px;
}
.ft-col a, .ft-col span {
  color: rgba(255,255,255,.38);
  text-decoration: none;
  font-size: .85rem;
  transition: color var(--tr);
}
.ft-col a:hover { color: var(--text); }

.footer-bar { border-top: 1px solid var(--border); padding: 16px 0; }
.footer-bar .wrap { display: flex; justify-content: center; }
.footer-bar span  { font-size: .75rem; color: var(--dim); }

/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 12px 16px;
  gap: 10px;
  background: rgba(7,9,15,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  transition: transform 280ms ease;
}
.sticky-bar.hide { transform: translateY(100%); }

/* ============================================================
   RESPONSIVE — TABLET (≤ 980px)
   ============================================================ */
@media (max-width: 980px) {
  .section { padding: 80px 0; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    padding: 32px 0 72px;
  }
  .hero-copy  { order: 1; }
  .hero-visual { order: 2; }
  .hero-sub, .hero-trust { margin-left: auto; margin-right: auto; }
  .hero-ctas, .hero-trust { justify-content: center; }

  .hdr-nav {
    display: none;
    position: fixed;
    top: 56px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(7,9,15,.98);
    backdrop-filter: blur(14px);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
    z-index: 99;
  }
  .hdr-nav.open { display: flex; }
  .hdr-nav a { font-size: 1rem; padding: 8px 0; border-bottom: 1px solid var(--border); }
  .hdr-cta { display: none; }
  .menu-btn { display: flex; }

  .prob-grid     { grid-template-columns: 1fr 1fr; }
  .inclus-wrap   { grid-template-columns: 1fr; gap: 40px; }
  .inclus-copy .sec-title,
  .inclus-copy .sec-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .inclus-copy { text-align: center; }
  .who-grid  { grid-template-columns: repeat(2, 1fr); }
  .tarif-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .steps-row { flex-direction: column; align-items: center; gap: 24px; }
  .step-arrow { transform: rotate(90deg); }
  .avis-grid  { grid-template-columns: 1fr 1fr; }
  .cta-inner  { grid-template-columns: 1fr; gap: 40px; }
  .cta-copy   { text-align: center; }
  .cta-actions { align-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ft-brand    { grid-column: 1 / -1; }

  .hv-badge-stars { right: -6px; }
  .hv-badge-speed { left: -6px; }

  .sticky-bar { display: flex; }
  body { padding-bottom: 72px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .prob-grid   { grid-template-columns: 1fr; }
  .who-grid    { grid-template-columns: 1fr 1fr; }
  .tarif-grid  { grid-template-columns: 1fr; }
  .avis-grid   { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas   { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-inner  { gap: 36px; }
  .hv-badge-stars, .hv-badge-speed { display: none; }
  .devis-box   { padding: 24px 18px; }
  .avis-head   { flex-direction: column; gap: 12px; }
}

@media (max-height: 680px) and (max-width: 980px) {
  .hero { min-height: auto; padding: 100px 0 60px; }
}
