/* ============================================================
   LUXE ONKEY v4 — Logo colors + Premium refinements
   ============================================================ */

:root {
  /* Palette exacte du logo */
  --navy:       #0B1D3A;   /* fond très sombre du logo */
  --navy-2:     #152D50;   /* intermédiaire */
  --navy-3:     #1A3A7A;   /* bleu ruban du logo */
  --navy-4:     #0D2456;   /* bleu profond */

  /* Or métallique du logo */
  --gold:       #C9A84C;
  --gold-2:     #E8CC6A;   /* reflet brillant */
  --gold-3:     #8B6914;   /* or sombre */
  --gold-4:     #D4AF50;   /* or texte */

  /* Fonds crème */
  --cream:      #FAF8F5;
  --cream-2:    #F2EFE8;
  --cream-3:    #E5E0D4;

  /* Texte */
  --text:       #18140F;
  --text-2:     #453F36;
  --text-3:     #8A8070;
  --white:      #ffffff;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;

  --ease:     cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,0,.2,1);

  --r:   8px;
  --r2:  18px;
  --r3:  28px;

  /* Or dégradé — identique au logo */
  --grad-gold: linear-gradient(135deg, #8B6914 0%, #C9A84C 35%, #E8CC6A 60%, #B8922A 100%);
}

/* ── Reset ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: var(--sans); color: var(--text); background: var(--white); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
textarea { resize: vertical; }

/* ── Containers ── */
.container { max-width: 1140px; margin-inline: auto; padding-inline: 2rem; }

/* ── Scroll reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="left"].in, [data-reveal="right"].in { transform: none; }

/* ── Eyebrows ── */
.eyebrow-gold {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.eyebrow-gold::before {
  content: '';
  display: inline-block; width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--gold-3), var(--gold));
  flex-shrink: 0;
}
.eyebrow-light {
  color: var(--gold-2);
}
.eyebrow-light::before {
  background: linear-gradient(90deg, rgba(201,168,76,.3), var(--gold-2));
}

/* ── Display titles ── */
.display-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -.02em;
}
.display-title em {
  font-style: italic; font-weight: 400;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.display-title.white { color: var(--white); }
.display-title.white em {
  background: linear-gradient(135deg, #C9A84C 0%, #E8CC6A 50%, #C9A84C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-h2 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -.02em;
  margin: .5rem 0 1.2rem;
}
.section-h2 em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-head { text-align: center; margin-bottom: 4rem; }
.section-sub {
  font-size: 1.08rem; color: var(--text-2); line-height: 1.75;
  max-width: 560px; margin: 1rem auto 0;
  font-weight: 400;
}

/* ── Check list ── */
.check-list { display: flex; flex-direction: column; gap: .65rem; margin-top: 1.4rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .97rem; color: var(--text-2); line-height: 1.55;
}
.check-list li i { color: var(--gold); font-size: .78rem; margin-top: .28rem; flex-shrink: 0; }


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.solid {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}

.nav-inner {
  max-width: 1280px; margin-inline: auto;
  padding-inline: 2.5rem; height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 56px;
  width: auto;
  display: block;
  border-radius: 10px;
  transition: opacity .2s, transform .2s;
}
.logo:hover .logo-img { opacity: .88; transform: scale(1.03); }

.nav-links { display: flex; gap: .1rem; flex: 1; justify-content: center; }
.nav-links a {
  font-size: .83rem; font-weight: 500; color: var(--text-2);
  padding: .45rem .85rem; border-radius: 50px;
  transition: color .3s, background .3s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--cream); }

/* Nav transparent state (on hero) → gold text for readability */
.nav:not(.solid) .nav-links a {
  color: var(--gold-2);
}
.nav:not(.solid) .nav-links a:hover,
.nav:not(.solid) .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.15);
}

.nav-btn {
  font-size: .85rem; font-weight: 700;
  background: var(--grad-gold); color: var(--white);
  padding: .65rem 1.55rem; border-radius: 50px;
  transition: all .25s var(--ease);
  flex-shrink: 0; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(201,168,76,.3);
  text-shadow: 0 1px 2px rgba(0,0,0,.15);
}
.nav-btn:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,76,.45); }

/* Landing page tab in nav */
.nav-link-landing {
  color: var(--gold) !important;
  font-weight: 600 !important;
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 50px;
  padding: .3rem .9rem !important;
  transition: background .2s, border-color .2s;
}
/* Keep landing tab gold even in transparent state (already forced via !important) */
.nav:not(.solid) .nav-link-landing {
  color: var(--gold-2) !important;
  border-color: rgba(232,204,106,.45);
}
.nav-link-landing:hover {
  background: rgba(201,168,76,.1);
  border-color: var(--gold);
  opacity: 1 !important;
}

