/* =============================================
   CréaToit — CSS Optimisé
   Blanc cassé + bulles blanches + noir élégant
   Perfs optimisées + interactions premium
============================================= */

:root {
  /* Backgrounds neutres */
  --bg: #fafaf8;
  --bg-alt: #f0ede8;
  
  /* Texte pour le body */
  --text: #1a1a1a;
  --text-soft: #4a4a4a;
  --text-muted: #6b6b6b;
  
  /* Cards/Bulles (gris élégant) */
  --card: #2a2a2a;
  --card-hover: #353535;
  
  /* Texte dans les bulles (blanc) */
  --card-text: #ffffff;
  --card-text-soft: rgba(255, 255, 255, 0.85);
  --card-text-muted: rgba(255, 255, 255, 0.65);
  
  /* Accents neutres */
  --accent: #000000;
  --accent-light: #333333;
  --accent-soft: rgba(0, 0, 0, 0.10);
  --accent-glow: rgba(0, 0, 0, 0.15);
  
  /* Borders & Shadows pour bulles dark */
  --border: rgba(255, 255, 255, 0.10);
  --border-hover: rgba(255, 255, 255, 0.18);
  --shadow-soft: 0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-premium: 0 12px 40px rgba(0, 0, 0, 0.20);
  
  /* Radius */
  --radius-md: 16px;
  --radius-lg: 22px;
}

/* Global box-sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Mobile overflow fix */
html {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  overflow-y: auto;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  min-height: 100vh;
}

html {
  scroll-behavior: smooth;
  background: #000000 !important;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", Roboto, sans-serif;
  color: var(--text);
  background: linear-gradient(to bottom, #f5f3ef 0%, #ebe6dd 30%, #e1dbd0 70%, #d7d0c3 100%);
  min-height: 100vh;
  border-bottom: none !important;
}

img, video, iframe, svg {
  max-width: 100%;
  display: block;
}

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

main {
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

/* =============================================
   HEADER
============================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 88px;
  display: flex;
  align-items: center;
  z-index: 40;
  background: #000000;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  height: 100%;
  flex-shrink: 0;
}

.brand-logo {
  height: 62px;
  width: auto;
  max-height: none;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-mark {
  display: none !important;
}

.brand-sub {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}


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

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 0.2s ease-out;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #ffffff;
  transition: width 0.2s ease-out;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 42px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
  color: #ffffff;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 88px;
  display: flex;
  align-items: stretch;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url('../assets/img/terrasse.jpg') center/cover no-repeat;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 520px at 12% 45%,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.25) 42%,
    rgba(0,0,0,0.08) 70%,
    rgba(0,0,0,0.00) 100%);
  z-index: -1;
}

.hero-inner {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 88px);
}

.hero-content {
  max-width: 560px;
  color: #fff;
  padding: 4rem 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 14px;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin: 0 0 1.4rem;
}

.hero-text-block {
  border-radius: 18px;
  padding: 18px 20px;
  margin: 0 0 1.8rem;
}


.hero-text-block .hero-text {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

/* =============================================
   BUTTONS (Noir élégant + ripple effect)
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn.primary {
  background: #ffffff;
  color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-weight: 600;
}

.btn.primary:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.btn.primary:active {
  transform: translateY(1px);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Bouton submit du formulaire : encore plus visible */
.contact-form .btn.primary,
.contact-form button[type="submit"] {
  background: #ffffff !important;
  color: #1a1a1a !important;
  font-weight: 600;
  border: 2px solid #ffffff !important;
}

.contact-form .btn.primary:hover,
.contact-form button[type="submit"]:hover {
  background: #f5f5f5 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25) !important;
}

.btn.ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn.full {
  width: 100%;
}

/* =============================================
   SECTIONS
============================================= */
.section {
  padding: 3.5rem 0 3.5rem;
  background: transparent;
  color: var(--text);
  width: 100%;
  position: relative;
}

/* Dernière section (contact) avec moins d'espace en bas */
.section:last-of-type {
  padding-bottom: 2rem;
}

.section-alt {
  background: transparent;
}

.section-header {
  max-width: 620px;
  margin-bottom: 2rem;
}

.section-header .eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 2.5rem;
  color: var(--text);
  display: block;
  background: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  position: relative;
}

/* Removed .section-header .eyebrow::after to eliminate black underline */

.section-intro {
  margin: 0.8rem 0 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

.scroll-offset {
  scroll-margin-top: 130px;
  height: 0;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

/* =============================================
   CARDS / BULLES (blanc propre)
============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
}

.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.7rem;
  box-shadow: var(--shadow-soft);
  border: none;
  display: block;
  position: relative;
  overflow: visible;
  transition: transform 0.3s ease, 
              box-shadow 0.3s ease;
  transform: scale(1);
}

.card::before,
.contact-form::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.015) 2px,
      rgba(255, 255, 255, 0.015) 4px
    );
  pointer-events: none;
  z-index: 0;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.card:hover i,
.card:hover .card-icon,
.card:hover .pourquoi-icon i,
.card:hover .stat-icon {
  transform: scale(1.15);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  color: var(--card-text);
  position: relative;
  z-index: 1;
}

.card p {
  margin-top: 0;
  margin-bottom: 0.9rem;
  color: var(--card-text-soft);
  position: relative;
  z-index: 1;
}

.card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}

.card li + li {
  margin-top: 0.3rem;
}

/* =============================================
   STATS SECTION
============================================= */
.stats-section {
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: none;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  overflow: visible;
  transition: transform 0.3s ease, 
              box-shadow 0.3s ease, 
              border-color 0.3s ease;
  transform: scale(1);
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.015) 2px,
      rgba(255, 255, 255, 0.015) 4px
    );
  pointer-events: none;
  z-index: 0;
}

.stat-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.stat-card:hover .stat-icon {
  transform: scale(1.15);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--card-text);
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
}

