/* =============================================
   JEANMAIRE COUVERTURE — Premium Scroll-Driven Site
   Fonts: Space Grotesk (display) + Poppins (body/italic)
   ============================================= */

:root {
  /* Light premium palette — bleu minuit + doré */
  --bg-dark: #F9FBFD;          /* Background */
  --bg-darker: #F1F5FA;
  --bg-light: #FFFFFF;
  --bg-accent: #FFFFFF;        /* Cards */
  --text-light: #060E18;       /* Body text */
  --text-dark: #060E18;
  --text-muted: #49729F;       /* Secondary blue */
  --accent: #B8926A;           /* Doré — CTAs */
  --accent-light: #C9A47F;
  --accent-dark: #9A754F;
  --copper: #B8926A;
  --primary-dark: #1A2D42;     /* Bleu minuit — titles */
  --secondary: #49729F;
  --border: #CEDDEE;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --header-h: 80px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

html {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 65% 45% at 15% 8%, rgba(184,146,106,0.18), transparent 60%),
    radial-gradient(ellipse 55% 40% at 90% 35%, rgba(184,146,106,0.1), transparent 60%),
    radial-gradient(ellipse 70% 50% at 40% 70%, rgba(184,146,106,0.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at 95% 95%, rgba(184,146,106,0.08), transparent 60%),
    #F9FBFD;
  background-attachment: fixed;
  color: var(--text-light);
  overflow-x: hidden;
  max-width: 100vw;
  line-height: 1.6;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

/* =================== LOADER =================== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

#loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-light);
}

.loader-logo strong {
  color: var(--accent);
}

.loader-bar-track {
  width: 240px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.15s linear;
}

.loader-percent {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
}

/* =================== HEADER =================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  transition: background 0.4s, backdrop-filter 0.4s;
}

.site-header.scrolled {
  background: rgba(12,11,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 68px;
  width: auto;
  display: block;
  transition: transform 0.35s var(--ease);
}

.logo:hover .logo-img {
  transform: scale(1.04);
}

@media (max-width: 600px) {
  .logo-img { height: 52px; }
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-light);
}

.logo-text strong {
  color: var(--accent);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-light);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--bg-accent);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 0.75rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}

.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.dropdown-menu a:hover {
  color: var(--accent);
  background: rgba(184,146,106,0.06);
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.header-phone:hover {
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.35s var(--ease);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
  padding: 0.75rem 1.75rem;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  padding: 0.75rem 1.75rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-darker);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  transition: right 0.4s var(--ease);
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.75rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-menu .btn,
.mobile-menu a.btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.85rem 1.5rem;
  color: #fff !important;
  border-bottom: none;
  text-align: center;
  letter-spacing: 0.02em;
}

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  z-index: 2;
  background: #F9FBFD;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(184,146,106,.25), transparent),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(184,146,106,.08), transparent);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
}

/* Eyebrow pill */
.hero-eyebrow {
  margin-bottom: 2rem;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1.1rem;
  border: 1px solid rgba(184,146,106,.4);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(184,146,106,.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #046bd2;
  animation: heroPulse 2s ease-in-out infinite;
}
@keyframes heroPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 80px rgba(184,146,106,.3);
}

.hero-title .word {
  display: block;
  color: #FFFFFF;
  font-weight: 800;
}
.hero-title .word em {
  color: #046bd2;
  font-style: italic;
  font-weight: 800;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 0 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Trust badges */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem 1rem;
  margin-top: 1.75rem;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}
.trust-sep {
  color: rgba(255,255,255,.2);
  font-size: 12px;
}

/* Visual image card */
.hero-visual {
  position: relative;
  z-index: 1;
}
.hero-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.85);
}
.hero-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: .85rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.badge-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.badge-label {
  font-size: 11px;
  color: rgba(255,255,255,.6);
}
.badge-stars {
  color: #FBBF24;
  font-size: 12px;
  letter-spacing: .05em;
}

/* Entrance animations */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  opacity: 0;
  animation: heroFadeUp .6s ease forwards;
  animation-delay: .1s;
}
.hero-title {
  opacity: 0;
  animation: heroFadeUp .8s ease forwards;
  animation-delay: .25s;
}
.hero-sub {
  opacity: 0;
  animation: heroFadeUp .6s ease forwards;
  animation-delay: .4s;
}
.hero-cta {
  opacity: 0;
  animation: heroFadeUp .6s ease forwards;
  animation-delay: .55s;
}
.hero-trust {
  opacity: 0;
  animation: heroFadeUp .6s ease forwards;
  animation-delay: .7s;
}
.hero-visual {
  opacity: 0;
  animation: heroFadeUp 1s ease forwards;
  animation-delay: .3s;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-visual { display: none; }
  .hero-content { text-align: center; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
}

.hero-scroll-hint {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: heroFadeUp .8s ease forwards;
  animation-delay: .9s;
  z-index: 2;
}

.hero-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* =================== DARK OVERLAY =================== */
.dark-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,6,5,0.75);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
}

/* =================== MARQUEE =================== */
.marquee {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  overflow: hidden;
  padding: 1rem 0;
  opacity: 0;
  pointer-events: none;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marqueeSlide 25s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184,146,106,0.25);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.marquee-dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  -webkit-text-stroke: 0;
  flex-shrink: 0;
}

@keyframes marqueeSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =================== SCROLL CONTAINER =================== */
#scrollContainer {
  position: relative;
  z-index: 4;
}

/* =================== SCROLL SECTIONS =================== */
.scroll-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 6rem 0;
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  width: 100%;
}

.align-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.align-center .section-heading,
.align-center .section-body {
  max-width: 800px;
}

.align-center .services-list,
.align-center .testimonials-stack,
.align-center .devis-form-wrap {
  max-width: 700px;
  width: 100%;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(30px);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 0 60px rgba(0,0,0,0.35);
}

.section-body {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f1ece5;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  text-shadow: 0 1px 12px rgba(0,0,0,0.55);
}

.section-cta {
  opacity: 0;
  transform: translateY(20px);
  margin-top: 1.5rem;
}

.section-cta.btn-outline {
  background: rgba(249,251,253, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-weight: 600;
  padding: 0.9rem 2rem;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.5);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.section-cta.btn-outline:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.align-center .section-body:last-of-type {
  margin-bottom: 0;
}

/* =================== STATS (animated progress circles) =================== */
.stats-grid {
  display: flex;
  gap: 4rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(40px);
  cursor: pointer;
}

.stat-item:hover .stat-circle-fg {
  filter: drop-shadow(0 0 18px rgba(184,146,106,0.75));
}

.stat-circle {
  position: relative;
  width: clamp(180px, 18vw, 240px);
  aspect-ratio: 1;
  margin-bottom: 1.25rem;
}

.stat-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  overflow: visible;
}

.stat-circle-bg {
  fill: none;
  stroke: rgba(255,255,255,0.08);
  stroke-width: 4;
}

.stat-circle-fg {
  fill: none;
  stroke: var(--accent);
  stroke-width: 6;
  stroke-linecap: round;
  filter: drop-shadow(0 0 12px rgba(184,146,106,0.45));
}

.stat-circle-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1em;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
}

.stat-number {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  letter-spacing: -0.03em;
}

.stat-suffix {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.03em;
  text-align: center;
}

@media (max-width: 768px) {
  .stats-grid { gap: 2.5rem; }
}

/* =================== SERVICES LIST =================== */
.services-list {
  display: flex;
  flex-direction: column;
  opacity: 0;
}

.service-line {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s var(--ease);
  color: var(--text-muted);
}

.service-line:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.service-line:hover {
  color: var(--accent);
  padding-left: 1rem;
}

.service-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  flex: 1;
}

.service-line svg {
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
}

.service-line:hover svg {
  opacity: 1;
  transform: translateX(0);
}

/* =================== SERVICES CARDS (HOME) =================== */
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  width: 100%;
  margin-top: 2.5rem;
  opacity: 0;
  perspective: 1200px;
}

.align-center .services-cards {
  max-width: 1200px;
}

.service-card-home {
  background: rgba(20, 20, 30, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.service-card-home::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  transition: width 0.4s var(--ease);
}

.service-card-home:hover {
  border-color: rgba(184,146,106,0.5);
  background: rgba(30, 30, 42, 0.7);
  box-shadow: 0 20px 40px -20px rgba(184,146,106,0.25);
}

.service-card-home:hover::after {
  width: 100%;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(184,146,106,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.service-card-home h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.3;
}

.service-card-home p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-light);
  opacity: 0.72;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.5rem;
  transition: gap 0.3s var(--ease);
}

.service-card-home:hover .service-card-link {
  gap: 0.7rem;
}

@media (max-width: 960px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-card-home {
    padding: 1.5rem 1.35rem;
  }
}

/* =================== TESTIMONIALS =================== */
.testimonials-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
  opacity: 0;
  transform: scale(0.9);
}

.testimonial-card .stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* =================== TESTIMONIALS CAROUSEL =================== */
.section-testimonials .section-inner { align-items: stretch; }

