/* ================================================================
   SAHLIA — Design System Premium
   Style: Dark Premium + Glassmorphism + Typographie expressive
   Inspiré par 21st.dev MagicChat + UI/UX Pro Max
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ────────────────────────────────────────────── */
:root {
  --bleu:       #1B3A4B;
  --bleu-light: #2A5570;
  --sable:      #E8C99A;
  --sable-light:#F0DAB5;
  --menthe:     #4A9E8F;
  --terra:      #C4573A;
  --creme:      #FAFAF7;

  --bg-deep:    #04080F;
  --bg-dark:    #07101C;
  --bg-card:    #0C1825;
  --bg-card-2:  #101F30;

  --glass-bg:       rgba(12, 24, 37, 0.65);
  --glass-bg2:      rgba(27, 58, 75, 0.22);
  --glass-border:   rgba(232, 201, 154, 0.1);
  --glass-border2:  rgba(255, 255, 255, 0.08);

  --text-primary:   #EDE8E0;
  --text-secondary: #8AA0B4;
  --text-muted:     #4A6070;

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

  --section-py: clamp(5rem, 10vw, 8rem);
  --container:  min(1220px, calc(100% - 3rem));

  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  28px;
  --radius-xl:  40px;

  --transition:      250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  --z-base:   10;
  --z-float:  20;
  --z-modal:  30;
  --z-header: 50;
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Animations ───────────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(25px, -18px) scale(1.04); }
  66%       { transform: translate(-12px, 12px) scale(0.97); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes shimmerText {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes progressFill {
  from { width: 0; }
}
@keyframes countAnim {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.28s; }
.reveal-delay-4 { transition-delay: 0.38s; }
.reveal-delay-5 { transition-delay: 0.48s; }

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

/* ── Typography ───────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1rem, 1.8vw, 1.3rem); }
p  { font-size: clamp(0.92rem, 1.2vw, 1rem); line-height: 1.75; }

.gradient-text {
  background: linear-gradient(130deg, var(--sable) 0%, #fff 50%, var(--menthe) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 6s linear infinite;
}
.text-sable {
  background: linear-gradient(135deg, var(--sable-light), var(--sable));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-menthe { color: var(--menthe); }

.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sable);
  padding: 0.4rem 1rem;
  border: 1px solid rgba(232, 201, 154, 0.22);
  border-radius: 100px;
  background: rgba(232, 201, 154, 0.05);
}

/* ── Layout ───────────────────────────────────────────────────── */
.container    { width: var(--container); margin-inline: auto; }
.section      { padding-block: var(--section-py); }
.section-sm   { padding-block: clamp(3rem, 6vw, 5rem); }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.9rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--sable) 0%, #C8A86A 100%);
  color: #06101A;
  box-shadow: 0 4px 20px rgba(232, 201, 154, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 201, 154, 0.42);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--creme);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.btn-menthe {
  background: linear-gradient(135deg, var(--menthe), #3A8A7C);
  color: #fff;
  box-shadow: 0 4px 18px rgba(74, 158, 143, 0.32);
}
.btn-menthe:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(74, 158, 143, 0.48); }

.btn-lg { padding: 1rem 2.5rem; font-size: 0.95rem; }
.btn-sm { padding: 0.55rem 1.3rem; font-size: 0.78rem; }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.btn-arrow:hover { gap: 0.6rem; }

