/* ============================================================
   styles.css — Serrurier Thiais 94320
   Palette : coral #E46343 | orange #FDA54C | gold #FFCD74
             cream #FEF0CB | slate #697791 | charcoal #2A2A2A
============================================================ */

/* ================================================================
   0. DESIGN SYSTEM — Variables & Reset
================================================================ */
:root {
  --coral: #E46343;
  --orange: #FDA54C;
  --gold: #FFCD74;
  --cream: #FEF0CB;
  --slate: #697791;
  --slate-light: #A8B9CC;
  --white: #FFFFFF;
  --charcoal: #2A2A2A;
  --header-h: 72px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 4px 30px rgba(0, 0, 0, .08);
  --shadow-hover: 0 12px 40px rgba(228, 99, 67, .18);
  --transition: .25s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--charcoal);
  overflow-x: hidden;
  background: var(--cream);
  cursor: none;
}

/* ================================================================
   1. UTILITIES & SHARED
================================================================ */

/* Scroll progress */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  z-index: 9999;
  transition: width .1s linear;
}

/* Custom cursor */
.cursor {
  width: 14px;
  height: 14px;
  background: var(--coral);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .15s ease, background .2s;
  mix-blend-mode: multiply;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: transform .35s ease, width .25s, height .25s;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Shared section labels */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--coral);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.section-label::after {
  content: '';
  flex: 0 0 40px;
  height: 2px;
  background: var(--coral);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-title span {
  color: var(--coral);
}

.section-intro {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.75;
  max-width: 560px;
}

/* Shared buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  color: white;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(228, 99, 67, .4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(228, 99, 67, .5);
}

.btn-primary:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.btn-primary.btn-large {
  font-size: 16px;
  padding: 18px 40px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(0, 0, 0, .12);
  padding: 12px 28px;
  border-radius: 50px;
  transition: border-color var(--transition), color var(--transition);
  background: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn-secondary:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.btn-secondary.btn-large {
  font-size: 16px;
  padding: 16px 36px;
}

.btn-secondary.btn-light {
  color: rgba(255, 255, 255, .75);
  border-color: rgba(255, 255, 255, .2);
}

.btn-secondary.btn-light:hover {
  color: white;
  border-color: white;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid rgba(0, 0, 0, .14);
  padding: 13px 24px;
  border-radius: 50px;
  transition: border-color var(--transition), color var(--transition);
  background: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn-ghost:hover {
  border-color: var(--coral);
  color: var(--coral);
}

/* Animations */
@keyframes fadeUp {
  from {
    transform: translateY(28px);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: .6;
  }
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes popIn {
  from {
    transform: translateX(-50%) scale(.7);
    opacity: 0;
  }

  to {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}

@keyframes underlineGrow {
  to {
    transform: scaleX(1);
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes ringPhone {
  from {
    transform: rotate(-10deg);
  }

  to {
    transform: rotate(10deg);
  }
}

@keyframes ringFloat {
  from {
    transform: rotate(-8deg);
  }

  to {
    transform: rotate(8deg);
  }
}

@keyframes floatIn {
  from {
    transform: translateY(60px);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

/* ================================================================
   2. HEADER RESPONSIVE
================================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 24px rgba(228, 99, 67, .1);
  transition: box-shadow var(--transition);
  animation: slideDown .6s ease both;
}

.site-header.scrolled {
  box-shadow: 0 4px 40px rgba(228, 99, 67, .18);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 60px);
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 17px;
  transition: transform var(--transition);
}

.logo:hover .logo-icon {
  transform: rotate(-8deg) scale(1.08);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 900;
  color: var(--charcoal);
  display: block;
  line-height: 1.1;
}

.logo-text strong {
  color: var(--coral);
}

.logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate);
  display: block;
}

/* Desktop nav */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
}

.main-nav ul li a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 6px 12px;
  border-radius: 8px;
  position: relative;
  transition: color var(--transition), background var(--transition);
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.main-nav ul li a:hover {
  color: var(--coral);
  background: rgba(228, 99, 67, .06);
}

.main-nav ul li a:hover::after, .main-nav ul li a.active::after {
  transform: scaleX(1);
}

.main-nav ul li a.active {
  color: var(--coral);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .03em;
  padding: 9px 20px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(228, 99, 67, .35);
  transition: transform var(--transition), box-shadow var(--transition);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(228, 99, 67, .45);
}

/* Burger button */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background var(--transition);
}

.burger:hover {
  background: rgba(228, 99, 67, .08);
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, background .2s;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--coral);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--coral);
}

/* Mobile menu dropdown */
.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
  padding: 28px clamp(20px, 6vw, 40px) 32px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .3s;
}

.mobile-menu.open {
  transform: none;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mob-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.mob-link i {
  width: 18px;
  color: var(--coral);
}

.mob-link:hover {
  background: rgba(228, 99, 67, .08);
  color: var(--coral);
}

.mob-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .04em;
  padding: 16px 28px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(228, 99, 67, .4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.mob-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(228, 99, 67, .5);
}

/* ================================================================
   3. HERO
================================================================ */
#hero {
  min-height: 100vh;
  padding-top: var(--header-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(228, 99, 67, .1);
  border: 1.5px solid rgba(228, 99, 67, .25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 28px;
  animation: fadeUp .7s .2s both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse 1.5s infinite;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.02;
  color: var(--charcoal);
  animation: fadeUp .7s .35s both;
}

.hero-title em {
  font-style: normal;
  color: var(--coral);
  position: relative;
  display: inline-block;
}

.hero-title em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  right: 0;
  height: 6px;
  background: var(--gold);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow .6s .9s ease forwards;
}

.hero-sub {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.7;
  margin-top: 24px;
  margin-bottom: 40px;
  max-width: 460px;
  animation: fadeUp .7s .5s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeUp .7s .65s both;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  animation: fadeUp .7s .8s both;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  line-height: 1;
  color: var(--charcoal);
}

.stat-number span {
  color: var(--coral);
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--slate);
}

/* Hero right */
.hero-right {
  position: relative;
  background: linear-gradient(160deg, var(--gold) 0%, var(--orange) 50%, var(--coral) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 500px;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(255, 255, 255, .25) 0%, transparent 65%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-visual-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, .4);
  border-radius: 28px;
  padding: 52px 48px;
  text-align: center;
  color: white;
  animation: floatY 4s ease-in-out infinite;
}

.hero-icon-wrap {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, .25);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 44px;
}

.hero-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: .05em;
  margin-bottom: 8px;
}

