/* ═══════════════════════════════════════════════════════
   GLASSAUTO HYÈRES — Shared Stylesheet
   Brand officiel GlassAuto:
   Primary Teal  #009CB6 | Red CTA #E50047 | Dark #2F3237
   Font: Roboto Flex
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,300;8..144,400;8..144,500;8..144,600;8..144,700;8..144,800;8..144,900&display=swap');

/* ─── RESET + BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Roboto Flex', sans-serif;
  font-weight: 400;
  color: #2F3237;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── CSS VARIABLES — Charte officielle GlassAuto ─── */
:root {
  --teal:        #009CB6;
  --teal-h:      #00B3CF;
  --teal-light:  #E6F7FA;
  --teal-dark:   #007A8F;
  --red:         #E50047;
  --red-h:       #FF1A63;
  --dark:        #2F3237;
  --dark-2:      #1A1E22;
  --text:        #494949;
  --grey:        #6B7280;
  --grey-l:      #9CA3AF;
  --light:       #F6F6F6;
  --border:      #E5E7EB;
  --white:       #FFFFFF;
  --green:       #22C55E;
  --gold:        #F59E0B;

  /* Aliases used throughout (maps to teal brand) */
  --orange:      #009CB6;
  --orange-h:    #00B3CF;
  --orange-light:#E6F7FA;

  --font-h: 'Roboto Flex', sans-serif;
  --font-b: 'Roboto Flex', sans-serif;
  --font-d: 'Roboto Flex', sans-serif;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.14);
}

/* ─── CONTAINER ─── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.ga-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 3px solid var(--teal);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.ga-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
  padding: 0 24px;
}

/* Logo */
.ga-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.ga-logo__img {
  height: 38px;
  width: auto;
}

.ga-logo__sub {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 12px;
}

/* Fallback text logo if img fails */
.ga-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.ga-logo__brand {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
}

.ga-logo__brand span { color: var(--teal); }

/* ── Desktop Nav ─────────────────────────── */
.ga-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

/* Dropdown wrapper */
.ga-nav__dropdown {
  position: relative;
}

/* Trigger button */
.ga-nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  user-select: none;
}

.ga-nav__dropdown-trigger svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.ga-nav__dropdown:hover .ga-nav__dropdown-trigger {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.ga-nav__dropdown:hover .ga-nav__dropdown-trigger svg {
  transform: rotate(180deg);
}

.ga-nav__dropdown-trigger.active {
  background: var(--teal);
  color: #fff;
}

/* Dropdown panel */
.ga-nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #23272b;
  border: 1px solid rgba(0,156,182,0.35);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 210px;
  z-index: 300;
  flex-direction: column;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.ga-nav__dropdown:hover .ga-nav__dropdown-menu {
  display: flex;
}

.ga-nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  transition: background 0.12s, color 0.12s;
}

.ga-nav__dropdown-menu a:hover {
  background: rgba(0,156,182,0.15);
  color: #fff;
}

.ga-nav__dropdown-menu a.active {
  color: var(--teal);
  font-weight: 700;
}

/* Header CTAs */
.ga-header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-call-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-call-header:hover {
  background: var(--teal-h);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,156,182,0.35);
}

.btn-call-header svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

.btn-rdv-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 10px 16px;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-rdv-header:hover { background: var(--red-h); }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.ga-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  margin-top: 72px;
  position: relative;
  overflow: hidden;
  background-color: var(--dark-2);
}

.ga-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ga-hero__overlay {
  position: absolute;
  inset: 0;
  /* Gradient fort : contenu lisible en priorité, fond en ambiance seulement */
  background: linear-gradient(
    to right,
    rgba(20, 24, 28, 0.96) 0%,
    rgba(20, 24, 28, 0.90) 45%,
    rgba(0, 100, 120, 0.70) 70%,
    rgba(20, 24, 28, 0.85) 100%
  );
}