.testi-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
}

.testi-title-wrap { text-align: left; }

.testi-title-wrap .section-label {
  position: relative;
  padding-left: 2.5rem;
}

.testi-title-wrap .section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--accent);
}

.testi-title-wrap .section-heading {
  text-align: left;
  margin-bottom: 0;
}

.testi-nav {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.testi-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.testi-nav-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.testi-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.testi-viewport {
  overflow: hidden;
  width: 100%;
  padding: 0.5rem 0;
}

.testi-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

.testi-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
  background: rgba(20, 20, 30, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), background 0.35s var(--ease);
}

.testi-card:hover {
  background: rgba(30, 30, 42, 0.7);
}

.testi-card:hover {
  border-color: rgba(184,146,106,0.35);
  transform: translateY(-4px);
}

.testi-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testi-stars {
  display: inline-flex;
  gap: 3px;
}

.testi-stars svg {
  width: 16px;
  height: 16px;
}

.testi-google { flex-shrink: 0; }

.testi-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-light);
  opacity: 0.85;
  flex: 1;
  margin: 0;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.testi-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.testi-name {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
}

.testi-date {
  font-family: var(--font-mono);
  color: var(--text-muted);
  opacity: 0.55;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  padding: 0;
}

.testi-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 960px) {
  .testi-card { flex-basis: calc((100% - 1.5rem) / 2); }
  .testi-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .testi-card { flex-basis: 100%; }
  .testi-nav-btn { width: 44px; height: 44px; }
}

/* =================== FAQ — legacy styles removed; new tabbed FAQ lives in .faq-tabs-section block below =================== */

/* =================== WHY CARDS =================== */
.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 700px;
  width: 100%;
  margin-top: 2rem;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: left;
}

.why-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .why-cards {
    grid-template-columns: 1fr;
  }
}

/* =================== SECTION HEIGHT OVERRIDES (tighter) =================== */
.section-about,
.section-services,
.section-drone,
.section-stats,
.section-local,
.section-why,
.section-testimonials {
  min-height: auto !important;
}

.section-about { padding: 7rem 0 5rem; }
.section-services { padding: 5rem 0; }
.section-drone { padding: 4rem 0 0; }
.section-stats { padding: 3rem 0 4rem; }
.section-local { padding: 5rem 0; }
.section-why { padding: 5rem 0; }
.section-testimonials { padding: 5rem 0; }

/* =================== LOCAL (ZONE INTERVENTION) GRID =================== */
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.local-image {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 25px 60px -20px rgba(0,0,0,0.6);
}

.local-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease-out;
}

.local-image:hover img {
  transform: scale(1.04);
}

.local-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: rgba(249,251,253,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(184,146,106,0.4);
  color: var(--text-light);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.local-badge svg {
  color: var(--accent);
}

.local-text .section-heading {
  text-align: left;
  margin-bottom: 1.5rem;
}

.local-text .section-body {
  text-align: left;
}

@media (max-width: 900px) {
  .local-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .local-image {
    aspect-ratio: 16 / 10;
  }
  .local-text .section-heading,
  .local-text .section-body {
    text-align: center;
  }
}

/* =================== WHY CARDS (4-col with icons) =================== */
.section-why .section-body {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-why .why-cards {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin-top: 1.5rem;
  position: relative;
}

.section-why .why-card {
  position: relative;
  padding: 2rem 1.75rem 1.75rem;
  border-radius: 18px;
  background: rgba(20, 20, 30, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease);
}

.section-why .why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.section-why .why-card:hover {
  border-color: rgba(184,146,106,0.4);
  background: rgba(30, 30, 42, 0.7);
  transform: translateY(-5px);
}

.section-why .why-card:hover::before { opacity: 1; }

.section-why .why-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(184,146,106,0.12);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.section-why .why-card:hover .why-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05) rotate(-4deg);
}

.section-why .why-num {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
  letter-spacing: -0.03em;
}

.section-why .why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.section-why .why-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light);
  opacity: 0.68;
}

@media (max-width: 1100px) {
  .section-why .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .section-why .why-cards {
    grid-template-columns: 1fr;
  }
}

/* =================== DRONE MEDIA (FULL-SCREEN SCROLL TRAVERSE) =================== */
.drone-media {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 55vh;
  margin-top: 1rem;
  overflow: visible;
  pointer-events: none;
}

.drone-fly {
  position: sticky;
  top: 55%;
  display: block;
  width: clamp(240px, 26vw, 360px);
  height: auto;
  transform: translate3d(110vw, 0, 0);
  will-change: transform;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.55));
}

@media (max-width: 768px) {
  .drone-media {
    height: 42vh;
  }
  .drone-fly {
    width: clamp(170px, 45vw, 240px);
    top: 55%;
  }
}

/* =================== DEVIS FORM =================== */
.section-devis {
  min-height: 0 !important;
  padding: 3rem 0 2rem;
  background: var(--bg-darker);
}

.section-devis .section-heading {
  margin-bottom: 0.5rem;
}

.section-devis .section-body {
  margin-bottom: 1rem;
}

.devis-form-wrap {
  max-width: 640px;
  width: 100%;
  margin-top: 1rem;
}

.devis-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--text-light);
  transition: border-color 0.3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238a8078' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--bg-dark);
  color: var(--text-light);
}

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

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

.form-note a {
  color: var(--accent);
  text-decoration: underline;
}