/* ── Glass ────────────────────────────────────────────────────── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}
.glass-2 {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border2);
  border-radius: var(--radius-md);
}

/* ── Header ───────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: var(--z-header);
  transition: all var(--transition-slow);
}
.site-header.scrolled {
  background: rgba(4, 8, 15, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 2rem;
  max-width: var(--container);
  margin-inline: auto;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--creme);
  transition: opacity var(--transition);
}
.logo span { color: var(--sable); }
.logo:hover { opacity: 0.82; }

.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--creme); background: rgba(255,255,255,0.05); }
.nav-links .btn { margin-left: 0.75rem; }

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

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1.25rem 1.5rem 1.75rem;
  background: rgba(4, 8, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-mobile a:hover { color: var(--creme); background: rgba(255,255,255,0.04); }
.nav-mobile .btn { margin-top: 0.75rem; justify-content: center; }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(4, 8, 15, 0.93) 0%, rgba(7, 16, 28, 0.80) 45%, rgba(12, 24, 37, 0.70) 100%),
    linear-gradient(to bottom, transparent 50%, rgba(4, 8, 15, 1) 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}
.orb-1 { width: 600px; height: 600px; background: rgba(27, 58, 75, 0.35); top: -150px; right: -120px; animation: orbFloat 18s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: rgba(74, 158, 143, 0.12); bottom: 80px; left: -100px; animation: orbFloat 22s ease-in-out infinite reverse; }
.orb-3 { width: 300px; height: 300px; background: rgba(232, 201, 154, 0.07); top: 40%; right: 25%; animation: orbFloat 28s ease-in-out infinite 4s; }

.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}

.hero-content { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-label  { animation: fadeSlideIn 0.7s ease-out both; }
.hero-title  { animation: fadeSlideUp 0.8s ease-out 0.1s both; }
.hero-title em { font-style: italic; color: var(--sable); }
.hero-desc   {
  color: var(--text-secondary);
  max-width: 520px;
  font-size: 1.04rem;
  animation: fadeSlideUp 0.8s ease-out 0.18s both;
}
.hero-cta    { display: flex; flex-wrap: wrap; gap: 1rem; animation: fadeSlideUp 0.8s ease-out 0.26s both; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  animation: fadeSlideUp 0.8s ease-out 0.34s both;
}
.live-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8px; height: 8px;
  position: relative;
}
.live-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--menthe);
  animation: pulseGlow 2s ease-in-out infinite;
}
.live-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(74,158,143,0.35);
  animation: pulseGlow 2s ease-in-out infinite 0.3s;
}

/* Hero Card */
.hero-visual { animation: scaleIn 0.9s ease-out 0.25s both; }

.hero-card { padding: 2rem; position: relative; overflow: hidden; }
.hero-card::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -40%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232,201,154,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.card-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}
.card-dot {
  width: 8px; height: 8px;
  background: var(--menthe);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(74,158,143,0.6);
  animation: pulseGlow 2s ease-in-out infinite;
}
.card-badge-text {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--menthe);
}

.card-stat-main { margin-bottom: 1.5rem; }
.card-big-num {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1;
  display: block;
  color: var(--creme);
}
.card-big-lbl { font-size: 0.82rem; color: var(--text-secondary); margin-top: 0.35rem; }

.card-progress { margin-bottom: 1.5rem; }
.progress-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.progress-track {
  height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 100px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--menthe), var(--sable));
  border-radius: 100px;
  animation: progressFill 1.5s ease-out both;
}

.card-divider { height: 1px; background: var(--glass-border); margin-block: 1.25rem; }

.card-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 0.5rem;
}
.card-stat-num {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--creme);
  display: block;
}
.card-stat-lbl {
  font-size: 0.67rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.card-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  border: 1px solid var(--glass-border2);
  background: rgba(255,255,255,0.03);
  color: var(--text-secondary);
}

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: fadeSlideUp 1s ease-out 1s both;
}
.scroll-cue-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(232,201,154,0.5));
  animation: float 2.2s ease-in-out infinite;
}
.scroll-cue-text {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Stats Bar ────────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding-block: 3.5rem;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-bar-item {
  text-align: center;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  cursor: default;
  transition: background var(--transition);
}
.stat-bar-item:hover { background: rgba(232,201,154,0.04); }
.stat-bar-num {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 500;
  color: var(--creme);
  line-height: 1;
  display: block;
}
.stat-bar-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 0.4rem;
  line-height: 1.4;
}
.stat-sep {
  align-self: center;
  height: 50px;
  width: 1px;
  background: var(--glass-border);
  margin: 0 auto;
}