.burger { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; flex-direction: column;
  background: var(--white); padding: 1rem 2rem 1.5rem;
  border-top: 1px solid var(--cream-3); gap: .1rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: .95rem; font-weight: 500; color: var(--text-2);
  padding: .7rem 0; border-bottom: 1px solid var(--cream-2);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--navy); }
.nav-mobile-cta {
  margin-top: .85rem; display: flex; align-items: center; justify-content: center;
  background: var(--navy) !important; color: var(--white) !important;
  font-weight: 600 !important; border-radius: var(--r);
  padding: .9rem 1.5rem !important; border-bottom: none !important;
  letter-spacing: .02em;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(155deg, rgba(11,29,58,.94) 0%, rgba(21,58,122,.80) 50%, rgba(11,29,58,.92) 100%),
    linear-gradient(to bottom, transparent 70%, rgba(11,29,58,.5) 100%);
}

.hero-body {
  position: relative; z-index: 1;
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 9rem 2rem 5rem;
  max-width: 920px; margin-inline: auto; width: 100%;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 2rem;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3.6rem, 9vw, 7.5rem);
  font-weight: 400;
  line-height: 1.02;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 2rem;
  text-shadow: 0 2px 40px rgba(0,0,0,.4);
}
.hero-h1 em {
  font-style: italic; font-weight: 400;
  /* Or dégradé métallique identique au logo */
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.hero-h1 em::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 15%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold-3), var(--gold-2), transparent);
  border-radius: 2px;
}

.hero-lead {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  color: rgba(255,255,255,.82);
  max-width: 600px; margin-inline: auto;
  line-height: 1.8; margin-bottom: 3rem;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }

.btn-primary-hero {
  display: inline-flex; align-items: center; gap: .65rem;
  background: var(--grad-gold); color: var(--white);
  font-size: 1rem; font-weight: 700; letter-spacing: .04em;
  padding: 1.15rem 2.6rem; border-radius: 50px;
  transition: all .28s var(--ease);
  box-shadow: 0 8px 32px rgba(201,168,76,.45);
  text-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.btn-primary-hero:hover {
  filter: brightness(1.1);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(201,168,76,.5);
}
.btn-ghost-hero {
  display: inline-flex; align-items: center; gap: .65rem;
  background: rgba(255,255,255,.1); color: var(--white);
  font-size: 1rem; font-weight: 600;
  padding: 1.1rem 2.4rem; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(12px);
  transition: all .25s var(--ease);
}
.btn-ghost-hero:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.75);
  transform: translateY(-2px);
}

/* Hero proof bar */
.hero-proof {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0; justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border-radius: 60px;
  padding: .75rem 1.5rem;
}
.proof-item { text-align: center; padding: .35rem 1.5rem; }
.proof-item strong {
  display: block; font-family: var(--serif); font-size: 1.55rem; font-weight: 600;
  color: var(--gold-2); line-height: 1;
}
.proof-item span { font-size: .76rem; color: rgba(255,255,255,.65); letter-spacing: .04em; }
.proof-sep { width: 1px; height: 28px; background: rgba(255,255,255,.12); flex-shrink: 0; }

/* Marquee */
.marquee-wrap {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  overflow: hidden;
  padding: .9rem 0;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, rgba(12,31,45,1), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(-90deg, rgba(12,31,45,1), transparent); }

.marquee-track {
  display: flex; align-items: center; gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

.mq-item {
  font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.5); padding: 0 1rem; white-space: nowrap;
  transition: color .2s;
}
.mq-item i { color: #ff5a5f; }
.mq-item:hover { color: var(--gold-2); }
.mq-sep { color: var(--gold); opacity: .4; font-size: .6rem; padding: 0 .25rem; }


/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-4) 50%, var(--navy) 100%);
  border-top: 1px solid rgba(201,168,76,.15);
}
.stats-inner {
  max-width: 1100px; margin-inline: auto;
  display: flex; align-items: stretch;
  border-left: 1px solid rgba(255,255,255,.05);
}
.stat-block {
  flex: 1; text-align: center;
  padding: 2.8rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.05);
  transition: background .3s;
}
.stat-block:hover { background: rgba(255,255,255,.03); }
.stat-div { width: 0; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 600; color: var(--gold);
  line-height: 1; margin-bottom: .5rem;
  display: flex; align-items: baseline; justify-content: center; gap: .12rem;
}
.stat-unit { font-size: 1.3rem; color: var(--gold-2); font-family: var(--sans); font-weight: 500; }
.stat-block p { font-size: .82rem; color: rgba(255,255,255,.55); letter-spacing: .06em; font-weight: 500; text-transform: uppercase; }


/* ============================================================
   PAIN / HOOK
   ============================================================ */
.pain { padding: 8rem 0; background: var(--cream); }
.pain-head { text-align: center; margin-bottom: 4rem; }
.pain-head .display-title { max-width: 700px; margin-inline: auto; }