.hero-card-sub {
  font-size: 14px;
  opacity: .85;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-card-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-top: 28px;
}

.hero-badge-item {
  text-align: center;
}

.hbi-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: white;
  line-height: 1;
}

.hbi-label {
  font-size: 11px;
  opacity: .7;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-badge-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .2);
}

.hero-phone-badge {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: var(--coral);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .08em;
  padding: 12px 28px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
  z-index: 3;
  animation: popIn .5s 1.2s cubic-bezier(.34, 1.56, .64, 1) both;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .2);
  animation: spinSlow linear infinite;
}

.hero-circle.c1 {
  width: 300px;
  height: 300px;
  top: -60px;
  right: -60px;
  animation-duration: 30s;
}

.hero-circle.c2 {
  width: 180px;
  height: 180px;
  bottom: 80px;
  left: 40px;
  animation-duration: 20s;
  animation-direction: reverse;
}

/* ================================================================
   4. TICKER
================================================================ */
#urgence {
  background: linear-gradient(90deg, var(--coral), var(--orange), var(--gold), var(--orange), var(--coral));
  background-size: 300% 100%;
  animation: gradientShift 6s ease infinite;
  padding: 18px 0;
  overflow: hidden;
}

.urgence-ticker {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 0 48px;
}

.ticker-sep {
  color: rgba(255, 255, 255, .5);
  font-size: 20px;
}

/* ================================================================
   5. SERVICES
================================================================ */
#services {
  background: var(--cream);
  padding: clamp(60px, 8vw, 110px) clamp(20px, 6vw, 80px);
  position: relative;
}

#services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--slate));
}

#services .section-intro {
  margin-bottom: 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(0, 0, 0, .06);
  transition: transform .3s, box-shadow .3s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(228, 99, 67, .15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.ic-coral {
  background: rgba(228, 99, 67, .12);
  color: var(--coral);
}

.ic-orange {
  background: rgba(253, 165, 76, .15);
  color: var(--orange);
}

.ic-gold {
  background: rgba(255, 205, 116, .2);
  color: #c49000;
}

.ic-slate {
  background: rgba(105, 119, 145, .12);
  color: var(--slate);
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--coral);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  margin-top: 20px;
  letter-spacing: .03em;
  transition: gap .2s;
}

