:root{
  --bg: #0A0B10;
  --panel: #12141C;
  --panel-2: #15171F;
  --border: rgba(255,255,255,0.09);
  --border-soft: rgba(255,255,255,0.06);
  --text: #F5F6F8;
  --text-dim: #8A93A6;
  --text-faint: #5B6376;
  --accent: #3D7BFF;
  --accent-soft: #6E97FF;
  --display: 'Inter Tight', 'Inter', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --r: 12px;
  --r-sm: 8px;
  --r-pill: 999px;
}

*{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; border: none; background: none; cursor: pointer; }
:focus-visible{ outline: 2px solid var(--accent); outline-offset: 3px; }
svg{ display: block; }

/* ---------- Icônes ---------- */
.zone-icon svg, .timeline-icon svg, .compare-icons svg,
.ic-x, .ic-check, .compare-arrow svg, .zone-more svg{
  fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- Progress bar ---------- */
.scroll-progress{ position: fixed; top: 0; left: 0; height: 2px; width: 0%; background: var(--accent); z-index: 300; pointer-events: none; }

/* ---------- Nav ---------- */
.nav{ position: fixed; top: 0; left: 0; right: 0; z-index: 250; padding: 20px 40px; background: rgba(10,11,16,0.55); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); border-bottom: 1px solid transparent; transition: border-color 0.4s var(--ease), background 0.4s var(--ease), padding 0.4s var(--ease); }
.nav.scrolled{ border-bottom-color: var(--border-soft); padding: 14px 40px; background: rgba(10,11,16,0.82); }
.nav.scrolled .brand-mark{ height: 22px; }
.nav-inner{ max-width: 2200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }

.brand{ display: inline-flex; align-items: center; }
.brand-mark{ height: 26px; display: block; transition: height 0.4s var(--ease); }
.nav-links{ position: relative; display: flex; align-items: center; gap: 2px; }
.nav-pill{ position: absolute; top: 0; left: 0; height: 100%; border-radius: var(--r-pill); background: rgba(255,255,255,0.07); z-index: 0; opacity: 0; transition: transform 0.4s var(--ease), width 0.4s var(--ease), opacity 0.3s var(--ease); }
.nav-links a{ position: relative; z-index: 1; font-family: var(--display); font-size: 15.5px; font-weight: 600; color: var(--text-dim); padding: 11px 28px; transition: color 0.25s var(--ease); }
.nav-links a:hover{ color: var(--text); }
.nav-links a.active{ color: var(--text); }
.btn-nav{ padding: 11px 22px; font-size: 13.5px; }

.menu-toggle{ display: none; position: relative; width: 26px; height: 20px; flex-shrink: 0; }
.menu-toggle-bar{ position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--text); transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), top 0.35s var(--ease); }
.menu-toggle-bar:nth-child(1){ top: 0; } .menu-toggle-bar:nth-child(2){ top: 9px; } .menu-toggle-bar:nth-child(3){ top: 18px; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1){ top: 9px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2){ opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3){ top: 9px; transform: rotate(-45deg); }

.nav-overlay{ position: fixed; inset: 0; z-index: 150; background: rgba(0,0,0,0.6); opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease); }
.nav-overlay.active{ opacity: 1; visibility: visible; }
.mobile-nav{ position: fixed; top: 0; right: 0; bottom: 0; z-index: 200; width: min(380px, 88vw); background: var(--bg); border-left: 1px solid var(--border-soft); display: flex; flex-direction: column; justify-content: space-between; padding: 110px 32px 40px; transform: translateX(100%); transition: transform 0.5s var(--ease); }
.mobile-nav.active{ transform: translateX(0); }
.mobile-nav-links{ display: flex; flex-direction: column; }
.mobile-nav-links a{ font-family: var(--display); font-weight: 700; font-size: 2.2rem; letter-spacing: -0.01em; color: var(--text); padding: 16px 6px; border-bottom: 1px solid var(--border-soft); transition: color 0.25s var(--ease); }
.mobile-nav-links a:hover, .mobile-nav-links a.active{ color: var(--accent-soft); }
.mobile-nav-cta{ width: 100%; }
body.nav-open{ overflow: hidden; }

