/* ============================================================
   Brizimmo — Landing page (style trendtrack.io)
   ============================================================ */

:root {
  --bg: #070a14;
  --bg-soft: #0d1220;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --accent: #dc2626;
  --accent-2: #f97316;
  --accent-gradient: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
  --accent-glow: rgba(220, 38, 38, 0.4);
  --green: #10b981;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
}

* { margin:0; padding:0; box-sizing:border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.accent-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

/* ===== AMBIANCE ===== */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #dc2626 0%, transparent 70%);
  top: -250px; left: -200px;
  animation: orb-1 24s ease-in-out infinite;
}
.orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #f97316 0%, transparent 70%);
  top: 30%; right: -200px;
  opacity: 0.3;
  animation: orb-2 30s ease-in-out infinite;
}
@keyframes orb-1 {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(80px, 60px); }
}
@keyframes orb-2 {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(-80px, -50px); }
}
.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.6) 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.6) 0%, transparent 80%);
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 10, 20, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
}
.brand-logo {
  width: 38px; height: 38px;
  display: inline-block;
  background-image: url('/assets/logo.png?v=3');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 0;
  color: transparent;
  flex-shrink: 0;
}
.brand-name { letter-spacing: -.01em; }
.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s, background .2s;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--surface);
}
.nav-cta { display: flex; gap: 8px; align-items: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .25s cubic-bezier(.16,1,.3,1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 8px 24px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,.2);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px var(--accent-glow); }
.btn-ghost {
  background: var(--surface);
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover { background: var(--surface-strong); border-color: rgba(255,255,255,.2); }
.btn-block { width: 100%; }
.btn-xl {
  padding: 16px 28px;
  font-size: 16px;
  border-radius: 12px;
}
.btn:active { transform: scale(.98); }

/* ===== HERO ===== */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50%     { box-shadow: 0 0 0 8px transparent; }
}

