/* ================================================================
   EclatFusion — Design Premium 2025
   Mobile-first · Clean · Luxe local
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400&display=swap');

/* ────────────────────────────────────────────────────
   TOKENS
   ──────────────────────────────────────────────────── */
:root {
  /* Blues */
  --ink:       #071A2E;
  --navy:      #0B2545;
  --cobalt:    #1353A5;
  --azure:     #2176C7;
  --sky:       #4BA3E3;
  --mist:      #C8E3F8;
  --frost:     #EAF4FD;

  /* Neutrals */
  --slate-9:   #111827;
  --slate-7:   #374151;
  --slate-5:   #6B7280;
  --slate-3:   #D1D5DB;
  --slate-1:   #F3F4F6;
  --white:     #FFFFFF;

  /* Accent */
  --gold:      #D4A843;
  --emerald:   #10B981;
  --rose:      #F43F5E;

  /* Typography */
  --font-h:    'Fraunces', Georgia, serif;
  --font-b:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing scale */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px;
  --s5: 20px; --s6: 24px; --s7: 32px; --s8: 40px;
  --s9: 56px; --s10: 80px; --s11: 112px;

  /* Radius */
  --r1: 6px; --r2: 10px; --r3: 16px; --r4: 24px; --r5: 40px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(7,26,46,.04);
  --sh-sm: 0 2px 8px rgba(7,26,46,.06), 0 1px 3px rgba(7,26,46,.04);
  --sh-md: 0 6px 24px rgba(7,26,46,.08), 0 2px 8px rgba(7,26,46,.04);
  --sh-lg: 0 16px 48px rgba(7,26,46,.10), 0 4px 16px rgba(7,26,46,.05);
  --sh-xl: 0 32px 80px rgba(7,26,46,.12), 0 8px 24px rgba(7,26,46,.06);
  --sh-blue: 0 8px 32px rgba(33,118,199,.28);

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,0,.2,1);
  --dur: 240ms;

  /* Layout */
  --nav-h: 70px;
  --max-w: 1160px;
}

/* ────────────────────────────────────────────────────
   RESET & BASE
   ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate-7);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
address { font-style: normal; }
h1,h2,h3,h4,h5 { line-height: 1.2; color: var(--ink); }

/* Mobile padding for bottom CTA bar */
body { padding-bottom: 76px; }
@media (min-width: 768px) { body { padding-bottom: 0; } }

/* ────────────────────────────────────────────────────
   LAYOUT UTILS
   ──────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: 20px;
}
@media (min-width: 768px) { .wrap { padding-inline: 32px; } }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ────────────────────────────────────────────────────
   TOPBAR
   ──────────────────────────────────────────────────── */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.65);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .01em;
  padding: 9px 0;
  position: relative;
  z-index: 10;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar a { color: rgba(255,255,255,.65); transition: color var(--dur) var(--ease); }
.topbar a:hover { color: #fff; }
.topbar-sep { width: 1px; height: 14px; background: rgba(255,255,255,.12); }
.topbar-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar-socials a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 500;
}

/* ────────────────────────────────────────────────────
   NAVIGATION
   ──────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7,26,46,.06);
  transition: box-shadow var(--dur) var(--ease);
}
.navbar.scrolled { box-shadow: var(--sh-md); }

.navbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s5);
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
  text-decoration: none;
}
.brand-icon {
  width: 36px; height: 36px;
  border-radius: var(--r2);
  object-fit: contain;
  box-shadow: var(--sh-blue);
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-h);
  font-size: 19px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -.01em;
}
.brand-name strong { color: var(--azure); font-weight: 600; }

/* Desktop links */
.nav-links {
  display: none;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-5);
  padding: 7px 13px;
  border-radius: var(--r2);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--azure); background: var(--frost); }
.nav-links a.current { color: var(--azure); }