.service-link:hover {
  gap: 12px;
}

.service-card.featured {
  background: linear-gradient(160deg, var(--coral) 0%, var(--orange) 100%);
  border: none;
}

.service-card.featured .service-title,
.service-card.featured .service-desc {
  color: white;
}

.service-card.featured .service-link {
  color: var(--gold);
}

.service-card.featured .service-icon-box {
  background: rgba(255, 255, 255, .2);
  color: white;
}

.service-card.featured::before {
  background: linear-gradient(90deg, var(--gold), white);
}

/* ================================================================
   6. POURQUOI NOUS
================================================================ */
#pourquoi {
  background: var(--charcoal);
  padding: clamp(60px, 8vw, 110px) clamp(20px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#pourquoi::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(228, 99, 67, .2) 0%, transparent 70%);
  border-radius: 50%;
}

#pourquoi::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 20%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 205, 116, .12) 0%, transparent 70%);
  border-radius: 50%;
}

.pourquoi-left .section-label {
  color: var(--gold);
}

.pourquoi-left .section-label::after {
  background: var(--gold);
}

.pourquoi-left .section-title {
  color: var(--white);
}

.pourquoi-left .section-intro {
  color: var(--slate-light);
}

.guarantee-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 20px 24px;
  margin-top: 36px;
}

.guarantee-icon {
  font-size: 28px;
  color: var(--gold);
  flex-shrink: 0;
}

.guarantee-text {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.6;
}

.guarantee-text strong {
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  transition: background .25s, border-color .25s;
}

.feature-item:hover {
  background: rgba(228, 99, 67, .1);
  border-color: rgba(228, 99, 67, .3);
}

.feature-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  line-height: 1;
  color: rgba(255, 205, 116, .25);
  flex-shrink: 0;
  min-width: 48px;
}

.feature-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.feature-body p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.65;
}

/* ================================================================
   7. PROCESSUS
================================================================ */
#process {
  background: var(--white);
  padding: clamp(60px, 8vw, 110px) clamp(20px, 6vw, 80px);
  position: relative;
}

#process .section-title {
  text-align: center;
}

#process .section-label {
  justify-content: center;
}

#process .section-label::before {
  content: '';
  flex: 0 0 40px;
  height: 2px;
  background: var(--coral);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--coral);
  box-shadow: 0 4px 20px rgba(228, 99, 67, .15);
  transition: background .3s, border-color .3s, color .3s;
}

.step:hover .step-number {
  background: linear-gradient(135deg, var(--coral), var(--orange));
  color: white;
  border-color: var(--coral);
}

.step-icon {
  font-size: 14px;
  margin-bottom: 2px;
}

.step-num-text {
  font-size: 28px;
  font-family: 'Bebas Neue', sans-serif;
}

.step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.step p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.65;
}

/* ================================================================
   8. ZONES
================================================================ */
#zones {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 60%, var(--coral) 100%);
  padding: clamp(60px, 8vw, 90px) clamp(20px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#zones::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.07'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.zones-left {
  position: relative;
  z-index: 1;
}

.zones-left .section-label {
  color: rgba(255, 255, 255, .9);
}

.zones-left .section-label::after {
  background: rgba(255, 255, 255, .5);
}

.zones-left .section-title {
  color: var(--white);
}

.zones-left .section-intro {
  color: rgba(255, 255, 255, .85);
}

.zones-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--white);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.zones-phone i {
  font-size: 38px;
}

.zones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.zone-pill {
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50px;
  padding: 12px 20px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background .2s, transform .2s;
}

.zone-pill:hover {
  background: rgba(255, 255, 255, .35);
  transform: translateX(4px);
}

.zone-pill i {
  font-size: 13px;
  opacity: .7;
}

/* ================================================================
   9. AVIS CLIENTS
================================================================ */
#avis {
  background: var(--cream);
  padding: clamp(60px, 8vw, 110px) clamp(20px, 6vw, 80px);
}

#avis .section-title {
  text-align: center;
}