/* =================== PHOTO MARQUEE GALLERY =================== */
.photo-marquee {
  position: relative;
  z-index: 5;
  background: var(--bg-darker);
  padding: 0 0 2rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.photo-marquee-row {
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.photo-marquee-row:last-child {
  margin-bottom: 0;
}

.photo-marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
}

.photo-marquee-ltr .photo-marquee-track {
  animation: marqueeGalLTR 50s linear infinite;
}

.photo-marquee-rtl .photo-marquee-track {
  animation: marqueeGalRTL 50s linear infinite;
}

.photo-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeGalLTR {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeGalRTL {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.photo-marquee-track img {
  height: 240px;
  width: 380px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

@media (max-width: 768px) {
  .photo-marquee-track img {
    height: 180px;
    width: 280px;
  }
}

/* =================== FOOTER =================== */
.site-footer {
  position: relative;
  z-index: 5;
  background: var(--bg-darker);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-siret {
  font-size: 0.78rem !important;
  color: var(--text-muted) !important;
  opacity: 0.6;
  margin-top: 0.5rem !important;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-col li:not(:has(a)) {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--accent);
  font-weight: 500;
}

/* =================== SCROLL TO TOP =================== */
.to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-dark);
  border: none;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.4s var(--ease);
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--accent-light);
  transform: translateY(-4px);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .align-center .section-heading,
  .align-center .section-body {
    max-width: 90%;
  }

  .stats-grid {
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .main-nav, .header-phone {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .section-inner {
    padding: 0 1.5rem;
  }

  .align-center .section-heading,
  .align-center .section-body {
    max-width: 100%;
  }

  .align-right {
    align-items: flex-start;
    text-align: left;
  }

  .stats-grid {
    gap: 2rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2.8rem, 12vw, 5rem);
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .marquee-track span {
    font-size: clamp(2.5rem, 10vw, 5rem);
  }
}

@media (max-width: 480px) {
  .section-heading {
    font-size: 2rem;
  }

  .service-name {
    font-size: 1.05rem;
  }

  .stats-grid {
    flex-direction: column;
    gap: 2rem;
  }
}

/* =================== MOBILE & TABLET - TIGHT SPACING =================== */
@media (max-width: 900px) {
  /* Tighten all sections to remove dead space */
  .section-about { padding: 4rem 0 2.5rem !important; }
  .section-services { padding: 3rem 0 !important; }
  .section-drone { padding: 3rem 0 0 !important; }
  .section-stats { padding: 2rem 0 2.5rem !important; }
  .section-local { padding: 3rem 0 !important; }
  .section-why { padding: 3rem 0 !important; }
  .section-testimonials { padding: 3rem 0 !important; }
  .section-devis { padding: 2.5rem 0 2rem !important; }

  /* Reduce drone traversal zone on mobile so there's no dead space */
  .drone-media {
    height: 28vh;
    margin-top: 1.5rem;
  }
  .drone-fly {
    width: clamp(150px, 38vw, 220px);
    top: 55%;
  }

  /* Stats circles tighter */
  .stat-circle { width: clamp(140px, 38vw, 180px); }

  /* Section heading and body tighter on mobile */
  .section-heading { margin-bottom: 1rem; }
  .section-body { margin-bottom: 1.5rem; font-size: 1rem; }
  .section-label { margin-bottom: 0.75rem; }

  /* Cards grid more compact */
  .services-cards { gap: 1rem; margin-top: 1.75rem; }
  .service-card-home { padding: 1.5rem 1.25rem; }

  .section-why .why-cards { gap: 0.85rem; margin-top: 1.5rem; }
  .section-why .why-card { padding: 1.5rem 1.25rem 1.25rem; }

  /* Local section image smaller */
  .local-grid { gap: 2rem !important; }

  /* Testimonials header stacks */
  .testi-header { margin-bottom: 1.75rem; }

  /* Photo marquee: images smaller on mobile */
  .photo-marquee { padding: 0 0 1.5rem; }
  .photo-marquee-row { margin-bottom: 0.85rem; }
  .photo-marquee-track { gap: 0.85rem; }
  .photo-marquee-track img {
    height: 160px;
    width: 240px;
    border-radius: 10px;
  }

  /* FAQ tighter */
  .section-faq { padding: 3rem 0 2.5rem !important; }
}

@media (max-width: 600px) {
  .section-about { padding: 3.5rem 0 2rem !important; }
  .section-services,
  .section-local,
  .section-why,
  .section-testimonials { padding: 2.5rem 0 !important; }
  .section-drone { padding: 2.5rem 0 0 !important; }
  .section-stats { padding: 1.5rem 0 2rem !important; }
  .section-devis { padding: 2rem 0 1.5rem !important; }
  .section-faq { padding: 2.5rem 0 2rem !important; }

  .drone-media { height: 22vh; margin-top: 1rem; }
  .drone-fly { width: clamp(140px, 42vw, 200px); top: 58%; }

  .photo-marquee-track img { height: 130px; width: 200px; }

  .section-heading { font-size: clamp(1.9rem, 8vw, 2.3rem) !important; line-height: 1.1; }

  .hero-title { font-size: clamp(2.2rem, 11vw, 3.6rem); }
}

/* =================== FORM SUCCESS =================== */
.form-success {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 16px;
  color: var(--text-light);
}

.form-success svg {
  color: #22c55e;
  margin-bottom: 1rem;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-success p {
  opacity: 0.8;
  line-height: 1.5;
}

/* =================== LOCK HORIZONTAL SCROLL (ALL BREAKPOINTS) =================== */
html, body {
  overflow-x: clip;
  touch-action: pan-y;
}

.drone-media,
.photo-marquee {
  max-width: 100vw;
  overflow-x: clip;
}

.photo-marquee-row {
  overflow: hidden;
}

/* =================== MOBILE POLISH - ANIMATION VISIBILITY + CENTERING =================== */
@media (max-width: 900px) {
  /* Cards more transparent so video animation shows through */
  .service-card-home,
  .section-why .why-card,
  .testi-card {
    background: rgba(15, 15, 24, 0.38) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
  }

  .service-card-home:hover,
  .section-why .why-card:hover,
  .testi-card:hover {
    background: rgba(25, 25, 36, 0.55) !important;
  }

  /* Compact cards - shorter vertically */
  .service-card-home {
    padding: 1.25rem 1.1rem !important;
    gap: 0.55rem !important;
  }
  .service-card-home h3 { font-size: 1rem; line-height: 1.25; }
  .service-card-home p { font-size: 0.85rem; line-height: 1.5; }
  .service-card-home .service-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0.25rem;
  }

  .section-why .why-card { padding: 1.25rem 1.1rem 1rem !important; }
  .section-why .why-card h3 { font-size: 1rem !important; }
  .section-why .why-card p { font-size: 0.85rem !important; line-height: 1.5 !important; }

  .testi-card { padding: 1.25rem !important; gap: 0.85rem !important; }
  .testi-text { font-size: 0.88rem; line-height: 1.55; }

  /* Stats circles — force centering on all breakpoints */
  .stats-grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
  }
  .stat-item {
    width: 100%;
    align-items: center !important;
    justify-content: center;
  }
  .stat-circle {
    margin-left: auto;
    margin-right: auto;
  }

  /* Section-inner needs horizontal centering on mobile */
  .scroll-section {
    justify-content: center;
  }

  /* Force center titles inside local section on mobile */
  .section-local .local-text {
    text-align: center;
  }
  .section-local .local-text .section-label {
    text-align: center;
    padding-left: 0;
  }

  /* Testimonials header centered + stacked */
  .testi-header {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
    gap: 1rem;
  }
  .testi-title-wrap {
    text-align: center !important;
  }
  .testi-title-wrap .section-heading {
    text-align: center !important;
  }
  .testi-title-wrap .section-label {
    padding-left: 0 !important;
  }
  .testi-title-wrap .section-label::before {
    display: none !important;
  }

}

@media (max-width: 600px) {
  /* Stats circles smaller and centered tighter */
  .stat-circle { width: clamp(130px, 42vw, 170px) !important; }
  .stats-grid { gap: 1.75rem !important; }

  /* Drone section: less empty feel */
  .section-drone .drone-media { height: 24vh; }
}

/* =================== MOBILE SPACING — TIGHTER (≤768px) =================== */
@media (max-width: 768px) {
  /* Force sections to hug their content — no 100vh min-height */
  .scroll-section,
  .section-about,
  .section-services,
  .section-drone,
  .section-stats,
  .section-local,
  .section-why,
  .section-testimonials,
  .section-faq,
  .section-devis {
    min-height: 0 !important;
    padding: 2rem 1.25rem !important;
  }

  /* Section 001 — about: tight body bottom, tight bottom padding */
  .section-about {
    padding: 2rem 1.25rem 1rem !important;
  }
  .section-about .section-body {
    margin-bottom: 0 !important;
  }

  /* Section drone */
  .section-drone {
    padding: 1.5rem 1.25rem 1rem !important;
  }
  .section-drone .section-body {
    margin-bottom: 0 !important;
  }

  /* Services top: less gap after section-about */
  .section-services {
    padding: 1rem 1.25rem 2rem !important;
  }

  /* Between local (004) and why (005) — tighten both */
  .section-local {
    padding: 1.5rem 1.25rem !important;
  }
  .section-why {
    padding: 1.5rem 1.25rem !important;
  }
  .section-testimonials {
    padding: 1.5rem 1.25rem !important;
  }

  /* Headings tighter */
  .scroll-section h2,
  .scroll-section .section-heading {
    margin-bottom: 0.75rem !important;
  }
  .scroll-section .section-body {
    margin-bottom: 0.75rem;
  }
  .align-center .section-body:last-of-type {
    margin-bottom: 0 !important;
  }

  /* Section headers helpers (used elsewhere) */
  .section-header,
  [class*="section-head"] {
    margin-bottom: 1.25rem !important;
  }

  /* CTAs under text — a bit of breathing room */
  .scroll-section .section-cta,
  .scroll-section .btn.section-cta {
    margin-top: 1.25rem !important;
  }
}

/* =================================================
   3D VERTICAL MARQUEE — Real Google reviews
   ================================================= */
.section-testimonials .testi-header {
  margin-bottom: 2.5rem;
}
.section-testimonials .testi-subtitle {
  margin-top: .8rem;
  color: rgba(6,14,24,.65);
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .04em;
}
.section-testimonials .testi-subtitle strong {
  color: var(--accent);
  font-weight: 600;
}

.marquee3d-stage {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 560px;
  overflow: hidden;
  perspective: 900px;
  perspective-origin: 50% 50%;
  background: transparent;
  border: none;
  border-radius: 0;
}

.marquee3d-tilt {
  position: absolute;
  inset: -10% -5%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 1.25rem;
  transform-style: preserve-3d;
  transform:
    translateX(-40px)
    translateZ(-160px)
    rotateX(14deg)
    rotateY(-12deg)
    rotateZ(8deg);
  will-change: transform;
}

.marquee3d-col {
  flex: 1;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.marquee3d-track {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: marquee-down 40s linear infinite;
  will-change: transform;
}
.marquee3d-track.marquee3d-reverse {
  animation: marquee-up 40s linear infinite;
}
.marquee3d-track.marquee3d-slow {
  animation-duration: 55s;
}

@keyframes marquee-down {
  0%   { transform: translateY(-50%); }
  100% { transform: translateY(0%); }
}
@keyframes marquee-up {
  0%   { transform: translateY(0%); }
  100% { transform: translateY(-50%); }
}

/* pause when hovering anywhere on the stage */
.marquee3d-stage:hover .marquee3d-track {
  animation-play-state: paused;
}

/* Review card */
.review-card {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(6,14,24,.08);
  border-radius: 14px;
  padding: 1.1rem 1.1rem 1rem;
  flex-shrink: 0;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.review-card:hover {
  border-color: rgba(184,146,106,.45);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -16px rgba(184,146,106,.45);
}

.review-card .rc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .6rem;
}
.review-card .rc-stars {
  color: #FBBC05;
  font-size: 0.95rem;
  letter-spacing: 1px;
  line-height: 1;
}
.review-card .rc-google {
  flex-shrink: 0;
}

.review-card .rc-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(6,14,24,.85);
  margin: 0 0 .9rem;
  font-style: normal;
  /* allow up to ~7 lines, then ellipsis */
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card .rc-author {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding-top: .7rem;
  border-top: 1px solid rgba(6,14,24,.06);
}
.review-card .rc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.review-card .rc-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.review-card .rc-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card .rc-flag {
  font-size: 0.85rem;
  flex-shrink: 0;
}
.review-card .rc-date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(6,14,24,.55);
  letter-spacing: .03em;
}

/* Edge fades disabled — they were creating a dark rectangular contour.
   Each column already has its own top/bottom mask-image fade. */
.marquee3d-fade { display: none; }

/* Responsive */
@media (max-width: 1024px) {
  .marquee3d-stage { height: 520px; }
  .marquee3d-tilt {
    transform:
      translateZ(-120px)
      rotateX(10deg)
      rotateY(-8deg)
      rotateZ(5deg);
  }
}
@media (max-width: 720px) {
  .marquee3d-stage { height: 480px; perspective: 700px; }
  .marquee3d-tilt {
    inset: -8% -2%;
    gap: .65rem;
    transform:
      translateZ(-80px)
      rotateX(6deg)
      rotateY(-5deg)
      rotateZ(3deg);
  }
  /* hide cols 3 & 4 on small screens to keep cards readable */
  .marquee3d-col:nth-child(3),
  .marquee3d-col:nth-child(4) { display: none; }
  .review-card { padding: .9rem; }
  .review-card .rc-text { font-size: .82rem; -webkit-line-clamp: 6; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee3d-track { animation: none !important; }
}
/* =================================================
   HERO PARALLAX — full-screen background, mix-blend text
   ================================================= */
.hero.hero-parallax {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  display: block;
  padding: 0;
  background: #000;
  overflow: hidden;
  isolation: isolate;
}

/* Override the radial-gradient + noise from base .hero */
.hero.hero-parallax::before,
.hero.hero-parallax::after {
  content: none;
  display: none;
}

/* Parallax background stage (sits behind, slightly oversized) */
.hero-bg-stage {
  position: absolute;
  top: -10vh;
  left: 0;
  width: 100%;
  height: 120vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  will-change: transform;
  transform: translate3d(0,0,0) scale(1.05);
  filter: contrast(1.05) brightness(0.92);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.30) 35%, rgba(0,0,0,.45) 70%, rgba(0,0,0,.70) 100%),
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0,0,0,.10) 0%, rgba(0,0,0,.45) 100%);
  pointer-events: none;
}

