/* =========================================================
   VIRGULE AUTO-ÉCOLE — "La virgule" art direction
   Black + electric blue world, oversized editorial type,
   the comma (virgule) as the recurring signature motif.
   ========================================================= */

:root{
  /* palette */
  --ink:        #070A12;   /* near-black background */
  --ink-2:      #0C111E;   /* raised dark surface */
  --ink-3:      #121A2C;   /* cards */
  --line:       rgba(255,255,255,.10);

  --blue:       #1E5BFF;   /* electric royal blue (logo) */
  --blue-2:     #4D8BFF;   /* lighter blue */
  --blue-deep:  #0B2C8A;
  --accent:     #FF6B1F;   /* energetic orange CTA */
  --accent-2:   #FF8A3D;

  --paper:      #F4F6FB;   /* light section bg */
  --paper-ink:  #0B1020;   /* text on light */
  --paper-soft: #54607A;

  --white:      #FFFFFF;
  --fg:         #E9EEFB;   /* default text on dark */
  --muted:      #93A0BE;   /* muted text on dark */

  /* type */
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;

  /* layout */
  --pad: clamp(1.15rem, 5vw, 6rem);
  --maxw: 1480px;
  --r: 22px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  font-family:var(--body);
  background:var(--ink);
  color:var(--fg);
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img,video{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; background:none; border:none; cursor:pointer; }
ul{ list-style:none; }
::selection{ background:var(--blue); color:#fff; }

h1,h2,h3{ font-family:var(--display); font-weight:800; line-height:1.04; letter-spacing:-.02em; }

/* ---------- grain + cursor ---------- */
.grain{
  position:fixed; inset:0; z-index:2; pointer-events:none; opacity:.05; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cursor{ position:fixed; top:0; left:0; z-index:9999; pointer-events:none; mix-blend-mode:difference; opacity:0; transition:opacity .3s; }
.cursor-dot,.cursor-ring{ position:absolute; border-radius:50%; transform:translate(-50%,-50%); }
.cursor-dot{ width:7px; height:7px; background:#fff; }
.cursor-ring{ width:38px; height:38px; border:1.5px solid #fff; transition:width .25s var(--ease), height .25s var(--ease), background .25s; }
.cursor.is-hover .cursor-ring{ width:60px; height:60px; background:rgba(255,255,255,.12); }
body.cursor-on{ cursor:none; }
body.cursor-on a, body.cursor-on button{ cursor:none; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:.6em;
  font-family:var(--display); font-weight:700; font-size:1rem;
  padding:1.05em 1.6em; border-radius:100px;
  letter-spacing:-.01em; cursor:pointer;
  transition:transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
  will-change:transform;
}
.btn svg{ width:1.2em; height:1.2em; fill:none; stroke:currentColor; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; }
.btn-accent{ background:var(--accent); color:#1a0d03; box-shadow:0 10px 30px -10px rgba(255,107,31,.7); }
.btn-accent:hover{ background:var(--accent-2); transform:translateY(-2px); box-shadow:0 16px 40px -12px rgba(255,107,31,.85); }
.btn-ghost{ background:transparent; color:var(--fg); border:1.5px solid var(--line); }
.btn-ghost:hover{ border-color:var(--blue-2); color:#fff; background:rgba(30,91,255,.12); }
.btn-block{ width:100%; justify-content:center; }

/* ====================== HEADER ====================== */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:1.05rem var(--pad);
  transition:background .35s, padding .35s, border-color .35s, backdrop-filter .35s;
  border-bottom:1px solid transparent;
}
.site-header.scrolled{
  background:rgba(7,10,18,.72); backdrop-filter:blur(14px) saturate(140%);
  border-bottom-color:var(--line); padding-top:.7rem; padding-bottom:.7rem;
}
.brand{ display:flex; align-items:center; gap:.7rem; }
.brand-mark{ width:42px; height:42px; border-radius:50%; overflow:hidden; flex:none; border:1.5px solid rgba(255,255,255,.18); box-shadow:0 0 0 3px rgba(30,91,255,.18); }
.brand-mark img{ width:100%; height:100%; object-fit:cover; object-position:55% 50%; transform:scale(1.5); }
.brand-text{ display:flex; flex-direction:column; line-height:1; }
.brand-name{ font-family:var(--display); font-weight:800; font-size:1.32rem; letter-spacing:-.02em; }
.brand-comma{ color:var(--blue-2); }
.brand-sub{ font-size:.62rem; letter-spacing:.32em; text-transform:uppercase; color:var(--muted); margin-top:.32em; }

.header-actions{ display:flex; align-items:center; gap:.9rem; }
.header-phone{ display:inline-flex; align-items:center; gap:.5rem; font-weight:600; font-size:.95rem; color:var(--fg); transition:color .25s; }
.header-phone svg{ width:1.05rem; height:1.05rem; fill:currentColor; }
.header-phone:hover{ color:var(--blue-2); }
.header-cta{ padding:.7em 1.25em; font-size:.92rem; }

.menu-toggle{ width:46px; height:46px; border-radius:50%; border:1.5px solid var(--line); display:grid; place-content:center; gap:5px; transition:border-color .25s, background .25s; }
.menu-toggle span{ display:block; width:20px; height:2px; background:#fff; border-radius:2px; transition:transform .35s var(--ease), opacity .25s; }
.menu-toggle:hover{ border-color:var(--blue-2); background:rgba(30,91,255,.1); }
body.nav-open .menu-toggle span:nth-child(1){ transform:translateY(3.5px) rotate(45deg); }
body.nav-open .menu-toggle span:nth-child(2){ transform:translateY(-3.5px) rotate(-45deg); }

/* ====================== NAV OVERLAY ====================== */
.nav-overlay{
  position:fixed; inset:0; z-index:90;
  background:linear-gradient(160deg,#0a1330,#070a12 60%);
  display:flex; align-items:center;
  clip-path:circle(0% at calc(100% - 60px) 44px);
  transition:clip-path .7s var(--ease);
  visibility:hidden;
}
body.nav-open .nav-overlay{ clip-path:circle(150% at calc(100% - 60px) 44px); visibility:visible; }
.nav-comma{
  position:absolute; right:-4vw; bottom:-22vh; font-family:var(--display); font-weight:800;
  font-size:80vh; line-height:.7; color:var(--blue); opacity:.16; pointer-events:none; user-select:none;
}
.nav-inner{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 var(--pad); }
.nav-links{ display:flex; flex-direction:column; gap:.1rem; }
.nav-links li{ overflow:hidden; }
.nav-links a{
  display:inline-flex; align-items:baseline; gap:1rem;
  font-family:var(--display); font-weight:800; letter-spacing:-.03em;
  font-size:clamp(2.4rem,8vw,6.5rem); line-height:1.14; color:var(--fg);
  padding:.16em 0 .22em; transform:translateY(125%);
  transition:transform .7s var(--ease), color .3s;
}
.nav-links a::before{ content:attr(data-num); font-family:var(--body); font-weight:600; font-size:.95rem; color:var(--blue-2); align-self:flex-start; margin-top:.7em; }
body.nav-open .nav-links a{ transform:translateY(0); }
.nav-links li:nth-child(1) a{ transition-delay:.10s; }
.nav-links li:nth-child(2) a{ transition-delay:.16s; }
.nav-links li:nth-child(3) a{ transition-delay:.22s; }
.nav-links li:nth-child(4) a{ transition-delay:.28s; }
.nav-links li:nth-child(5) a{ transition-delay:.34s; }
.nav-links li:nth-child(6) a{ transition-delay:.40s; }
.nav-links a:hover{ color:var(--blue-2); }
.nav-foot{ display:flex; flex-wrap:wrap; gap:2.2rem 3rem; margin-top:clamp(2rem,5vh,4rem); opacity:0; transition:opacity .5s .45s; }
body.nav-open .nav-foot{ opacity:1; }
.nav-foot-label{ display:block; font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; color:var(--muted); margin-bottom:.35rem; }
.nav-foot a{ font-weight:600; font-size:1.05rem; transition:color .25s; }
.nav-foot a:hover{ color:var(--blue-2); }

/* ====================== HERO ====================== */
.hero{ position:relative; min-height:100svh; padding:clamp(7rem,14vh,11rem) var(--pad) 0; overflow:hidden; display:flex; flex-direction:column; }
.hero-glow{ position:absolute; top:-20%; right:-10%; width:70vw; height:70vw; max-width:900px; max-height:900px;
  background:radial-gradient(circle, rgba(30,91,255,.55), rgba(30,91,255,0) 62%); filter:blur(20px); pointer-events:none; }
.hero-comma{
  position:absolute; left:-3vw; top:8%; font-family:var(--display); font-weight:800;
  font-size:min(78vh,68vw); line-height:.62; color:var(--blue);
  opacity:.13; pointer-events:none; user-select:none; z-index:0;
  text-shadow:0 0 80px rgba(30,91,255,.5);
}
.hero-grid{
  position:relative; z-index:3; flex:1;
  width:100%; max-width:var(--maxw); margin:0 auto;
  display:grid; grid-template-columns:1.15fr .85fr; gap:clamp(2rem,5vw,5rem); align-items:center;
}
.hero-copy{ max-width:42rem; }
.kicker{
  display:inline-flex; align-items:center; gap:.6rem; flex-wrap:wrap;
  font-size:clamp(.72rem,1.4vw,.85rem); font-weight:600; letter-spacing:.12em; text-transform:uppercase;
  color:var(--muted); margin-bottom:1.4rem;
}
.live-dot{ width:8px; height:8px; border-radius:50%; background:var(--accent); box-shadow:0 0 0 0 rgba(255,107,31,.6); animation:pulse 2s infinite; }
@keyframes pulse{ 0%{ box-shadow:0 0 0 0 rgba(255,107,31,.55);} 70%{ box-shadow:0 0 0 12px rgba(255,107,31,0);} 100%{ box-shadow:0 0 0 0 rgba(255,107,31,0);} }

.hero-title{ font-size:clamp(2.9rem,9vw,7.4rem); line-height:1.06; letter-spacing:-.035em; margin:0 0 1.6rem; }
.hero-title .line{ display:block; padding:.07em 0; }
.hero-title .line-in{ display:inline-block; }
.hero-title .vir{ color:var(--blue-2); display:inline-block; }
.hero-title .line:nth-child(2),
.hero-title .line:nth-child(3){ color:var(--muted); }
.hero-title .line:nth-child(3){ color:#fff; }

.hero-lead{ font-size:clamp(1.02rem,1.6vw,1.22rem); color:var(--muted); max-width:34rem; margin-bottom:2.1rem; }
.hero-lead strong{ color:#fff; font-weight:600; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:.9rem; margin-bottom:1.5rem; }
.hero-note{ font-size:.92rem; color:var(--muted); }
.hero-note a{ color:var(--blue-2); font-weight:600; border-bottom:1px solid rgba(77,139,255,.4); }
.hero-note a:hover{ color:#fff; }

/* hero visual */
.hero-visual{ position:relative; justify-self:end; width:100%; max-width:420px; aspect-ratio:4/5; }
.hero-video-frame{ position:relative; width:100%; height:100%; border-radius:var(--r); overflow:hidden; border:1px solid var(--line); box-shadow:0 40px 80px -30px rgba(0,0,0,.8); }
.hero-video-frame video{ width:100%; height:100%; object-fit:cover; object-position:center; }
.hero-video-scrim{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(7,10,18,.1) 40%, rgba(7,10,18,.55)); }
.hero-chip{ position:absolute; background:rgba(12,17,30,.8); backdrop-filter:blur(10px); border:1px solid var(--line); border-radius:16px; padding:.7rem 1rem; display:flex; flex-direction:column; gap:.1rem; box-shadow:0 18px 40px -20px rgba(0,0,0,.8); }
.chip-rating{ left:-1.4rem; top:9%; font-size:.78rem; color:var(--muted); }
.chip-rating .stars{ color:var(--accent); font-size:1rem; letter-spacing:1px; }
.chip-tag{ right:-1rem; bottom:7%; background:var(--blue); border-color:rgba(255,255,255,.25); color:#fff; }
.chip-big{ font-family:var(--display); font-weight:800; font-size:1.35rem; line-height:1; }
.chip-tag span:last-child{ font-size:.78rem; opacity:.85; }

/* hero winners marquee */
.hero-winners{ position:relative; z-index:3; margin-top:auto; padding:1.6rem 0 1.4rem; border-top:1px solid var(--line); overflow:hidden; mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.winners-track{ display:flex; white-space:nowrap; gap:.4rem; width:max-content; animation:scrollX 38s linear infinite; font-weight:500; color:var(--muted); }
.winners-label{ color:var(--blue-2); font-weight:600; }
@keyframes scrollX{ to{ transform:translateX(-50%);} }

/* ====================== MARQUEE BAND ====================== */
.marquee{ overflow:hidden; padding:1.1rem 0; }
.marquee-blue{ background:var(--blue); color:#fff; }
.marquee-track{ display:flex; width:max-content; white-space:nowrap; animation:scrollX 30s linear infinite; }
.marquee-track span{ font-family:var(--display); font-weight:800; font-size:clamp(1.5rem,4vw,2.8rem); letter-spacing:-.02em; text-transform:uppercase; }
.marquee-track em{ color:rgba(255,255,255,.55); font-style:normal; padding:0 .35em; }

/* ====================== sections shared ====================== */
.section-tag{ display:inline-flex; align-items:center; gap:.5rem; font-size:.78rem; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:var(--blue-2); margin-bottom:1.4rem; }
.section-tag span{ font-family:var(--display); font-weight:800; font-size:1.6em; line-height:0; transform:translateY(.18em); }
.section-tag.light{ color:var(--blue); }
.hl{ color:var(--blue-2); }

/* ====================== MANIFESTO ====================== */
.manifesto{ position:relative; padding:clamp(5rem,11vh,9rem) var(--pad); max-width:var(--maxw); margin:0 auto; }
.manifesto-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(2rem,6vw,6rem); align-items:center; }
.manifesto-figure{ position:relative; }
.frame-photo{ border-radius:var(--r); overflow:hidden; border:1px solid var(--line); box-shadow:0 40px 90px -40px rgba(0,0,0,.8); }
.frame-photo img{ width:100%; height:auto; }
.figure-badge{
  position:absolute; right:-1rem; bottom:1.6rem;
  background:var(--blue); color:#fff; border-radius:16px; padding:.8rem 1.1rem;
  display:flex; flex-direction:column; line-height:1.1; box-shadow:0 18px 40px -18px rgba(30,91,255,.8);
  font-size:.78rem;
}
.figure-badge span{ font-family:var(--display); font-weight:800; font-size:1.25rem; }
.manifesto-copy h2{ font-size:clamp(2.2rem,5vw,4.2rem); margin:.4rem 0 1.4rem; }
.manifesto-copy .lead{ font-size:clamp(1.05rem,1.7vw,1.3rem); color:#fff; margin-bottom:1.1rem; }
.manifesto-copy p{ color:var(--muted); max-width:38rem; }
.manifesto-points{ display:grid; grid-template-columns:repeat(2,1fr); gap:.8rem 1.4rem; margin-top:2rem; }
.manifesto-points li{ display:flex; align-items:baseline; gap:.6rem; font-weight:500; color:var(--fg); }
.manifesto-points strong{ color:#fff; }
.pt-comma{ font-family:var(--display); font-weight:800; color:var(--blue-2); font-size:1.5em; line-height:0; transform:translateY(.16em); }

/* ====================== STATS ====================== */
.stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.stat{ background:var(--ink); padding:clamp(2rem,4vw,3.4rem) clamp(1.2rem,3vw,2.4rem); display:flex; flex-direction:column; gap:.6rem; }
.stat-num{ font-family:var(--display); font-weight:800; font-size:clamp(2.6rem,6vw,4.6rem); line-height:1; letter-spacing:-.03em; color:#fff; display:flex; align-items:baseline; gap:.12em; }
.stat-plus{ color:var(--blue-2); font-size:.42em; }
.stat-label{ color:var(--muted); font-size:.95rem; line-height:1.45; }
.stat-label strong{ color:#fff; }

/* ====================== FORMATIONS ====================== */
.formations{ background:var(--paper); color:var(--paper-ink); padding:clamp(5rem,11vh,9rem) var(--pad); position:relative; }
.formations-head{ max-width:var(--maxw); margin:0 auto clamp(2.5rem,5vw,4rem); }
.formations-head h2{ font-size:clamp(2.2rem,6vw,5rem); color:var(--paper-ink); margin-bottom:1.2rem; }
.formations-intro{ color:var(--paper-soft); max-width:34rem; font-size:1.05rem; }
.formations-list{ max-width:var(--maxw); margin:0 auto; position:relative; border-top:1.5px solid rgba(11,16,32,.14); }
.form-row{
  display:grid; grid-template-columns:auto 1fr auto auto; align-items:center; gap:clamp(1rem,3vw,2.6rem);
  padding:clamp(1.4rem,3vw,2.3rem) .4rem; border-bottom:1.5px solid rgba(11,16,32,.14);
  position:relative; cursor:pointer; transition:padding-left .4s var(--ease), color .3s;
}
.form-row::after{ content:""; position:absolute; left:0; bottom:-1.5px; height:1.5px; width:0; background:var(--blue); transition:width .5s var(--ease); }
.form-row:hover{ padding-left:1.4rem; }
.form-row:hover::after{ width:100%; }
.form-num{ font-family:var(--display); font-weight:700; font-size:1rem; color:var(--blue); opacity:.6; }
.form-main h3{ font-size:clamp(1.4rem,3vw,2.3rem); color:var(--paper-ink); display:flex; flex-wrap:wrap; align-items:baseline; gap:.5rem .9rem; line-height:1.1; }
.form-tag{ font-family:var(--body); font-weight:600; font-size:.74rem; letter-spacing:.04em; text-transform:uppercase; color:var(--blue); background:rgba(30,91,255,.1); padding:.34em .7em; border-radius:100px; }
.form-main p{ color:var(--paper-soft); margin-top:.5rem; max-width:46ch; font-size:.97rem; }
.form-price{ text-align:right; white-space:nowrap; display:flex; flex-direction:column; }
.form-price .price{ font-family:var(--display); font-weight:800; font-size:clamp(1.2rem,2.4vw,1.7rem); color:var(--paper-ink); }
.form-price .per{ font-size:.8rem; color:var(--paper-soft); }
.form-arrow{ width:30px; height:30px; fill:none; stroke:var(--paper-ink); stroke-width:2; stroke-linecap:round; stroke-linejoin:round; opacity:.25; transition:opacity .3s, transform .3s var(--ease); }
.form-row:hover .form-arrow{ opacity:1; transform:translate(3px,-3px); color:var(--blue); stroke:var(--blue); }

.form-preview{
  position:fixed; top:0; left:0; width:300px; aspect-ratio:4/5; border-radius:16px; overflow:hidden;
  pointer-events:none; z-index:60; opacity:0; transform:translate(-50%,-50%) scale(.85);
  transition:opacity .3s var(--ease), transform .3s var(--ease); box-shadow:0 30px 70px -20px rgba(0,0,0,.55);
  border:3px solid #fff;
}
.form-preview.show{ opacity:1; transform:translate(-50%,-50%) scale(1); }
.form-preview img{ width:100%; height:100%; object-fit:cover; object-position:center 30%; }

/* ====================== RÉUSSITES (gallery) ====================== */
.reussites{ padding:clamp(5rem,11vh,9rem) var(--pad); max-width:var(--maxw); margin:0 auto; }
.reussites-head{ display:flex; flex-wrap:wrap; justify-content:space-between; align-items:flex-end; gap:1.5rem; margin-bottom:clamp(2.2rem,5vw,3.6rem); }
.reussites-head h2{ font-size:clamp(2.2rem,6vw,5rem); }
.reussites-intro{ color:var(--muted); max-width:30rem; }

.gallery{ column-count:4; column-gap:1.1rem; }
.g-item{ position:relative; break-inside:avoid; margin-bottom:1.1rem; border-radius:16px; overflow:hidden; border:1px solid var(--line); background:var(--ink-2); }
.g-item img,.g-item video{ width:100%; height:auto; display:block; transition:transform .6s var(--ease), filter .5s; }
.g-item.is-video video{ aspect-ratio:9/16; object-fit:cover; }
.g-item figcaption{
  position:absolute; left:0; right:0; bottom:0; padding:1.4rem .9rem .8rem;
  display:flex; flex-direction:column; line-height:1.15;
  background:linear-gradient(transparent, rgba(7,10,18,.88));
  transform:translateY(8px); opacity:0; transition:transform .4s var(--ease), opacity .4s;
}
.g-name{ font-family:var(--display); font-weight:800; font-size:1.15rem; }
.g-sub{ font-size:.8rem; color:var(--blue-2); font-weight:600; }
.g-item:hover img,.g-item:hover video{ transform:scale(1.05); }
.g-item:hover figcaption{ transform:translateY(0); opacity:1; }

/* ====================== TÉMOIGNAGES ====================== */
.temoignages{ position:relative; background:linear-gradient(180deg,#0a1024,#070a12); padding:clamp(5rem,11vh,9rem) var(--pad); overflow:hidden; }
.temo-comma{ position:absolute; right:-2vw; top:-12vh; font-family:var(--display); font-weight:800; font-size:60vh; line-height:.6; color:var(--blue); opacity:.1; pointer-events:none; }
.temo-head{ position:relative; max-width:var(--maxw); margin:0 auto clamp(2.5rem,5vw,4rem); }
.temo-head h2{ font-size:clamp(2rem,5vw,4.2rem); }
.temo-grid{ position:relative; max-width:var(--maxw); margin:0 auto; display:grid; grid-template-columns:repeat(2,1fr); gap:1.2rem; }
.temo-card{
  background:rgba(18,26,44,.7); border:1px solid var(--line); border-radius:var(--r);
  padding:clamp(1.6rem,3vw,2.6rem); display:flex; flex-direction:column; justify-content:space-between; gap:1.6rem;
  backdrop-filter:blur(6px);
}
.temo-card.feature{ background:var(--blue); border-color:rgba(255,255,255,.2); color:#fff; box-shadow:0 30px 70px -30px rgba(30,91,255,.7); }
.temo-card p{ font-family:var(--display); font-weight:500; font-size:clamp(1.1rem,2vw,1.5rem); line-height:1.4; letter-spacing:-.01em; color:#fff; }
.temo-card footer{ display:flex; align-items:center; gap:.9rem; flex-wrap:wrap; }
.temo-card .stars{ color:var(--accent); letter-spacing:1px; }
.temo-card.feature .stars{ color:#fff; }
.temo-card cite{ font-style:normal; font-size:.88rem; color:var(--muted); font-weight:500; }
.temo-card.feature cite{ color:rgba(255,255,255,.85); }

/* ====================== ZONES ====================== */
.zones{ text-align:center; padding:clamp(4.5rem,9vh,7rem) var(--pad); overflow:hidden; }
.zones-pre{ font-size:.85rem; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); margin-bottom:1.5rem; }
.zones-line{ font-family:var(--display); font-weight:800; font-size:clamp(2.6rem,11vw,9rem); line-height:1.14; letter-spacing:-.03em; display:flex; flex-wrap:wrap; justify-content:center; align-items:baseline; gap:0 .25em; padding:.1em 0; }
.zones-line span{ color:#fff; }
.zones-line em{ color:var(--blue); font-style:normal; }
.zones-sub{ color:var(--muted); margin-top:1.5rem; font-size:1.02rem; }
.zones-sub strong{ color:#fff; }

/* ====================== CONTACT ====================== */
.contact{ position:relative; padding:clamp(5rem,11vh,9rem) var(--pad); overflow:hidden; }
.contact-glow{ position:absolute; left:50%; top:0; transform:translateX(-50%); width:90vw; max-width:1100px; height:500px; background:radial-gradient(ellipse at top, rgba(30,91,255,.4), transparent 65%); pointer-events:none; }
.contact-grid{ position:relative; z-index:2; max-width:var(--maxw); margin:0 auto; display:grid; grid-template-columns:1fr .9fr; gap:clamp(2.5rem,6vw,6rem); align-items:start; }
.contact-copy h2{ font-size:clamp(2.4rem,6vw,5rem); margin:.4rem 0 1.3rem; }
.vir-lg{ color:var(--blue-2); }
.contact-lead{ color:var(--muted); max-width:32rem; margin-bottom:2.2rem; font-size:1.05rem; }
.contact-direct{ display:flex; flex-direction:column; gap:.8rem; }
.contact-pill{
  display:flex; align-items:center; gap:1rem; padding:1rem 1.3rem; border-radius:16px;
  background:var(--ink-2); border:1px solid var(--line); transition:border-color .25s, transform .25s var(--ease), background .25s;
  font-weight:600;
}
.contact-pill svg{ width:1.4rem; height:1.4rem; flex:none; fill:none; stroke:var(--blue-2); stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.contact-pill span{ display:flex; flex-direction:column; line-height:1.2; word-break:break-word; }
.pill-label{ font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); font-weight:600; }
.contact-pill:hover{ border-color:var(--blue-2); transform:translateX(4px); background:rgba(30,91,255,.1); }

.contact-form{ background:var(--ink-2); border:1px solid var(--line); border-radius:var(--r); padding:clamp(1.6rem,3vw,2.4rem); box-shadow:0 40px 90px -40px rgba(0,0,0,.9); }
.field{ margin-bottom:1.1rem; }
.field label{ display:block; font-size:.82rem; font-weight:600; letter-spacing:.04em; color:var(--muted); margin-bottom:.5rem; }
.field .opt{ font-weight:400; text-transform:none; letter-spacing:0; opacity:.7; }
.field input,.field textarea,.field select{
  width:100%; background:rgba(255,255,255,.04); border:1.5px solid var(--line); border-radius:12px;
  padding:.9rem 1rem; color:#fff; font-family:var(--body); font-size:1rem; transition:border-color .25s, background .25s;
}
.field textarea{ resize:vertical; min-height:84px; }
.field input::placeholder,.field textarea::placeholder{ color:rgba(147,160,190,.6); }
.field input:focus,.field textarea:focus,.field select:focus{ outline:none; border-color:var(--blue); background:rgba(30,91,255,.07); }
.select-wrap{ position:relative; }
.select-wrap select{ appearance:none; cursor:pointer; }
.select-wrap svg{ position:absolute; right:1rem; top:50%; transform:translateY(-50%); width:1.1rem; height:1.1rem; fill:none; stroke:var(--blue-2); stroke-width:2; stroke-linecap:round; stroke-linejoin:round; pointer-events:none; }
.select-wrap option{ background:var(--ink-2); color:#fff; }
.form-hint{ font-size:.8rem; color:var(--muted); margin-top:.9rem; line-height:1.5; }

/* ====================== FOOTER ====================== */
.site-footer{ border-top:1px solid var(--line); padding:clamp(3rem,6vw,5rem) var(--pad) 2rem; }
.footer-top{ max-width:var(--maxw); margin:0 auto; display:grid; grid-template-columns:1.4fr 1fr 1.2fr; gap:2.5rem; align-items:start; }
.footer-brand{ display:flex; flex-direction:column; gap:1.2rem; }
.footer-logo{ width:60px; height:60px; border-radius:50%; overflow:hidden; border:1.5px solid var(--line); }
.footer-logo img{ width:100%; height:100%; object-fit:cover; object-position:55% 50%; transform:scale(1.5); }
.footer-tag{ font-family:var(--display); font-weight:500; font-size:1.15rem; line-height:1.4; color:var(--fg); max-width:24rem; }
.footer-tag .vir{ color:var(--blue-2); }
.footer-nav{ display:flex; flex-direction:column; gap:.7rem; }
.footer-nav a{ color:var(--muted); width:fit-content; transition:color .25s; }
.footer-nav a:hover{ color:#fff; }
.footer-contact{ display:flex; flex-direction:column; gap:.7rem; }
.footer-contact a{ color:var(--fg); font-weight:500; width:fit-content; transition:color .25s; }
.footer-contact a:hover{ color:var(--blue-2); }
.footer-zones{ color:var(--muted); font-size:.88rem; margin-top:.4rem; }
.footer-bottom{ max-width:var(--maxw); margin:clamp(2.5rem,5vw,4rem) auto 0; padding-top:1.6rem; border-top:1px solid var(--line); display:flex; justify-content:space-between; align-items:center; gap:1rem; flex-wrap:wrap; color:var(--muted); font-size:.85rem; }
.footer-bottom .credit{ color:var(--fg); font-weight:600; text-decoration:none; background-image:linear-gradient(var(--blue-2),var(--blue-2)); background-size:0% 1px; background-position:0 100%; background-repeat:no-repeat; transition:color .25s, background-size .25s; }
.footer-bottom .credit:hover{ color:var(--blue-2); background-size:100% 1px; }
.to-top{ display:inline-flex; align-items:center; gap:.5rem; font-weight:600; color:var(--fg); transition:color .25s; }
.to-top svg{ width:1.05rem; height:1.05rem; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.to-top:hover{ color:var(--blue-2); }

/* ====================== TOAST ====================== */
.toast{
  position:fixed; left:50%; bottom:2rem; transform:translate(-50%,160%);
  background:var(--blue); color:#fff; padding:1rem 1.4rem; border-radius:14px; font-weight:600;
  box-shadow:0 20px 50px -15px rgba(30,91,255,.8); z-index:9000; max-width:90vw; text-align:center;
  transition:transform .5s var(--ease); display:flex; align-items:center; gap:.6rem;
}
.toast.show{ transform:translate(-50%,0); }

/* ====================== REVEAL ====================== */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform:none; }

/* hero title lines initial state for JS stagger */
.hero-title .line-in{ opacity:0; transform:translateY(.5em) rotate(1.5deg); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.hero-title.in .line-in{ opacity:1; transform:none; }
.hero-title .line:nth-child(1) .line-in{ transition-delay:.05s; }
.hero-title .line:nth-child(2) .line-in{ transition-delay:.18s; }
.hero-title .line:nth-child(3) .line-in{ transition-delay:.31s; }

/* ====================== RESPONSIVE ====================== */
@media (max-width:1080px){
  .gallery{ column-count:3; }
  .hero-grid{ grid-template-columns:1fr; gap:2.5rem; }
  .hero-visual{ justify-self:start; max-width:340px; }
  .hero-comma{ font-size:min(60vh,80vw); opacity:.1; }
  .manifesto-grid{ grid-template-columns:1fr; }
  .manifesto-figure{ max-width:460px; }
  .contact-grid{ grid-template-columns:1fr; }
}
@media (max-width:760px){
  .header-phone{ display:none; }
  .header-cta{ display:none; }
  .stats{ grid-template-columns:repeat(2,1fr); }
  .temo-grid{ grid-template-columns:1fr; }
  .gallery{ column-count:2; column-gap:.8rem; }
  .g-item{ margin-bottom:.8rem; }
  .g-item figcaption{ transform:translateY(0); opacity:1; }
  .form-row{ grid-template-columns:auto 1fr; grid-template-areas:"num main" "price price"; gap:.4rem 1rem; }
  .form-num{ grid-area:num; }
  .form-main{ grid-area:main; }
  .form-price{ grid-area:price; flex-direction:row; align-items:baseline; gap:.5rem; text-align:left; margin-top:.3rem; }
  .form-arrow{ display:none; }
  .form-row:hover{ padding-left:.4rem; }
  .manifesto-points{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns:1fr; gap:2rem; }
  .figure-badge{ right:.6rem; }
}
@media (max-width:430px){
  .brand-sub{ display:none; }
  .gallery{ column-count:1; }
  .zones-line{ font-size:clamp(2.6rem,15vw,4rem); }
}

/* ====================== REDUCED MOTION ====================== */
@media (prefers-reduced-motion:reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
  .reveal{ opacity:1; transform:none; }
  .hero-title .line-in{ opacity:1; transform:none; }
  .winners-track,.marquee-track{ animation:none; }
  .cursor{ display:none; }
}