#avis .section-label {
  justify-content: center;
}

#avis .section-label::before {
  content: '';
  flex: 0 0 40px;
  height: 2px;
  background: var(--coral);
}

.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  border: 1.5px solid rgba(0, 0, 0, .06);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(228, 99, 67, .12);
}

.quote-icon {
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 16px;
  display: block;
}

.stars {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(0, 0, 0, .07);
  padding-top: 20px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--charcoal);
}

.author-loc {
  font-size: 12px;
  color: var(--slate);
}

/* ================================================================
   10. CTA FINAL
================================================================ */
#cta {
  background: var(--charcoal);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(228, 99, 67, .15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(255, 205, 116, .1) 0%, transparent 60%);
}

#cta>* {
  position: relative;
  z-index: 1;
}

#cta .section-label {
  justify-content: center;
  color: var(--gold);
}

#cta .section-label::before {
  content: '';
  flex: 0 0 40px;
  height: 2px;
  background: var(--gold);
}

#cta .section-label::after {
  background: var(--gold);
}

.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 10vw, 90px);
  letter-spacing: .03em;
  color: var(--white);
  line-height: 1;
  margin: 20px 0;
}

.cta-title span {
  color: var(--gold);
}

.cta-sub {
  font-size: 17px;
  color: var(--slate-light);
  margin-bottom: 48px;
}

.cta-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  letter-spacing: .06em;
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.cta-number-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  animation: ringPhone .5s ease infinite alternate;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ================================================================
   11. FAQ
================================================================ */
.faq-section {
  background: var(--white);
  padding: clamp(60px, 8vw, 110px) clamp(20px, 6vw, 80px);
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--coral));
}

.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-head {
  text-align: center;
  margin-bottom: 56px;
}

.faq-head .section-label {
  justify-content: center;
}

.faq-head .section-label::before {
  content: '';
  flex: 0 0 36px;
  height: 2px;
  background: var(--coral);
}

.faq-head .section-intro {
  margin: 0 auto;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}

.faq-item {
  border: 1.5px solid rgba(0, 0, 0, .07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item.open {
  border-color: rgba(228, 99, 67, .3);
  box-shadow: var(--shadow-hover);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  transition: color var(--transition), background var(--transition);
}

.faq-question:hover {
  color: var(--coral);
  background: rgba(228, 99, 67, .03);
}

.faq-item.open .faq-question {
  color: var(--coral);
  background: rgba(228, 99, 67, .04);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(228, 99, 67, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  font-size: 12px;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), background var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--coral);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4, 0, .2, 1), padding .3s;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  padding: 0 24px 22px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.75;
}

.faq-answer strong {
  color: var(--charcoal);
}

/* ================================================================
   12. CONTACT
================================================================ */
.contact-section {
  background: var(--cream);
  padding: clamp(60px, 8vw, 110px) clamp(20px, 6vw, 80px);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--slate));
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

.contact-sub {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}

.req {
  color: var(--coral);
}

.field-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.field-icon {
  position: absolute;
  left: 14px;
  color: var(--slate-light);
  font-size: 14px;
  pointer-events: none;
  transition: color var(--transition);
}

.field-wrap:focus-within .field-icon {
  color: var(--coral);
}

.field-wrap input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1.5px solid rgba(0, 0, 0, .12);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field-wrap input[readonly] {
  background: rgba(0, 0, 0, .04);
  color: var(--slate);
  cursor: default;
  padding-left: 14px;
}

.field-wrap input:focus, .contact-form textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(228, 99, 67, .12);
}

.contact-form textarea {
  padding: 12px 14px;
  resize: vertical;
  min-height: 110px;
}

.field-hint {
  font-size: 12px;
  color: var(--slate-light);
}

.field-hint.is-error {
  color: #E05252;
}

.field-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Select */
.select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.select-wrap .field-icon {
  z-index: 1;
}

.select-wrap select {
  width: 100%;
  padding: 12px 40px 12px 40px;
  border: 1.5px solid rgba(0, 0, 0, .12);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  background: var(--white);
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.select-wrap select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(228, 99, 67, .12);
}

.select-arrow {
  position: absolute;
  right: 14px;
  color: var(--slate-light);
  font-size: 12px;
  pointer-events: none;
}