.nav-btn {
  display: none;
  align-items: center;
  gap: 6px;
  background: var(--azure);
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: var(--r5) !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  letter-spacing: .01em;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease) !important;
  white-space: nowrap;
}
.nav-btn:hover {
  background: var(--cobalt) !important;
  transform: translateY(-1px);
  box-shadow: var(--sh-blue) !important;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  border-radius: var(--r2);
  padding: 10px;
  transition: background var(--dur) var(--ease);
  flex-shrink: 0;
}
.hamburger:hover { background: var(--slate-1); }
.hb {
  display: block;
  height: 2px;
  background: var(--slate-7);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
  transform-origin: center;
}
.hamburger[aria-expanded="true"] .hb:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hb:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] .hb:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(7,26,46,.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.drawer-overlay.open { display: block; }

.drawer {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 92vw);
  background: var(--white);
  box-shadow: var(--sh-xl);
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.drawer-overlay.open .drawer { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.drawer-close {
  width: 36px; height: 36px;
  border-radius: var(--r2);
  background: var(--slate-1);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; color: var(--slate-5);
  transition: background var(--dur) var(--ease);
}
.drawer-close:hover { background: var(--slate-3); }

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 24px;
}
.drawer-links a {
  font-size: 16px; font-weight: 500;
  color: var(--slate-7);
  padding: 12px 14px;
  border-radius: var(--r2);
  transition: color var(--dur), background var(--dur);
}
.drawer-links a:hover { color: var(--azure); background: var(--frost); }

.drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--azure);
  color: #fff;
  padding: 15px;
  border-radius: var(--r3);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 28px;
  transition: background var(--dur);
}
.drawer-cta:hover { background: var(--cobalt); }

.drawer-contact {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--slate-3);
}
.drawer-contact p { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-5); margin-bottom: 12px; }
.drawer-contact a { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--azure); margin-bottom: 8px; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-btn { display: inline-flex; }
  .hamburger { display: none; }
}

/* ────────────────────────────────────────────────────
   HERO — Home
   ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(560px, 85vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

/* ── Image layer ── */
.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* Image Hero Desktop — replace src below */
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  /* Desktop: full landscape */
}
@media (max-width: 767px) {
  .hero-img img {
    /* Mobile: portrait crop, focus top */
    object-position: 65% center;
  }
}

/* ── Overlay ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(7,26,46,.88) 0%,
    rgba(11,37,69,.72) 45%,
    rgba(21,83,165,.35) 100%
  );
}
@media (max-width: 767px) {
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(7,26,46,.75) 0%,
      rgba(7,26,46,.88) 60%,
      rgba(7,26,46,.95) 100%
    );
  }
}

/* ── Decorative shapes ── */
.hero-shapes { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
  border: 1px solid #fff;
}
.hero-circle-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.hero-circle-2 { width: 300px; height: 300px; bottom: -80px; right: 20%; opacity: .04; }

/* ── Content ── */
.hero-content {
  position: relative;
  z-index: 3;
  padding: 80px 0 100px;
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--sky);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-h);
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--sky);
}

.hero-desc {
  font-size: clamp(15px, 2.5vw, 17px);
  color: rgba(255,255,255,.72);
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* ── Hero stats ── */
.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.hero-stat {
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(255,255,255,.14);
}
.hero-stat:last-child { border-right: none; margin-right: 0; }
.hero-stat-n {
  font-family: var(--font-h);
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-l {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
}

/* ── Bottom wave ── */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0; z-index: 4;
  height: 72px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* ────────────────────────────────────────────────────
   BUTTON SYSTEM
   ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 14.5px;
  border-radius: var(--r5);
  padding: 13px 26px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { flex-shrink: 0; transition: transform var(--dur) var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--white);
  color: var(--cobalt);
  box-shadow: 0 4px 20px rgba(255,255,255,.15);
}
.btn-primary:hover { box-shadow: 0 12px 40px rgba(255,255,255,.2); }

.btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.22);
}
.btn-ghost:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.4); }

.btn-blue {
  background: var(--azure);
  color: #fff;
  box-shadow: var(--sh-blue);
}
.btn-blue:hover { background: var(--cobalt); box-shadow: 0 12px 40px rgba(33,118,199,.35); }

.btn-outline-blue {
  background: transparent;
  color: var(--azure);
  border: 1.5px solid var(--mist);
}
.btn-outline-blue:hover { background: var(--frost); border-color: var(--sky); }

.btn-white-blue {
  background: var(--white);
  color: var(--cobalt);
  box-shadow: var(--sh-lg);
}
.btn-white-blue:hover { box-shadow: var(--sh-xl); }