.pain-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  max-width: 1140px; margin-inline: auto; padding-inline: 2rem;
}
.pain-card {
  background: var(--white); border-radius: var(--r3);
  padding: 2.5rem 2rem;
  border: 1px solid var(--cream-3);
  transition: transform .3s var(--ease), box-shadow .3s;
  position: relative; overflow: hidden;
}
.pain-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
  border-radius: 0 0 2px 2px;
}
.pain-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(12,31,45,.1); }
.pain-card:hover::before { transform: scaleX(1); }

.pain-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--grad-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem; margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(201,168,76,.3);
}
.pain-num {
  font-family: var(--serif); font-size: 3.5rem; font-weight: 600;
  color: var(--navy); line-height: 1; margin-bottom: .4rem;
  letter-spacing: -.02em;
}
.pain-card h3 { font-size: .9rem; font-weight: 700; color: var(--gold-3); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .85rem; }
.pain-card p { font-size: .95rem; color: var(--text-2); line-height: 1.8; }


/* ============================================================
   WHY LUXE ONKEY — blocs alternés
   ============================================================ */
.why { background: var(--white); }

.why-block {
  max-width: 1140px; margin-inline: auto; padding: 6rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  border-bottom: 1px solid var(--cream-2);
}
.why-block:last-child { border-bottom: none; }
.why-block-rev { direction: rtl; }
.why-block-rev > * { direction: ltr; }

.why-visual { position: relative; border-radius: var(--r3); overflow: hidden; }
.why-visual img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform .8s var(--ease);
}
.why-block:hover .why-visual img { transform: scale(1.04); }
.why-badge {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  color: var(--navy); font-size: .8rem; font-weight: 700;
  padding: .55rem 1.1rem; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.why-badge-dark {
  background: rgba(12,31,45,.9); color: var(--white);
}
.badge-check { width: 18px; height: 18px; flex-shrink: 0; }

.why-copy .eyebrow-gold { margin-bottom: .6rem; }
.why-copy > p { font-size: 1.05rem; color: var(--text-2); line-height: 1.85; }
.why-cta {
  display: inline-flex; align-items: center;
  font-size: .88rem; font-weight: 700;
  color: var(--gold-3); letter-spacing: .03em;
  margin-top: 1.8rem;
  padding-bottom: 2px; border-bottom: 1.5px solid var(--gold);
  transition: color .2s, border-color .2s, gap .2s;
  gap: .3rem;
}
.why-cta:hover { color: var(--navy); border-color: var(--navy); gap: .6rem; }


/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 8rem 0; background: var(--cream); }