/* Autocomplete */
.addr-wrap {
  position: relative;
}

.addr-spinner {
  position: absolute;
  right: 14px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--slate-light);
  border-top-color: var(--coral);
  border-radius: 50%;
  display: none;
  animation: spin .7s linear infinite;
}

.addr-wrap.is-loading .addr-spinner {
  display: block;
}

.addr-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1.5px solid rgba(228, 99, 67, .2);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
  list-style: none;
  max-height: 240px;
  overflow-y: auto;
  z-index: 500;
  display: none;
}

.addr-suggestions.is-visible {
  display: block;
}

.addr-suggestions li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  cursor: pointer;
  transition: background var(--transition);
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  font-size: 13px;
}

.addr-suggestions li:last-child {
  border-bottom: none;
}

.addr-suggestions li:hover, .addr-suggestions li.is-highlighted {
  background: rgba(228, 99, 67, .07);
}

.sug-main {
  font-weight: 600;
  color: var(--charcoal);
  display: block;
}

.sug-extra {
  font-size: 12px;
  color: var(--slate);
  display: block;
}

.sug-dept {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: .06em;
  color: var(--coral);
  background: rgba(228, 99, 67, .1);
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Checkbox */
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  color: var(--slate);
  line-height: 1.6;
}

.check-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.check-box {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1.5px solid rgba(0, 0, 0, .18);
  border-radius: 5px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: transparent;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.check-label input:checked+.check-box {
  background: var(--coral);
  border-color: var(--coral);
  color: white;
}

/* Form actions & messages */
.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.form-msg {
  font-size: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  display: none;
}

.form-msg.success {
  display: block;
  background: rgba(52, 199, 89, .1);
  color: #1a7a34;
  border: 1px solid rgba(52, 199, 89, .25);
}

.form-msg.error {
  display: block;
  background: rgba(224, 82, 82, .1);
  color: #c0392b;
  border: 1px solid rgba(224, 82, 82, .25);
}

/* Aside */
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.aside-phone-card {
  background: linear-gradient(135deg, var(--coral), var(--orange));
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  color: white;
}

.aside-phone-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, .2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
}

.aside-phone-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 8px;
}

.aside-phone-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  letter-spacing: .06em;
  color: white;
  text-decoration: none;
  line-height: 1;
  margin-bottom: 8px;
  transition: opacity var(--transition);
}

.aside-phone-num:hover {
  opacity: .85;
}

.aside-phone-note {
  font-size: 12px;
  opacity: .8;
}

.aside-avail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
  background: rgba(255, 255, 255, .18);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
}

.avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 1.5s infinite;
}

.aside-map-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(0, 0, 0, .07);
  box-shadow: var(--shadow-card);
}

.aside-map-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.aside-map-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}

.aside-map-badge {
  margin-left: auto;
  background: rgba(228, 99, 67, .1);
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 50px;
}

.aside-map {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.aside-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.aside-map-note {
  padding: 12px 18px;
  font-size: 12px;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 6px;
}

.aside-map-note i {
  color: var(--coral);
}

.aside-reassurance {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  border: 1.5px solid rgba(0, 0, 0, .07);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reassure-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}

.reassure-item i {
  font-size: 18px;
  color: var(--coral);
  width: 22px;
  flex-shrink: 0;
}

.reassure-item strong {
  display: block;
  font-weight: 700;
  color: var(--charcoal);
  font-size: 14px;
}

.reassure-item span {
  color: var(--slate);
  font-size: 12px;
}

/* ================================================================
   13. FOOTER
================================================================ */
footer {
  background: #1A1A1A;
  padding: clamp(40px, 6vw, 60px) clamp(20px, 6vw, 80px) 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-logo-link {
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  max-width: 260px;
  margin-top: 16px;
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
}

.footer-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .06em;
  color: var(--coral);
}

/* ================================================================
   14. SCROLL TO TOP + FLOATING CALL
================================================================ */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(228, 99, 67, .25);
  color: var(--coral);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .3s, transform .3s, background var(--transition), border-color var(--transition);
}

.scroll-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--coral);
  color: white;
  border-color: var(--coral);
}