.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ────────────────────────────────────────────────────
   TRUST STRIP
   ──────────────────────────────────────────────────── */
.trust-strip {
  background: var(--slate-1);
  border-bottom: 1px solid var(--slate-3);
  padding: 16px 0;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--slate-7);
  letter-spacing: .01em;
  white-space: nowrap;
}
.trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--azure);
  flex-shrink: 0;
}

/* ────────────────────────────────────────────────────
   SECTION LAYOUT
   ──────────────────────────────────────────────────── */
.section {
  padding: var(--s10) 0;
}
.section-sm { padding: var(--s9) 0; }
.section-lg { padding: var(--s11) 0; }

.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--azure);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--azure); }

.section-sub {
  font-size: 16px;
  color: var(--slate-5);
  max-width: 540px;
  line-height: 1.75;
  font-weight: 300;
}

/* ────────────────────────────────────────────────────
   SERVICES GRID
   ──────────────────────────────────────────────────── */
.services-bg { background: var(--frost); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 540px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.svc-card {
  background: var(--white);
  border: 1px solid rgba(7,26,46,.07);
  border-radius: var(--r4);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  box-shadow: var(--sh-sm);
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--mist);
}

.svc-icon {
  width: 50px; height: 50px;
  border-radius: var(--r3);
  background: var(--frost);
  display: flex; align-items: center; justify-content: center;
  font-size: 23px;
  flex-shrink: 0;
  transition: background var(--dur);
}
.svc-card:hover .svc-icon { background: var(--mist); }

.svc-card h3 {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.svc-card > p {
  font-size: 14px;
  color: var(--slate-5);
  line-height: 1.7;
  flex: 1;
  font-weight: 300;
}

/* Details accordion */
.svc-details summary { list-style: none; }
.svc-details summary::-webkit-details-marker { display: none; }
.svc-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--azure);
  cursor: pointer;
  padding: 8px 0;
  border-top: 1px solid var(--slate-3);
  user-select: none;
  transition: color var(--dur);
}
.svc-summary::after {
  content: '+';
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}
.svc-details[open] .svc-summary::after { transform: rotate(45deg); }
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 0 4px;
}
.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--slate-7);
}
.svc-list li::before {
  content: '✓';
  color: var(--azure);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 12px;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--azure);
  padding-top: 4px;
  transition: gap var(--dur), color var(--dur);
}
.svc-link:hover { color: var(--cobalt); gap: 9px; }
.svc-link svg { flex-shrink: 0; }

.svc-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.svc-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--azure);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px;
  transition: background var(--dur), transform var(--dur), box-shadow var(--dur);
  box-shadow: 0 2px 8px rgba(14,165,233,.25);
}
.svc-btn-primary:hover {
  background: var(--cobalt);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(14,165,233,.35);
  color: #fff;
}
.svc-btn-primary svg { flex-shrink: 0; }

/* ────────────────────────────────────────────────────
   WHY US SECTION
   ──────────────────────────────────────────────────── */
.why-bg {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-bg::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75,163,227,.08) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
}
@media (min-width: 900px) { .why-grid { grid-template-columns: 1fr 420px; } }

.why-bg .eyebrow { color: var(--sky); }
.why-bg .eyebrow::before { background: var(--sky); }
.why-bg .section-title { color: #fff; }
.why-bg .section-sub { color: rgba(255,255,255,.6); }

.why-features { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.why-feat {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.why-feat-icon {
  width: 44px; height: 44px;
  border-radius: var(--r3);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.why-feat h4 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.why-feat p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; font-weight: 300; }

.why-visual { position: relative; }
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r4);
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.why-star {
  font-family: var(--font-h);
  font-size: 64px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.why-star-label { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 36px; }
.why-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.why-stat-val {
  font-family: var(--font-h);
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.why-stat-lbl { font-size: 12px; color: rgba(255,255,255,.5); }

/* ────────────────────────────────────────────────────
   REVIEWS
   ──────────────────────────────────────────────────── */
.reviews-bg { background: var(--slate-1); }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 560px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .reviews-grid { grid-template-columns: repeat(3,1fr); } }

.review-card {
  background: var(--white);
  border: 1px solid var(--slate-3);
  border-radius: var(--r4);
  padding: 28px;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--dur), transform var(--dur);
}
.review-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.review-quote {
  font-size: 14.5px;
  color: var(--slate-7);
  line-height: 1.75;
  font-style: italic;
  font-weight: 300;
  flex: 1;
}
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--slate-3); }
.review-ava {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cobalt), var(--azure));
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.review-loc { font-size: 12px; color: var(--slate-5); margin-top: 1px; }