/* Foreground content — pure white text, centered */
.hero.hero-parallax .hero-fg {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 1.5rem) clamp(1.25rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  color: #fff;
}

.hero.hero-parallax .hero-fg-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}
.hero.hero-parallax .hero-tagline {
  max-width: 56ch;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  text-align: center;
  margin: 0 auto;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

.hero.hero-parallax .hero-fg-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
  width: 100%;
}
.hero.hero-parallax .hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7.5vw, 6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  text-shadow: 0 4px 28px rgba(0,0,0,.55), 0 2px 8px rgba(0,0,0,.4);
}
.hero.hero-parallax .hero-title .word {
  display: block;
  color: #fff;
}
.hero.hero-parallax .hero-title .word em {
  color: #fff;
  font-style: italic;
  font-weight: 800;
}
.hero.hero-parallax .hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,.92);
  max-width: 56ch;
  margin: 0 auto;
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
}

.hero.hero-parallax .hero-fg-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}
.hero.hero-parallax .hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero.hero-parallax .hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  color: rgba(255,255,255,.92);
  font-size: 0.85rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
.hero.hero-parallax .trust-item {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.hero.hero-parallax .trust-sep {
  opacity: .5;
}

/* Pill — solid blue glass */
.hero.hero-parallax .hero-pill {
  background: rgba(184,146,106,.20);
  border-color: rgba(184,146,106,.55);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.hero.hero-parallax .hero-dot {
  background: #046bd2;
  box-shadow: 0 0 8px rgba(184,146,106,.8);
}

/* Primary CTA — solid blue, no orange/copper */
.hero.hero-parallax .hero-cta .btn-primary {
  background: var(--accent) !important;
  background-image: none !important;
  color: #fff !important;
  border: 1px solid var(--accent);
  box-shadow: 0 12px 30px -8px rgba(184,146,106,.55);
}
.hero.hero-parallax .hero-cta .btn-primary:hover {
  background: var(--accent-dark) !important;
  background-image: none !important;
  box-shadow: 0 18px 40px -8px rgba(184,146,106,.7);
  transform: translateY(-2px);
}

/* Outline CTA — white border on dark image */
.hero.hero-parallax .hero-cta .btn-outline {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero.hero-parallax .hero-cta .btn-outline:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.7);
}

/* Scroll hint */
.hero.hero-parallax .hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero.hero-parallax .hero-scroll-hint .scroll-line {
  background: rgba(255,255,255,.5);
}

/* Responsive */
@media (max-width: 900px) {
  .hero.hero-parallax .hero-fg {
    padding: calc(var(--header-h) + 1rem) 1.25rem 1.5rem;
    justify-content: space-between;
  }
  .hero.hero-parallax .hero-tagline {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
    font-size: 0.78rem;
  }
  .hero.hero-parallax .hero-title {
    font-size: clamp(2.2rem, 11vw, 4rem);
  }
  .hero.hero-parallax .hero-cta { flex-direction: column; width: 100%; }
  .hero.hero-parallax .hero-cta .btn { width: 100%; justify-content: center; }
  .hero.hero-parallax .hero-trust { font-size: 0.72rem; gap: .4rem; }
  .hero.hero-parallax .hero-trust .trust-sep { display: none; }
}
/* =================================================
   ZOOM PARALLAX — scroll-driven gallery (7 images)
   Vanilla port of the framer-motion ZoomParallax component.
   ================================================= */
.zoom-parallax {
  position: relative;
  width: 100%;
  background: var(--bg-dark);
  overflow: visible;
  isolation: isolate;
}

/* Force-collapse the gap with the section just above (zone d'intervention).
   That section has min-height:100vh + 6rem padding which leaves dead space. */
.section-local:has(+ .zoom-parallax) {
  min-height: auto !important;
  padding-bottom: 2rem !important;
}

/* Intro band — minimal padding so it sits just above the parallax */
.zoom-parallax .zp-intro {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.5rem 1.25rem 0;
  max-width: 720px;
  margin: 0 auto;
}
.zoom-parallax .zp-intro .section-label,
.zoom-parallax .zp-intro .section-heading,
.zoom-parallax .zp-intro .section-body {
  margin-bottom: .5rem;
  /* Cette section n'est pas une .scroll-section : le JS ne révèle pas son intro.
     On force donc l'affichage (sinon opacity:0 hérité de la règle globale = invisible). */
  opacity: 1;
  transform: none;
}
/* Palette claire : l'intro est sur fond clair → forcer des couleurs sombres
   (la règle globale .section-heading/.section-body est blanche, héritée de l'ancienne palette sombre) */
.zoom-parallax .zp-intro .section-heading {
  color: var(--primary-dark);
  text-shadow: none;
}
.zoom-parallax .zp-intro .section-body {
  color: var(--text-muted);
  text-shadow: none;
}
.zoom-parallax .zp-intro .section-heading em {
  font-style: italic;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 500;
}

/* Track is the long scroll runway (3× viewport) */
.zoom-parallax .zp-track {
  position: relative;
  height: 300vh;
  width: 100%;
}

/* Stage stays pinned to viewport while track scrolls */
.zoom-parallax .zp-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}