.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem;
  margin-bottom: 2.5rem;
}
.svc-card {
  background: var(--white); border-radius: var(--r2); overflow: hidden;
  border: 1px solid var(--cream-3);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  cursor: default;
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(12,31,45,.12);
  border-color: transparent;
}
.svc-img { position: relative; overflow: hidden; height: 200px; }
.svc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .65s var(--ease);
}
.svc-card:hover .svc-img img { transform: scale(1.08); }
.svc-rating-badge {
  position: absolute; top: .9rem; right: .9rem;
  background: rgba(12,31,45,.82); backdrop-filter: blur(8px);
  color: #f59e0b; font-size: .8rem; font-weight: 700;
  padding: .3rem .7rem; border-radius: 50px;
}
.svc-body { padding: 1.4rem 1.5rem 1.6rem; }
.svc-rating-row {
  display: flex; align-items: center; gap: .5rem; margin-bottom: .8rem;
}
.svc-stars { color: #f59e0b; font-size: .88rem; letter-spacing: .05em; }
.svc-score {
  font-size: .8rem; font-weight: 700; color: var(--navy);
  background: rgba(12,31,45,.06); padding: .18rem .55rem; border-radius: 50px;
}
.svc-platform { font-size: .72rem; color: var(--text-3); margin-left: auto; }
.svc-platform .fab { color: #ff5a5f; }
.svc-body h3 { font-size: 1.08rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; line-height: 1.3; }
.svc-body p { font-size: .9rem; color: var(--text-2); line-height: 1.7; }

/* Airbnb global banner */
.airbnb-global {
  background: var(--navy);
  border-radius: var(--r2); padding: 1.75rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.airbnb-global-left { display: flex; align-items: center; gap: 1.25rem; }
.airbnb-global-left .fab { font-size: 2.2rem; color: #ff5a5f; }
.airbnb-global-left strong { display: block; color: var(--white); font-size: .95rem; margin-bottom: .15rem; }
.airbnb-global-left span { font-size: .78rem; color: rgba(255,255,255,.38); }
.airbnb-global-score { display: flex; align-items: baseline; gap: .5rem; }
.airbnb-big {
  font-family: var(--serif); font-size: 3.5rem; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.airbnb-right { display: flex; flex-direction: column; gap: .2rem; }
.airbnb-stars { color: #f59e0b; font-size: 1rem; letter-spacing: .06em; }
.airbnb-sub { font-size: .75rem; color: rgba(255,255,255,.35); }


/* ============================================================
   CALCULATEUR DE REVENUS
   ============================================================ */
.calc-section {
  position: relative;
  background: var(--navy-2);
}
.calc-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.calc-left {
  padding: 6rem 4rem 6rem max(2rem, calc((100vw - 1140px) / 2 + 2rem));
  display: flex; flex-direction: column; justify-content: center;
}
.calc-left .display-title { margin-bottom: 1rem; }
.calc-left .display-title em { padding-right: 0.2em; }
.calc-sub { font-size: .97rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 2.5rem; }

.calc-form { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.calc-field { display: flex; flex-direction: column; gap: .35rem; }
.calc-field label { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.calc-field select {
  font-family: var(--sans); font-size: .95rem; color: var(--white);
  background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--r); padding: .85rem 1.1rem;
  outline: none; transition: border-color .2s, background .2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(201,168,76,0.6)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.1rem center;
  padding-right: 2.8rem;
  cursor: pointer;
}
.calc-field select option { background: var(--navy-2); color: var(--white); }
.calc-field select:focus { border-color: var(--gold); background: rgba(255,255,255,.1); }

/* Result box */
.calc-result { min-height: 130px; }
.calc-placeholder {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.04); border: 1.5px dashed rgba(255,255,255,.1);
  border-radius: var(--r2); padding: 1.5rem;
  color: rgba(255,255,255,.28); font-size: .88rem;
}
.calc-placeholder i { font-size: 1.5rem; opacity: .4; }

.calc-output {
  background: rgba(201,168,76,.1); border: 1.5px solid rgba(201,168,76,.25);
  border-radius: var(--r2); padding: 1.75rem;
  animation: fadeSlideIn .4s var(--ease-out);
}
@keyframes fadeSlideIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:none; } }

.calc-output-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: .6rem;
}
.calc-output-range {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 600;
  color: var(--white); line-height: 1; margin-bottom: .5rem;
}
.calc-output-range span { color: var(--gold); }
.calc-output-note { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 1.25rem; }
.calc-output-bar { display: flex; gap: .6rem; align-items: center; margin-bottom: 1.25rem; }
.calc-bar-wrap { flex: 1; }
.calc-bar-label { font-size: .68rem; color: rgba(255,255,255,.4); margin-bottom: .35rem; }
.calc-bar-track { height: 6px; background: rgba(255,255,255,.08); border-radius: 3px; overflow: hidden; }
.calc-bar-fill { height: 100%; border-radius: 3px; transition: width .7s var(--ease-out); }
.calc-bar-fill-old { background: rgba(255,255,255,.2); }
.calc-bar-fill-new { background: linear-gradient(90deg, var(--gold-3), var(--gold-2)); }
.calc-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: var(--white);
  font-size: .85rem; font-weight: 700; letter-spacing: .03em;
  padding: .75rem 1.5rem; border-radius: 50px;
  transition: all .25s var(--ease);
}
.calc-cta:hover { background: var(--gold-3); transform: translateY(-2px); }

.calc-right {
  position: relative; overflow: hidden;
}
.calc-right img { width: 100%; height: 100%; object-fit: cover; }
.calc-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy-2) 0%, rgba(21,43,62,.4) 60%, transparent 100%);
}
.calc-right-badge {
  position: absolute; bottom: 2rem; right: 2rem;
  display: flex; align-items: center; gap: .9rem;
  background: rgba(255,255,255,.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r2); padding: 1rem 1.4rem;
  color: var(--white);
}
.crb-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0;
}
.calc-right-badge strong { display: block; font-size: .88rem; font-weight: 700; }
.calc-right-badge span { font-size: .75rem; color: rgba(255,255,255,.55); }


/* ============================================================
   PROCESSUS
   ============================================================ */
.process { padding: 8rem 0; background: var(--cream); }
.process-grid {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0;
  align-items: start; margin-top: .5rem;
}
.process-step { text-align: center; padding: 0 1rem; }
.ps-number {
  font-family: var(--serif); font-size: .75rem; font-weight: 600;
  letter-spacing: .2em; color: var(--gold); margin-bottom: 1.4rem;
  display: block;
}
.ps-icon-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy); color: var(--white); font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.75rem;
  box-shadow: 0 0 0 8px var(--cream), 0 0 0 9px var(--cream-3);
  transition: background .3s, transform .3s;
}
.process-step:hover .ps-icon-wrap {
  background: var(--gold); transform: scale(1.08);
}
.process-step h3 {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 600;
  color: var(--navy); margin-bottom: .7rem;
}
.process-step p { font-size: .95rem; color: var(--text-2); line-height: 1.8; }