/* ── Section Header ───────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.section-header h2 { margin-top: 0.75rem; margin-bottom: 0.875rem; }
.section-header p   { color: var(--text-secondary); }

/* ── Bento Grid ───────────────────────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
}
.bento-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232,201,154,0.18);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}
.bento-card-wide   { grid-column: span 7; }
.bento-card-narrow { grid-column: span 5; }
.bento-card-third  { grid-column: span 4; }

.bento-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 1.25rem;
  background: rgba(74,158,143,0.1);
  border: 1px solid rgba(74,158,143,0.18);
}
.bento-icon svg { width: 24px; height: 24px; stroke: var(--menthe); fill: none; stroke-width: 1.75; }

.bento-tag {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--menthe);
  display: block;
  margin-bottom: 0.6rem;
}
.bento-card h3 { font-size: 1.25rem; margin-bottom: 0.65rem; }
.bento-card p  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

.bento-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 140px;
  height: 100px;
  background: linear-gradient(135deg, rgba(74,158,143,0.06), rgba(232,201,154,0.04));
  border-radius: 20px 0 var(--radius-lg) 0;
  pointer-events: none;
}

/* ── Steps ────────────────────────────────────────────────────── */
.steps-wrapper { position: relative; }
.steps-connector {
  position: absolute;
  top: 50px;
  left: calc(16.67% + 1.5rem);
  right: calc(16.67% + 1.5rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,201,154,0.3) 30%, rgba(232,201,154,0.3) 70%, transparent);
  pointer-events: none;
}
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step-card {
  text-align: center;
  padding: 2.5rem 1.75rem;
  transition: transform var(--transition);
}
.step-card:hover { transform: translateY(-6px); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px; height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(232,201,154,0.35);
  background: rgba(232,201,154,0.05);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--sable);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}
.step-card h3 { margin-bottom: 0.7rem; }
.step-card p  { color: var(--text-secondary); font-size: 0.9rem; }

/* ── Villes ───────────────────────────────────────────────────── */
.villes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.ville-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  cursor: default;
  transition: transform var(--transition);
}
.ville-card:hover { transform: translateY(-5px); }
.ville-card:hover .ville-photo { transform: scale(1.06); }
.ville-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.ville-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,8,15,0.92) 0%, rgba(4,8,15,0.35) 55%, transparent 100%);
}
.ville-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}
.ville-name {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--creme);
  margin-bottom: 0.3rem;
}
.ville-info { font-size: 0.78rem; color: var(--sable); }
.ville-pill {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--menthe);
  padding: 0.3rem 0.75rem;
  background: rgba(4,8,15,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(74,158,143,0.3);
  border-radius: 100px;
}

/* ── Testimonials ─────────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card {
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.star { width: 15px; height: 15px; fill: var(--sable); color: var(--sable); }
.testi-quote {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--creme);
  margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bleu), var(--menthe));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--creme);
  flex-shrink: 0;
}
.author-name  { font-weight: 600; font-size: 0.85rem; }
.author-loc   { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.1rem; }

/* ── CTA Banner ───────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: var(--section-py);
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(27,58,75,0.9) 50%, var(--bg-card) 100%);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
}
.cta-banner-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(74,158,143,0.14) 0%, transparent 65%);
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}
.cta-banner-inner h2 { margin-bottom: 0.875rem; }
.cta-banner-inner p  { color: var(--text-secondary); margin-bottom: 2rem; font-size: 1.02rem; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ── Form ─────────────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-full  { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border2);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  color: var(--creme);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(232,201,154,0.38);
  background: rgba(232,201,154,0.03);
  box-shadow: 0 0 0 3px rgba(232,201,154,0.07);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-select option  { background: var(--bg-dark); color: var(--creme); }
.form-textarea { resize: vertical; min-height: 120px; }

/* Range */
.range-wrap { display: flex; flex-direction: column; gap: 0.4rem; }
.range-val  { font-size: 0.82rem; color: var(--sable); font-weight: 600; }
.form-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%; height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 100px;
  outline: none;
}
.form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--sable);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(232,201,154,0.35);
}