/* ────────────────────────────────────────────────────
   BEFORE / AFTER SECTION
   ──────────────────────────────────────────────────── */
.ba-section { background: var(--white); }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .ba-grid { grid-template-columns: 1fr 1fr; } }

.ba-card {
  border-radius: var(--r4);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh-md);
}
.ba-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: var(--frost);
}
@media (min-width: 900px) { .ba-img { height: 320px; } }

/* Placeholder style for ba-img when no img yet */
.ba-placeholder {
  width: 100%;
  height: 240px;
  background: var(--frost);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: var(--slate-5);
  border: 2px dashed var(--mist);
  border-radius: var(--r4);
  font-weight: 500;
}
.ba-placeholder span { font-size: 36px; }

.ba-label {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: var(--r5);
}
.ba-label.avant { background: rgba(7,26,46,.7); color: #fff; }
.ba-label.apres { background: var(--azure); color: #fff; }

/* ────────────────────────────────────────────────────
   FORM SECTION
   ──────────────────────────────────────────────────── */
.form-section { background: var(--frost); }

.form-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) { .form-layout { grid-template-columns: 1fr 520px; } }

/* Info side */
.form-info .section-title { color: var(--ink); }

.form-info-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.form-info-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--slate-7);
  font-weight: 400;
}
.form-info-feat::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--azure);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.form-info-urgent {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--slate-3);
  border-radius: var(--r3);
  font-size: 14px;
  color: var(--slate-7);
  line-height: 1.7;
}
.form-info-urgent strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 4px; }
.form-info-urgent a { color: var(--azure); font-weight: 600; }

/* Form card */
.form-card {
  background: var(--white);
  border-radius: var(--r4);
  box-shadow: var(--sh-xl);
  overflow: hidden;
  border: 1px solid rgba(7,26,46,.06);
}
.form-card-head {
  background: linear-gradient(135deg, var(--navy), var(--cobalt));
  padding: 28px 32px;
}
.form-card-head h3 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}
.form-card-head p { font-size: 13px; color: rgba(255,255,255,.6); }
.form-card-body { padding: 32px; }

/* Form elements */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 480px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group:last-child { margin-bottom: 0; }

.form-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--slate-7);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.req { color: var(--azure); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--slate-3);
  border-radius: var(--r2);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--dur), box-shadow var(--dur), background var(--dur);
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--azure);
  box-shadow: 0 0 0 3px rgba(33,118,199,.12);
  background: #fff;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--slate-3); }
.form-textarea { resize: vertical; min-height: 100px; }

/* Phone */
.phone-row { display: flex; }
.phone-flag {
  padding: 12px 14px;
  background: var(--slate-1);
  border: 1.5px solid var(--slate-3);
  border-right: none;
  border-radius: var(--r2) 0 0 var(--r2);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--slate-5);
  white-space: nowrap;
  display: flex; align-items: center;
}
.phone-row .form-input { border-radius: 0 var(--r2) var(--r2) 0; }

/* Radio */
.radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.radio-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid var(--slate-3);
  border-radius: var(--r2);
  cursor: pointer;
  transition: border-color var(--dur), background var(--dur);
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-7);
  flex: 1;
  min-width: 120px;
}
.radio-opt input[type="radio"] { accent-color: var(--azure); flex-shrink: 0; }
.radio-opt:has(input:checked) { border-color: var(--azure); background: var(--frost); color: var(--cobalt); }

/* Services checkboxes */
.svc-checks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 440px) { .svc-checks { grid-template-columns: 1fr 1fr; } }

.chk-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--slate-3);
  border-radius: var(--r2);
  cursor: pointer;
  transition: border-color var(--dur), background var(--dur);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--slate-7);
}
.chk-box {
  width: 18px; height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--slate-3);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--dur), background var(--dur);
}
.chk-opt input[type="checkbox"] { display: none; }
.chk-opt:has(input:checked) { border-color: var(--azure); background: var(--frost); }
.chk-opt:has(input:checked) .chk-box { background: var(--azure); border-color: var(--azure); }
.chk-checkmark { display: none; }
.chk-opt:has(input:checked) .chk-checkmark { display: block; }

