/* ══════════════════════════════════════════════
   STYLE.CSS — Allo Plombier Toulouse
   Landing Page — Conversion-oriented design
   ══════════════════════════════════════════════ */

/* ─── RESET & VARIABLES ─── */

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

:root {
  --blue-900: #0a1628;
  --blue-800: #0f2240;
  --blue-700: #153163;
  --blue-600: #1a3f7a;
  --blue-500: #2563eb;
  --blue-400: #4a8af5;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-glow: rgba(239, 68, 68, 0.25);
  --green-500: #22c55e;
  --green-100: #dcfce7;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.18);
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }


/* ═══════════════════════════════════════════
   STICKY PHONE BAR (Mobile)
   ═══════════════════════════════════════════ */

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--red-600), var(--orange-600));
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(239,68,68,.35);
  animation: pulse-bar 2s ease-in-out infinite;
}

@keyframes pulse-bar {
  0%, 100% { box-shadow: 0 -4px 20px rgba(239,68,68,.35); }
  50% { box-shadow: 0 -4px 30px rgba(239,68,68,.55); }
}

.sticky-bar a {
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .3px;
}

.sticky-bar .phone-icon {
  width: 22px;
  height: 22px;
  animation: ring 1.2s ease-in-out infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-12deg); }
  30% { transform: rotate(10deg); }
  40% { transform: rotate(-8deg); }
  50% { transform: rotate(0); }
}


/* ═══════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════ */

.top-bar {
  background: var(--blue-900);
  color: var(--blue-100);
  font-size: .82rem;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar svg { width: 14px; height: 14px; flex-shrink: 0; }
.top-bar .highlight { color: var(--orange-500); font-weight: 600; }


/* ═══════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════ */

header {
  background: var(--blue-800);
  padding: 14px 20px;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
}

.logo-text small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: .7rem;
  color: #93c5fd;
  letter-spacing: .5px;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--red-500), var(--orange-600));
  color: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  transition: transform .2s;
}

.header-phone:hover { transform: scale(1.04); }
.header-phone svg { width: 18px; height: 18px; }

@media (min-width: 768px) {
  .header-phone { display: flex; }
}


/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  background: linear-gradient(165deg, var(--blue-900) 0%, var(--blue-800) 40%, var(--blue-700) 100%);
  overflow: hidden;
  padding: 50px 20px 60px;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 80% 50%, rgba(37,99,235,.25), transparent),
    radial-gradient(ellipse 300px 300px at 20% 80%, rgba(249,115,22,.1), transparent);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 40px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.3);
  color: var(--green-500);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 12px;
  animation: fade-in .6s ease-out;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

/* Titre */
.hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 16px;
  animation: slide-up .7s ease-out;
}

.hero h1 span { color: var(--orange-500); }

.hero-sub {
  color: var(--blue-100);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 540px;
  margin-bottom: 28px;
  animation: slide-up .7s ease-out .1s both;
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Boutons */
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  animation: slide-up .7s ease-out .2s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  transition: all .25s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--red-500), var(--orange-600));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(239,68,68,.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(239,68,68,.45);
}

.btn-secondary {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.25);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-2px);
}

.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #20bd5a; transform: translateY(-2px); }

/* Trust Items */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  animation: slide-up .7s ease-out .3s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--white);
  backdrop-filter: blur(4px);
}

.trust-icon {
  width: 38px;
  height: 38px;
  background: rgba(37,99,235,.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg { width: 20px; height: 20px; }
.trust-item strong { font-size: .85rem; display: block; }
.trust-item small { font-size: .72rem; color: var(--blue-100); opacity: .8; }

/* Hero Image */
.hero-visual { display: none; position: relative; }

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  background: var(--blue-700);
}

.hero-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.hero-img-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(10,22,40,.85);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.hero-img-overlay .stars { color: #fbbf24; font-size: .9rem; }
.hero-img-overlay .rating-text { font-size: .82rem; }
.hero-img-overlay .rating-text strong { font-size: 1rem; }

/* Hero image loaded */

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.1fr 1fr; align-items: center; }
  .hero-visual { display: block; }
}

@media (min-width: 768px) {
  .hero-trust { grid-template-columns: repeat(4, 1fr); }
}


/* ═══════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════ */

section { padding: 70px 20px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-500);
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--blue-900);
  margin-bottom: 14px;
}

.section-desc {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 620px;
}

.container { max-width: 1200px; margin: 0 auto; }


/* ═══════════════════════════════════════════
   PROBLÈMES FRÉQUENTS
   ═══════════════════════════════════════════ */

.problems { background: var(--gray-50); }

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.problem-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all .3s;
  cursor: default;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-500);
}

.problem-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: var(--blue-50);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}