/* Each slot fills the stage and centers its frame */
.zoom-parallax .zp-slot {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

/* Default frame — center, 25vw × 25vh (scale up 4×) */
.zoom-parallax .zp-frame {
  position: relative;
  width: 25vw;
  height: 25vh;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 18px 44px -16px rgba(0,0,0,.7);
}
.zoom-parallax .zp-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Per-index frame overrides (positions match the React component) */
.zoom-parallax .zp-slot-1 .zp-frame {
  top: -30vh;
  left: 5vw;
  width: 35vw;
  height: 30vh;
}
.zoom-parallax .zp-slot-2 .zp-frame {
  top: -10vh;
  left: -25vw;
  width: 20vw;
  height: 45vh;
}
.zoom-parallax .zp-slot-3 .zp-frame {
  left: 27.5vw;
  width: 25vw;
  height: 25vh;
}
.zoom-parallax .zp-slot-4 .zp-frame {
  top: 27.5vh;
  left: 5vw;
  width: 20vw;
  height: 25vh;
}
.zoom-parallax .zp-slot-5 .zp-frame {
  top: 27.5vh;
  left: -22.5vw;
  width: 30vw;
  height: 25vh;
}
.zoom-parallax .zp-slot-6 .zp-frame {
  top: 22.5vh;
  left: 25vw;
  width: 15vw;
  height: 15vh;
}

/* Mobile: collapse the parallax into a normal grid (the effect doesn't work well on small viewports) */
@media (max-width: 720px) {
  .zoom-parallax .zp-track { height: auto; }
  .zoom-parallax .zp-stage {
    position: relative;
    height: auto;
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
    padding: 0 1rem 3rem;
  }
  .zoom-parallax .zp-slot {
    position: relative;
    inset: auto;
    display: block;
  }
  .zoom-parallax .zp-slot,
  .zoom-parallax .zp-slot .zp-frame {
    width: 100%;
    height: auto;
    top: auto;
    left: auto;
    transform: none !important;
  }
  .zoom-parallax .zp-slot .zp-frame {
    aspect-ratio: 4/3;
  }
  .zoom-parallax .zp-slot-0 .zp-frame { aspect-ratio: 4/3; }
  /* First image takes both columns for variety */
  .zoom-parallax .zp-slot-0 { grid-column: span 2; }
}

@media (prefers-reduced-motion: reduce) {
  .zoom-parallax .zp-slot { transform: none !important; }
}
/* =================================================
   SERVICES CAROUSEL — horizontal scroll-snap with arrow nav
   Vanilla port of the embla-carousel ServiceCarousel.
   Keeps the existing palette (--accent blue, --copper orange)
   ================================================= */
.svc-carousel {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 2.5rem auto 0;
  padding: 0 .25rem;
}

.svc-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: .25rem .25rem 1rem;
  /* fade edges visually so cards don't hard-cut */
  mask-image: linear-gradient(to right, transparent 0, #000 2%, #000 98%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 2%, #000 98%, transparent 100%);
}
.svc-track::-webkit-scrollbar { display: none; }

.svc-card {
  position: relative;
  flex: 0 0 calc((100% - 2.5rem) / 3);  /* 3 visible on desktop */
  min-width: 0;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  text-decoration: none;
  color: var(--text-light);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  border: 1px solid rgba(6,14,24,.06);
  isolation: isolate;
}
.svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(249,251,253,.45) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(184,146,106,.35);
}

/* Per-card gradients — bleu / orange / mix variants */
.svc-card-1 { background: linear-gradient(135deg, rgba(184,146,106,.28), rgba(184,146,106,.08) 70%, rgba(249,251,253,.92)); }
.svc-card-2 { background: linear-gradient(135deg, rgba(3,78,150,.32), rgba(3,78,150,.08) 70%, rgba(249,251,253,.92)); }
.svc-card-3 { background: linear-gradient(135deg, rgba(255,105,0,.24), rgba(255,105,0,.06) 70%, rgba(249,251,253,.92)); }
.svc-card-4 { background: linear-gradient(135deg, rgba(14,123,217,.28), rgba(14,123,217,.08) 70%, rgba(249,251,253,.92)); }
.svc-card-5 { background: linear-gradient(135deg, rgba(184,146,106,.18), rgba(255,105,0,.14) 70%, rgba(249,251,253,.92)); }
.svc-card-6 { background: linear-gradient(135deg, rgba(3,78,150,.22), rgba(255,105,0,.10) 70%, rgba(249,251,253,.92)); }

.svc-card-top,
.svc-card-bot {
  position: relative;
  z-index: 1;
}

.svc-card-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.svc-num {
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .12em;
  color: rgba(6,14,24,.55);
}

.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.svc-card-bot h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  margin: 0 0 .6rem;
}
.svc-card-bot p {
  font-family: var(--font-body);
  font-size: .85rem;
  line-height: 1.55;
  color: rgba(6,14,24,.78);
  margin: 0 0 1rem;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.svc-card:hover .svc-link {
  gap: .65rem;
  color: #FF6900;
}

/* Nav buttons */
.svc-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(6,14,24,.10);
  border: 1px solid rgba(6,14,24,.18);
  color: var(--text-light);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.svc-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}
.svc-nav:active { transform: translateY(-50%) scale(.96); }
.svc-prev { left: -10px; }
.svc-next { right: -10px; }

/* Responsive — 2 cards on tablet, 1 on mobile */
@media (max-width: 1024px) {
  .svc-card { flex-basis: calc((100% - 1.25rem) / 2); }
}
@media (max-width: 640px) {
  .svc-card { flex-basis: 88%; height: 420px; padding: 1.5rem; }
  .svc-prev { left: -4px; }
  .svc-next { right: -4px; }
}
/* =================================================
   STAT CARD MODERN — shadcn-style number cards with trend
   Replaces the circular progress design.
   .stat-item wrapper kept so existing GSAP playStat() still animates the count.
   ================================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-card-modern {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1.75rem 1.5rem;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(6,14,24,.10);
  border-radius: 16px;
  box-shadow: 0 12px 30px -16px rgba(0,0,0,.55);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.stat-card-modern:hover {
  transform: translateY(-3px);
  border-color: rgba(184,146,106,.4);
  box-shadow: 0 22px 50px -16px rgba(184,146,106,.35);
}

/* Value (animated number) */
.stat-card-modern .stat-card-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}
.stat-card-modern .stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  letter-spacing: -0.04em;
  color: var(--text-light);
  line-height: 1;
}
.stat-card-modern .stat-card-suffix {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: rgba(6,14,24,.55);
  line-height: 1;
}

/* Title */
.stat-card-modern .stat-card-title {
  font-family: var(--font-body);
  font-size: .95rem;
  color: rgba(6,14,24,.65);
  margin: 0;
}

/* Trend indicator */
.stat-card-modern .stat-card-trend {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
}
.stat-card-modern .trend-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  flex-shrink: 0;
}
.trend-up .trend-icon {
  background: rgba(34,197,94,.15);
  color: #4ade80;
}
.trend-down .trend-icon {
  background: rgba(239,68,68,.15);
  color: #f87171;
}
.stat-card-modern .trend-text {
  font-family: var(--font-body);
  font-size: .82rem;
  color: rgba(6,14,24,.55);
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: .35rem;
  flex-wrap: wrap;
}
.stat-card-modern .trend-value {
  font-weight: 700;
  font-family: var(--font-display);
}
.trend-up .trend-value { color: #4ade80; }
.trend-down .trend-value { color: #f87171; }
.stat-card-modern .trend-desc {
  color: rgba(6,14,24,.5);
}

/* Hide legacy circle elements if any old markup remains */
.stat-card-modern .stat-circle,
.stat-card-modern .stat-label {
  display: none;
}

/* Responsive */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; max-width: 360px; }
  .stat-card-modern { padding: 1.5rem 1.25rem; }
}
/* =================================================
   BENTO — "Pourquoi choisir Jeanmaire" 5-card grid
   Vanilla port of features-8 component.
   ================================================= */
.section-why .bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .9rem;
  width: 100%;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}

.bento-card {
  position: relative;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(6,14,24,.10);
  border-radius: 18px;
  padding: 2rem 1.5rem 1.75rem;
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.bento-card:hover {
  border-color: rgba(184,146,106,.4);
  transform: translateY(-3px);
}
.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 1rem 0 .35rem;
  text-align: center;
}
.bento-card p {
  font-family: var(--font-body);
  font-size: .85rem;
  line-height: 1.55;
  color: rgba(6,14,24,.65);
  margin: 0;
  text-align: center;
}

/* Default card sizing (mobile = stacked full width) */
.section-why .bento-grid > .bento-card { grid-column: span 6; }

/* Tablet: 100% in row 1, then 2x3 cols, then 2x3 cols */
@media (min-width: 640px) {
  .section-why .bento-grid > .bento-100,
  .section-why .bento-grid > .bento-drone,
  .section-why .bento-grid > .bento-team   { grid-column: span 6; }
  .section-why .bento-grid > .bento-shield,
  .section-why .bento-grid > .bento-chart  { grid-column: span 3; }
}

/* Desktop: row 1 = 2+2+2, row 2 = 3+3 (5 cards total, matches the React reference) */
@media (min-width: 1024px) {
  .section-why .bento-grid > .bento-100    { grid-column: span 2; }
  .section-why .bento-grid > .bento-shield { grid-column: span 2; }
  .section-why .bento-grid > .bento-chart  { grid-column: span 2; }
  .section-why .bento-grid > .bento-drone  { grid-column: span 3; }
  .section-why .bento-grid > .bento-team   { grid-column: span 3; }
}

/* Card 1 — 100% with curve */
.bento-100-wrap {
  position: relative;
  width: 224px;
  height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento-100-curve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(6,14,24,.10);
}
.bento-100-text {
  position: relative;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -.04em;
  line-height: 1;
}
.bento-100-text small {
  font-size: 1.4rem;
  color: rgba(6,14,24,.55);
  margin-left: 2px;
  font-weight: 500;
}

/* Card 2 — circular shield ring */
.bento-shield-ring {
  position: relative;
  width: 8rem;
  height: 8rem;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(6,14,24,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.bento-shield-ring::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(6,14,24,.06);
}

/* Card 3 — drone image (transparent bg) */
.bento-chart-wrap {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 .5rem;
  background: transparent;
}
.bento-drone-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(26,45,66,0.18));
  transition: transform .35s var(--ease);
}
.bento-card:hover .bento-drone-img {
  transform: translateY(-3px) scale(1.04);
}