/* Divider */
.form-divider {
  height: 1px;
  background: var(--slate-3);
  margin: 20px 0;
}
.form-section-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-5);
  margin-bottom: 14px;
}

/* Consent */
.consent-opt {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--slate-5);
  line-height: 1.65;
  cursor: pointer;
}
.consent-opt input { margin-top: 2px; accent-color: var(--azure); flex-shrink: 0; }
.consent-opt a { color: var(--azure); text-decoration: underline; }

/* Submit */
.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 24px;
  background: var(--azure);
  color: #fff;
  border-radius: var(--r5);
  font-size: 15px;
  font-weight: 600;
  margin-top: 20px;
  transition: background var(--dur), transform var(--dur), box-shadow var(--dur);
  cursor: pointer;
  border: none;
  font-family: var(--font-b);
  letter-spacing: .01em;
}
.form-submit:hover { background: var(--cobalt); transform: translateY(-1px); box-shadow: var(--sh-blue); }

.form-msg { display: none; margin-top: 14px; padding: 14px; border-radius: var(--r2); font-size: 14px; font-weight: 500; }
.alert { margin-top: 14px; padding: 14px 16px; border-radius: var(--r2); font-size: 14px; font-weight: 500; line-height: 1.5; }
.alert-success { background: rgba(16,185,129,.08); color: #065f46; border: 1px solid rgba(16,185,129,.25); }
.alert-error   { background: rgba(244,63,94,.08);  color: #9f1239;  border: 1px solid rgba(244,63,94,.25);  }

/* Alt address toggle */
.addr-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate-5);
  cursor: pointer;
  margin-bottom: 0;
}
.addr-toggle input { accent-color: var(--azure); }
#alt-addr { display: none; margin-top: 12px; }

/* Footer links */
.form-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--slate-3);
  flex-wrap: wrap;
}
.form-footer a { font-size: 12px; color: var(--slate-5); transition: color var(--dur); text-decoration: underline; }
.form-footer a:hover { color: var(--azure); }
.form-footer-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--slate-3); }

/* ────────────────────────────────────────────────────
   CTA BAND
   ──────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--cobalt) 0%, var(--azure) 100%);
  padding: var(--s9) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--font-h);
  font-size: clamp(24px, 4vw, 40px);
  color: #fff;
  margin-bottom: 14px;
  font-weight: 400;
  position: relative;
}
.cta-band p { font-size: 16px; color: rgba(255,255,255,.75); margin-bottom: 32px; max-width: 480px; margin-inline: auto; position: relative; font-weight: 300; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; position: relative; }

/* ────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.6);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }

.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand .brand-name { font-size: 22px; color: #fff; }
.footer-brand > p { font-size: 14px; line-height: 1.75; max-width: 280px; font-weight: 300; }

.footer h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.6); transition: color var(--dur); }
.footer-links a:hover { color: #fff; }

.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-ci { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.footer-ci a { color: rgba(255,255,255,.6); transition: color var(--dur); }
.footer-ci a:hover { color: #fff; }

.footer-socials { display: flex; gap: 8px; margin-top: 8px; }
.footer-soc {
  width: 36px; height: 36px;
  border-radius: var(--r2);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  transition: background var(--dur), color var(--dur);
}
.footer-soc:hover { background: var(--azure); color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
}
.footer-bottom a { color: rgba(255,255,255,.45); transition: color var(--dur); }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }

/* ────────────────────────────────────────────────────
   MOBILE BOTTOM CTA BAR
   ──────────────────────────────────────────────────── */
.mobile-bar {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 180;
  padding: 10px 14px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--slate-3);
  gap: 9px;
  box-shadow: 0 -4px 24px rgba(7,26,46,.08);
}
.mobile-bar-call {
  flex: 1;
  padding: 13px 12px;
  border-radius: var(--r3);
  background: var(--frost);
  color: var(--azure);
  font-weight: 600;
  font-size: 13.5px;
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  border: 1.5px solid var(--mist);
  transition: background var(--dur);
}
.mobile-bar-call:hover { background: var(--mist); }
.mobile-bar-cta {
  flex: 2;
  padding: 13px 12px;
  border-radius: var(--r3);
  background: var(--azure);
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  transition: background var(--dur);
}
.mobile-bar-cta:hover { background: var(--cobalt); }
@media (min-width: 768px) { .mobile-bar { display: none; } }