.stat-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--card-text);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--card-text-soft);
  line-height: 1.3;
}

/* =============================================
   SERVICES - Points simples (pas de numéros)
============================================= */
.service-number {
  display: none;
}

/* =============================================
   BADGES / GARANTIES - SUPPRIMÉ
============================================= */

/* =============================================
   POURQUOI CRÉATOIT - Version simple/discrète
============================================= */
.pourquoi-section {
  padding: 4rem 0;
}

.pourquoi-intro {
  max-width: 600px;
  margin: 0.8rem auto 2.5rem;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pourquoi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.pourquoi-item {
  text-align: center;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: none;
  display: block;
  position: relative;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: scale(1);
}

.pourquoi-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.015) 2px,
      rgba(255, 255, 255, 0.015) 4px
    );
  pointer-events: none;
  z-index: 0;
}

.pourquoi-item:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
  z-index: 1;
}

.pourquoi-icon {
  font-size: 2rem;
  color: var(--card-text);
  margin-bottom: 0.8rem;
  opacity: 1;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.pourquoi-icon i {
  transition: transform 0.3s ease;
}

.pourquoi-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--card-text);
  margin: 0 0 0.4rem;
  position: relative;
  z-index: 1;
}

.pourquoi-item p {
  font-size: 0.9rem;
  color: var(--card-text-soft);
  margin: 0;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

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

@media (max-width: 640px) {
  .pourquoi-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.icon-list {
  list-style: none;
  padding-left: 0;
  margin: 0.9rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--card-text-soft);
  font-size: 0.95rem;
}

.icon-list li i {
  margin-top: 0.15rem;
  opacity: 1;
  color: var(--accent);
  font-size: 1.1rem;
}

/* Icon lists dans le body (hors cards) */
.section > .container > .icon-list li,
.zone-layout > div > .icon-list li,
.contact-layout > div > .icon-list li {
  color: var(--text-soft);
}

.section > .container > .icon-list li i,
.zone-layout > div > .icon-list li i,
.contact-layout > div > .icon-list li i {
  color: var(--accent);
}

/* =============================================
   STEPS
============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.step {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: none;
  display: block;
  position: relative;
  overflow: visible;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform: scale(1);
}

.step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.015) 2px,
      rgba(255, 255, 255, 0.015) 4px
    );
  pointer-events: none;
  z-index: 0;
}

.step:hover {
  transform: scale(1.025);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
  z-index: 1;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.02rem;
  color: var(--card-text);
  position: relative;
  z-index: 1;
}

.step p {
  margin: 0;
  color: var(--card-text-soft);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* =============================================
   RÉALISATIONS
============================================= */
.realisations-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 2rem auto 0;
}

