/* ============================================================
   Piano Dubai — DA v3 "immersive"
   Marque : indigo nuit #070a32 + blanc, accent champagne.
   Sections alternées clair/teinté/sombre, halos lumineux,
   animations en cascade, marquees, compteurs.
   ============================================================ */
:root {
  --brand: #070a32;
  --brand-soft: #10164a;
  --brand-deep: #04051d;
  --champagne: #b99a55;
  --champagne-light: #ddc38b;
  --ink: #1b1e33;
  --muted: #6a6d80;
  --bg: #ffffff;
  --tint: #f1f2f9;
  --line: #e6e7f0;
  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(7,10,50,.06), 0 2px 8px rgba(7,10,50,.05);
  --shadow-md: 0 8px 24px rgba(7,10,50,.12);
  --shadow-lg: 0 16px 48px rgba(7,10,50,.18);
  --font-head: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section--tint { background: var(--tint); }
.section--dark {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(185,154,85,.14), transparent 60%),
    radial-gradient(800px 500px at 0% 110%, rgba(63,74,175,.25), transparent 60%),
    linear-gradient(200deg, #0d1246 0%, var(--brand) 55%, var(--brand-deep) 100%);
  color: rgba(255,255,255,.82);
}
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .section-intro { color: rgba(255,255,255,.68); }

/* Halos décoratifs animés */
.orb {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  filter: blur(70px); opacity: .55;
  animation: orbFloat 14s ease-in-out infinite alternate;
  will-change: transform;
}
.orb--gold { background: radial-gradient(circle, rgba(185,154,85,.5), transparent 65%); }
.orb--blue { background: radial-gradient(circle, rgba(72,84,200,.5), transparent 65%); }
@keyframes orbFloat {
  from { transform: translate3d(0, -20px, 0) scale(1); }
  to   { transform: translate3d(0, 30px, 0) scale(1.12); }
}

/* Grille pointillée décorative */
.dots::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(7,10,50,.10) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(600px 400px at 50% 0%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(600px 400px at 50% 0%, #000, transparent 75%);
}
.section--dark.dots::before { background-image: radial-gradient(rgba(255,255,255,.13) 1px, transparent 1px); }

.kicker {
  font-family: var(--font-head);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--champagne); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.kicker::before { content: ""; width: 34px; height: 1.5px; background: var(--champagne); flex: 0 0 auto; }
.center .kicker { justify-content: center; }
.center .kicker::after { content: ""; width: 34px; height: 1.5px; background: var(--champagne); flex: 0 0 auto; }

h1, h2, h3 { font-family: var(--font-head); color: var(--brand); line-height: 1.22; }
h2 { font-size: clamp(27px, 3.4vw, 40px); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.015em; }
h2 em { font-style: normal; background: linear-gradient(100deg, var(--champagne), var(--champagne-light)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section-intro { max-width: 720px; color: var(--muted); margin-bottom: 56px; font-size: 16.5px; }
.center { text-align: center; }
.center .section-intro { margin-left: auto; margin-right: auto; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: 13px 30px; border-radius: 999px;
  border: 1.5px solid var(--brand);
  background: var(--brand); color: #fff;
  cursor: pointer; position: relative; overflow: hidden; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
}
.btn::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-20deg); transition: left .5s var(--ease);
}
.btn:hover::after { left: 130%; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--brand-soft); border-color: var(--brand-soft); }
.btn--gold { background: linear-gradient(100deg, var(--champagne), #cbb06a); border-color: transparent; color: var(--brand); }
.btn--gold:hover { background: linear-gradient(100deg, #c4a562, var(--champagne-light)); box-shadow: 0 8px 26px rgba(185,154,85,.4); }
.btn--outline { background: transparent; color: var(--brand); }
.btn--outline:hover { background: var(--brand); color: #fff; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 20px; }
.logo img { height: 40px; width: auto; }
.logo--footer img { height: 48px; }

.nav-wrap { display: flex; align-items: center; gap: 16px; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav > li { position: relative; }
.nav > li > a {
  display: block; padding: 28px 15px; position: relative; white-space: nowrap;
  color: var(--ink); font-family: var(--font-head); font-size: 14px; font-weight: 500;
  transition: color .2s;
}
.nav > li > a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 22px; height: 2px;
  background: var(--champagne); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav > li > a:hover { color: var(--brand); }
.nav > li > a:hover::after { transform: scaleX(1); }
.nav .caret { font-size: 9px; margin-left: 4px; opacity: .55; }
.dropdown {
  position: absolute; top: calc(100% - 12px); left: 50%; min-width: 230px;
  background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); padding: 8px;
  opacity: 0; visibility: hidden; transform: translate(-50%, 10px);
  transition: all .25s var(--ease);
}
.nav > li:hover .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown a { display: block; padding: 11px 16px; font-size: 14px; color: var(--ink); border-radius: 9px; transition: background .15s, padding-left .2s; }
.dropdown a:hover { background: var(--tint); color: var(--brand); padding-left: 20px; }

.header__actions { display: flex; align-items: center; gap: 14px; }
.lang { display: flex; background: var(--tint); border-radius: 999px; padding: 3px; }
.lang a { font-size: 12px; font-weight: 700; color: var(--muted); border-radius: 999px; padding: 4px 11px; transition: all .2s; }
.lang a.active { color: #fff; background: var(--brand); }
.lang a:not(.active):hover { color: var(--brand); }
.header .btn { padding: 10px 22px; font-size: 14px; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--brand); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ---------- Hero (immersif sombre) ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 100px 0 0;
  background: var(--brand-deep);
  color: #fff;
}
.hero__photo {
  position: absolute; inset: 0; z-index: 0;
  background: url("../img/hero-dubai.jpg") center 35% / cover no-repeat;
  animation: heroZoom 16s var(--ease) both;
  will-change: transform;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(7,10,50,.55), transparent 65%),
    linear-gradient(180deg, rgba(7,10,50,.78) 0%, rgba(7,10,50,.55) 45%, rgba(4,5,29,.86) 100%);
}
.hero__inner { text-align: center; position: relative; z-index: 1; padding-bottom: 90px; }
.hero .kicker { justify-content: center; color: var(--champagne-light); animation: heroFade .8s var(--ease) both; }
.hero .kicker::before, .hero .kicker::after { content: ""; width: 34px; height: 1.5px; background: var(--champagne-light); flex: 0 0 auto; }
.hero h1 {
  color: #fff;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800; letter-spacing: -0.02em;
  max-width: 880px; margin: 0 auto 20px;
  animation: heroFade .8s var(--ease) .08s both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--champagne-light), #f0dcae);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero__sub { color: rgba(255,255,255,.72); font-size: 18px; max-width: 620px; margin: 0 auto 46px; animation: heroFade .8s var(--ease) .16s both; }
@keyframes heroFade { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* Barre de recherche pilule */
.search-bar {
  display: flex; align-items: stretch;
  background: #fff; border-radius: 999px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  max-width: 920px; margin: 0 auto; padding: 8px;
  text-align: left; position: relative; z-index: 2;
  transition: box-shadow .3s, transform .3s var(--ease);
  animation: heroFade .8s var(--ease) .26s both;
}
.search-bar:focus-within { transform: translateY(-2px); box-shadow: 0 26px 70px rgba(0,0,0,.45); }
.search-seg { flex: 1; padding: 8px 22px; border-right: 1px solid var(--line); min-width: 0; }
.search-seg:last-of-type { border-right: 0; }
.search-seg label {
  display: block; font-family: var(--font-head); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: var(--brand); margin-bottom: 2px;
}
.search-seg input, .search-seg select {
  width: 100%; border: 0; background: none; font-family: var(--font-body);
  font-size: 14.5px; color: var(--ink); outline: none; cursor: pointer; height: 24px;
}
.search-seg input::placeholder { color: var(--muted); }
.search-bar__submit {
  flex: 0 0 auto; align-self: center;
  width: 52px; height: 52px; border-radius: 50%; border: 0;
  background: linear-gradient(120deg, var(--brand-soft), var(--brand)); color: #fff;
  font-size: 19px; cursor: pointer; display: grid; place-items: center;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.search-bar__submit:hover { transform: scale(1.08) rotate(6deg); box-shadow: 0 6px 18px rgba(7,10,50,.5); }

/* Stats intégrées au hero */
.hero__stats {
  position: relative; z-index: 1;
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: clamp(28px, 7vw, 100px);
  padding: 34px 24px 42px;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(4,5,29,.35); backdrop-filter: blur(6px);
}
.stat { text-align: center; }
.stat strong { display: block; font-family: var(--font-head); font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: #fff; }
.stat > span { font-size: 12.5px; color: rgba(255,255,255,.62); letter-spacing: .08em; text-transform: uppercase; }
.stat strong span { font-size: inherit; color: inherit; letter-spacing: 0; text-transform: none; }
.stat strong em { font-style: normal; color: var(--champagne-light); }

/* ---------- Services 360 (sombre, verre) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px 24px; backdrop-filter: blur(6px);
  transition: transform .35s var(--ease), background .35s, border-color .35s, box-shadow .35s;
}
.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.09);
  border-color: rgba(221,195,139,.45);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.service-card__num {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(221,195,139,.14); color: var(--champagne-light);
  display: grid; place-items: center;
  font-family: var(--font-head); font-size: 16px; font-weight: 800;
  margin-bottom: 18px;
  transition: background .3s, color .3s, transform .3s var(--ease);
}
.service-card:hover .service-card__num { background: var(--champagne); color: var(--brand); transform: rotate(-6deg) scale(1.08); }
.service-card h3 { font-size: 16.5px; margin-bottom: 8px; color: #fff; }
.service-card p { font-size: 14px; color: rgba(255,255,255,.62); line-height: 1.6; }

/* ---------- Avantages (teinté + carte dégradée) ---------- */
.benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.benefit {
  position: relative;
  background: #fff; border-radius: var(--radius); padding: 36px 32px;
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.benefit::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--champagne), var(--champagne-light), var(--champagne));
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { to { background-position: -200% 0; } }
.benefit::after {
  content: ""; position: absolute; right: -60px; bottom: -60px; width: 190px; height: 190px;
  border-radius: 50%; background: radial-gradient(circle, rgba(185,154,85,.12), transparent 70%);
  transition: transform .4s var(--ease);
}
.benefit:hover::after { transform: scale(1.5); }
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.benefit__icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(185,154,85,.18), rgba(185,154,85,.06));
  display: grid; place-items: center; font-size: 20px; margin-bottom: 18px;
}
.benefit h3 { font-size: 15px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.benefit p { color: var(--muted); font-size: 14.5px; position: relative; }

/* ---------- Propriétés (teinté, effet shine) ---------- */
.props { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 50px; }
.prop-card {
  display: flex; flex-direction: column; cursor: pointer;
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.prop-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.prop-card__media {
  height: 230px; position: relative;
  display: grid; place-items: center; color: rgba(255,255,255,.75);
  overflow: hidden;
}
.prop-card__media::before {
  content: ""; position: absolute; top: 0; left: -90%; width: 55%; height: 100%; z-index: 1;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-18deg); transition: left .65s var(--ease);
}
.prop-card:hover .prop-card__media::before { left: 140%; }
.prop-card__media--1 { background: radial-gradient(400px 250px at 80% 10%, rgba(185,154,85,.35), transparent 60%), linear-gradient(200deg, #2b3480, #0b0f3f 72%); }
.prop-card__media--2 { background: radial-gradient(400px 250px at 20% 0%, rgba(221,195,139,.3), transparent 60%), linear-gradient(160deg, #8a7648, #171233 75%); }
.prop-card__media--3 { background: radial-gradient(400px 250px at 70% 100%, rgba(72,84,200,.4), transparent 60%), linear-gradient(190deg, #3d4a8f, #05071f 75%); }
/* Carte avec photos réelles : diaporama en fondu enchaîné */
.prop-card__media--photos { background: var(--brand-deep); }
.prop-card__media--photos img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 70% 55%;
  opacity: 0; transition: opacity .6s var(--ease);
}
.prop-card__media--photos img.active { opacity: 1; }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 34px; height: 34px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(4,5,29,.5); color: #fff; font-size: 20px; line-height: 1;
  display: grid; place-items: center; padding-bottom: 3px;
  backdrop-filter: blur(3px);
  opacity: 0; transition: opacity .25s, background .2s, transform .2s var(--ease);
}
.prop-card:hover .slider-btn, .slider-btn:focus-visible { opacity: 1; }
.slider-btn:hover { background: var(--champagne); color: var(--brand); }
.slider-btn--prev { left: 10px; }
.slider-btn--next { right: 10px; }
.slider-btn--prev:hover { transform: translateY(-50%) translateX(-2px); }
.slider-btn--next:hover { transform: translateY(-50%) translateX(2px); }
.slider-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; gap: 6px;
}
.slider-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.45); transition: background .25s, transform .25s;
}
.slider-dots span.active { background: var(--champagne-light); transform: scale(1.25); }
@media (hover: none) { .slider-btn { opacity: 1; } }
.prop-card__disclaimer {
  position: absolute; bottom: 10px; right: 12px; z-index: 2;
  font-size: 10.5px; color: rgba(255,255,255,.75);
  background: rgba(4,5,29,.45); padding: 3px 9px; border-radius: 999px;
  backdrop-filter: blur(3px);
}
.prop-card__media svg { width: 78px; height: 78px; opacity: .5; transition: transform .5s var(--ease); }
.prop-card:hover .prop-card__media svg { transform: scale(1.12) translateY(-4px); }
.prop-card__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,.94); color: var(--brand);
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.prop-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.prop-card__loc { font-size: 13px; color: var(--muted); margin-bottom: 3px; }
.prop-card h3 { font-size: 17.5px; margin-bottom: 4px; font-weight: 700; }
.prop-card__specs { font-size: 13.5px; color: var(--muted); margin-bottom: 10px; }
.prop-card__price { font-family: var(--font-head); font-size: 15px; color: var(--brand); margin-bottom: 14px; }
.prop-card__price small { color: var(--muted); font-weight: 400; margin-right: 4px; font-family: var(--font-body); }
.prop-card__price strong { font-weight: 800; font-size: 18px; }
.prop-card__link {
  margin-top: auto; font-family: var(--font-head); font-size: 13.5px; font-weight: 700;
  color: var(--champagne); display: inline-flex; align-items: center; gap: 7px;
  transition: gap .25s var(--ease), color .2s;
}
.prop-card__link::after { content: "→"; }
.prop-card:hover .prop-card__link { gap: 12px; color: var(--brand); }

/* ---------- Marché (sombre, onglets) ---------- */
.market { display: grid; grid-template-columns: 300px 1fr; gap: 36px; align-items: start; }
.market__tabs { display: flex; flex-direction: column; gap: 8px; }
.market__tab {
  text-align: left; font-family: var(--font-head); font-size: 13.5px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  background: transparent; color: rgba(255,255,255,.55);
  border: 1px solid transparent; border-radius: 12px; padding: 17px 18px; cursor: pointer;
  transition: all .25s var(--ease);
}
.market__tab:hover { background: rgba(255,255,255,.06); color: #fff; }
.market__tab.active {
  background: rgba(255,255,255,.09); color: #fff;
  border-color: rgba(221,195,139,.4);
  box-shadow: inset 3px 0 0 var(--champagne);
}
.market__panel {
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 44px; backdrop-filter: blur(6px);
  display: none; min-height: 210px;
}
.market__panel.active { display: block; animation: fadeUp .45s var(--ease); }
.market__panel h3 { font-size: 22px; margin-bottom: 12px; color: #fff; }
.market__panel p { color: rgba(255,255,255,.68); font-size: 15.5px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- Listings (cartes dégradées) ---------- */
.listing-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.listing-link {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 30px;
  background: linear-gradient(200deg, var(--brand-soft), var(--brand) 80%);
  border-radius: var(--radius);
  padding: 26px 24px; font-family: var(--font-head); font-weight: 600; font-size: 15px;
  color: #fff;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.listing-link::before {
  content: ""; position: absolute; right: -50px; top: -50px; width: 160px; height: 160px;
  border-radius: 50%; background: radial-gradient(circle, rgba(185,154,85,.35), transparent 70%);
  transition: transform .4s var(--ease);
}
.listing-link:hover::before { transform: scale(1.7); }
.listing-link:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.listing-link .arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.12); display: grid; place-items: center;
  font-size: 15px; color: var(--champagne-light);
  transition: background .25s, color .25s, transform .3s var(--ease);
}
.listing-link:hover .arrow { background: var(--champagne); color: var(--brand); transform: translateX(6px); }

/* ---------- Témoignages (teinté chaud + citation) ---------- */
.section--warm {
  background:
    radial-gradient(900px 400px at 100% 0%, rgba(185,154,85,.10), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(72,84,200,.07), transparent 60%),
    var(--tint);
}
.testis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi {
  position: relative;
  background: #fff; border-radius: var(--radius); padding: 34px 28px 28px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testi:hover { transform: translateY(-5px) rotate(-.3deg); box-shadow: var(--shadow-md); }
.testi::before {
  content: "\201C"; position: absolute; top: 10px; right: 22px;
  font-family: Georgia, serif; font-size: 84px; line-height: 1;
  color: rgba(185,154,85,.18); pointer-events: none;
}
.testi__stars { color: var(--champagne); letter-spacing: 3px; margin-bottom: 14px; font-size: 14px; }
.testi p { font-size: 14.5px; color: var(--muted); flex: 1; }
.testi footer { margin-top: 18px; font-family: var(--font-head); font-weight: 700; font-size: 13.5px; color: var(--brand); display: flex; align-items: center; gap: 10px; }
.testi footer::before {
  content: ""; width: 30px; height: 30px; border-radius: 50%; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--brand-soft), var(--brand));
  border: 2px solid var(--champagne-light);
}

/* ---------- Partenaires (bande sombre marquee) ---------- */
.partners-strip { padding: 72px 0; }
.partners-marquee { overflow: hidden; margin-top: 40px; position: relative; }
.partners-marquee::before, .partners-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 110px; z-index: 1; pointer-events: none;
}
.partners-marquee::before { left: 0; background: linear-gradient(90deg, var(--brand), transparent); }
.partners-marquee::after { right: 0; background: linear-gradient(-90deg, var(--brand-deep), transparent); }
.partners-track { display: flex; gap: 16px; width: max-content; animation: marquee 30s linear infinite; }
.partners-marquee:hover .partners-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.partner {
  flex: 0 0 auto;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  padding: 0 36px; height: 74px; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55);
  transition: color .25s, border-color .25s, background .25s;
}
.partner:hover { color: var(--champagne-light); border-color: rgba(221,195,139,.5); background: rgba(255,255,255,.08); }

/* ---------- FAQ ---------- */
.faq { max-width: 830px; margin: 0 auto; }
.faq__item {
  border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px;
  background: #fff; overflow: hidden;
  transition: box-shadow .3s, border-color .3s;
}
.faq__item.open { box-shadow: var(--shadow-md); border-color: rgba(185,154,85,.4); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 22px 60px 22px 24px; position: relative;
  font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--brand);
  transition: color .2s;
}
.faq__q:hover { color: var(--champagne); }
.faq__q::after {
  content: "+"; position: absolute; right: 22px; top: 50%;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--tint); color: var(--champagne);
  display: grid; place-items: center;
  transform: translateY(-50%);
  font-size: 20px; font-weight: 400;
  transition: transform .35s var(--ease), background .3s, color .3s;
}
.faq__item.open .faq__q::after { transform: translateY(-50%) rotate(135deg); background: var(--champagne); color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding: 0 60px 24px 24px; color: var(--muted); font-size: 15px; }

/* ---------- Contact ---------- */
.contact {
  background:
    radial-gradient(800px 380px at 12% 15%, rgba(185,154,85,.20), transparent 60%),
    radial-gradient(600px 400px at 95% 90%, rgba(72,84,200,.3), transparent 60%),
    linear-gradient(210deg, #151b56, var(--brand) 70%);
  color: #fff;
}
.contact h2, .contact h3 { color: #fff; }
.contact__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.contact p { color: rgba(255,255,255,.75); }
.contact__info { display: grid; gap: 13px; margin-top: 28px; }
.contact__info a, .contact__info span {
  display: flex; align-items: center; gap: 12px; font-size: 15.5px;
  color: rgba(255,255,255,.92); transition: color .2s, transform .25s var(--ease);
}
.contact__info a:hover { color: var(--champagne-light); transform: translateX(5px); }
.contact__info .ico { color: var(--champagne-light); width: 22px; text-align: center; }
.contact__card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 40px 34px; text-align: center;
  backdrop-filter: blur(8px);
  transition: transform .3s var(--ease), border-color .3s;
}
.contact__card:hover { transform: translateY(-4px); border-color: rgba(221,195,139,.45); }
.contact__card h3 { font-size: 19px; margin-bottom: 10px; }
.contact__card p { font-size: 14.5px; margin-bottom: 26px; }

/* ---------- Footer (sombre) ---------- */
.footer {
  background: linear-gradient(180deg, var(--brand-deep), #03041a);
  padding: 68px 0 0; color: rgba(255,255,255,.6);
  position: relative; overflow: hidden;
}
.footer::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px; pointer-events: none;
  mask-image: radial-gradient(700px 300px at 50% 100%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(700px 300px at 50% 100%, #000, transparent 75%);
}
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; position: relative; }
.footer h4 {
  font-family: var(--font-head); color: #fff; font-size: 13px;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px;
}
.footer ul li { margin-bottom: 10px; }
.footer a { font-size: 14.5px; transition: color .2s, padding-left .2s; }
.footer a:hover { color: var(--champagne-light); padding-left: 4px; }
.footer__brand p { font-size: 14.5px; margin-top: 18px; max-width: 300px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; flex-wrap: wrap; gap: 10px; position: relative;
}
.footer__bottom a:hover { color: var(--champagne-light); }

/* ---------- WhatsApp ---------- */
.whatsapp {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center;
  box-shadow: 0 8px 22px rgba(0,0,0,.28);
  transition: transform .25s var(--ease);
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse {
  0% { box-shadow: 0 8px 22px rgba(0,0,0,.28), 0 0 0 0 rgba(37,211,102,.45); }
  70% { box-shadow: 0 8px 22px rgba(0,0,0,.28), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 22px rgba(0,0,0,.28), 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp:hover { transform: scale(1.1); }
.whatsapp svg { width: 29px; height: 29px; fill: #fff; }

/* ---------- Reveal en cascade ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.services-grid .reveal:nth-child(2), .benefits .reveal:nth-child(2),
.props .reveal:nth-child(2), .testis .reveal:nth-child(2),
.listing-links .reveal:nth-child(2) { transition-delay: .08s; }
.services-grid .reveal:nth-child(3), .props .reveal:nth-child(3),
.testis .reveal:nth-child(3), .listing-links .reveal:nth-child(3) { transition-delay: .16s; }
.services-grid .reveal:nth-child(4), .benefits .reveal:nth-child(4),
.testis .reveal:nth-child(4), .listing-links .reveal:nth-child(4) { transition-delay: .24s; }
.services-grid .reveal:nth-child(5), .testis .reveal:nth-child(5) { transition-delay: .08s; }
.services-grid .reveal:nth-child(6), .testis .reveal:nth-child(6) { transition-delay: .16s; }
.services-grid .reveal:nth-child(7) { transition-delay: .24s; }
.services-grid .reveal:nth-child(8) { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .partners-track { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .props { grid-template-columns: 1fr 1fr; }
  .testis { grid-template-columns: 1fr 1fr; }
  .market { grid-template-columns: 1fr; }
  .market__tabs { flex-direction: row; flex-wrap: wrap; }
  .listing-links { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .search-bar { flex-wrap: wrap; border-radius: var(--radius-lg); }
  .search-seg { flex: 1 1 40%; padding: 12px 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .search-bar__submit { margin: 10px auto 4px; }
}
@media (max-width: 768px) {
  .section { padding: 68px 0; }
  .header { backdrop-filter: none; background: #fff; }
  .hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 12px; }
  .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-wrap {
    flex-direction: column; align-items: stretch; gap: 0;
    position: fixed; inset: 78px 0 0 0; background: #fff;
    transform: translateX(100%); transition: transform .3s var(--ease); overflow-y: auto; padding: 12px 0 40px;
    border-top: 1px solid var(--line);
  }
  .nav-wrap.open { transform: none; }
  .nav { flex-direction: column; align-items: stretch; gap: 0; }
  .nav > li > a { padding: 16px 28px; border-bottom: 1px solid var(--line); }
  .nav > li > a::after { display: none; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: var(--tint); border-radius: 0; box-shadow: none; border: 0; padding: 0;
  }
  .dropdown a { padding: 13px 44px; border-radius: 0; }
  .lang { margin: 18px 28px; width: max-content; }
  .header__actions .btn { display: none; }
  .burger { display: block; }
  .hero { padding-top: 64px; }
  .hero__inner { padding-bottom: 64px; }
  .contact__grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .services-grid, .props, .testis, .listing-links, .footer__grid, .benefits { grid-template-columns: 1fr; }
  .search-seg { flex: 1 1 100%; }
}