.process-connector {
  width: 80px; display: flex; align-items: center; margin-top: 3.4rem;
}
.process-connector::after {
  content: ''; display: block; width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--cream-3), var(--gold), var(--cream-3));
}


/* ============================================================
   OFFRE
   ============================================================ */
.offre { padding: 8rem 0; background: var(--white); }
.offre-wrap {
  display: grid; grid-template-columns: 320px 1fr; gap: 4.5rem;
  align-items: start;
}
.offre-card {
  background: var(--navy); border-radius: var(--r3);
  padding: 2.75rem 2.25rem; position: sticky; top: 88px;
}
.offre-tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.2);
  display: inline-block; padding: .3rem .85rem; border-radius: 50px; margin-bottom: 1.8rem;
}
.offre-price-row { display: flex; align-items: flex-start; gap: .3rem; margin-bottom: .8rem; }
.offre-big {
  font-family: var(--serif); font-size: 7rem; font-weight: 600;
  color: var(--white); line-height: .88; letter-spacing: -.03em;
}
.offre-price-right { display: flex; flex-direction: column; padding-top: .8rem; }
.offre-pct { font-family: var(--serif); font-size: 2.5rem; font-weight: 500; color: var(--white); }
.offre-ttc {
  font-size: .68rem; font-weight: 700; letter-spacing: .15em;
  color: var(--gold); text-transform: uppercase; margin-top: .15rem;
}
.offre-desc { font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.6; margin-bottom: 1.5rem; }
.offre-sep { height: 1px; background: rgba(255,255,255,.08); margin-bottom: 1.5rem; }
.offre-promise { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.offre-promise strong { display: block; color: var(--white); font-size: .92rem; margin-bottom: .35rem; }
.btn-gold-full {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--grad-gold); color: var(--white);
  font-size: .88rem; font-weight: 700; letter-spacing: .04em;
  padding: .9rem 1.5rem; border-radius: 50px;
  margin-top: 1.8rem; transition: all .28s var(--ease);
  cursor: pointer; border: none; font-family: var(--sans); width: 100%;
  text-shadow: 0 1px 2px rgba(0,0,0,.2);
  box-shadow: 0 4px 18px rgba(201,168,76,.25);
}
.btn-gold-full:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,168,76,.45); }

.offre-features h3 {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 600;
  color: var(--navy); margin-bottom: .3rem;
}
.offre-sub { font-size: .88rem; color: var(--text-3); margin-bottom: 2rem; }
.offre-list { display: flex; flex-direction: column; gap: 1.2rem; }
.offre-item { display: flex; align-items: flex-start; gap: 1rem; }
.offre-item-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--cream); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-3); font-size: .85rem; margin-top: .05rem;
  transition: background .2s, color .2s;
}
.offre-item:hover .offre-item-icon { background: var(--navy); color: var(--gold); }
.offre-item strong { display: block; font-size: .95rem; color: var(--navy); margin-bottom: .2rem; }
.offre-item span { font-size: .87rem; color: var(--text-3); line-height: 1.55; }


/* ============================================================
   TÉMOIGNAGES
   ============================================================ */

/* ══════════════════════════════════════════════════════════════
   TEAM SECTION
   ============================================================ */
.team-section {
  background: var(--navy);
  padding: var(--sec-pad) 0;
}
.team-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}
.team-intro {
  color: rgba(255,255,255,.55);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-top: 1.2rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--r2);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  border-color: rgba(201,168,76,.4);
}
.team-photo-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.team-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .5s var(--ease);
}
.team-card:hover .team-photo { transform: scale(1.04); }
.team-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,29,58,.85) 0%, transparent 55%);
}
.team-info {
  padding: 1.6rem 1.75rem 1.75rem;
}
.team-role {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.team-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .5rem;
  line-height: 1.2;
}
.team-job {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: .45rem;
}
.team-job i { color: var(--gold-3); }
.team-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  border-left: 2px solid var(--gold-3);
  padding-left: 1rem;
  margin: 0;
}
@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

.temoignages { background: var(--cream); }

/* Featured quote */
.temo-featured {
  background: var(--navy);
  padding: 6rem 2rem;
}
.temo-featured-inner {
  max-width: 860px; margin-inline: auto; text-align: center; position: relative;
}
.temo-quote-mark {
  font-family: var(--serif); font-size: 8rem; font-weight: 300;
  color: var(--gold); opacity: .25;
  line-height: .6; margin-bottom: .5rem;
  user-select: none;
}
.temo-featured-inner blockquote {
  font-family: var(--serif); font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.92);
  line-height: 1.65; margin-bottom: 2.5rem;
}
.temo-featured-inner blockquote strong { color: var(--gold-2); font-style: normal; font-weight: 600; }
.temo-author {
  display: flex; align-items: center; justify-content: center; gap: 1.1rem;
}
.temo-avatar {
  width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); color: var(--white);
  font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(201,168,76,.4);
}
.temo-author strong { display: block; color: var(--white); font-size: .92rem; }
.temo-author span { font-size: .78rem; color: rgba(255,255,255,.4); }
.temo-stars { margin-left: 1.5rem; color: #f59e0b; font-size: 1rem; letter-spacing: .06em; }

/* Grid cards */
.temo-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem;
  padding: 5rem 2rem 3rem; max-width: 1140px; margin-inline: auto;
}
.temo-card {
  background: var(--white); border-radius: var(--r2); padding: 1.8rem;
  border: 1.5px solid var(--cream-3);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.temo-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(12,31,45,.08); }