/* Extra scrim sous le contenu texte pour garantir lisibilité */
.ga-hero__content::before {
  content: '';
  position: absolute;
  inset: -40px -60px;
  background: radial-gradient(ellipse at 30% 50%, rgba(20,24,28,0.5) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.ga-hero__content {
  position: relative;
  z-index: 1;
  padding: 72px 0;
  max-width: 700px;
}

.ga-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.92);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.ga-hero__eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s infinite;
}

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

.ga-hero h1 {
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 20px;
}

.ga-hero h1 .accent { color: var(--teal); }

.ga-hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.80);
  max-width: 560px;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.75;
}

.ga-hero__sub strong { color: #fff; font-weight: 600; }

/* Hero CTA */
.ga-hero__cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 44px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--teal);
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: all 0.2s;
  box-shadow: 0 4px 24px rgba(0,156,182,0.35);
}

.btn-primary:hover {
  background: var(--teal-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(0,156,182,0.5);
}

.btn-primary svg { width: 24px; height: 24px; fill: #fff; animation: ring 4s infinite; }

@keyframes ring {
  0%,88%,100% { transform: rotate(0deg); }
  90% { transform: rotate(-15deg); }
  92% { transform: rotate(12deg); }
  94% { transform: rotate(-8deg); }
  96% { transform: rotate(5deg); }
}

.btn-rdv {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all 0.2s;
}

.btn-rdv:hover { background: var(--red-h); transform: translateY(-1px); }

.ga-zero-frais {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ga-zero-frais svg { width: 18px; height: 18px; fill: var(--gold); }

/* Hero trust pills */
.ga-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 7px 14px;
  border-radius: 20px;
}

.trust-pill svg { width: 14px; height: 14px; fill: var(--green); flex-shrink: 0; }

/* ═══════════════════════════════════════
   SOCIAL PROOF BAR
   ═══════════════════════════════════════ */
.ga-proof-bar {
  background: var(--dark);
  padding: 20px 0;
  border-bottom: 3px solid var(--teal);
}

.ga-proof-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.proof-item:last-child { border-right: none; }

.proof-item__icon {
  width: 44px; height: 44px;
  background: var(--teal);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.proof-item__icon svg { width: 22px; height: 22px; fill: #fff; }

.proof-item__text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.proof-item__text span {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════
   SECTION BASE
   ═══════════════════════════════════════ */
.ga-section { padding: 80px 0; }
.ga-section--alt { background: var(--light); padding: 80px 0; }
.ga-section--dark { background: var(--dark); padding: 80px 0; }
.ga-section--orange { background: var(--teal); padding: 64px 0; }
.ga-section--teal { background: var(--teal); padding: 64px 0; }
.ga-section--red { background: var(--red); padding: 64px 0; }

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.ga-section--dark .section-label { color: var(--teal); }
.ga-section--orange .section-label,
.ga-section--teal .section-label { color: rgba(255,255,255,0.7); }

.section-title {
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.ga-section--dark .section-title { color: #fff; }
.ga-section--orange .section-title,
.ga-section--teal .section-title { color: #fff; }

.section-title .accent { color: var(--teal); }
.ga-section--dark .section-title .accent { color: var(--teal); }
.ga-section--orange .section-title .accent,
.ga-section--teal .section-title .accent { color: rgba(255,255,255,0.7); }

.section-desc {
  color: var(--text);
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.ga-section--dark .section-desc { color: rgba(255,255,255,0.6); }
.ga-section--orange .section-desc,
.ga-section--teal .section-desc { color: rgba(255,255,255,0.85); }

/* ═══════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════ */
.ga-process { display: flex; flex-direction: column; gap: 24px; }

.ga-process__step { display: flex; gap: 18px; align-items: flex-start; }

.ga-process__num {
  width: 44px; height: 44px;
  background: var(--teal);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.ga-process__text strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.ga-section--dark .ga-process__text strong { color: #fff; }
.ga-process__text span { color: var(--grey); font-size: 0.88rem; }
.ga-section--dark .ga-process__text span { color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════
   FEATURE LIST
   ═══════════════════════════════════════ */
.ga-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.ga-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.ga-feature svg {
  width: 24px; height: 24px;
  fill: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.ga-feature strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.ga-feature span { color: var(--grey); font-size: 0.84rem; }

/* ═══════════════════════════════════════
   STATS ROW
   ═══════════════════════════════════════ */
.ga-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.ga-stat {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
}

.ga-stat__num {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}

.ga-stat__label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.ga-stat__desc { color: rgba(255,255,255,0.4); font-size: 0.78rem; }

/* ═══════════════════════════════════════
   SERVICE CARDS GRID
   ═══════════════════════════════════════ */
.ga-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.ga-service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.2s;
}

.ga-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.ga-service-card__body { padding: 24px; }

.ga-service-card__icon {
  width: 52px; height: 52px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

.ga-service-card__icon svg { width: 28px; height: 28px; stroke: var(--teal); fill: none; stroke-width: 1.8; }

.ga-service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.ga-service-card p {
  color: var(--grey);
  font-size: 0.86rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.ga-service-card a.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.ga-service-card a.btn-link svg { width: 16px; height: 16px; fill: var(--teal); }

/* ═══════════════════════════════════════
   INSURANCE GRID
   ═══════════════════════════════════════ */
.ga-insurance {
  padding: 80px 0;
  background: var(--light);
}

.ga-insurance__header { text-align: center; margin-bottom: 48px; }

.ga-insurance__featured {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.ga-insurance__others {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.ins-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}

.ins-card:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: var(--shadow); }

.ins-card--featured {
  border-color: var(--teal);
  background: linear-gradient(145deg, #F0FAFC, #fff);
  position: relative;
}

.ins-card--featured::before {
  content: '★ PARTENAIRE';
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 0 0 6px 6px;
  white-space: nowrap;
}

.ins-card__name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.ins-card--featured .ins-card__name { color: var(--teal); font-size: 1.2rem; }

.ins-card__desc { font-size: 0.72rem; color: var(--grey); line-height: 1.4; }

.ins-card__link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 4px 10px;
  border-radius: 3px;
  transition: all 0.15s;
}

.ins-card__link:hover { background: var(--teal); color: #fff; }
.ins-card--sm .ins-card__name { font-size: 0.92rem; }
.ins-card--sm { padding: 14px 12px; }

/* Insurance pills — full partner list */
.ga-insurance__all { margin-top: 36px; text-align: center; }
.ga-insurance__all-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 16px;
}
.ins-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.ins-pill {
  display: inline-block;
  background: var(--light);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════ */
.ga-cta-band {
  background: var(--dark);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ga-cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(0,156,182,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ga-cta-band h2 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 12px;
  position: relative;
  letter-spacing: -0.01em;
}

.ga-cta-band h2 .accent { color: var(--teal); }

.ga-cta-band p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  margin-bottom: 40px;
  position: relative;
}

.ga-phone-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
  position: relative;
}

.ga-phone-num {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 800;
  color: var(--teal);
  letter-spacing: 0.03em;
  line-height: 1;
  transition: color 0.2s;
}

.ga-phone-num:hover { color: var(--teal-h); }

.ga-phone-pulse {
  width: 64px; height: 64px;
  background: rgba(0,156,182,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.ga-phone-pulse::before {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(0,156,182,0.35);
  animation: pulse 2.5s infinite;
}

.ga-phone-pulse::after {
  content: '';
  position: absolute; inset: -16px;
  border-radius: 50%;
  border: 2px solid rgba(0,156,182,0.15);
  animation: pulse 2.5s 0.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.ga-phone-pulse svg { width: 30px; height: 30px; fill: var(--teal); z-index: 1; }

.ga-cta-band__note {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  position: relative;
}

/* ═══════════════════════════════════════
   AGRÉÉ SECTION
   ═══════════════════════════════════════ */
.ga-agree-section {
  background: var(--dark);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.ga-agree-section::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,156,182,0.1) 0%, transparent 70%);
}

.ga-agree-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ga-agree-left .section-label { color: var(--teal); }
.ga-agree-left .section-title { color: #fff; }
.ga-agree-left .section-title .accent { color: var(--teal); }
.ga-agree-left p { color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 20px; }

.ga-agree-right {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}

.ga-agree-right__badge {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.ga-agree-list { display: flex; flex-direction: column; gap: 20px; }

.ga-agree-item { display: flex; gap: 14px; align-items: flex-start; }

.ga-agree-item__icon {
  width: 36px; height: 36px;
  background: rgba(0,156,182,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.ga-agree-item__icon svg { width: 18px; height: 18px; fill: var(--teal); }
.ga-agree-item strong { display: block; font-size: 0.98rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.ga-agree-item span { color: rgba(255,255,255,0.5); font-size: 0.84rem; }

/* ═══════════════════════════════════════
   DOMICILE SECTION
   ═══════════════════════════════════════ */
.ga-domicile {
  background: var(--teal);
  padding: 64px 0;
}

.ga-domicile__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ga-domicile .section-title .accent { color: #FFD700; }

.ga-domicile__text h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.ga-domicile__text p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 28px; line-height: 1.7; }

.ga-domicile__zones { display: flex; flex-wrap: wrap; gap: 8px; }

.zone-tag {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 20px;
}

.ga-domicile__right {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.domicile-point { display: flex; gap: 12px; align-items: center; }
.domicile-point svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }
.domicile-point span { color: rgba(255,255,255,0.9); font-size: 0.95rem; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.ga-footer {
  background: var(--dark-2);
  padding: 60px 0 32px;
  border-top: 3px solid var(--teal);
}

.ga-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.ga-footer h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.ga-footer p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.7; }
.ga-footer ul { display: flex; flex-direction: column; gap: 10px; }
.ga-footer ul li a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: color 0.15s; }
.ga-footer ul li a:hover { color: var(--teal); }

.ga-footer__logo-img {
  height: 28px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  margin-bottom: 16px;
}

.ga-footer__brand { font-size: 1.6rem; font-weight: 800; letter-spacing: 0.02em; margin-bottom: 12px; color: #fff; }
.ga-footer__brand span { color: var(--teal); }
.ga-footer__address { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.8; margin-bottom: 20px; }
.ga-footer__phone a { color: var(--teal); font-size: 1.3rem; font-weight: 700; letter-spacing: 0.03em; }

.ga-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ga-footer__bottom p { color: rgba(255,255,255,0.25); font-size: 0.78rem; }

.ga-footer__bottom .agree-badge {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════
   FLOATING MOBILE CTA
   ═══════════════════════════════════════ */
.ga-float-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  padding: 10px 16px;
  background: var(--dark-2);
  border-top: 2px solid var(--teal);
}

.ga-float-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--teal);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0,156,182,0.4);
}

.ga-float-cta svg { width: 22px; height: 22px; fill: #fff; }

/* ═══════════════════════════════════════
   IMAGE + TEXT SPLIT
   ═══════════════════════════════════════ */
.ga-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ga-split--reverse { direction: rtl; }
.ga-split--reverse > * { direction: ltr; }

.ga-split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.ga-split__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0,156,182,0.12), transparent);
}

/* ═══════════════════════════════════════
   URGENCY BANNER
   ═══════════════════════════════════════ */
.ga-urgency {
  background: var(--red);
  padding: 14px 0;
  text-align: center;
}

.ga-urgency p {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.ga-urgency a { color: #fff; text-decoration: underline; margin-left: 12px; }

/* Promo bar */
.ga-promo-bar {
  background: #006d7e;
  color: #fff;
  text-align: center;
  padding: 9px 20px;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.ga-promo-bar .ga-promo-bar__icon { margin-right: 6px; }
.ga-promo-bar em { font-style: normal; font-weight: 700; text-decoration: underline; }

/* Footer disclaimer */
.ga-footer__disclaimer {
  color: rgba(255,255,255,0.2) !important;
  font-size: 0.7rem !important;
  font-style: italic;
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .ga-nav { display: none; }
  .ga-insurance__featured { grid-template-columns: repeat(3, 1fr); }
  .ga-insurance__others { grid-template-columns: repeat(4, 1fr); }
  .ga-services-grid { grid-template-columns: repeat(2, 1fr); }
  .ga-agree-inner { grid-template-columns: 1fr; gap: 40px; }
  .ga-domicile__inner { grid-template-columns: 1fr; gap: 32px; }
  .ga-split { grid-template-columns: 1fr; }
  .ga-split__img { height: 280px; }
  .ga-footer__grid { grid-template-columns: 1fr 1fr; }
  .ga-stats { grid-template-columns: repeat(2, 1fr); }
  .ga-features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .ga-proof-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: none; }
  .ga-insurance__featured { grid-template-columns: repeat(2, 1fr); }
  .ga-insurance__others { grid-template-columns: repeat(3, 1fr); }
  .ga-services-grid { grid-template-columns: 1fr; }
  .ga-footer__grid { grid-template-columns: 1fr; }
  .ga-footer__bottom { flex-direction: column; text-align: center; }
  .ga-float-cta { display: block; }
  body { padding-bottom: 76px; }
  .ga-logo__sub { display: none; }
  .btn-rdv-header { display: none; }
}

@media (max-width: 480px) {
  .ga-proof-bar__inner { grid-template-columns: 1fr; }
  .proof-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .ga-insurance__others { grid-template-columns: repeat(2, 1fr); }
  .ga-stats { grid-template-columns: 1fr 1fr; }
  .ga-hero h1 { font-size: clamp(2.2rem, 10vw, 3.2rem); }
}

/* ─── SCROLL ANIMATION ─── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   MOBILE NAV (hamburger)
   ═══════════════════════════════════════ */
#ga-menu-btn { display: none; }

.ga-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark);
  border-bottom: 2px solid var(--teal);
  padding: 8px 0;
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.ga-mobile-nav.open { display: flex; }

.ga-mobile-nav a {
  padding: 14px 24px;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s, color 0.15s;
}

.ga-mobile-nav a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.ga-mobile-nav a.active { color: var(--teal); }

.ga-mobile-nav__call {
  background: var(--teal) !important;
  color: #fff !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center;
  gap: 10px;
  border-bottom: none !important;
  margin: 8px 16px 8px;
  border-radius: 6px;
  padding: 14px 24px !important;
}

@media (max-width: 1024px) {
  #ga-menu-btn { display: inline-flex !important; }
  .btn-call-header .phone-label { display: none; }
}

@media (max-width: 600px) {
  .btn-call-header { padding: 10px 14px; font-size: 0.88rem; }
  .btn-rdv-header { display: none; }
}

/* ═══════════════════════════════════════
   COOKIE BANNER — RGPD / Consent Mode v2
   ═══════════════════════════════════════ */
#ga-cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99999;
  background: var(--dark-2);
  border-top: 3px solid var(--teal);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
#ga-cookie-banner.visible {
  transform: translateY(0);
}
#ga-cookie-banner .cookie-text {
  color: #d1d5db;
  font-size: 0.88rem;
  line-height: 1.55;
  flex: 1;
}
#ga-cookie-banner .cookie-text strong {
  color: #fff;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
}
#ga-cookie-banner .cookie-text a {
  color: var(--teal);
  text-decoration: underline;
}
#ga-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
/* Both buttons: equal visual weight — CNIL/RGPD compliance */
#ga-cookie-accept,
#ga-cookie-refuse {
  padding: 11px 22px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
#ga-cookie-accept {
  background: var(--teal);
  color: #fff;
  border: 2px solid var(--teal);
}
#ga-cookie-accept:hover { background: var(--teal-h); border-color: var(--teal-h); }
#ga-cookie-refuse {
  background: transparent;
  color: #e5e7eb;
  border: 2px solid #6b7280;
}
#ga-cookie-refuse:hover { color: #fff; border-color: #9ca3af; background: rgba(255,255,255,0.05); }
@media (max-width: 640px) {
  #ga-cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 16px 20px;
  }
  #ga-cookie-actions { width: 100%; }
  #ga-cookie-accept, #ga-cookie-refuse {
    flex: 1;
    text-align: center;
  }
}