/* ---------- Buttons ---------- */
.btn{ display: inline-flex; align-items: center; gap: 8px; justify-content: center; padding: 14px 26px; border-radius: var(--r-pill); font-family: var(--display); font-weight: 600; font-size: 14.5px; transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); }
.btn-primary{ position: relative; overflow: hidden; background: var(--accent); color: #FFFFFF; box-shadow: 0 8px 24px -10px rgba(61,123,255,0.6); }
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 32px -10px rgba(61,123,255,0.7); }
.btn-primary::after{ content: ''; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%; background: linear-gradient(115deg, transparent, rgba(255,255,255,0.3), transparent); transform: skewX(-18deg); transition: transform 0.7s var(--ease); }
.btn-primary:hover::after{ transform: translateX(260%) skewX(-18deg); }
.btn-ghost{ background: rgba(255,255,255,0.02); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover{ border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.05); transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero{ position: relative; z-index: 1; padding: 128px 40px 84px; }
.hero-grid{ max-width: 2200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.hero-copy{ max-width: 580px; min-width: 0; justify-self: center; text-align: center; padding-top: 8px; }
.hero-eyebrow{ font-family: var(--mono); font-size: 13.5px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px; }
.hero-title{ font-family: var(--display); font-weight: 800; font-size: clamp(2.8rem, 5.4vw, 4.4rem); line-height: 1.06; letter-spacing: -0.03em; }
.reveal-line-accent span{ color: var(--accent); }
.reveal-line{ display: block; overflow: hidden; padding-bottom: 0.06em; }
.reveal-line span{ display: block; transform: translateY(110%); animation: lineUp 1s var(--ease) forwards; }
.reveal-line:nth-child(1) span{ animation-delay: 0.1s; }
.reveal-line:nth-child(2) span{ animation-delay: 0.2s; }
.reveal-line:nth-child(3) span{ animation-delay: 0.3s; }
.reveal-line:nth-child(4) span{ animation-delay: 0.4s; }
@keyframes lineUp{ to{ transform: translateY(0); } }
.hero-sub{ margin: 20px 0 0; font-size: 1.2rem; line-height: 1.6; color: var(--text-dim); }
.hero-actions{ margin-top: 28px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-actions .btn{ padding: 16px 30px; font-size: 15.5px; }
.reveal-fade{ opacity: 0; animation: fadeUp 1s var(--ease) forwards; animation-delay: 0.55s; }
@keyframes fadeUp{ from{ opacity: 0; transform: translateY(16px);} to{ opacity: 1; transform: translateY(0);} }

.hero-proof{ margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 16px; text-align: left; }
.hero-avatars{ display: flex; flex-shrink: 0; }
.hero-avatar{
  width: 34px; height: 34px; border-radius: 50%; background: var(--c, var(--accent)); border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; font-size: 12px; color: #fff;
  margin-left: -10px;
}
.hero-avatars .hero-avatar:first-child{ margin-left: 0; }
.hero-proof-title{ font-family: var(--display); font-weight: 600; font-size: 0.9rem; color: var(--text); }
.hero-proof-sub{ font-size: 0.82rem; color: var(--text-faint); margin-top: 2px; }

/* ---------- Composition visuelle du hero ---------- */
.hero-visual{ position: relative; min-width: 0; max-width: 100%; display: flex; justify-content: center; align-self: stretch; }

/* Lueurs d'ambiance très douces, purement décoratives, en arrière-plan de la
   composition (rule : "elegant gradients and soft glows", pas de forme nette). */
.hs-ambient{ position: absolute; pointer-events: none; filter: blur(70px); border-radius: 50%; }
.hs-ambient-1{ left: -6%; top: -8%; width: 60%; height: 55%; background: radial-gradient(circle, rgba(61,123,255,0.16) 0%, transparent 70%); }
.hs-ambient-2{ right: -10%; bottom: -6%; width: 62%; height: 60%; background: radial-gradient(circle, rgba(61,123,255,0.1) 0%, transparent 70%); }

.hs-stage{
  position: relative; width: 100%; max-width: 760px; aspect-ratio: 3 / 4;
  perspective: 1600px;
}
.hs-canvas{ position: absolute; inset: -10%; width: 120%; height: 120%; mix-blend-mode: screen; pointer-events: none; }

/* L'objet central : bascule au mouvement de la souris (JS, transform géré en
   continu par rAF) sur le wrapper externe ; la rotation lente et permanente
   vit sur un wrapper interne séparé, pour ne jamais entrer en conflit avec la
   transition posée par le JS (deux transforms indépendants plutôt qu'un seul
   qu'une keyframe écraserait). */
.hs-object{ position: absolute; inset: 0; transform-style: preserve-3d; }
.hs-object-inner{
  position: absolute; left: 50%; top: 50%; width: 56%; height: 88%;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  animation: hsSlowTurn 46s linear infinite;
}
@keyframes hsSlowTurn{ to{ transform: translate(-50%, -50%) rotateY(360deg); } }

/* Les "lames" : facettes de verre légèrement décalées et pivotées, empilées en
   spirale pour former un objet architectural unique, jamais une forme
   reconnaissable (pas de cube, pas de sphère, pas d'icône). */
.hs-blade{
  position: absolute; left: 50%; top: calc(var(--i) * 13%); width: 92%; height: 30%;
  margin-left: -46%;
  clip-path: polygon(50% 0%, 100% 18%, 86% 100%, 14% 100%, 0% 18%);
  background: linear-gradient(155deg, rgba(110,151,255,0.16), rgba(245,246,248,0.03) 60%, rgba(61,123,255,0.1));
  transform-style: preserve-3d;
  transform:
    translateZ(calc(var(--i) * -14px))
    rotateY(calc(var(--i) * 26deg))
    rotateZ(calc(var(--i) * 4deg));
  filter: drop-shadow(0 0 18px rgba(61,123,255,0.16));
  opacity: 0.85;
}
.hs-blade::before{
  content: ''; position: absolute; inset: 0;
  clip-path: polygon(50% 0%, 100% 18%, 86% 100%, 14% 100%, 0% 18%);
  box-shadow: inset 0 0 0 1px rgba(110,151,255,0.35);
  mix-blend-mode: screen;
}

/* Anneaux fins, très inclinés, qui traversent l'objet comme des trajectoires
   orbitales plutôt que des cadrans ou des chargeurs. */
.hs-ring{
  position: absolute; left: 50%; top: 50%; border-radius: 50%; pointer-events: none;
  transform: translate(-50%, -50%) rotateX(78deg);
}
.hs-ring-1{ width: 150%; height: 150%; border: 1px solid rgba(110,151,255,0.14); animation: hsRingSpin 60s linear infinite; }
.hs-ring-2{ width: 118%; height: 118%; border: 1px solid rgba(110,151,255,0.09); transform: translate(-50%, -50%) rotateX(78deg) rotateZ(40deg); animation: hsRingSpinRev 84s linear infinite; }
@keyframes hsRingSpin{ to{ transform: translate(-50%, -50%) rotateX(78deg) rotateZ(360deg); } }
@keyframes hsRingSpinRev{ to{ transform: translate(-50%, -50%) rotateX(78deg) rotateZ(-320deg); } }

/* Le coeur lumineux : un filet de lumière verticale qui traverse tout
   l'objet, seul indice d'une "énergie" traitée à l'intérieur. */
.hs-core-light{
  position: absolute; left: 50%; top: 6%; bottom: 6%; width: 2px; margin-left: -1px;
  background: linear-gradient(to bottom, transparent, rgba(110,151,255,0.85), var(--accent), rgba(110,151,255,0.85), transparent);
  filter: blur(1px) drop-shadow(0 0 14px rgba(61,123,255,0.7));
  animation: hsCorePulse 4.4s ease-in-out infinite;
}
@keyframes hsCorePulse{
  0%, 100%{ opacity: 0.55; transform: scaleY(0.94); }
  50%{ opacity: 1; transform: scaleY(1); }
}

@media (max-width: 1180px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-copy{ max-width: none; }
  .hs-stage{ max-width: 520px; margin: 0 auto; }
}
@media (max-width: 640px){
  .hero{ padding: 118px 20px 60px; }
}

/* ---------- Sections (base) ---------- */
.section{ position: relative; z-index: 1; padding: 120px 40px; border-top: 1px solid var(--border-soft); }
.section-inner{ max-width: 2200px; margin: 0 auto; }
.section-inner.narrow{ max-width: 680px; text-align: center; }
.eyebrow{ font-family: var(--mono); font-size: 12px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 22px; }
.section-title{ font-family: var(--display); font-weight: 700; font-size: clamp(1.9rem, 3.2vw, 2.7rem); line-height: 1.16; letter-spacing: -0.02em; max-width: 640px; }
.title-wipe{ display: inline-block; clip-path: inset(0 100% 0 0); transition: clip-path 1.1s var(--ease); }
.section-title.in-view .title-wipe, .finale-title.in-view .title-wipe{ clip-path: inset(0 0% 0 0); }
.section-lead{ margin-top: 20px; font-size: 1.02rem; line-height: 1.7; color: var(--text-dim); max-width: 560px; }
.reveal-up{ opacity: 0; transform: translateY(32px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease); filter: blur(3px); }
.reveal-up.in-view{ opacity: 1; transform: translateY(0); filter: blur(0); }

.method-head{ display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.method-head-text{ max-width: 340px; font-size: 0.98rem; line-height: 1.65; color: var(--text-dim); padding-bottom: 6px; }

/* ---------- Le constat ---------- */
.section-lead{ margin-bottom: 0; }
.compare-grid{ margin-top: 56px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; }
.compare-card{ background: var(--panel); border-radius: var(--r); padding: 28px; border: 1px solid var(--border); }
.compare-before{ border-color: var(--border); background: linear-gradient(180deg, rgba(245,246,248,0.04), transparent 40%), var(--panel); }
.compare-after{ border-color: rgba(61,123,255,0.3); background: linear-gradient(180deg, rgba(61,123,255,0.08), transparent 40%), var(--panel); }
.compare-title{ font-family: var(--display); font-weight: 700; font-size: 1.15rem; margin-bottom: 20px; }
.compare-list{ list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.compare-list li{ display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--text-dim); }
.ic-x{ width: 16px; height: 16px; color: rgba(245,246,248,0.4); flex-shrink: 0; }
.ic-check{ width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.compare-icons{ display: flex; gap: 8px; padding-top: 20px; border-top: 1px solid var(--border-soft); }
.compare-icons span{ width: 30px; height: 30px; border-radius: var(--r-sm); background: rgba(255,255,255,0.04); border: 1px solid var(--border-soft); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; font-size: 11px; color: var(--text-faint); }
.compare-icons-accent svg{ width: 16px; height: 16px; color: var(--accent-soft); }
.compare-icons-accent{ background: none; }
.compare-icons-accent svg{ width: 30px; height: 30px; padding: 7px; border-radius: var(--r-sm); background: rgba(61,123,255,0.1); border: 1px solid rgba(61,123,255,0.2); box-sizing: border-box; }
.compare-arrow{ width: 40px; height: 40px; border-radius: 50%; background: var(--panel-2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-dim); justify-self: center; }
.compare-arrow svg{ width: 16px; height: 16px; }

@media (max-width: 860px){
  .compare-grid{ grid-template-columns: 1fr; }
  .compare-arrow{ transform: rotate(90deg); }
}

/* ---------- Méthode : timeline ---------- */
.timeline{ position: relative; margin-top: 70px; }
.timeline-rail{ position: relative; height: 1px; background: var(--border); margin: 0 26px; }
.timeline-rail-fill{ position: absolute; left: 0; top: 0; height: 100%; width: 0%; background: var(--accent); }
.timeline-steps{ display: grid; grid-template-columns: repeat(4, 1fr); margin-top: -26px; gap: 32px; }
.timeline-step{ display: flex; flex-direction: column; align-items: flex-start; }
.timeline-icon{
  width: 52px; height: 52px; border-radius: 50%; background: var(--panel); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--accent-soft); margin-bottom: 18px; flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--bg);
}
.timeline-icon svg{ width: 20px; height: 20px; }
.timeline-num{ font-family: var(--mono); font-size: 11px; color: var(--text-faint); margin-bottom: 8px; }
.timeline-step h3{ font-family: var(--display); font-weight: 700; font-size: 1.2rem; margin-bottom: 8px; letter-spacing: -0.01em; }
.timeline-step p{ color: var(--text-dim); font-size: 0.92rem; line-height: 1.6; }

@media (max-width: 860px){
  .timeline-steps{ grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .timeline-rail{ display: none; }
  .timeline-steps{ margin-top: 0; }
}

/* ---------- Systèmes : zones ---------- */
.zones-grid{ margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.zone{ position: relative; background: var(--panel); border: 1px solid var(--border); border-radius: var(--r); padding: 26px; transition: transform 0.35s var(--ease), border-color 0.35s var(--ease); }
.zone:hover{ transform: translateY(-4px); border-color: rgba(255,255,255,0.2); }
.zone-icon{ width: 40px; height: 40px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.zone-blue .zone-icon{ background: rgba(61,123,255,0.14); color: var(--accent-soft); }
.zone-purple .zone-icon{ background: rgba(36,85,199,0.18); color: #6E97FF; }
.zone-green .zone-icon{ background: rgba(143,180,255,0.16); color: #8FB4FF; }
.zone-icon svg{ width: 20px; height: 20px; }
.zone h3{ font-family: var(--display); font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; }
.zone p{ color: var(--text-dim); font-size: 0.9rem; line-height: 1.55; margin-bottom: 22px; }
.zone-bar{ display: block; width: 28px; height: 3px; border-radius: 3px; }
.zone-blue .zone-bar{ background: var(--accent); }
.zone-purple .zone-bar{ background: #2455C7; }
.zone-green .zone-bar{ background: #8FB4FF; }
.zone-more{ position: absolute; right: 20px; bottom: 20px; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.04); border: 1px solid var(--border-soft); color: var(--text-dim); display: flex; align-items: center; justify-content: center; transition: background 0.3s var(--ease), color 0.3s var(--ease); }
.zone-more svg{ width: 14px; height: 14px; }
.zone:hover .zone-more{ background: var(--accent); color: #fff; border-color: var(--accent); }

@media (max-width: 960px){ .zones-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .zones-grid{ grid-template-columns: 1fr; } }


/* ---------- Finale / Contact ---------- */
/* Dernier temps fort du site : titre très présent, espacements resserrés,
   CTA principal renforcé, secondaire réduit à un lien discret, flux bleu qui
   s'estompe vers le footer plutôt qu'un aplat qui coupe net. */
.finale-section{ position: relative; overflow: hidden; padding-top: 100px; padding-bottom: 76px; border-bottom: none; }
.finale-glow{ position: absolute; pointer-events: none; filter: blur(80px); border-radius: 50%; z-index: 0; }
.finale-glow-1{ left: 50%; top: -12%; width: 60%; height: 70%; transform: translateX(-50%); background: radial-gradient(circle, rgba(61,123,255,0.22) 0%, transparent 70%); }
.finale-glow-2{ left: 50%; bottom: -30%; width: 80%; height: 60%; transform: translateX(-50%); background: radial-gradient(circle, rgba(61,123,255,0.12) 0%, transparent 72%); }
.finale-wave{
  position: absolute; left: 0; right: 0; bottom: 0; height: 46%; z-index: 0; pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 42%, #000 62%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent, #000 42%, #000 62%, transparent 100%);
}
.finale-wave svg{ width: 100%; height: 100%; }
.finale-wave-line{ fill: none; stroke: var(--accent-soft); stroke-width: 1.2; stroke-opacity: 0.55; }
.finale-section .section-inner{ position: relative; z-index: 1; }
.finale-title{ font-family: var(--display); font-weight: 800; font-size: clamp(2.6rem, 5.8vw, 4.4rem); line-height: 1.08; letter-spacing: -0.03em; }
.finale-sub{ margin-top: 18px; font-size: 1.1rem; line-height: 1.6; color: var(--text-dim); max-width: 460px; margin-left: auto; margin-right: auto; }
.finale-actions{ justify-content: center; align-items: center; margin-top: 34px; }
.finale-actions .btn-primary{ padding: 19px 38px; font-size: 16.5px; box-shadow: 0 12px 34px -8px rgba(61,123,255,0.65); }
.btn-link{
  font-family: var(--display); font-weight: 600; font-size: 14.5px; color: var(--text-dim);
  padding: 10px 4px; border-bottom: 1px solid transparent; transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn-link:hover{ color: var(--text); border-color: var(--border); }

.contact-form{ margin-top: 44px; background: var(--panel); border: 1px solid var(--border); padding: 36px; text-align: left; border-radius: var(--r); animation: fadeUp 0.6s var(--ease); }
.form-step{ display: none; }
.form-step.active{ display: block; animation: fadeUp 0.5s var(--ease); }
.form-step-label{ font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 22px; }
.form-substep-label{ font-size: 0.85rem; font-weight: 500; color: var(--text-dim); margin-bottom: 10px; }
.choice-cards{ display: flex; gap: 12px; margin-bottom: 26px; flex-wrap: wrap; }
.choice-card{ flex: 1; min-width: 170px; padding: 16px; border: 1px solid var(--border); border-radius: var(--r-sm); font-family: var(--display); font-weight: 600; font-size: 0.94rem; text-align: left; color: var(--text); transition: border-color 0.3s var(--ease), background 0.3s var(--ease); }
.choice-card.active{ border-color: var(--accent); background: rgba(61,123,255,0.1); }
.contact-form label{ display: block; font-size: 0.85rem; font-weight: 500; color: var(--text-dim); margin-bottom: 18px; }
.contact-form input{ display: block; width: 100%; margin-top: 8px; padding: 13px 15px; border-radius: var(--r-sm); border: 1px solid var(--border); background: rgba(255,255,255,0.02); font-family: var(--body); font-size: 0.96rem; color: var(--text); transition: border-color 0.3s var(--ease); }
.contact-form input::placeholder{ color: var(--text-faint); }
.contact-form input:focus{ border-color: var(--accent); }
.form-reassure{ font-size: 0.85rem; color: var(--text-dim); margin-bottom: 20px; }
.form-next{ margin-top: 4px; width: 100%; }
.consent-row{ display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.privacy-switch{ position: relative; width: 40px; height: 23px; flex-shrink: 0; border-radius: 100px; background: rgba(255,255,255,0.1); border: 1px solid var(--border); transition: background 0.3s var(--ease), border-color 0.3s var(--ease); }
.privacy-switch::after{ content: ''; position: absolute; top: 1px; left: 1px; width: 17px; height: 17px; border-radius: 50%; background: var(--text); transition: transform 0.3s var(--ease); }
.privacy-switch.active{ background: var(--accent); border-color: var(--accent); }
.privacy-switch.active::after{ transform: translateX(17px); background: #fff; }
.consent-label{ font-size: 0.85rem; color: var(--text-dim); line-height: 1.5; }
.form-status{ font-size: 0.9rem; margin-bottom: 16px; min-height: 1.2em; color: var(--text-dim); }
.form-status.is-error{ color: var(--text); font-weight: 600; }
.btn[disabled]{ opacity: 0.6; cursor: default; pointer-events: none; }
.form-submit{ width: 100%; }

@media (max-width: 540px){
  .contact-form{ padding: 24px 20px; }
  .finale-section{ padding-top: 80px; padding-bottom: 56px; }
}

/* ---------- Footer ---------- */
.footer{ position: relative; z-index: 1; padding: 44px 40px 0; }
.footer::before{
  content: ''; position: absolute; top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(110,151,255,0.3), transparent);
}
.footer-inner{ max-width: 2200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 32px; }
.footer-mark{ height: 22px; }
.footer-links{ display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a{ font-family: var(--display); font-weight: 500; font-size: 0.88rem; color: var(--text-dim); }
.footer-links a:hover{ color: var(--text); }
.footer-social{ display: flex; gap: 10px; }
.footer-social-btn{ width: 34px; height: 34px; border-radius: 50%; background: var(--panel); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; font-size: 12px; color: var(--text-dim); }
.footer-social-btn:hover{ color: var(--text); border-color: rgba(255,255,255,0.25); }
.footer-bottom{ max-width: 2200px; margin: 0 auto; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 24px 0 32px; border-top: 1px solid var(--border-soft); }
.footer-bottom p{ font-size: 0.82rem; color: var(--text-faint); }

@media (max-width: 640px){
  .footer-inner{ flex-direction: column; align-items: flex-start; gap: 22px; }
}

/* ---------- Responsive global ---------- */
@media (max-width: 860px){
  .section{ padding: 90px 24px; }
  .nav{ padding: 16px 24px; }
  .nav.scrolled{ padding: 12px 24px; }
  .nav-links{ display: none; }
  .btn-nav{ display: none; }
  .menu-toggle{ display: block; }
  .method-head{ align-items: flex-start; }
}
@media (max-width: 540px){
  .section{ padding: 70px 20px; }
}

/* ---------- Booking modal ---------- */
.booking-modal{ position: fixed; inset: 0; z-index: 900; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s; }
.booking-modal.is-open{ opacity: 1; visibility: visible; }
.booking-modal-overlay{ position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); }
.booking-modal-panel{ position: relative; width: 100%; max-width: 760px; height: min(720px, 86vh); background: var(--bg); border: 1px solid var(--border-soft); border-radius: var(--r); overflow: hidden; box-shadow: 0 40px 100px -20px rgba(0,0,0,0.7); transform: translateY(24px) scale(0.97); transition: transform 0.4s var(--ease); }
.booking-modal.is-open .booking-modal-panel{ transform: translateY(0) scale(1); }
.booking-modal-panel iframe{ width: 100%; height: 100%; border: none; display: block; }
.booking-modal-close{ position: absolute; top: 14px; right: 14px; z-index: 1; width: 32px; height: 32px; border-radius: 50%; border: none; cursor: pointer; background: rgba(255,255,255,0.08); color: var(--text); font-size: 20px; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background 0.3s var(--ease), transform 0.3s var(--ease); }
.booking-modal-close:hover{ background: rgba(255,255,255,0.16); transform: rotate(90deg); }

@media (max-width: 640px){
  .booking-modal{ padding: 0; }
  .booking-modal-panel{ max-width: none; width: 100%; height: 100%; border-radius: 0; }
}