.temo-card-featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }

.temo-card-head { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.temo-av {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy); color: var(--white);
  font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.temo-av-gold { background: linear-gradient(135deg, var(--gold-3), var(--gold)); }
.temo-meta { flex: 1; }
.temo-meta strong { display: block; font-size: .88rem; color: var(--navy); }
.temo-meta span { font-size: .76rem; color: var(--text-3); }
.temo-logo { color: var(--cream-3); font-size: 1.4rem; }
.temo-card-stars { color: #f59e0b; font-size: .88rem; margin-bottom: .75rem; letter-spacing: .06em; }
.temo-card p { font-size: .93rem; color: var(--text-2); line-height: 1.8; font-style: italic; margin-bottom: 1rem; }
.temo-tag {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .06em;
  color: var(--gold-3); background: rgba(201,168,76,.1);
  padding: .25rem .75rem; border-radius: 50px;
}

/* Platforms */
.platforms-row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 1.25rem;
  padding: 0 2rem 4rem;
  font-size: .8rem; color: var(--text-3);
}
.platforms-logos { display: flex; gap: .75rem; flex-wrap: wrap; }
.platform-logo {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem 1.1rem; border-radius: 50px;
  font-size: .82rem; font-weight: 700; border: 1.5px solid;
}
.pl-airbnb { color: #e8474c; border-color: rgba(232,71,76,.2); background: rgba(232,71,76,.05); }
.pl-booking { color: #003d8f; border-color: rgba(0,61,143,.2); background: rgba(0,61,143,.04); }
.pl-vrbo { color: #1a6de0; border-color: rgba(26,109,224,.2); background: rgba(26,109,224,.04); }


/* ============================================================
   AUDIT FORM
   ============================================================ */
.audit {
  position: relative; overflow: hidden;
  background: var(--navy-2); padding: 7rem 2rem;
}
.audit-bg-img { position: absolute; right: 0; top: 0; bottom: 0; width: 45%; pointer-events: none; }
.audit-bg-img img { width: 100%; height: 100%; object-fit: cover; }
.audit-bg-veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy-2) 0%, rgba(21,43,62,.5) 70%, transparent 100%);
}

.audit-inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}

.audit-copy .display-title { margin: .5rem 0 1rem; }
.audit-copy > p { font-size: 1.05rem; color: rgba(255,255,255,.72); line-height: 1.8; margin-bottom: 2rem; }

.audit-proof { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2.5rem; }
.ap-item {
  display: flex; align-items: center; gap: .75rem;
  font-size: .93rem; color: rgba(255,255,255,.72);
}
.ap-item i { color: var(--gold); font-size: .78rem; }

.audit-stats { display: flex; gap: 2.5rem; }
.as-item { text-align: center; }
.as-item strong {
  display: block; font-family: var(--serif); font-size: 1.6rem; font-weight: 600;
  color: var(--gold); line-height: 1; margin-bottom: .25rem;
}
.as-item span { font-size: .72rem; color: rgba(255,255,255,.35); letter-spacing: .06em; text-transform: uppercase; }

/* Form box */
.audit-form-box {
  background: var(--white); border-radius: var(--r3);
  padding: 2.5rem; box-shadow: 0 32px 80px rgba(0,0,0,.2);
  position: relative; z-index: 2;
}

.form-step { display: flex; flex-direction: column; gap: 1rem; }
.form-step.hidden { display: none; }

/* Audit progress bar */
.audit-progress { width: 100%; height: 4px; background: var(--cream-3); border-radius: 2px; margin-bottom: 1.5rem; }
.audit-progress-bar { height: 100%; background: var(--grad-gold); border-radius: 2px; width: 0; transition: width .4s ease; }