.floating-call {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  color: white;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: .06em;
  padding: 13px 22px 13px 18px;
  border-radius: 50px;
  box-shadow: 0 6px 28px rgba(228, 99, 67, .45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: floatIn .5s .8s cubic-bezier(.34, 1.56, .64, 1) both;
}

.floating-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(228, 99, 67, .55);
}

.floating-call i {
  font-size: 20px;
  animation: ringFloat .5s ease infinite alternate;
}

/* ================================================================
   15. RESPONSIVE
================================================================ */

/* 1280px */
@media (max-width: 1280px) {
  .contact-layout {
    grid-template-columns: 1fr 380px;
    gap: 44px;
  }

  .footer-top {
    gap: 40px;
  }
}

/* 1024px — Tablettes paysage */
@media (max-width: 1024px) {
  :root {
    --header-h: 66px;
  }

  /* Header */
  .main-nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-cta .cta-num {
    display: none;
  }

  .header-cta {
    padding: 9px 14px;
  }

  /* Hero */
  #hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    min-height: 380px;
  }

  .hero-left {
    padding: 72px 48px 56px;
  }

  .hero-phone-badge {
    font-size: 18px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Pourquoi */
  #pourquoi {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Process */
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps::before {
    display: none;
  }

  /* Zones */
  #zones {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  /* Avis */
  .testimonials-row {
    grid-template-columns: 1fr 1fr;
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .aside-phone-card {
    grid-column: 1 / -1;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* 768px — Tablettes portrait */
@media (max-width: 768px) {

  /* Header */
  .logo-sub {
    display: none;
  }

  /* Hero */
  .hero-left {
    padding: 60px 24px 40px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-visual-card {
    padding: 36px 28px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Process */
  .process-steps {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Zones */
  .zones-phone {
    font-size: clamp(32px, 7vw, 50px);
  }

  .zones-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Avis */
  .testimonials-row {
    grid-template-columns: 1fr;
  }

  /* Contact aside */
  .contact-aside {
    grid-template-columns: 1fr;
  }

  .field-duo {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* FAQ */
  .faq-layout {
    grid-template-columns: 1fr;
  }

  /* Floating call */
  .floating-call-label {
    display: none;
  }

  .floating-call {
    padding: 14px;
    border-radius: 50%;
  }
}

/* 480px — Mobiles */
@media (max-width: 480px) {
  :root {
    --header-h: 60px;
  }

  .header-inner {
    padding: 0 16px;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .logo-text {
    font-size: 16px;
  }

  .hero-left {
    padding: 52px 16px 36px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn-primary, .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .faq-question {
    font-size: 14px;
    padding: 18px 16px;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-item.open .faq-answer {
    padding: 0 16px 18px;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn-primary, .form-actions .btn-ghost {
    justify-content: center;
    width: 100%;
  }

  .zones-grid {
    grid-template-columns: 1fr;
  }

  .scroll-top {
    right: 16px;
    bottom: 84px;
  }

  .floating-call {
    right: 16px;
    bottom: 20px;
  }
}

.footer-credit {
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
}

.footer-credit a {
  color: var(--coral);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s ease, opacity .2s ease;
}

.footer-credit a:hover {
  color: var(--orange);
  opacity: .85;
}


/* ================================================================
   LEGAL HERO BANNER
================================================================ */
.legal-hero {
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 64px;
  padding-left: clamp(20px, 8vw, 120px);
  padding-right: clamp(20px, 8vw, 120px);
  background: linear-gradient(160deg, var(--cream) 0%, var(--white) 60%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}

/* Decorative geometric accent */
.legal-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(228, 99, 67, .1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.legal-hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 205, 116, .15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.legal-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(228, 99, 67, .35);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 24px;
}

.legal-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.legal-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.legal-h1 em {
  font-style: normal;
  color: var(--coral);
  position: relative;
  display: inline-block;
}

.legal-h1 em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  right: 0;
  height: 5px;
  background: var(--gold);
  z-index: -1;
}

.legal-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 20px;
  font-weight: 500;
}

.legal-date i {
  color: var(--coral);
  font-size: 13px;
}

.legal-intro {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.75;
  max-width: 640px;
}

.legal-intro strong {
  color: var(--charcoal);
  font-weight: 700;
}

/* ================================================================
   LEGAL BREADCRUMB
================================================================ */
.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--slate-light);
  padding: 14px clamp(20px, 8vw, 120px);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  background: var(--white);
}

.legal-breadcrumb a {
  color: var(--slate);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}

.legal-breadcrumb a:hover {
  color: var(--coral);
}

.legal-breadcrumb i {
  font-size: 10px;
  color: var(--slate-light);
}

.legal-breadcrumb span {
  color: var(--charcoal);
  font-weight: 600;
}

/* ================================================================
   LEGAL BODY — Sections
================================================================ */
.legal-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px clamp(20px, 5vw, 60px) 96px;
}

.legal-section {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.legal-section:last-of-type {
  border-bottom: none;
}

.legal-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.legal-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--orange));
  padding: 4px 10px;
  border-radius: 6px;
  flex-shrink: 0;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal-block p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
}

.legal-block p strong {
  color: var(--charcoal);
  font-weight: 700;
}

.legal-block p a {
  color: var(--coral);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1.5px solid rgba(228, 99, 67, .3);
  transition: border-color .2s, color .2s;
}

.legal-block p a:hover {
  border-color: var(--coral);
}

.legal-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
}

.legal-block ul li {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.legal-block ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
  margin-top: 8px;
}

.legal-block ul li strong {
  color: var(--charcoal);
  font-weight: 700;
}

.legal-block ul li a {
  color: var(--coral);
  text-decoration: none;
  font-weight: 600;
  transition: opacity .2s;
}

.legal-block ul li a:hover {
  opacity: .75;
}

/* Notice box */
.legal-notice {
  background: rgba(255, 205, 116, .15);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  font-size: 14px !important;
  color: var(--charcoal) !important;
  line-height: 1.7 !important;
}

/* Back button */
.legal-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(228, 99, 67, .35);
  margin-top: 20px;
  transition: transform .25s, box-shadow .25s;
}

.legal-back-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(228, 99, 67, .5);
}

/* ================================================================
   LEGAL SIDEBAR NAV (table des matières flottante)
================================================================ */
.legal-layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding: 40px 28px 40px 0;
}

.legal-toc-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-toc-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(228, 99, 67, .2);
}