.realisations-left {
  width: 100%;
}

.realisations-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.real-card {
  background: var(--card);
  padding: 1.1rem 1.3rem;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  border: none;
  max-width: 360px;
  display: block;
  position: relative;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: scale(1);
}

.real-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.015) 2px,
      rgba(255, 255, 255, 0.015) 4px
    );
  pointer-events: none;
  z-index: 0;
}

.real-card:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
  z-index: 1;
}

.real-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--card-text);
  position: relative;
  z-index: 1;
}

.real-card p {
  color: var(--card-text-soft);
  margin: 0;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* Slider réalisations */
.realisations-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.slider-window {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 9;
  max-height: 460px;
  z-index: 1;
  box-shadow: var(--shadow-soft);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity .8s ease;
  z-index: 1;
}

.slide.active {
  opacity: 1;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: var(--shadow-hover);
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  z-index: 3;
}

.slider-dots button {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  opacity: 0.8;
  transition: width 0.2s ease-out, opacity 0.2s ease-out;
}

.slider-dots button.active {
  width: 12px;
  opacity: 1;
  background: #ffffff;
}

/* =============================================
   AVIS CLIENTS
============================================= */
.google-rating-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.2rem 0;
  padding: 1.2rem 1.3rem;
  border-radius: 18px;
  background: var(--card);
  border: none;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: scale(1);
}

.google-rating-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.015) 2px,
      rgba(255, 255, 255, 0.015) 4px
    );
  pointer-events: none;
  z-index: 0;
}

.google-rating-header:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
  z-index: 1;
}



.google-rating-left {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  position: relative;
  z-index: 1;
}

.google-stars {
  font-size: 1.1rem;
  letter-spacing: .08em;
  color: #ffd700;
}

.google-rating-meta {
  font-size: .95rem;
  color: var(--card-text-soft);
}

.google-reviews-slider {
  position: relative;
}

.google-reviews-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.google-review-card {
  padding: 1.3rem 1.2rem;
  border-radius: 18px;
  background: var(--card);
  border: none;
  box-shadow: var(--shadow-soft);
  display: block;
  position: relative;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: scale(1);
}

.google-review-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.015) 2px,
      rgba(255, 255, 255, 0.015) 4px
    );
  pointer-events: none;
  z-index: 0;
}

.google-review-card:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
  z-index: 1;
}

.google-review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .8rem;
  position: relative;
  z-index: 1;
}

.google-review-author {
  font-weight: 600;
  font-size: .98rem;
  color: var(--card-text);
}

.google-review-time {
  font-size: .86rem;
  color: var(--card-text-soft);
  margin-top: .15rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.google-review-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .15rem .5rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
  background: var(--accent);
  color: #fff;
}

.google-review-stars {
  letter-spacing: .08em;
  white-space: nowrap;
  color: #ffd700;
}

.google-review-text {
  font-size: .95rem;
  line-height: 1.55;
  color: var(--card-text-soft);
  position: relative;
  z-index: 1;
}

.google-legal-note {
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--text-muted);
}

.google-reviews-dots {
  display: none;
}

/* =============================================
   ZONE
============================================= */
.zone-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.4fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.zone-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem 1.8rem;
  box-shadow: var(--shadow-soft);
  border: none;
  display: block;
  position: relative;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: scale(1);
}

.zone-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.015) 2px,
      rgba(255, 255, 255, 0.015) 4px
    );
  pointer-events: none;
  z-index: 0;
}

.zone-card:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
  z-index: 1;
}



.zone-card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  color: var(--card-text);
  position: relative;
  z-index: 1;
}

.zone-card p {
  color: var(--card-text-soft);
  position: relative;
  z-index: 1;
}