/* Audit choice buttons */
.audit-choices { display: flex; flex-direction: column; gap: .6rem; }
.audit-choice {
  display: flex; align-items: center; gap: .85rem;
  width: 100%; text-align: left;
  padding: .85rem 1.1rem;
  background: var(--cream); border: 1.5px solid var(--cream-3);
  border-radius: var(--r); cursor: pointer;
  font-family: var(--sans); font-size: .95rem; color: var(--text);
  transition: border-color .18s, background .18s, transform .15s;
}
.audit-choice:hover { border-color: var(--gold); background: var(--white); transform: translateX(3px); }
.audit-choice.selected { border-color: var(--navy); background: var(--navy); color: #fff; }
.audit-choice .ck {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 6px; flex-shrink: 0;
  background: var(--cream-3); font-size: .72rem; font-weight: 700;
  color: var(--navy); transition: background .18s, color .18s;
}
.audit-choice.selected .ck { background: var(--gold); color: var(--navy); }
.fstep-head { margin-bottom: .25rem; }
.fstep-num { font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-3); }
.fstep-head h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--navy); margin-top: .2rem; }

.fg { display: flex; flex-direction: column; gap: .32rem; }
.fg label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }
.fg input, .fg select, .fg textarea {
  font-family: var(--sans); font-size: .92rem; color: var(--text);
  background: var(--cream); border: 1.5px solid var(--cream-3);
  border-radius: var(--r); padding: .78rem 1rem; outline: none;
  transition: border-color .2s, background .2s; width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--navy); background: var(--white);
  box-shadow: 0 0 0 3px rgba(12,31,45,.07);
}
.fg select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238a8278' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
  cursor: pointer;
}
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.fstep-nav { display: flex; gap: .75rem; justify-content: space-between; margin-top: .25rem; }
.btn-outline {
  font-family: var(--sans); font-size: .88rem; font-weight: 600; color: var(--text-2);
  background: transparent; border: 1.5px solid var(--cream-3); border-radius: 50px;
  padding: .82rem 1.4rem; cursor: pointer; transition: all .2s;
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }
.btn-gold {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-size: .88rem; font-weight: 700; color: var(--white);
  background: var(--gold); border: none; border-radius: 50px;
  padding: .82rem 1.6rem; cursor: pointer; transition: all .25s var(--ease);
  flex: 1; justify-content: center;
}
.btn-gold:hover { background: var(--gold-3); transform: translateY(-2px); }

/* Success state */
.form-success {
  display: none; text-align: center; padding: 2.5rem 1rem;
}
.form-success.visible { display: block; }
.success-icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #22c55e, #15803d);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--white);
}
.form-success h3 { font-family: var(--serif); font-size: 1.7rem; color: var(--navy); margin-bottom: .75rem; }
.form-success p { font-size: .9rem; color: var(--text-2); line-height: 1.7; margin-bottom: 1.5rem; }
.btn-wa-full {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: #25d366; color: var(--white); font-size: .9rem; font-weight: 700;
  padding: .9rem 1.5rem; border-radius: 50px; transition: all .25s var(--ease);
}
.btn-wa-full:hover { background: #1cb957; transform: translateY(-2px); }


/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 8rem 0; background: var(--cream); }
.faq-inner {
  max-width: 1100px; margin-inline: auto; padding-inline: 2rem;
  display: grid; grid-template-columns: 1fr 1.7fr; gap: 5rem; align-items: start;
}
.faq-left { position: sticky; top: 88px; }
.faq-left .display-title { margin: .5rem 0 1rem; }
.faq-left > p { font-size: 1rem; color: var(--text-2); line-height: 1.75; margin-bottom: 1.75rem; }
.faq-wa-btn {
  display: inline-flex; align-items: center; gap: .55rem;
  background: #25d366; color: var(--white); font-size: .88rem; font-weight: 700;
  padding: .78rem 1.4rem; border-radius: 50px; transition: all .25s var(--ease);
}
.faq-wa-btn:hover { background: #1cb957; transform: translateY(-2px); }

.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  background: var(--white); border: 1.5px solid var(--cream-3);
  border-radius: var(--r2); overflow: hidden; transition: border-color .2s;
}
.faq-item:hover { border-color: var(--navy); }
.faq-item.open { border-color: var(--navy); box-shadow: 0 4px 20px rgba(12,31,45,.06); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.35rem 1.5rem; width: 100%; text-align: left;
  font-size: .98rem; font-weight: 600; color: var(--navy);
  background: none; cursor: pointer; transition: color .2s;
}
.faq-q i { font-size: .8rem; color: var(--navy); flex-shrink: 0; transition: transform .3s var(--ease); }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease-out), padding .3s;
  font-size: .95rem; color: var(--text-2); line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 1.5rem 1.25rem; }


