/* ====================================================
   CONCIERGERIE DEL MAR — STYLES V3
   Inspired by La Joly + Zen WeeKey
   Fonts: Cormorant Garamond (titles) + Montserrat (body)
   ==================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }

:root {
  --navy:    #1A3A6B;
  --navy-d:  #0e2347;
  --gold:    #C5A55A;
  --gold-lt: #d9bc7b;
  --green:   #25D366;
  --green-d: #1da851;
  --text:    #2a2a2a;
  --muted:   #6b7280;
  --light:   #f8f7f4;
  --white:   #ffffff;
  --border:  #e8e4df;
  --shadow:  0 4px 24px rgba(26,58,107,.08);
  --shadow-lg: 0 12px 48px rgba(26,58,107,.14);
  --radius:  12px;
  --radius-lg: 20px;
  --ff-title: 'Cormorant Garamond', Georgia, serif;
  --ff-body:  'Montserrat', -apple-system, sans-serif;
  --transition: .3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header h2 { margin-top: 12px; }
.section-header p {
  color: var(--muted);
  font-size: .95rem;
  margin-top: 14px;
}
.section-header.light h2, .section-header.light p { color: rgba(255,255,255,.85); }
.section-header.light h2 { color: var(--white); }

.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(197,165,90,.1);
  border: 1px solid rgba(197,165,90,.25);
  padding: 5px 14px;
  border-radius: 100px;
}
.tag-gold { color: var(--gold-lt); background: rgba(197,165,90,.15); border-color: rgba(197,165,90,.3); }
.tag-light { color: var(--white); background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); }

h2 {
  font-family: var(--ff-title);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}
h3 { font-family: var(--ff-title); font-size: 1.5rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
h4 { font-family: var(--ff-body); font-size: 1rem; font-weight: 600; color: var(--navy); line-height: 1.4; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy-d);
  color: rgba(255,255,255,.8);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .5px;
  padding: 9px 0;
}
.topbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.topbar a { color: var(--gold-lt); transition: color var(--transition); }
.topbar a:hover { color: var(--white); }
.sep { opacity: .35; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-name {
  font-family: var(--ff-title);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.nav-end {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-menu a {
  font-size: .78rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 9px;
  border-radius: 8px;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-menu a:hover { color: var(--navy); background: var(--light); }
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
}
.nav-cta:hover { background: var(--navy-d) !important; }
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.lang-switch a,
.lang-switch .ls-active {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  text-decoration: none;
  color: var(--muted);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.lang-switch img {
  display: block;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.12);
}
.lang-switch a:hover {
  background: var(--light);
  color: var(--navy);
  border-color: var(--navy);
}
.lang-switch .ls-active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
  font-weight: 700;
  cursor: default;
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f8f7f4 0%, #f0ede7 45%, #e8e2d8 100%);
}
.hero-deco {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,165,90,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--ff-title);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(26,58,107,.25);
}
.btn-main:hover { background: var(--navy-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,58,107,.30); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 13px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.hero-pills span {
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
}

/* ===== INTRO ===== */
.intro-section {
  padding: 72px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.intro-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.intro-lead {
  font-family: var(--ff-title);
  font-size: 1.45rem;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 18px;
}
.intro-body {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 24px;
}
.btn-text {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .5px;
  transition: color var(--transition);
}
.btn-text:hover { color: var(--navy); }

/* ===== AUDIENCE ===== */
.audience-section {
  padding: 96px 0;
  background: var(--light);
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.audience-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.audience-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.audience-card-alt { background: var(--navy); color: rgba(255,255,255,.85); border-color: var(--navy-d); }
.audience-card.audience-card-alt h2 { color: var(--white) !important; }
.audience-card-alt p { color: rgba(255,255,255,.75); }
.aud-header { margin-bottom: 24px; }
.aud-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.aud-tag-alt { color: var(--gold-lt); }
.audience-card h2 {
  font-family: var(--ff-title);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0;
}
.audience-card > p { font-size: .9rem; margin-bottom: 24px; color: var(--muted); }
.audience-card-alt > p { color: rgba(255,255,255,.7); }
.aud-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.aud-list li { display: flex; gap: 14px; align-items: flex-start; font-size: .9rem; }
.aud-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
}
.aud-dot.alt { background: var(--gold-lt); }
.audience-card-alt .aud-list li { color: rgba(255,255,255,.8); }
.btn-aud {
  display: inline-block;
  font-weight: 600;
  font-size: .88rem;
  color: var(--navy);
  background: rgba(197,165,90,.12);
  border: 1px solid rgba(197,165,90,.3);
  padding: 10px 22px;
  border-radius: 8px;
  transition: all var(--transition);
}
.btn-aud:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-aud-alt {
  color: var(--gold-lt);
  background: rgba(197,165,90,.1);
  border-color: rgba(197,165,90,.2);
}
.btn-aud-alt:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ===== ESTIMATEUR ===== */
.estimer-section {
  padding: 96px 0;
  position: relative;
}
.estimer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 28, 52, 0.80);
  z-index: 0;
}
.estimer-section > .container {
  position: relative;
  z-index: 1;
}
.estimer-section .section-tag {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.25);
}
.estimer-section .section-header h2,
.estimer-section .section-header p {
  color: #fff;
}
.estimer-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.estimer-text { padding-top: 20px; }
.estimer-text h2 { margin-top: 14px; margin-bottom: 16px; }
.estimer-text p { color: var(--muted); font-size: .93rem; margin-bottom: 28px; }
.estimer-pts { display: flex; flex-direction: column; gap: 14px; }
.estimer-pts li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--text);
}
.estimer-pts li span { line-height: 1.6; }
.estimer-form-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.estimer-form-box h3 { margin-bottom: 8px; }
.estimer-form-box > p { font-size: .88rem; color: var(--muted); margin-bottom: 28px; }
.estimer-form { display: flex; flex-direction: column; gap: 16px; }
.ef-group { display: flex; flex-direction: column; gap: 6px; }
.ef-group label { font-size: .8rem; font-weight: 600; color: var(--navy); letter-spacing: .5px; }
.ef-group input, .ef-group select {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: var(--ff-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.ef-group input:focus, .ef-group select:focus { border-color: var(--navy); }
.btn-estimer {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .93rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-align: center;
}
.btn-estimer:hover { background: var(--navy-d); transform: translateY(-1px); }

/* ===== CONFIANCE ===== */
.confiance-section {
  padding: 96px 0;
  position: relative;
  background-image: url('bg-confiance.jpg');
  background-size: cover;
  background-position: center;
}
.confiance-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 28, 52, 0.78);
  z-index: 0;
}
.confiance-section > .container {
  position: relative;
  z-index: 1;
}
.confiance-section .section-tag {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.25);
}
.confiance-section .section-header h2,
.confiance-section .section-header p {
  color: #fff;
}
.confiance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cf-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.cf-icon { font-size: 2rem; margin-bottom: 16px; }
.cf-card h4 { margin-bottom: 10px; }
.cf-card p { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* ===== SERVICES ===== */
.services-section {
  padding: 96px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.svc-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.svc-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.svc-highlight {
  background: var(--navy);
  border-color: var(--navy-d);
  color: rgba(255,255,255,.85);
  grid-column: span 1;
}
.svc-highlight h3, .svc-highlight .svc-num { color: var(--white); }
.svc-highlight p { color: rgba(255,255,255,.7); }
.svc-num {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.svc-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.svc-card p { font-size: .88rem; color: var(--muted); line-height: 1.7; }
.svc-highlight p { color: rgba(255,255,255,.65); }
.svc-link {
  display: inline-block;
  margin-top: 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-lt);
  transition: color var(--transition);
}
.svc-link:hover { color: var(--white); }
.services-types {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 40px;
}
.services-types h4 { margin-bottom: 16px; }
.types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 32px;
}
.types-grid span { font-size: .88rem; color: var(--muted); }

/* ===== VUT ===== */
.vut-section {
  padding: 96px 0;
  background: var(--navy);
  color: var(--white);
}
.vut-section h2 { color: var(--white); }
.vut-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.vut-step {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background var(--transition);
}
.vut-step:hover { background: rgba(255,255,255,.1); }
.vut-step-final { background: rgba(197,165,90,.15); border-color: rgba(197,165,90,.3); }
.vs-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--white);
  font-size: .75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .5px;
}
.vs-body h4 { color: var(--white); margin-bottom: 6px; }
.vs-body p { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.vut-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.vut-pkg {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.vut-pkg:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.vut-pkg-pop {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(197,165,90,.3);
}
.vut-pkg-pop .pkg-label, .vut-pkg-pop .pkg-price, .vut-pkg-pop p { color: var(--navy) !important; }
.pop-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pkg-label { font-size: .78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 10px; }
.pkg-price {
  font-family: var(--ff-title);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.vut-pkg p { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 24px; line-height: 1.6; }
.btn-pkg {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: .84rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  transition: all var(--transition);
}
.btn-pkg:hover { background: rgba(255,255,255,.15); }
.btn-pkg-pop {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.btn-pkg-pop:hover { background: var(--navy-d); }
.vut-note {
  background: rgba(197,165,90,.1);
  border: 1px solid rgba(197,165,90,.25);
  border-radius: var(--radius);
  padding: 20px 28px;
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  text-align: center;
}
.vut-note a { color: var(--gold-lt); text-decoration: underline; }

/* ===== TÉMOIGNAGES ===== */
.temos-section {
  padding: 96px 0;
  background: var(--light);
}
.temos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.temo {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: box-shadow var(--transition);
}
.temo:hover { box-shadow: var(--shadow); }
.temo-stars { font-size: 1.1rem; color: var(--gold); margin-bottom: 16px; letter-spacing: 3px; }
.temo p { font-size: .9rem; color: var(--muted); font-style: italic; line-height: 1.75; margin-bottom: 24px; }
.temo-who { display: flex; align-items: center; gap: 12px; }
.temo-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.temo-who strong { display: block; font-size: .9rem; }
.temo-who span { font-size: .8rem; color: var(--muted); }

/* ===== EQUIPE ===== */
.equipe-section {
  padding: 96px 0;
  background: var(--white);
}
.equipe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.equipe-text { padding-top: 8px; }
.equipe-text h2 { margin-top: 14px; margin-bottom: 20px; }
.equipe-text p { font-size: .93rem; color: var(--muted); margin-bottom: 16px; line-height: 1.8; }
.equipe-contact { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.btn-wa-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 11px 20px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  width: fit-content;
  transition: background var(--transition);
}
.btn-wa-sm:hover { background: var(--green-d); }
.btn-email-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--navy);
  font-weight: 500;
  padding: 10px 0;
  transition: color var(--transition);
}
.btn-email-sm:hover { color: var(--gold); }
.equipe-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  margin-bottom: 20px;
}
.eq-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.equipe-card h4 { font-size: 1.1rem; margin-bottom: 4px; }
.equipe-card > p { font-size: .85rem; color: var(--muted); margin-bottom: 20px; }
.eq-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.eq-tags span { font-size: .78rem; background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 4px 12px; color: var(--muted); }
.equipe-zone {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  color: var(--white);
}
.equipe-zone h5 {
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.zone-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.zp {
  font-size: .8rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: 5px 14px;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}
.zp:hover, .zp.active { background: rgba(197,165,90,.2); border-color: rgba(197,165,90,.4); color: var(--gold-lt); }
.zone-facts-mini { display: flex; flex-direction: column; gap: 8px; }
.zone-facts-mini div { font-size: .82rem; color: rgba(255,255,255,.6); display: flex; gap: 8px; }

/* ===== PARTENAIRES ===== */
.partners-section {
  padding: 48px 0;
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-title {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.plt {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity var(--transition);
  opacity: .7;
}
.plt:hover { opacity: 1; }

/* ===== CONTACT ===== */
.contact-section {
  padding: 96px 0;
  background: var(--navy);
  color: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact-left h2 { color: var(--white); margin-top: 14px; margin-bottom: 16px; }
.contact-left > p { color: rgba(255,255,255,.7); font-size: .93rem; margin-bottom: 36px; }
.contact-ways { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.cw {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: all var(--transition);
  cursor: default;
}
a.cw { cursor: pointer; }
a.cw:hover { background: rgba(255,255,255,.12); transform: translateX(4px); }
.cw-wa { border-color: rgba(37,211,102,.25); }
a.cw-wa:hover { background: rgba(37,211,102,.1); }
.cw-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,.8);
}
.cw-ico-wa { background: rgba(37,211,102,.2); color: var(--green); }
.cw-txt { flex: 1; }
.cw-txt strong { display: block; font-size: .88rem; color: var(--white); margin-bottom: 2px; }
.cw-txt span { font-size: .8rem; color: rgba(255,255,255,.6); }
.cw-arr { color: rgba(255,255,255,.3); font-size: 1.1rem; }
.contact-langs { font-size: .82rem; color: rgba(255,255,255,.5); letter-spacing: .5px; }
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 { color: var(--navy); margin-bottom: 8px; }
.form-intro { font-size: .88rem; color: var(--muted); margin-bottom: 24px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.fg label { font-size: .8rem; font-weight: 600; color: var(--navy); letter-spacing: .5px; }
.fg input, .fg select, .fg textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: var(--ff-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  resize: vertical;
  transition: border-color var(--transition);
  outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,58,107,.1); }
.btn-send, .btn-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .93rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-send:hover, .btn-submit:hover { background: var(--navy-d); transform: translateY(-1px); }
.form-rgpd { font-size: .75rem; color: var(--muted); text-align: center; margin-top: 12px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-d);
  color: rgba(255,255,255,.7);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.fbrand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-langs { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: 12px; }
.footer-col h5 {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--white); }
.footer-col p { font-size: .85rem; margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: .84rem;
  font-weight: 600;
  margin-top: 8px;
  transition: background var(--transition);
}
.footer-wa:hover { background: var(--green-d); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 24px;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  max-width: 1160px;
  margin: 0 auto;
}

/* ===== FLOATING WA ===== */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  animation: float-pulse 3s ease-in-out infinite;
}
.float-wa:hover {
  background: var(--green-d);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,.45);
  animation: none;
}
@keyframes float-pulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50% { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(37,211,102,.5); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .audience-grid, .equipe-grid, .estimer-wrap, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .confiance-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .vut-grid { grid-template-columns: repeat(2, 1fr); }
  .vut-packages { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .temos-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .topbar-inner { justify-content: center; gap: 8px; font-size: .7rem; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    z-index: 999;
    padding: 12px 0;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { border-radius: 0; padding: 12px 24px; font-size: .92rem; }
  .nav-cta { margin: 8px 16px !important; border-radius: 8px !important; }
  .brand-name { display: none; }
  .nav-inner { padding: 0 12px; gap: 6px; max-width: 100vw; box-sizing: border-box; }
  .nav-end { gap: 6px; min-width: 0; }
  .lang-switch { gap: 3px; flex-shrink: 0; }
  .lang-switch a, .lang-switch .ls-active { font-size: .7rem; padding: 5px 7px; }
  .burger { display: flex; flex-shrink: 0; }
  .hero-inner { padding: 80px 20px 60px; }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-btns { flex-direction: column; align-items: center; }
  .audience-card { padding: 32px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-highlight { grid-column: span 1; }
  .confiance-grid { grid-template-columns: 1fr; }
  .vut-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .fg-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .float-wa span { display: none; }
  .float-wa { padding: 14px; border-radius: 50%; }
  .estimer-form-box { padding: 28px 20px; }
  .estimer-wrap { gap: 40px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .audience-card { padding: 24px 18px; }
  .cf-card, .svc-card { padding: 24px; }
  h2 { font-size: 1.8rem; }
}

/* ===== COMMENT ÇA MARCHE ===== */
.how-section {
  padding: 96px 0;
  background: var(--light);
}
.how-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
}
.how-card {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(26,58,107,.12);
}
.how-card-final {
  background: var(--navy);
  color: var(--white);
}
.how-card-final h3 { color: var(--gold); }
.how-card-final p { color: rgba(255,255,255,.85); }
.how-card-final .how-num { color: var(--gold); }
.how-num {
  font-family: var(--ff-title);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 12px;
  opacity: .18;
  letter-spacing: -1px;
}
.how-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.how-card h3 {
  font-family: var(--ff-title);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.how-card p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.65;
}
.how-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  align-self: center;
  padding: 0 8px;
  flex-shrink: 0;
  font-weight: 700;
}
.how-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 96px 0;
  background: var(--white);
}
.faq-list {
  max-width: 760px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow .25s;
}
.faq-item:hover {
  box-shadow: 0 4px 20px rgba(26,58,107,.08);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  transition: color .2s;
  gap: 16px;
}
.faq-q:hover { color: var(--navy); }
.faq-ico {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-ico {
  transform: rotate(45deg);
}
.faq-q[aria-expanded="true"] { color: var(--navy); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}
.faq-a.open {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-a p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

@media (max-width: 768px) {
  .how-grid {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .how-card { max-width: 100%; width: 100%; }
  .how-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }
  .faq-q { font-size: .88rem; padding: 16px 18px; }
  .faq-a, .faq-a.open { padding-left: 18px; padding-right: 18px; }
}

/* ===== HERO WITH BACKGROUND IMAGE ===== */
.hero { background: var(--navy-d); }
.hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(14,35,71,.82) 0%, rgba(14,35,71,.62) 50%, rgba(14,35,71,.78) 100%);
}
.hero-deco { display: none; }
.hero h1 { color: var(--white); }
.hero h1 em { color: var(--gold-lt); }
.hero-tag { color: var(--gold-lt); }
.hero-lead { color: rgba(255,255,255,.82); }
.hero .btn-outline {
  border-color: rgba(255,255,255,.65);
  color: var(--white);
}
.hero .btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.hero-pills span {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 60px 0;
  background: var(--navy);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: var(--ff-title);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ===== SERVICE CARD IMAGES ===== */
.svc-img {
  margin: -32px -32px 24px;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
  flex-shrink: 0;
}
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
  display: block;
}
.svc-card:hover .svc-img img { transform: scale(1.07); }
.svc-img-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14,35,71,.25) 0%, rgba(14,35,71,.55) 100%);
}

/* ===== VUT CTA BLOCK ===== */
.vut-cta-block {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(197,165,90,.25);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 36px;
}
.vcta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.vcta-text h4 { color: var(--white); font-size: 1.15rem; margin-bottom: 10px; }
.vcta-text p { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.7; max-width: 540px; }

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 96px 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 14px;
}
.gi {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
  background: var(--light);
}
.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
  display: block;
}
.gi:hover img { transform: scale(1.06); }
.gi-tall { grid-row: span 2; }
.gi-wide { grid-column: span 2; }
.gi-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(14,35,71,.75) 0%, transparent 100%);
  color: rgba(255,255,255,.92);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 28px 16px 12px;
  transform: translateY(100%);
  transition: transform .35s ease;
}
.gi:hover .gi-caption { transform: translateY(0); }

/* ===== FORM btn-submit ===== */
.btn-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .93rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-submit:hover { background: var(--navy-d); transform: translateY(-1px); }

/* ===== RESPONSIVE additions ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-auto-rows: 200px; }
  .vcta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-item:last-child { border-bottom: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gi-tall { grid-row: span 1; }
  .svc-img { height: 150px; margin: -24px -24px 18px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
}