/* Card 4 — drone window-style chart */
.bento-drone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 1.75rem 0 0 1.75rem;
  gap: 0;
}
.bento-drone-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
}
.bento-drone-info h3,
.bento-team-info h3 {
  text-align: left;
  margin: 0 0 .35rem;
}
.bento-drone-info p,
.bento-team-info p {
  text-align: left;
}
.bento-drone-chart {
  position: relative;
  border-left: 1px solid rgba(6,14,24,.10);
  border-top: 1px solid rgba(6,14,24,.10);
  border-top-left-radius: 14px;
  margin-left: 1.25rem;
  margin-top: 1rem;
  padding: 1.5rem 1rem 0 1rem;
  align-self: stretch;
  overflow: hidden;
}
.bento-drone-chart svg {
  width: 110%;
  height: auto;
  display: block;
  margin-left: -5%;
}

/* Bento drone photo (replaces window-style chart) */
.bento-drone-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  padding: 1rem;
  margin-left: 1.25rem;
  min-height: 160px;
}
.bento-drone-photo-img {
  max-width: 100%;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(26,45,66,0.25));
  transition: transform .35s var(--ease);
}
.bento-card:hover .bento-drone-photo-img {
  transform: translateY(-4px) scale(1.05);
}
.bento-window-dots {
  position: absolute;
  top: 8px;
  left: 12px;
  display: flex;
  gap: 4px;
}
.bento-window-dots span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(6,14,24,.10);
  border: 1px solid rgba(6,14,24,.10);
}
.bento-icon-ring {
  position: relative;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(6,14,24,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.bento-icon-ring::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(6,14,24,.06);
}

/* Card 5 — team avatars */
.bento-team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 1.75rem;
  gap: 1.5rem;
}
.bento-team-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}
.bento-team-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding-left: 1rem;
}
.bento-team-stack::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(6,14,24,.10);
}
.bento-team-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: .55rem;
  z-index: 1;
}
.bento-team-right {
  width: calc(50% + 14px);
  justify-content: flex-end;
}
.bento-team-left {
  margin-left: calc(50% - 16px);
}
.bento-team-tag {
  font-family: var(--font-mono);
  font-size: .68rem;
  padding: 4px 10px;
  border: 1px solid rgba(6,14,24,.14);
  border-radius: 6px;
  background: rgba(249,251,253,.6);
  color: var(--text-light);
  white-space: nowrap;
}
.bento-team-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  outline: 4px solid rgba(249,251,253,.85);
  flex-shrink: 0;
}

/* Mobile collapse for cards 4 & 5 */
@media (max-width: 720px) {
  .bento-drone, .bento-team {
    grid-template-columns: 1fr;
    padding: 1.75rem 1.5rem;
  }
  .bento-drone-chart,
  .bento-drone-photo {
    border-left: none;
    border-top: none;
    margin: 1rem 0 0 0;
    padding: .5rem 0 0;
  }
  .bento-drone-photo-img {
    max-height: 140px;
  }
  .bento-team-stack {
    padding-left: 0;
  }
  .bento-team-stack::before { display: none; }
  .bento-team-right, .bento-team-left {
    width: 100%;
    margin: 0;
    justify-content: flex-start;
  }
}

/* =================================================
   FAQ TABS — categories Couverture/Zinguerie/etc.
   ================================================= */
.faq-tabs-section {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 1.25rem;
  background: transparent;
  overflow: hidden;
}
.faq-tabs-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  z-index: 1;
}
.faq-tabs-section::before {
  content: "";
  position: absolute;
  top: -350px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,106,.15) 0%, rgba(184,146,106,.04) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.faq-tabs-head {
  text-align: center;
  margin-bottom: 2rem;
}
.faq-tabs-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--accent), rgba(184,146,106,.55));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}
.faq-tabs-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--text-light);
  margin: 0 0 .8rem;
}
.faq-tabs-title em {
  font-style: italic;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 500;
}
.faq-tabs-sub {
  font-family: var(--font-body);
  font-size: .95rem;
  color: rgba(6,14,24,.6);
  margin: 0;
}

/* Tabs */
.faq-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  margin-bottom: 2.5rem;
}
.faq-tab {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border-radius: 8px;
  border: 1px solid rgba(6,14,24,.14);
  background: transparent;
  padding: .55rem 1rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  color: rgba(6,14,24,.65);
  transition: color .35s var(--ease), border-color .35s var(--ease);
}
.faq-tab .faq-tab-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: translateY(100%);
  transition: transform .45s cubic-bezier(.5, 1.5, .5, 1);
}
.faq-tab .faq-tab-label {
  position: relative;
  z-index: 1;
}
.faq-tab:hover { color: var(--text-light); }
.faq-tab.is-active {
  color: #fff;
  border-color: var(--accent);
}
.faq-tab.is-active .faq-tab-bg {
  transform: translateY(0);
}

/* Panels */
.faq-tabs-panels {
  position: relative;
  margin-top: 1rem;
}
.faq-panel {
  display: none;
  flex-direction: column;
  gap: .7rem;
}
.faq-panel.is-active {
  display: flex;
  animation: faqFadeIn .45s var(--ease);
}
@keyframes faqFadeIn {
  0%   { opacity: 0; transform: translateY(15px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* FAQ item (each <details>) */
.faq-tab-item {
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(6,14,24,.10);
  border-radius: 12px;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.faq-tab-item[open] {
  background: rgba(255,255,255,.85);
  border-color: rgba(184,146,106,.35);
}
.faq-tab-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(6,14,24,.7);
  transition: color .25s var(--ease);
}
.faq-tab-item summary::-webkit-details-marker { display: none; }
.faq-tab-item[open] summary { color: var(--text-light); }
.faq-tab-item summary:hover { color: var(--text-light); }
.faq-tab-plus {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  color: rgba(6,14,24,.5);
  transition: transform .25s var(--ease), color .25s var(--ease);
}
.faq-tab-item[open] .faq-tab-plus {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-tab-answer {
  padding: 0 1.25rem 1.25rem;
  font-family: var(--font-body);
  font-size: .92rem;
  line-height: 1.65;
  color: rgba(6,14,24,.7);
}

.faq-tabs-cta {
  margin-top: 2rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: .9rem;
  color: rgba(6,14,24,.55);
}
.faq-tabs-cta a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(184,146,106,.4);
}
.faq-tabs-cta a:hover {
  color: #FF6900;
  border-bottom-color: rgba(255,105,0,.5);
}

@media (max-width: 600px) {
  .faq-tab { padding: .5rem .85rem; font-size: .8rem; }
  .faq-tab-item summary { padding: .85rem 1rem; font-size: .92rem; }
  .faq-tab-answer { padding: 0 1rem 1rem; font-size: .88rem; }
}
/* =================================================
   ZONE D'INTERVENTION — V2 with cities chip grid
   ================================================= */
.section-local-v2 .local-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Left — image with radius badge */
.local-v2-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
}
.local-v2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease);
}
.section-local-v2:hover .local-v2-image img { transform: scale(1.04); }

.local-v2-radius {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(249,251,253,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(184,146,106,.55);
  box-shadow: 0 0 0 8px rgba(184,146,106,.10), 0 18px 36px -12px rgba(184,146,106,.5);
  color: var(--text-light);
  font-family: var(--font-display);
  z-index: 2;
}
.local-v2-radius-num {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -.04em;
}
.local-v2-radius-unit {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: rgba(6,14,24,.7);
  margin-top: 2px;
}
.local-v2-radius-label {
  font-size: .58rem;
  font-family: var(--font-mono);
  color: rgba(6,14,24,.5);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: 2px;
}

.local-v2-pin {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .95rem;
  background: rgba(249,251,253,.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(6,14,24,.18);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
  z-index: 2;
}
.local-v2-pin svg {
  color: var(--accent);
}

/* Right — heading + chips */
.local-v2-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.local-v2-lead {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(6,14,24,.7);
  margin: 0 0 .5rem;
}
.local-v2-lead strong {
  color: var(--text-light);
  font-weight: 600;
}

.local-v2-cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
  margin: .5rem 0 1rem;
}
@media (max-width: 1100px) {
  .local-v2-cities { grid-template-columns: repeat(2, 1fr); }
}

.local-v2-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: .75rem .9rem;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(6,14,24,.10);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-light);
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
  cursor: pointer;
}
.local-v2-chip:hover {
  background: rgba(184,146,106,.12);
  border-color: rgba(184,146,106,.5);
  transform: translateY(-2px);
}
.local-v2-chip-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  color: var(--text-light);
  letter-spacing: -.005em;
}
.local-v2-chip-meta {
  font-family: var(--font-mono);
  font-size: .68rem;
  color: rgba(6,14,24,.5);
  letter-spacing: .04em;
}
.local-v2-chip:hover .local-v2-chip-meta { color: var(--accent); }

.local-v2-chip.is-home {
  background: linear-gradient(135deg, rgba(184,146,106,.20), rgba(184,146,106,.06));
  border-color: rgba(184,146,106,.45);
}
.local-v2-chip.is-home .local-v2-chip-name { color: var(--accent); }
.local-v2-chip.is-home .local-v2-chip-meta { color: rgba(184,146,106,.7); }