/* ────────────────────────────────────────────────────
   CHAT WIDGET
   ──────────────────────────────────────────────────── */
.chat-widget {
  position: fixed;
  bottom: 88px;
  right: 18px;
  z-index: 170;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
@media (min-width: 768px) { .chat-widget { bottom: 24px; } }

.chat-popup {
  background: var(--white);
  border-radius: var(--r3) var(--r3) 3px var(--r3);
  padding: 14px 18px;
  box-shadow: var(--sh-lg);
  font-size: 13.5px;
  color: var(--slate-7);
  max-width: 210px;
  line-height: 1.55;
  border: 1px solid var(--slate-3);
  position: relative;
  animation: popIn .35s var(--ease-out) both;
}
@keyframes popIn {
  from { opacity: 0; transform: translateY(10px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.chat-popup strong { display: block; color: var(--ink); margin-bottom: 3px; font-size: 13px; }
.chat-popup-close {
  position: absolute;
  top: -9px; right: -9px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--slate-5);
  color: #fff;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur);
}
.chat-popup-close:hover { background: var(--ink); }

.chat-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--azure);
  color: #fff;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-blue);
  transition: transform var(--dur), background var(--dur), box-shadow var(--dur);
  position: relative;
  flex-shrink: 0;
}
.chat-btn:hover { background: var(--cobalt); transform: scale(1.08); }
.chat-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--sky);
  animation: ring 2.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ring {
  0%,100% { opacity: .4; transform: scale(1); }
  50% { opacity: 0; transform: scale(1.3); }
}

/* ────────────────────────────────────────────────────
   PAGE HERO (inner pages)
   ──────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 80px 0 96px;
  overflow: hidden;
  background: var(--navy);
}
/* Image layer */
.page-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(7,26,46,.90) 0%, rgba(21,83,165,.6) 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0; z-index: 3;
  height: 60px;
  background: var(--slate-1);
  clip-path: ellipse(52% 100% at 50% 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--dur); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { font-size: 10px; }
.page-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 400;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  max-width: 500px;
  font-weight: 300;
  line-height: 1.75;
}

/* ────────────────────────────────────────────────────
   DETAIL PAGE LAYOUT
   ──────────────────────────────────────────────────── */
.detail-bg { background: var(--slate-1); padding: var(--s9) 0 var(--s10); }

.detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
@media (min-width: 900px) { .detail-layout { grid-template-columns: 1fr 380px; } }

.detail-main { display: flex; flex-direction: column; gap: 24px; }

.detail-card {
  background: var(--white);
  border-radius: var(--r4);
  padding: 32px;
  box-shadow: var(--sh-sm);
  border: 1px solid rgba(7,26,46,.06);
}
.detail-card h2 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.detail-card h3 { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 14px; }

/* Service image placeholder */
.service-img-placeholder {
  width: 100%;
  height: 200px;
  border-radius: var(--r3);
  background: var(--frost);
  border: 2px dashed var(--mist);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 12.5px;
  color: var(--slate-5);
  font-weight: 500;
  text-align: center;
  padding: 20px;
}
.service-img-placeholder span:first-child { font-size: 40px; }

/* Responsive actual images */
.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r3);
  margin-bottom: 24px;
  display: block;
}
@media (min-width: 768px) { .service-img { height: 280px; } }