.legal-toc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-toc ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--slate);
  text-decoration: none;
  font-weight: 500;
  padding: 7px 10px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}

.legal-toc ul li a:hover {
  background: rgba(228, 99, 67, .08);
  color: var(--coral);
}

.legal-toc ul li a.active {
  color: var(--coral);
  font-weight: 700;
  background: rgba(228, 99, 67, .08);
}

.toc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--slate-light);
  flex-shrink: 0;
  min-width: 20px;
}

/* ================================================================
   RESPONSIVE TABLET
================================================================ */

@media (max-width: 1024px) {

  .legal-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .legal-toc {
    display: none;
  }

  .legal-body {
    padding: 56px 32px 72px;
  }

  .legal-hero {
    padding-left: 32px;
    padding-right: 32px;
  }

  .legal-breadcrumb {
    padding-left: 32px;
    padding-right: 32px;
  }

}


/* ================================================================
   RESPONSIVE MOBILE
================================================================ */

@media (max-width: 768px) {

  .legal-hero {
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 48px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .legal-h1 {
    font-size: 34px;
    line-height: 1.15;
  }

  .legal-intro {
    font-size: 15px;
  }

  .legal-breadcrumb {
    font-size: 11px;
    padding: 12px 20px;
  }

  .legal-body {
    padding: 48px 20px 64px;
  }

  .legal-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .legal-section h2 {
    font-size: 20px;
    gap: 12px;
  }

  .legal-num {
    font-size: 11px;
    padding: 3px 8px;
  }

  .legal-block p {
    font-size: 14px;
    line-height: 1.7;
  }

  .legal-block ul li {
    font-size: 14px;
  }

  .legal-back-btn {
    font-size: 13px;
    padding: 12px 22px;
  }

}


/* ================================================================
   SMALL MOBILE
================================================================ */

@media (max-width: 480px) {

  .legal-h1 {
    font-size: 30px;
  }

  .legal-tag {
    font-size: 10px;
    padding: 4px 12px;
  }

  .legal-date {
    font-size: 12px;
  }

  .legal-section h2 {
    font-size: 18px;
  }

  .legal-notice {
    font-size: 13px !important;
    padding: 12px 14px;
  }

}