/* =============================================
   CONTACT
============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.4fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.contact-list {
  margin: 1.2rem 0 0.6rem;
  padding-left: 0;
  list-style: none;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.contact-list li + li {
  margin-top: 0.35rem;
}

.contact-note {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.contact-form {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem 1.9rem;
  box-shadow: var(--shadow-soft);
  border: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative;
  overflow: visible;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform: scale(1);
}

.contact-form::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.015) 2px,
      rgba(255, 255, 255, 0.015) 4px
    );
  pointer-events: none;
  z-index: 0;
}

.contact-form:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.field {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.field:has(#message),
.field:has(button) {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--card-text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.6rem 0.7rem;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--card-text);
  transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out, background 0.2s ease-out;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--card-text-muted);
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.9) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.9) 50%, transparent 50%),
    linear-gradient(to right, rgba(255,255,255,0.20), rgba(255,255,255,0.20));
  background-position:
    calc(100% - 18px) calc(50% - 4px),
    calc(100% - 12px) calc(50% - 4px),
    calc(100% - 40px) 50%;
  background-size: 6px 6px, 6px 6px, 1px 18px;
  background-repeat: no-repeat;
  padding-right: 48px !important;
}

/* Options du select : fond dark */
select option {
  background: #2a2a2a;
  color: #ffffff;
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none !important;
  background: var(--accent);
  color: #fff;
  margin-bottom: 0 !important;
  width: 100%;
  max-width: 100%;
  position: relative;
}

.footer-inner {
  padding: 1.2rem 1.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-stack {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
}

.footer-stack > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
}

.footer-stack p {
  margin: 0;
  line-height: 1.5;
}

.footer-stack p:first-child {
  text-align: left;
}

.footer-secondary {
  opacity: 0.7;
  text-align: right;
  margin-left: auto;
}

@media (max-width: 780px) {
  .footer-stack,
  .footer-stack > div {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .footer-stack p:first-child,
  .footer-secondary {
    text-align: center;
    margin-left: 0;
  }
}

/* =============================================
   LOADER
============================================= */
/* ===== LOADER ===== */
#loader{
  position:fixed;
  inset:0;
  z-index:99999;
  display:grid;
  place-items:center;
  background: radial-gradient(1200px 700px at 20% 10%, rgba(255,255,255,.10), transparent 55%),
              radial-gradient(900px 600px at 80% 90%, rgba(255,255,255,.06), transparent 55%),
              linear-gradient(135deg, #141414 0%, #0e0e0e 100%);
  transition: opacity .6s ease-out;
}

#loader.is-leaving{
  opacity:0;
  pointer-events:none;
}

.loader-card{
  width:min(560px, 92vw);
  padding:34px 28px 28px;
  text-align:center;
  border-radius:26px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
  backdrop-filter: blur(14px);
}

.loader-logo{
  width: clamp(160px, 18vw, 220px);
  height:auto;
  display:block;
  margin: 0 auto 12px;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.55));
}

.loader-text{
  margin: 0 0 18px;
  font-size: 0.98rem;
  letter-spacing: .02em;
  color: rgba(255,255,255,.86);
}

/* Barre “premium” style (indeterminate + glow) */
.loader-bar{
  position: relative;
  width: min(420px, 78vw);
  height: 10px;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  overflow: hidden;
}

.loader-bar::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  opacity: .7;
  transform: translateX(-60%);
  animation: loaderShimmer 2.2s ease-in-out infinite;
}

.loader-bar span{
  position:absolute;
  top: 50%;
  left: 0;
  height: 70%;
  width: 42%;
  transform: translate(-120%, -50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.15), rgba(255,255,255,.95), rgba(255,255,255,.15));
  box-shadow: 0 0 18px rgba(255,255,255,.22);
  animation: loading 1.9s cubic-bezier(.4,0,.2,1) infinite;
}

@keyframes loading{
  0%   { transform: translate(-120%, -50%); }
  60%  { transform: translate(160%, -50%); }
  100% { transform: translate(260%, -50%); }
}

@keyframes loaderShimmer{
  0%   { transform: translateX(-60%); opacity: .35; }
  50%  { opacity: .85; }
  100% { transform: translateX(60%);  opacity: .35; }
}