.problem-card:hover .problem-icon { background: var(--blue-100); }
.problem-icon svg { width: 28px; height: 28px; color: var(--blue-500); }

.problem-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--gray-800);
}


/* ═══════════════════════════════════════════
   SECTION URGENCE
   ═══════════════════════════════════════════ */

.urgence {
  background: linear-gradient(135deg, var(--blue-900) 0%, #1a1040 50%, var(--blue-800) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 70px 20px;
}

.urgence::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 300px at 30% 50%, rgba(239,68,68,.12), transparent),
    radial-gradient(circle 300px at 70% 50%, rgba(249,115,22,.1), transparent);
}

.urgence-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.urgence-pulse {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: rgba(239,68,68,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-ring 2s ease-in-out infinite;
  position: relative;
}

.urgence-pulse::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(239,68,68,.2);
  animation: pulse-ring 2s ease-in-out infinite .5s;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: .7; }
}

.urgence-pulse svg { width: 32px; height: 32px; color: var(--red-500); }

.urgence h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 12px;
}

.urgence h2 span { color: var(--orange-500); }

.urgence p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.urgence .btn-primary {
  font-size: 1.15rem;
  padding: 18px 36px;
}

.urgence-hours {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
}

.urgence-hours span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.urgence-hours svg { width: 14px; height: 14px; }


/* ═══════════════════════════════════════════
   POURQUOI NOUS CHOISIR
   ═══════════════════════════════════════════ */

.pourquoi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.pourquoi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--gray-200);
  transition: all .3s;
}

.pourquoi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pourquoi-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.pourquoi-card h3 { font-size: 1.05rem; color: var(--blue-900); margin-bottom: 8px; }
.pourquoi-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.55; }


/* ═══════════════════════════════════════════
   AVIS CLIENTS
   ═══════════════════════════════════════════ */

.avis { background: var(--gray-50); }

.avis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.avis-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  position: relative;
}

.avis-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 4rem;
  color: var(--blue-100);
  font-family: Georgia, serif;
  line-height: 1;
}

.avis-stars {
  color: #fbbf24;
  font-size: .95rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.avis-text {
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.avis-author { display: flex; align-items: center; gap: 12px; }

.avis-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
}

.avis-name { font-weight: 600; font-size: .9rem; color: var(--gray-800); }
.avis-meta { font-size: .78rem; color: var(--gray-500); }

.avis-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green-100);
  color: var(--green-500);
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  margin-top: 4px;
}

.avis-badge svg { width: 12px; height: 12px; }


/* ═══════════════════════════════════════════
   FORMULAIRE
   ═══════════════════════════════════════════ */

.form-section {
  background: linear-gradient(170deg, var(--blue-900), var(--blue-800));
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 500px 400px at 70% 30%, rgba(37,99,235,.15), transparent);
}

.form-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

.form-info { color: var(--white); }
.form-info h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 14px; }
.form-info h2 span { color: var(--orange-500); }

.form-info p {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  margin-bottom: 30px;
  max-width: 460px;
}

.form-benefits { display: flex; flex-direction: column; gap: 14px; }

.form-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.9);
  font-size: .95rem;
}

.form-benefit-icon {
  width: 36px;
  height: 36px;
  background: rgba(34,197,94,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-benefit-icon svg { width: 18px; height: 18px; color: var(--green-500); }

/* Form Card */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-xl);
}

.form-card h3 { font-size: 1.2rem; color: var(--blue-900); margin-bottom: 6px; }

.form-card .form-sub {
  font-size: .85rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 90px; }

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

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,99,235,.35);
}

.form-submit svg { width: 20px; height: 20px; }

.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: .78rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.form-note svg { width: 14px; height: 14px; color: var(--green-500); }

/* Alerts */
.form-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: .9rem;
}

.form-alert svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; }
.form-alert strong { display: block; margin-bottom: 2px; }
.form-alert p { margin: 0; font-size: .85rem; opacity: .85; }

.form-alert-success {
  background: var(--green-100);
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-alert-success svg { color: var(--green-500); }

.form-alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.form-alert-error svg { color: var(--red-500); }

@media (min-width: 900px) {
  .form-wrapper { grid-template-columns: 1fr 1fr; align-items: center; }
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

footer {
  background: var(--blue-900);
  color: rgba(255,255,255,.7);
  padding: 50px 20px 100px;
  font-size: .88rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 36px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-col p,
.footer-col li { line-height: 1.7; }

.footer-col ul { list-style: none; }
.footer-col a { transition: color .2s; }
.footer-col a:hover { color: var(--blue-400); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--blue-400);
}

.footer-bottom {
  max-width: 1200px;
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}


/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 767px) {
  .hero-trust { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .avis-grid { grid-template-columns: 1fr; }
  .top-bar { font-size: .75rem; gap: 12px; }
  section { padding: 50px 16px; }
}