.local-v2-chip-more {
  background: linear-gradient(135deg, rgba(255,105,0,.15), rgba(255,105,0,.04));
  border-color: rgba(255,105,0,.4);
  border-style: dashed;
}
.local-v2-chip-more .local-v2-chip-name { color: #FF6900; }
.local-v2-chip-more:hover {
  background: rgba(255,105,0,.18);
  border-color: rgba(255,105,0,.6);
}
.local-v2-chip-more:hover .local-v2-chip-meta { color: #FF6900; }

.local-v2-cta {
  align-self: flex-start;
  margin-top: .5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .section-local-v2 .local-v2-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .local-v2-image { aspect-ratio: 16/10; max-height: 380px; }
  .local-v2-radius {
    width: 90px;
    height: 90px;
    top: 1rem;
    right: 1rem;
  }
  .local-v2-radius-num { font-size: 1.9rem; }
}
@media (max-width: 540px) {
  .local-v2-cities { grid-template-columns: 1fr 1fr; }
}
/* =================================================
   LIGHT THEME OVERRIDES — bleu minuit + doré
   Refines hardcoded values + applies bleu minuit to titles.
   ================================================= */

/* Section headings — bleu minuit per user spec */
.section-heading,
.scroll-section h2,
.section-why .section-heading,
.section-services .section-heading,
.section-stats .section-heading,
.section-local .section-heading,
.section-local-v2 .section-heading,
.section-testimonials .section-heading,
.section-drone .section-heading,
.section-devis .section-heading,
.faq-tabs-title,
.contact-min-title,
.cc-title {
  color: var(--primary-dark) !important;
}

/* Italic emphasis — bleu moyen (NOT gold; gold is reserved for devis CTAs only) */
.section-heading em,
.scroll-section h2 em,
.faq-tabs-title em,
.contact-min-title em,
.cc-title em {
  color: var(--secondary) !important;
}

/* Review cards — softer shadow on light bg */
.review-card {
  box-shadow: 0 8px 24px -8px rgba(26,45,66,0.12) !important;
  border-color: rgba(206,221,238,0.6) !important;
}

/* Bento + service cards — refined shadows */
.bento-card,
.svc-card,
.stat-card-modern {
  box-shadow: 0 6px 20px -6px rgba(26,45,66,0.08), 0 1px 2px rgba(26,45,66,0.04);
  border-color: rgba(206,221,238,0.7);
}
.bento-card:hover,
.stat-card-modern:hover {
  box-shadow: 0 14px 32px -8px rgba(184,146,106,0.18), 0 0 0 1px rgba(184,146,106,0.3) !important;
  border-color: rgba(184,146,106,0.4) !important;
}

/* Scroll-section labels — secondary blue muted */
.section-label {
  color: var(--secondary) !important;
  opacity: 1 !important;
}

/* Eyebrow pills (FAQ, hero, etc.) — gold tinted */
.faq-tabs-eyebrow {
  background: linear-gradient(90deg, var(--accent), rgba(184,146,106,.6)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}
.contact-min-eyebrow {
  color: var(--accent) !important;
}

/* FAQ — clean borders on light */
.faq-tab-item {
  background: #FFFFFF !important;
  border-color: var(--border) !important;
  box-shadow: 0 2px 6px -2px rgba(26,45,66,0.06);
}
.faq-tab-item[open] {
  background: rgba(184,146,106,0.04) !important;
  border-color: rgba(184,146,106,0.45) !important;
}
.faq-tab-item summary {
  color: var(--primary-dark) !important;
}
.faq-tab-item summary:hover,
.faq-tab-item[open] summary {
  color: var(--primary-dark) !important;
}
.faq-tab-answer {
  color: rgba(6,14,24,0.7) !important;
}

/* FAQ tabs */
.faq-tab {
  color: var(--secondary) !important;
  border-color: var(--border) !important;
}
.faq-tab:hover { color: var(--primary-dark) !important; }
.faq-tab.is-active {
  color: #FFFFFF !important;
  border-color: var(--accent) !important;
}
.faq-tab .faq-tab-bg {
  background: linear-gradient(90deg, var(--accent), var(--accent-light)) !important;
}

/* Local zone V2 — cities chips with gold tint */
.local-v2-chip {
  background: #FFFFFF !important;
  border-color: var(--border) !important;
}
.local-v2-chip-name { color: var(--primary-dark) !important; }
.local-v2-chip-meta { color: var(--secondary) !important; }
.local-v2-chip:hover {
  background: rgba(184,146,106,0.08) !important;
  border-color: rgba(184,146,106,0.5) !important;
}
.local-v2-chip:hover .local-v2-chip-meta { color: var(--accent) !important; }
.local-v2-chip.is-home {
  background: linear-gradient(135deg, rgba(26,45,66,0.08), rgba(26,45,66,0.02)) !important;
  border-color: rgba(26,45,66,0.4) !important;
}
.local-v2-chip.is-home .local-v2-chip-name { color: var(--primary-dark) !important; }
.local-v2-chip.is-home .local-v2-chip-meta { color: var(--secondary) !important; }
.local-v2-chip-more {
  background: linear-gradient(135deg, rgba(184,146,106,0.10), rgba(184,146,106,0.02)) !important;
  border-color: rgba(184,146,106,0.45) !important;
}
.local-v2-chip-more .local-v2-chip-name { color: var(--accent) !important; }

.local-v2-radius {
  background: rgba(255,255,255,0.95) !important;
  border-color: rgba(184,146,106,0.55) !important;
  box-shadow: 0 0 0 8px rgba(184,146,106,0.10), 0 18px 36px -12px rgba(184,146,106,0.5) !important;
}
.local-v2-radius-num { color: var(--accent) !important; }
.local-v2-radius-unit { color: var(--primary-dark) !important; }
.local-v2-radius-label { color: var(--secondary) !important; }
.local-v2-pin {
  background: rgba(255,255,255,0.95) !important;
  border-color: var(--border) !important;
  color: var(--primary-dark) !important;
}
.local-v2-pin svg { color: var(--accent) !important; }

/* Hero parallax — keep white text on dark image (no change needed for hero text) */
/* But CTA primary now uses gold */
.hero.hero-parallax .hero-cta .btn-primary {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 12px 30px -8px rgba(184,146,106,0.55) !important;
}
.hero.hero-parallax .hero-cta .btn-primary:hover {
  background: var(--accent-dark) !important;
  box-shadow: 0 18px 40px -8px rgba(184,146,106,0.7) !important;
}

/* Header scrolled state — light glass */
.site-header.scrolled {
  background: rgba(249,251,253,0.85) !important;
  box-shadow: 0 1px 0 var(--border), 0 4px 20px -10px rgba(26,45,66,0.12) !important;
}
.site-header .nav-link {
  color: var(--secondary) !important;
}
.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--primary-dark) !important;
}
.site-header .header-phone { color: var(--primary-dark) !important; }
.site-header .header-phone:hover { color: var(--accent) !important; }
.site-header .header-phone svg { stroke: var(--accent) !important; }
.site-header .burger span { background: var(--primary-dark) !important; }

/* Mobile menu */
.mobile-menu { background: var(--bg-dark) !important; }
.mobile-menu a { color: var(--primary-dark) !important; }
.mobile-menu a:hover { color: var(--accent) !important; }

/* Footer — clean light footer */
.site-footer {
  background: #FFFFFF !important;
  border-top: 1px solid var(--border) !important;
  box-shadow: 0 -1px 0 var(--border);
}
.site-footer * { color: var(--secondary) !important; }
.site-footer a:hover { color: var(--accent) !important; }
.site-footer h4,
.site-footer .logo-text { color: var(--primary-dark) !important; }
.site-footer .logo-text strong { color: var(--accent) !important; }

/* Marquee text outline — gold */
.marquee-track span {
  -webkit-text-stroke: 1px rgba(184,146,106,0.30) !important;
}

/* Photo marquee section — subtle on light */
.photo-marquee {
  background: var(--bg-darker) !important;
}

/* Buttons consistency — gold primary, ghost outline secondary */
.btn-primary {
  background: var(--accent) !important;
  color: #FFFFFF !important;
  border-color: var(--accent) !important;
  box-shadow: 0 8px 22px -8px rgba(184,146,106,0.5);
}
.btn-primary:hover {
  background: var(--accent-dark) !important;
  border-color: var(--accent-dark) !important;
}
.btn-outline {
  background: transparent !important;
  color: var(--primary-dark) !important;
  border: 1px solid var(--primary-dark) !important;
}
.btn-outline:hover {
  background: var(--primary-dark) !important;
  color: #FFFFFF !important;
}

/* Trust pills (hero) — keep light bg readability */
.hero.hero-parallax .hero-pill {
  background: rgba(255,255,255,0.18) !important;
  border-color: rgba(255,255,255,0.4) !important;
  color: #FFFFFF !important;
}
.hero.hero-parallax .hero-dot {
  background: var(--accent) !important;
  box-shadow: 0 0 8px rgba(184,146,106,0.8) !important;
}

/* Stat trend up — keep green for "positive" semantic but on light bg */
.trend-up .trend-icon {
  background: rgba(34,197,94,0.12) !important;
}
.trend-up .trend-value { color: #16a34a !important; }

/* Service carousel cards — refined gold/blue gradients */
.svc-card-1 { background: linear-gradient(135deg, rgba(26,45,66,0.10), rgba(26,45,66,0.02) 70%, #FFFFFF) !important; }
.svc-card-2 { background: linear-gradient(135deg, rgba(73,114,159,0.12), rgba(73,114,159,0.02) 70%, #FFFFFF) !important; }
.svc-card-3 { background: linear-gradient(135deg, rgba(184,146,106,0.14), rgba(184,146,106,0.02) 70%, #FFFFFF) !important; }
.svc-card-4 { background: linear-gradient(135deg, rgba(73,114,159,0.10), rgba(73,114,159,0.02) 70%, #FFFFFF) !important; }
.svc-card-5 { background: linear-gradient(135deg, rgba(26,45,66,0.08), rgba(184,146,106,0.06) 70%, #FFFFFF) !important; }
.svc-card-6 { background: linear-gradient(135deg, rgba(184,146,106,0.10), rgba(73,114,159,0.04) 70%, #FFFFFF) !important; }
.svc-card { color: var(--primary-dark) !important; }
.svc-card-bot h3 { color: var(--primary-dark) !important; }
.svc-card-bot p { color: rgba(6,14,24,0.7) !important; }
.svc-num { color: var(--secondary) !important; }
.svc-icon {
  background: rgba(26,45,66,0.06) !important;
  border-color: rgba(26,45,66,0.15) !important;
  color: var(--primary-dark) !important;
}
.svc-link { color: var(--accent) !important; }
.svc-card:hover .svc-link { color: var(--accent-dark) !important; }
.svc-card::after {
  background: linear-gradient(to top, rgba(26,45,66,0.04) 0%, transparent 60%) !important;
}

/* Bento cards refinement */
.bento-card { background: #FFFFFF !important; }
.bento-card h3 { color: var(--primary-dark) !important; }
.bento-card p { color: rgba(6,14,24,0.7) !important; }
.bento-100-curve { color: rgba(73,114,159,0.18) !important; }
.bento-100-text { color: var(--primary-dark) !important; }
.bento-100-text small { color: var(--secondary) !important; }
.bento-shield-ring,
.bento-icon-ring {
  border-color: var(--border) !important;
  color: var(--accent) !important;
}
.bento-shield-ring::before,
.bento-icon-ring::before { border-color: rgba(206,221,238,0.6) !important; }
.bento-team-tag {
  background: #FFFFFF !important;
  border-color: var(--border) !important;
  color: var(--primary-dark) !important;
}
.bento-team-stack::before { background: var(--border) !important; }
.bento-team-avatar { outline-color: #FFFFFF !important; }
.bento-window-dots span {
  background: var(--border) !important;
  border-color: var(--border) !important;
}
.bento-drone-chart {
  border-color: var(--border) !important;
}

/* Stat cards */
.stat-card-modern { background: #FFFFFF !important; }
.stat-card-modern .stat-number { color: var(--primary-dark) !important; }
.stat-card-modern .stat-card-suffix { color: var(--secondary) !important; }
.stat-card-modern .stat-card-title { color: var(--secondary) !important; }
.stat-card-modern .trend-text { color: var(--secondary) !important; }
.stat-card-modern .trend-desc { color: rgba(73,114,159,0.7) !important; }

/* Form fields — light input with border */
.contact-min-form .cmf-field input,
.contact-min-form .cmf-field select,
.contact-min-form .cmf-field textarea,
.cc-form .cc-field input,
.cc-form .cc-field select,
.cc-form .cc-field textarea {
  background: #FFFFFF !important;
  border-color: var(--border) !important;
  color: var(--primary-dark) !important;
}
.contact-min-form .cmf-field input:focus,
.contact-min-form .cmf-field select:focus,
.contact-min-form .cmf-field textarea:focus,
.cc-form .cc-field input:focus,
.cc-form .cc-field select:focus,
.cc-form .cc-field textarea:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(184,146,106,0.15) !important;
}
.cmf-field label,
.cc-field label { color: var(--primary-dark) !important; }

/* Submit buttons */
.cmf-submit,
.cc-submit {
  background: var(--accent) !important;
  color: #FFFFFF !important;
  box-shadow: 0 8px 22px -8px rgba(184,146,106,0.55) !important;
}
.cmf-submit:hover,
.cc-submit:hover {
  background: var(--accent-dark) !important;
  box-shadow: 0 14px 30px -8px rgba(184,146,106,0.7) !important;
}

/* Testimonial subtitle */
.section-testimonials .testi-subtitle { color: var(--secondary) !important; }
.section-testimonials .testi-subtitle strong { color: var(--accent) !important; }

/* Marquee 3D — fade overlays should match light bg */
.marquee3d-col {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%) !important;
          mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%) !important;
}
.review-card .rc-text { color: rgba(6,14,24,0.85) !important; }
.review-card .rc-name { color: var(--primary-dark) !important; }
.review-card .rc-date { color: var(--secondary) !important; }

/* Body text default */
body, p, span, li, a { color: var(--primary-dark); }

/* Hero parallax strong dark overlay → lighter so colors of image come through more */
.hero-bg-overlay {
  background:
    linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,.20) 35%, rgba(0,0,0,.30) 70%, rgba(0,0,0,.55) 100%),
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0,0,0,.05) 0%, rgba(0,0,0,.30) 100%) !important;
}
/* =================================================
   LIGHT THEME — fixes for invisible text & broken forms
   ================================================= */

/* Section body text — was #f1ece5 (light cream), now must be dark */
.section-body,
.scroll-section .section-body {
  color: var(--primary-dark) !important;
  text-shadow: none !important;
}

/* Devis form (inline on index.html) — was using rgba(255,255,255,X) hardcoded */
.devis-form .form-group input,
.devis-form .form-group select,
.devis-form .form-group textarea,
#devisForm input,
#devisForm select,
#devisForm textarea {
  background: #FFFFFF !important;
  border: 1px solid var(--border) !important;
  color: var(--primary-dark) !important;
  box-shadow: 0 1px 2px rgba(26,45,66,0.04);
}
.devis-form .form-group input::placeholder,
.devis-form .form-group textarea::placeholder,
#devisForm input::placeholder,
#devisForm textarea::placeholder {
  color: rgba(73,114,159,0.55) !important;
}
.devis-form .form-group input:focus,
.devis-form .form-group select:focus,
.devis-form .form-group textarea:focus,
#devisForm input:focus,
#devisForm select:focus,
#devisForm textarea:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(184,146,106,0.15) !important;
}
.devis-form .form-group label,
#devisForm label {
  color: var(--secondary) !important;
}
.devis-form .form-group select option,
#devisForm select option {
  background: #FFFFFF !important;
  color: var(--primary-dark) !important;
}

/* Section devis — light bg instead of dark */
.section-devis {
  background: var(--bg-darker) !important;
}

/* Submit button "Envoyer ma demande" — gold (devis CTA) */
.devis-form button[type="submit"],
#devisForm button[type="submit"] {
  background: var(--accent) !important;
  color: #FFFFFF !important;
  border-color: var(--accent) !important;
}
.devis-form button[type="submit"]:hover,
#devisForm button[type="submit"]:hover {
  background: var(--accent-dark) !important;
}

/* Generic .form-group for ALL pages — make sure inputs are light theme */
.form-group input,
.form-group select,
.form-group textarea {
  background: #FFFFFF !important;
  border: 1px solid var(--border) !important;
  color: var(--primary-dark) !important;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(73,114,159,0.55) !important;
}
.form-group label {
  color: var(--secondary) !important;
}

/* Section labels — kill old white opacity styles */
.section-label {
  text-shadow: none !important;
}

/* Form success — light + green tint */
.form-success {
  background: rgba(34,197,94,0.06) !important;
  border-color: rgba(34,197,94,0.25) !important;
  color: var(--primary-dark) !important;
}
.form-success h3 { color: var(--primary-dark) !important; }
.form-success p { color: rgba(6,14,24,0.7) !important; }

/* Hero pill on parallax — keep readable on dark image */
/* (already handled in earlier override block) */

/* Photo marquee (gallery scrolling) — borders */
.photo-marquee img {
  border: 1px solid var(--border);
}

/* Drone section heading — make sure it's bleu minuit too */
.section-drone .section-heading {
  color: var(--primary-dark) !important;
}
.section-drone .section-body {
  color: var(--primary-dark) !important;
  text-shadow: none !important;
}

/* Why we section — body text */
.section-why .section-body {
  color: var(--primary-dark) !important;
  text-shadow: none !important;
}