/* =============================================
   SCROLL INDICATOR (Progress bar)
============================================= */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--text);
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 960px) {
  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .realisations-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .realisations-right {
    align-items: stretch;
  }
  
  .real-card {
    max-width: 100%;
  }
  
  .zone-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  /* Stats responsive */
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  
  /* Process responsive - SUPPRIMÉ */
  
  /* Badges responsive - SUPPRIMÉ */
  
  /* Avis mobile: slider */
  .google-reviews-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    scrollbar-width: none;
  }
  
  .google-reviews-track::-webkit-scrollbar {
    display: none;
  }
  
  .google-review-card {
    flex: 0 0 88%;
    scroll-snap-align: start;
  }
  
  .google-reviews-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
  }
  
  .google-reviews-dots button {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    border: none;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    opacity: .9;
  }
  
  .google-reviews-dots button.active {
    width: 14px;
    background: var(--text);
  }
  
  /* Ordre mobile: rating en haut */
  #avis .container {
    display: flex;
    flex-direction: column;
  }
  
  #avis .google-rating-header {
    order: 1;
    margin-top: 0.6rem;
    margin-bottom: 1rem;
  }
  
  #avis .google-reviews-slider {
    order: 2;
  }
  
  #avis .google-legal-note {
    order: 3;
  }
}