.detail-points { display: flex; flex-direction: column; gap: 14px; }
.detail-pt {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14.5px;
  color: var(--slate-7);
  line-height: 1.7;
}
.detail-pt-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--frost);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.benefit-tile {
  background: var(--slate-1);
  border-radius: var(--r2);
  padding: 16px;
  border: 1px solid var(--slate-3);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.benefit-emoji { font-size: 22px; }
.benefit-label { font-size: 13px; font-weight: 600; color: var(--ink); }
.benefit-desc { font-size: 12.5px; color: var(--slate-5); line-height: 1.55; }

/* Etapes */
.etapes { display: flex; flex-direction: column; gap: 20px; }
.etape {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.etape-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--azure);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.etape-content h4 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.etape-content p { font-size: 13.5px; color: var(--slate-5); line-height: 1.65; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--slate-3);
  border-radius: var(--r2);
  overflow: hidden;
  background: var(--white);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--dur), color var(--dur);
}
.faq-q:hover { background: var(--slate-1); }
.faq-q[aria-expanded="true"] { color: var(--azure); }
.faq-chev {
  font-size: 18px;
  transition: transform .3s var(--ease);
  flex-shrink: 0;
  color: var(--slate-5);
}
.faq-q[aria-expanded="true"] .faq-chev { transform: rotate(180deg); color: var(--azure); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease-out);
}
.faq-inner {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--slate-5);
  line-height: 1.75;
  border-top: 1px solid var(--slate-3);
  padding-top: 14px;
  font-weight: 300;
}

/* Sidebar sticky form */
.sidebar-form {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.sidebar-form .form-card-head h3 { font-size: 19px; }

/* ────────────────────────────────────────────────────
   REVEAL ANIMATIONS
   ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ────────────────────────────────────────────────────
   SURFACES GRID (revêtements page)
   ──────────────────────────────────────────────────── */
.surfaces-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 560px) { .surfaces-grid { grid-template-columns: repeat(3, 1fr); } }

.surface-tile {
  background: var(--frost);
  border: 1px solid var(--mist);
  border-radius: var(--r2);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.surface-tile:hover { border-color: var(--azure); box-shadow: var(--sh-sm); }
.surface-emoji { font-size: 26px; }
.surface-name { font-size: 12.5px; font-weight: 600; color: var(--ink); }

/* ────────────────────────────────────────────────────
   PHOTO GALLERY PLACEHOLDER GRID
   ──────────────────────────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (min-width: 768px) { .photo-grid { grid-template-columns: repeat(3, 1fr); } }

.photo-ph {
  border-radius: var(--r3);
  background: var(--frost);
  border: 2px dashed var(--mist);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--slate-5);
  font-weight: 500;
  text-align: center;
  padding: 12px;
}
.photo-ph span { font-size: 28px; }

/* ────────────────────────────────────────────────────
   MISC HELPERS
   ──────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-blue { color: var(--azure); }
.mt-s5 { margin-top: var(--s5); }
.mt-s6 { margin-top: var(--s6); }
.mt-s7 { margin-top: var(--s7); }
.mb-s7 { margin-bottom: var(--s7); }

/* ────────────────────────────────────────────────────
   LUX HERO — Unified premium hero (all 4 pages)
   ──────────────────────────────────────────────────── */

/* Container */
.lux-hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .lux-hero { height: 85vh; min-height: 520px; }
}

/* Background image layer */
.lux-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.lux-hero:hover .lux-hero-bg { transform: scale(1); }

/* Dark overlay */
.lux-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.52);
}

/* Content wrapper */
.lux-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-top: 60px;
  padding-bottom: 80px;
  animation: lux-fadein 0.6s ease both;
}

/* Badge pill */
.lux-hero-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50px;
  padding: 7px 18px;
  margin-bottom: 20px;
}

/* Breadcrumb (service pages) — under badge */
.lux-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.lux-hero-breadcrumb a {
  color: rgba(255,255,255,.55);
  transition: color var(--dur);
}
.lux-hero-breadcrumb a:hover { color: rgba(255,255,255,.9); }
.lux-hero-breadcrumb-cur { color: rgba(255,255,255,.75); }

/* H1 */
.lux-hero-h1 {
  font-family: var(--font-h);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -.025em;
  margin-bottom: 16px;
}
.lux-hero-h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--sky);
}
@media (max-width: 767px) {
  .lux-hero-h1 { font-size: 2rem; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .lux-hero-h1 { font-size: 2.75rem; }
}

/* Subtitle */
.lux-hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  line-height: 1.72;
  margin-top: 0;
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 560px;
}
@media (max-width: 767px) {
  .lux-hero-sub { font-size: 1rem; }
}