/* ── Simulation Layout ────────────────────────────────────────── */
.sim-layout { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; }
.sim-sidebar { position: sticky; top: 7rem; }
.sim-why-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 1.5rem; }
.sim-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--glass-border);
}
.sim-benefit:last-of-type { border-bottom: none; }
.sim-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(74,158,143,0.1);
  border: 1px solid rgba(74,158,143,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sim-icon svg { width: 18px; height: 18px; stroke: var(--menthe); fill: none; stroke-width: 1.75; }
.sim-b-title { font-weight: 600; font-size: 0.85rem; margin-bottom: 0.2rem; }
.sim-b-desc  { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.55; }

/* ── Page Hero ────────────────────────────────────────────────── */
.page-hero {
  padding-top: 10rem;
  padding-bottom: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(27,58,75,0.45) 0%, transparent 65%);
  z-index: 0;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}
.page-hero h1 { margin-top: 0.875rem; margin-bottom: 0.875rem; }
.page-hero p  { color: var(--text-secondary); font-size: 1.02rem; }

/* ── About ────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-float-card { position: absolute; bottom: 1.5rem; left: 1.5rem; padding: 1rem 1.25rem; }

.about-content { display: flex; flex-direction: column; gap: 1.1rem; }
.about-content h2 { margin: 0; }
.about-content > p { color: var(--text-secondary); }

.value-list { display: flex; flex-direction: column; gap: 0.875rem; margin-top: 0.5rem; }
.value-item { display: flex; align-items: flex-start; gap: 0.8rem; }
.check-icon {
  width: 20px; height: 20px;
  border-radius: 6px;
  background: rgba(74,158,143,0.12);
  border: 1px solid rgba(74,158,143,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon svg { width: 11px; height: 11px; stroke: var(--menthe); fill: none; stroke-width: 2.5; }
.value-text { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Contact ──────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info  { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item  { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon  {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(74,158,143,0.09);
  border: 1px solid rgba(74,158,143,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; stroke: var(--menthe); fill: none; stroke-width: 1.75; }
.contact-label { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-val   { font-size: 0.85rem; color: var(--text-secondary); }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.7rem; max-width: 800px; margin: 0 auto; }
.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(232,201,154,0.22); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.75rem;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--creme);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--sable); }
.faq-q-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  stroke: var(--text-secondary);
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition), stroke var(--transition);
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); stroke: var(--sable); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-item.open .faq-answer { max-height: 350px; }
.faq-answer-body {
  padding: 0 1.75rem 1.4rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--glass-border);
  background: var(--bg-dark);
  padding-block: 4rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 600; color: var(--creme); margin-bottom: 0.75rem; }
.footer-logo span { color: var(--sable); }
.footer-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; max-width: 240px; }
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { font-size: 0.84rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--sable); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: var(--text-muted); transition: color var(--transition); }
.footer-legal a:hover { color: var(--text-secondary); }

/* WhatsApp */
.wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #25D366;
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.84rem;
  box-shadow: 0 6px 28px rgba(37,211,102,0.38);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
  animation: float 4s ease-in-out infinite;
  text-decoration: none;
}
.wa-btn:hover { transform: scale(1.04) translateY(-3px); box-shadow: 0 10px 36px rgba(37,211,102,0.52); }
.wa-btn svg   { width: 21px; height: 21px; flex-shrink: 0; }

/* Helpers */
.divider { height: 1px; background: var(--glass-border); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner     { grid-template-columns: 1fr; }
  .hero-visual    { display: none; }
  .bento-card-wide   { grid-column: span 12; }
  .bento-card-narrow { grid-column: span 12; }
  .bento-card-third  { grid-column: span 6; }
  .stats-bar-grid { grid-template-columns: 1fr 1fr; }
  .stat-sep       { display: none; }
  .villes-grid    { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: 1fr 1fr; }
  .sim-layout     { grid-template-columns: 1fr; }
  .sim-sidebar    { position: static; }
  .about-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid   { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-py: clamp(3.5rem, 8vw, 5rem); }
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .header-inner { padding: 1rem 1.25rem; }
  .steps-connector { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .bento-card-third { grid-column: span 12; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-grid  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .wa-btn .wa-label { display: none; }
  .wa-btn { padding: 0.875rem; border-radius: 50%; }
  .cta-btns { flex-direction: column; align-items: center; }
}