.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-title .accent-gradient { -webkit-text-fill-color: transparent; }
.hero-title .serif {
  background: linear-gradient(180deg, #f8fafc 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-item i { color: var(--green); font-size: 14px; }

/* Mockup produit */
.hero-mockup {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  perspective: 1500px;
}
.mockup-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at center, var(--accent-glow), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}
.mockup-frame {
  position: relative;
  background: linear-gradient(180deg, #0f1419, #0a0d14);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,255,255,.06),
    inset 0 1px 0 rgba(255,255,255,.08);
  transform: rotateX(2deg);
  transform-origin: center top;
}
.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(0,0,0,.3);
  border-bottom: 1px solid var(--border);
}
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
}
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }
.mockup-url {
  margin-left: 16px;
  font-size: 12px;
  color: var(--text-dim);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  background: var(--surface);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.mockup-body {
  padding: 24px;
  text-align: left;
}
.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.m-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.m-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
}
.m-stat-val {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.m-stat-val.tension {
  background: linear-gradient(135deg, #dc2626, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.m-stat-meta { font-size: 11px; color: var(--text-dim); }
.m-stat-meta i { color: var(--green); }

.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.m-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.m-card-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.m-card-head i { color: var(--accent); }
.m-pill {
  margin-left: auto;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 100px;
  text-transform: none;
  letter-spacing: 0;
}
.m-pill-green {
  background: rgba(16,185,129,.15);
  color: var(--green);
  border: 1px solid rgba(16,185,129,.3);
}
.m-chart { width: 100%; height: auto; }
.m-script {
  font-size: 12px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* ===== STATS BAR ===== */
.stats-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(0,0,0,.2), transparent);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -.04em;
  background: linear-gradient(180deg, #fff, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
  position: relative;
}
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.3), transparent);
}
.section-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title .accent-gradient { -webkit-text-fill-color: transparent; }
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .35s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--c, var(--accent)), transparent 60%);
  opacity: 0;
  transition: opacity .35s;
}
.feature:hover {
  border-color: var(--c, var(--accent));
  transform: translateY(-4px);
}
.feature:hover::before { opacity: 0.08; }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--c, var(--accent)) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--c, var(--accent)) 30%, transparent);
  color: var(--c, var(--accent));
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 18px;
  position: relative;
}
.feature h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.01em;
  position: relative;
}
.feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
}

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.step-num {
  font-size: 56px;
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-arrow {
  display: grid;
  place-items: center;
  color: var(--text-dim);
  font-size: 24px;
}

/* ===== RESEAUX ===== */
.reseaux {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.reseau {
  padding: 12px 24px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  transition: all .25s;
}
.reseau:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ===== PRICING ===== */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
/* 3 tiers : Découverte / Pro / Illimité */
.pricing.pricing-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all .35s cubic-bezier(.16,1,.3,1);
}
.price-card-pro {
  background: linear-gradient(180deg, rgba(220,38,38,.08), rgba(249,115,22,.04));
  border-color: rgba(220,38,38,.3);
  box-shadow: 0 0 0 1px rgba(220,38,38,.15), 0 24px 64px rgba(220,38,38,.15);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: 0 4px 12px var(--accent-glow);
}
.price-head { margin-bottom: 20px; }
.price-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.price-head h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.amt-currency { font-size: 24px; font-weight: 600; color: var(--text-muted); }
.amt-num {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}
.amt-period { font-size: 15px; color: var(--text-muted); margin-left: 4px; }
.price-features {
  list-style: none;
  margin-bottom: 28px;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 8px 0;
  color: var(--text);
}
.price-features i {
  width: 18px; height: 18px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  flex-shrink: 0;
}
.price-features strong { color: var(--accent); }

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 100px 0;
}
.cta-box {
  background: linear-gradient(135deg, rgba(220,38,38,.1), rgba(249,115,22,.05));
  border: 1px solid rgba(220,38,38,.2);
  border-radius: 32px;
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(220,38,38,.3), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(249,115,22,.2), transparent 50%);
  pointer-events: none;
}
.cta-box h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #fff, #cbd5e1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.cta-box p {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 32px;
  position: relative;
}
.cta-box .btn { position: relative; }
.cta-mini {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-dim);
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 24px;
  background: rgba(0,0,0,.3);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 12px;
  max-width: 280px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: var(--text-muted);
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-dim);
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1100px) {
  /* 3 tiers passent en 1 colonne dès tablet pour ne pas écraser les cards */
  .pricing.pricing-3 { grid-template-columns: 1fr; max-width: 480px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .mockup-stats { grid-template-columns: 1fr; }
  .mockup-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

/* ===== RESPONSIVE — MOBILE complet ===== */
@media (max-width: 640px) {
  /* Réduit drastiquement les orbes sur mobile : ne dépassent plus de l'écran */
  .ambient { overflow: hidden; }
  .orb-1 {
    width: 380px; height: 380px;
    top: -150px; left: -150px;
    opacity: .35;
  }
  .orb-2 {
    width: 320px; height: 320px;
    top: auto; bottom: -120px; right: -120px;
    opacity: .28;
  }

  .container { padding: 0 16px; }

  /* NAV : compacte, juste brand + Inscription */
  .nav-inner { padding: 12px 16px; }
  .nav-cta .btn-ghost { display: none; }
  .nav-cta .btn { padding: 8px 14px; font-size: 13px; }
  .brand-name { font-size: 16px; }

  /* HERO */
  .hero { padding: 40px 0 32px; }
  .hero-badge { font-size: 11px; padding: 5px 12px; margin-bottom: 24px; }
  .hero-title { line-height: 1.08; margin-bottom: 18px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; line-height: 1.55; }
  .hero-cta { flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .hero-cta .btn { width: 100%; padding: 14px 20px; font-size: 15px; }
  .btn-xl { padding: 14px 20px; font-size: 15px; }
  .hero-trust {
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 36px;
    padding: 16px 18px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
  }
  .trust-item { font-size: 13px; }

  /* MOCKUP */
  .hero-mockup { margin: 0 -4px; }
  .mockup-frame { border-radius: 12px; }
  .mockup-topbar { padding: 10px 12px; }
  .mockup-url { display: none; }
  .mockup-body { padding: 16px; }
  .mockup-stats { gap: 10px; }
  .m-stat { padding: 14px; }
  .m-stat-val { font-size: 22px; }
  .m-card { padding: 12px; }
  .m-script { font-size: 11.5px; line-height: 1.55; }

  /* STATS BAR */
  .stats-bar { padding: 32px 0; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 12px; }

  /* SECTIONS */
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 40px; }
  .section-tag { font-size: 11px; padding: 4px 12px; margin-bottom: 16px; }
  .section-title { font-size: 28px; line-height: 1.15; }
  .section-sub { font-size: 15px; }

  /* FEATURES */
  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature { padding: 22px; border-radius: 18px; }
  .feature-icon { width: 44px; height: 44px; font-size: 18px; margin-bottom: 14px; }
  .feature h3 { font-size: 17px; }
  .feature p { font-size: 14px; }

  /* STEPS */
  .step { padding: 24px; border-radius: 18px; }
  .step-num { font-size: 44px; margin-bottom: 12px; }
  .step h3 { font-size: 17px; }

  /* RESEAUX */
  .reseau { padding: 10px 18px; font-size: 14px; }

  /* PRICING */
  .pricing.pricing-3 { gap: 18px; max-width: 100%; }
  .price-card { padding: 28px 22px; border-radius: 18px; }
  .price-card-pro { transform: scale(1); } /* annule l'agrandissement */
  .price-head h3 { font-size: 20px; }
  .amt-num { font-size: 44px; }
  .price-features li { font-size: 13px; padding: 7px 0; }

  /* CTA FINAL */
  .cta-final { padding: 64px 0; }
  .cta-box { padding: 40px 20px; border-radius: 24px; }
  .cta-box h2 { font-size: 26px; line-height: 1.2; }
  .cta-box p { font-size: 15px; margin-bottom: 24px; }

  /* FOOTER */
  .footer { padding: 48px 0 20px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-col h4 { margin-bottom: 10px; }
  .footer-col a { font-size: 13px; padding: 4px 0; }
}

/* ===== Très petits écrans (iPhone SE et anciens Android) ===== */
@media (max-width: 380px) {
  .hero-title { font-size: 32px; }
  .stats-inner { grid-template-columns: 1fr; gap: 18px; }
  .section-title { font-size: 24px; }
  .amt-num { font-size: 40px; }
  .footer-links { grid-template-columns: 1fr; }
}

/* Évite zoom iOS sur les inputs */
input, select, textarea { font-size: 16px; }