/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  position: relative; padding: 9rem 2rem;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.cta-final-bg { position: absolute; inset: 0; z-index: 0; }
.cta-final-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-final-veil {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(12,31,45,.93), rgba(21,43,62,.87));
}
.cta-final-body { position: relative; z-index: 1; max-width: 680px; }
.cta-final-body .display-title { margin: .5rem 0 1rem; }
.cta-final-body > p { font-size: 1.12rem; color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 2.75rem; }
.cta-final-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-gold-lg {
  display: inline-flex; align-items: center; gap: .65rem;
  background: var(--gold); color: var(--white);
  font-size: .92rem; font-weight: 700; letter-spacing: .03em;
  padding: 1.05rem 2.4rem; border-radius: 50px;
  transition: all .25s var(--ease);
}
.btn-gold-lg:hover { background: var(--gold-3); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(201,168,76,.5); }
.btn-wa-outline {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.1); color: var(--white);
  font-size: .92rem; font-weight: 600;
  padding: 1.05rem 2rem; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.3); backdrop-filter: blur(10px);
  transition: all .25s var(--ease);
}
.btn-wa-outline:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.6); }


/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0a1824; }
.footer-main {
  max-width: 1280px; margin-inline: auto;
  padding: 5rem 2rem 3rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 3.5rem;
}

.footer-logo { margin-bottom: 1.25rem; }
.footer-logo-img {
  height: 72px; width: auto;
  border-radius: 12px;
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.8;
  margin-bottom: 1.5rem; max-width: 280px;
}
.footer-socials { display: flex; gap: .6rem; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: var(--r);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.35); font-size: .85rem;
  transition: all .2s;
}
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.footer-col h4 {
  font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
}
.footer-col a {
  display: flex; align-items: center; gap: .5rem;
  font-size: .86rem; color: rgba(255,255,255,.45);
  padding: .35rem 0; transition: color .2s;
}
.footer-col a:hover { color: var(--white); }
.footer-col a i, .footer-col .fas, .footer-col .fab { color: var(--gold); font-size: .78rem; flex-shrink: 0; }
.footer-loc {
  font-size: .82rem; color: rgba(255,255,255,.28); line-height: 1.5;
  display: flex; align-items: flex-start; gap: .5rem; margin: .3rem 0 .75rem;
}
.footer-wa-wrap { margin-top: .5rem; }
.footer-wa-wrap .footer-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #25d366; color: var(--white);
  font-size: .82rem; font-weight: 700;
  padding: .55rem 1rem; border-radius: 50px;
  transition: background .2s;
  white-space: nowrap;
}
.footer-wa-wrap .footer-wa:hover { background: #1cb957; color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 1.5rem 2rem;
  max-width: 1280px; margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem;
}
.footer-bottom span { font-size: .78rem; color: rgba(255,255,255,.2); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.2); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.5); }


/* ============================================================
   FLOATING
   ============================================================ */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 800;
  display: flex; align-items: center; gap: .6rem;
  background: #25d366; color: var(--white);
  padding: .82rem 1.4rem; border-radius: 50px;
  font-size: .86rem; font-weight: 700;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: all .25s var(--ease);
}
.wa-float i { font-size: 1.35rem; }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,.55); }

.back-top {
  position: fixed; bottom: 7rem; right: 2rem; z-index: 800;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--cream-3);
  color: var(--navy); font-size: .85rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transition: all .25s var(--ease);
}
.back-top.hidden { opacity: 0; pointer-events: none; transform: translateY(8px); }
.back-top:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .offre-wrap { grid-template-columns: 1fr; }
  .offre-card { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .why-block { gap: 3.5rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-btn { display: none; }
  .burger { display: flex; }

  .hero-h1 { font-size: clamp(2.6rem, 10vw, 4rem); }
  .hero-proof { border-radius: var(--r2); padding: .75rem 1rem; }
  .proof-sep { display: none; }
  .proof-item { padding: .35rem .75rem; }
  .proof-item strong { font-size: 1.1rem; }

  .stats-inner { flex-wrap: wrap; }
  .stat-block { min-width: calc(50% - 0.5px); }

  .pain-grid { grid-template-columns: 1fr; max-width: 480px; }

  .why-block { grid-template-columns: 1fr; gap: 2.5rem; direction: ltr; padding: 4rem 2rem; }
  .why-block-rev { direction: ltr; }

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

  .calc-inner { grid-template-columns: 1fr; }
  .calc-left { padding: 4rem 2rem; }
  .calc-right { display: none; }

  .process-grid { grid-template-columns: 1fr; }
  .process-connector { display: none; }

  .temo-featured { padding: 4rem 2rem; }
  .temo-grid { grid-template-columns: 1fr; padding: 3rem 2rem 2rem; }

  .audit-inner { grid-template-columns: 1fr; }
  .audit-bg-img { display: none; }

  .faq-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-left { position: static; }

  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .wa-float span { display: none; }
  .wa-float { padding: .9rem; border-radius: 50%; }
  .wa-float i { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .svc-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary-hero, .btn-ghost-hero { justify-content: center; }
  .fg-row { grid-template-columns: 1fr; }
  .cta-final-actions { flex-direction: column; align-items: center; }
  .audit-stats { gap: 1.5rem; }
}