@media (max-width: 780px) {
  .site-header {
    height: 76px;
  }
  
  .hero {
    padding-top: 76px;
  }
  
  .hero-inner {
    min-height: calc(100vh - 76px);
  }
  
  .brand-logo {
    height: 48px;
  }
  
  .brand-mark {
    font-size: 1.2rem;
  }
  
  .brand-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

  
  .main-nav {
    position: relative;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: 76px;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(18px);
    padding: 1rem 1.2rem 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: flex-end;
    gap: 0.7rem;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease-out, transform 0.18s ease-out;
    z-index: 60;
  }
  
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  
  .nav-links li {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  
  .slider-window {
    aspect-ratio: 4 / 3;
    max-height: 360px;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 3.2rem 0 3.4rem;
  }
  
  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .header-inner {
    gap: .6rem;
  }
  
  .brand {
    gap: .5rem;
    min-width: 0;
  }
  
  .brand-logo {
    height: 36px;
  }
  
  .brand-text {
    min-width: 0;
    max-width: calc(100vw - 120px);
    line-height: 1.05;
  }
  
  .brand-mark {
    font-size: .9rem;
    letter-spacing: .08em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .brand-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

  
  /* Stats mobile: 1 colonne */
  .stats-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  
  /* Process mobile - SUPPRIMÉ */
  
  /* Badges mobile - SUPPRIMÉ */
  
  /* Prévenir zoom iOS sur inputs */
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* =============================================
   ACCESSIBILITY
============================================= */
@media (prefers-reduced-motion: reduce) {
  .card, .step, .real-card, .avis-card, .zone-card,
  .google-review-card, .contact-form, .stat-card,
  .loader-bar span {
    animation: none !important;
    transition: none !important;
  }
}

/* iOS Safari: fix micro overflow */
@supports (-webkit-touch-callout: none) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .site-header {
    left: 0;
    right: 0;
    width: 100%;
    transform: translateZ(0);
  }
  
  .hero {
    width: 100%;
    transform: translateZ(0);
  }
}

/* === Premium quick wins (System B / conversion) === */
/* Mobile sticky CTA (visible improvement) */
.mobile-cta{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  gap: 10px;
  z-index: 9999;
}
.mobile-cta-btn{
  flex: 1;
  text-align: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: none;
  background: rgba(255,255,255,.92);
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
.mobile-cta-btn.primary{
  background: rgba(0,0,0,.9);
  color: #fff;
  
}
@media (max-width: 760px){
  .mobile-cta{ display: none !important; }
  body{ padding-bottom: 0; }
}


/* --- Hero improvements (Accueil) --- */
.hero-kicker{
  display:inline-block;
  margin: 0 0 12px;
  padding: 6px 12px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 999px;
  font-weight: 600;
}

.glass{
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}

.hero-text-block.glass{
  padding: 18px 20px;
  border-radius: 18px;
  margin: 0 0 1.8rem;
}

.hero-text-block.glass .hero-text{
  color: rgba(255,255,255,0.92);
}


/* ------------------------------------------------------------------ */
/* SYSTÈME BULLE (une seule source de vérité)
   - Réactivité immédiate (pas de delay)
   - Smooth (ease-out "snappy")
   - Même effet partout via class .bulle
------------------------------------------------------------------ */

.bulle {
  position: relative;
  overflow: visible;
  transform: translateZ(0) scale(1);
  will-change: transform, box-shadow;
  transition-delay: 0s !important;
  transition: transform 180ms cubic-bezier(0.2, 1, 0.2, 1),
              box-shadow 180ms cubic-bezier(0.2, 1, 0.2, 1);
}

.bulle::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.015) 2px,
      rgba(255, 255, 255, 0.015) 4px
    );
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.bulle > * {
  position: relative;
  z-index: 1;
}

.bulle:hover {
  transition-delay: 0s !important;
  transform: translateZ(0) scale(1.025);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
  z-index: 2;
}


/* =============================================
   LOADER RESPONSIVE
============================================= */

/* Tablette */
@media (max-width: 780px) {
  .loader-card {
    padding: 38px 32px 32px;
    width: 88vw;
    border-radius: 24px;
  }
  
  .loader-logo {
    width: clamp(160px, 24vw, 190px);
    height: auto;
    margin: 0 auto 16px;
  }
  
  .loader-text {
    font-size: 0.96rem;
    margin: 0 0 20px;
  }
  
  .loader-bar {
    width: 80vw;
    height: 9px;
  }
}

/* Mobile (640px et moins) */
@media (max-width: 640px) {
  .loader-card {
    padding: 36px 28px 30px;
    width: 90vw;
    border-radius: 22px;
  }
  
  .loader-logo {
    width: clamp(140px, 32vw, 170px);
    height: auto;
    margin: 0 auto 18px;
  }
  
  .loader-text {
    font-size: 0.93rem;
    margin: 0 0 18px;
    letter-spacing: 0.01em;
  }
  
  .loader-bar {
    width: 82vw;
    height: 8px;
  }
}

/* Petit mobile (480px et moins) */
@media (max-width: 480px) {
  .loader-card {
    padding: 32px 24px 26px;
    width: 92vw;
    border-radius: 20px;
  }
  
  .loader-logo {
    width: clamp(120px, 36vw, 150px);
    height: auto;
    margin: 0 auto 16px;
  }
  
  .loader-text {
    font-size: 0.88rem;
    margin: 0 0 16px;
  }
  
  .loader-bar {
    width: 84vw;
    height: 7px;
  }
}

/* Très petit mobile (360px et moins) */
@media (max-width: 360px) {
  .loader-card {
    padding: 28px 20px 24px;
    width: 94vw;
    border-radius: 18px;
  }
  
  .loader-logo {
    width: clamp(100px, 40vw, 130px);
    height: auto;
    margin: 0 auto 14px;
  }
  
  .loader-text {
    font-size: 0.84rem;
    margin: 0 0 14px;
  }
  
  .loader-bar {
    width: 86vw;
    height: 6px;
}
/* =============================================
   SUPPRESSION BARRES DÉCORATIVES
============================================= */
/* Supprimer les barres sous les titres */
h1::after, h2::after, h3::after,  
.section-header h2::after,
.section-title::after {
  display: none !important;
}

/* Supprimer les hr si présents */
hr {
  border: none !important;
  background: transparent !important;
  height: 0 !important;
}
/* =============================================
   FORM STATUS - Messages inline élégants
============================================= */

.form-status {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 14px;
  display: none;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-status-success,
.form-status-error {
  display: flex;
  animation: slideInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-status-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 700;
}

.form-status-text {
  flex: 1;
  font-weight: 500;
}

/* SUCCESS - Vert élégant */
.form-status-success {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.12) 100%);
  border: 1.5px solid rgba(34, 197, 94, 0.3);
  color: #16a34a;
}

.form-status-success .form-status-icon {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ERROR - Rouge élégant */
.form-status-error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.12) 100%);
  border: 1.5px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}

.form-status-error .form-status-icon {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  animation: errorShake 0.5s ease-out;
}

@keyframes errorShake {
  0%, 100% {
    transform: translateX(0);
  }
  20%, 60% {
    transform: translateX(-6px);
  }
  40%, 80% {
    transform: translateX(6px);
  }
}

/* Responsive */
@media (max-width: 480px) {
  .form-status {
    padding: 16px 18px;
    font-size: 14px;
    gap: 12px;
  }

  .form-status-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 20px;
  }
}
}