/* Buttons row */
.lux-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* Primary button — white filled */
.lux-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy);
  background: #fff;
  border-radius: 50px;
  padding: 14px 30px;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
}
.lux-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,.26);
}
.lux-btn-primary svg { flex-shrink: 0; transition: transform 220ms var(--ease); }
.lux-btn-primary:hover svg { transform: translateX(3px); }

/* Ghost button — outline */
.lux-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 14.5px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.38);
  border-radius: 50px;
  padding: 14px 30px;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: background 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
  backdrop-filter: blur(6px);
}
.lux-btn-ghost:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}
.lux-btn-ghost svg { flex-shrink: 0; transition: transform 220ms var(--ease); }
.lux-btn-ghost:hover svg { transform: translateY(3px); }

/* Scroll indicator */
.lux-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  pointer-events: none;
}
.lux-scroll-chev {
  display: block;
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255,255,255,.45);
  border-bottom: 2px solid rgba(255,255,255,.45);
  transform: rotate(45deg);
  animation: lux-bounce 1.8s ease-in-out infinite;
}

/* Animations */
@keyframes lux-fadein {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lux-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0);   opacity: .4; }
  50%       { transform: rotate(45deg) translateY(6px); opacity: .9; }
}

/* ────────────────────────────────────────────────────
   PART 4 — PREMIUM ENHANCEMENTS
   ──────────────────────────────────────────────────── */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--cobalt), var(--sky));
  z-index: 9999;
  transition: width 80ms linear;
  pointer-events: none;
}

/* Gallery images (replacing .photo-ph placeholders) */
.gallery-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r2);
  display: block;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.gallery-img:hover {
  transform: scale(1.04);
  box-shadow: var(--sh-lg);
  z-index: 1;
  position: relative;
}

/* Service content images */
.service-img {
  width: 100%;
  border-radius: var(--r3);
  display: block;
  margin: 20px 0;
  aspect-ratio: 16/7;
  object-fit: cover;
}

/* Surfaces grid (entretien-exterieur) */
.surfaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 480px) {
  .surfaces-grid { grid-template-columns: repeat(2, 1fr); }
}
.surface-tile {
  background: var(--frost);
  border: 1px solid var(--mist);
  border-radius: var(--r2);
  padding: 14px 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  transition: background 220ms, border-color 220ms, transform 220ms;
}
.surface-tile:hover {
  background: var(--mist);
  border-color: var(--sky);
  transform: translateY(-2px);
}

/* Danger alert (gouttières) */
.danger-alert {
  background: rgba(244, 63, 94, 0.06);
  border: 1.5px solid rgba(244, 63, 94, 0.22);
  border-radius: var(--r2);
  padding: 16px 20px;
  margin-bottom: 28px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.danger-alert-icon { font-size: 22px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.danger-alert strong { color: #9f1239; font-size: 14.5px; display: block; margin-bottom: 4px; }
.danger-alert p { font-size: 13px; color: var(--slate-7); line-height: 1.65; font-weight: 300; margin: 0; }

/* Enhanced card hover — glassmorphism lift */
.svc-card {
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease), border-color 300ms var(--ease);
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(7, 26, 46, 0.12), 0 4px 16px rgba(33, 118, 199, 0.08);
  border-color: var(--mist);
}

/* Review card hover */
.review-card {
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
}

/* Input / textarea focus glow */
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--azure);
  box-shadow: 0 0 0 3px rgba(33, 118, 199, 0.12);
}

/* Submit button hover arrow nudge */
.form-submit svg {
  transition: transform 220ms var(--ease);
}
.form-submit:hover svg {
  transform: translateX(4px);
}

/* Nav link animated underline */
.nav-links a:not(.nav-btn) {
  position: relative;
}
.nav-links a:not(.nav-btn)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--azure);
  border-radius: 2px;
  transition: width 220ms var(--ease);
}
.nav-links a:not(.nav-btn):hover::after,
.nav-links a.current::after {
  width: 100%;
}

/* Etape hover lift */
.etape {
  transition: transform 240ms var(--ease);
}
.etape:hover {
  transform: translateX(4px);
}

/* Counter numbers */
[data-counter] {
  font-variant-numeric: tabular-nums;
}

/* Validation champs invalides */
.champ-invalide {
  border: 2px solid red !important;
  outline: none;
}
