/* =========================
   WhiteBlend — styles.css
   Hero simple + Enter (right scroll)
   ========================= */

/* Reset */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body{
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
  background: #f6f7f8;
  color: rgba(10,10,12,0.92);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

/* Tokens */
:root{
  --container: 1120px;
  --pad: clamp(16px, 3vw, 22px);

  --muted: rgba(10,10,12,0.56);

  --glass: rgba(255,255,255,0.55);
  --glass-2: rgba(255,255,255,0.78);
  --blur: 22px;

  --shadow: 0 18px 50px rgba(8,10,20,0.10);

  --title: clamp(2.2rem, 4vw, 4rem);
  --h2: clamp(1.4rem, 2.1vw, 2.1rem);
}

/* Background texture */
body::after{
  content:"";
  position:fixed;
  inset:0;
  background-image: radial-gradient(rgba(0,0,0,0.05) 0.6px, transparent 0.7px);
  background-size: 26px 26px;
  opacity: 0.10;
  pointer-events:none;
  z-index:-1;
}

/* Helpers */
.container{
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin-inline:auto;
}

.section{
  padding: clamp(90px, 12vh, 140px) 0;
}

.section-title{
  font-size: var(--h2);
  margin: 0 0 18px 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.kicker{
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px 0;
}

.muted{ color: var(--muted); }

.micro{
  font-size: 0.9rem;
  color: rgba(10,10,12,0.45);
  margin-top: 24px;
}

.lead{ font-size: 1.08rem; margin:0 0 10px 0; }

/* Liquid Glass */
.glass{
  background: linear-gradient(180deg, var(--glass-2), var(--glass));
  border: 1px solid rgba(10,10,12,0.10);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.7);
  backdrop-filter: blur(var(--blur)) saturate(1.2);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.2);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.glass::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(800px 140px at 15% 0%, rgba(255,255,255,0.7), transparent 55%),
    radial-gradient(600px 120px at 85% 0%, rgba(255,255,255,0.4), transparent 55%);
  opacity: 0.75;
  pointer-events:none;
}
.glass::after{
  content:"";
  position:absolute;
  inset:0;
  background-image: radial-gradient(rgba(0,0,0,0.05) 0.7px, transparent 0.8px);
  background-size: 18px 18px;
  opacity: 0.08;
  pointer-events:none;
}

/* Header / Nav */
.site-header{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 14px 0;
}
.header-inner{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 14px;
}
.brand-logo{ width: 140px; opacity: 0.95; }

@media (max-width: 720px){
  .site-header{ padding: 10px 0; }
  .brand-logo{ width: 112px; }
}

.site-nav{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) scale(1);
  display:flex;
  gap: 6px;
  padding: 10px 10px;
  transition: top 320ms ease, bottom 320ms ease, transform 320ms ease;
}
body.scrolled .site-nav{
  top: 14px;
  bottom: auto;
  transform: translateX(-50%) scale(0.985);
}
.site-nav a{
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.95rem;
  color: rgba(10,10,12,0.85);
  transition: background 220ms ease, transform 220ms ease;
}
.site-nav a:hover{ background: rgba(0,0,0,0.05); transform: translateY(-1px); }
.site-nav a.cta{ background: rgba(0,0,0,0.08); }
												  
.brand__logo{
  height: 42px;
  width: auto;
  display: block;
}

@media (max-width: 720px){
  .site-nav{
    width: calc(100% - 24px);
    left: 12px;
    transform: none;
    justify-content: space-between;
  }
  body.scrolled .site-nav{ left: 12px; transform:none; }
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(10,10,12,0.12);
  font-size: 0.98rem;
  color: rgba(10,10,12,0.88);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 220ms ease, background 220ms ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{ background: rgba(10,10,12,0.10); }
.btn-ghost{ background: rgba(255,255,255,0.35); }

/* HERO simple */
.hero{
  min-height: 100vh;
  display:grid;
  place-items:center;
  position: relative;
  overflow:hidden;
  padding-top: 50px;
}
.hero-inner{ max-width: 72ch; position:relative; z-index:2; }
.hero-title{
  font-size: var(--title);
  line-height: 1.05;
  margin: 0 0 18px 0;
  letter-spacing: -0.02em;
}
.hero-text{ margin:0 0 24px 0; color: rgba(10,10,12,0.70); }
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; }

.hero-media{ position:absolute; inset:0; z-index:1; }
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter: brightness(0.96) contrast(1.02);
  transform: scale(1.05);
  transition: transform 900ms cubic-bezier(.2,.8,.2,1);
}
body.scrolled .hero-media img{ transform: scale(1.02); }
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(246,247,248,0.62), rgba(246,247,248,0.94));
  z-index:1;
}

/* ENTER (right scroll illusion) */
.enter{
  height: calc((var(--panels, 4) + 1) * 100vh); /* driven by panels */
  background: #ffffff;
}
.enter-sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  padding-top: 90px;
  display: grid;
  align-content: start;
}
.enter-head{ position: relative; z-index: 2; }

.enter-viewport{
  margin-top: 22px;
  height: 62vh;
  overflow: hidden;
  position: relative;
}
.enter-track{
  height: 100%;
  display: flex;
  width: calc(var(--panels, 4) * 100vw); /* driven by panels */
  transform: translate3d(calc(var(--enter-x, 0px)), 0, 0);
  transition: transform 60ms linear;
  will-change: transform;
}
.enter-panel{
  width: 100vw;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0 var(--pad);
}
.enter-card{
  width: min(560px, 92vw);
  padding: 22px;
  border-radius: 28px; /* override pill */
  transform:
    translate3d(0,0,0)
    rotateY(calc(var(--card-ry, 0deg)))
    scale(var(--card-scale, 1));
  opacity: var(--card-op, 1);
  transition: transform 80ms linear, opacity 120ms linear;
  will-change: transform, opacity;
}
.enter-card .panel-title{
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 1.12rem;
}
.enter-card p{ margin:0; }

.enter-progress{
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(520px, calc(100% - 44px));
  height: 3px;
  background: rgba(10,10,12,0.10);
  border-radius: 999px;
  overflow: hidden;
}
.enter-bar{
  height: 100%;
  width: 0%;
  background: rgba(10,10,12,0.65);
  border-radius: 999px;
}

/* Intent / What */
.intent-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items:start;
}
@media (max-width: 900px){
  .intent-grid{ grid-template-columns:1fr; gap:18px; }
}

.what-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.what-title{
  margin:0 0 8px 0;
  font-weight:600;
  letter-spacing:-0.01em;
}
@media (max-width: 980px){
  .what-grid{ grid-template-columns: 1fr; }
}

/* Signals timeline */
.signals-timeline{
  position:relative;
  max-width: 72ch;
  margin-top:10px;
  padding-left:22px;
}
.signals-timeline::before{
  content:"";
  position:absolute;
  left:9px; top:6px; bottom:6px;
  width:1px;
  background: rgba(10,10,12,0.12);
}
.signal{
  display:grid;
  grid-template-columns: 22px 1fr;
  gap:16px;
  padding: 10px 0 20px;
}
.signal .dot{
  width: 10px; height: 10px; border-radius: 999px;
  margin-top: 6px;
  background: rgba(10,10,12,0.80);
  box-shadow: 0 0 0 6px rgba(10,10,12,0.06);
}
.signal .title{
  margin:0 0 6px 0;
  font-weight:600;
  letter-spacing:-0.01em;
}
.signal .muted{ margin:0; }

/* Contact */
.contact-cards{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.contact-card{
  padding: 18px;
  border-radius: 28px; /* override pill */
  display:grid;
  gap: 10px;
}
.contact-card strong{
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: rgba(10,10,12,0.92);
}
@media (max-width: 720px){
  .contact-cards{ grid-template-columns:1fr; }
}

/* Footer */
.site-footer{
  padding: 60px 0 120px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.footer-inner{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(10,10,12,0.45);
}
@media (max-width: 720px){
  .footer-inner{ flex-direction: column; align-items:flex-start; }
}

/* Reveal animations */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.reveal[data-reveal="fade"]{ transform:none; }
.reveal[data-reveal="left"]{ transform: translateX(-18px); }
.reveal[data-reveal="right"]{ transform: translateX(18px); }
.reveal[data-reveal="up"]{ transform: translateY(18px); }
.is-visible{ opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1 !important; transform:none !important; transition:none !important; }
  html{ scroll-behavior:auto; }
}

/* Keep anchor jumps comfortable under fixed chrome */
@media (max-width: 720px){
  html{ scroll-padding-top: 74px; }
}


/* =========================
   V3: extra scroll wow (still Apple)
   ========================= */

/* Soft moving light in Enter section */
.enter{
  position: relative;
  overflow: clip;
}
.enter::before{
  content:"";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(520px 320px at var(--spot-x, 40%) 42%,
      rgba(0,0,0,0.06),
      transparent 62%);
  opacity: 0.9;
}

/* Active card highlight */
.enter-card{
  box-shadow: 0 22px 60px rgba(8,10,20,0.10);
}
.enter-card.is-active{
  box-shadow: 0 30px 80px rgba(8,10,20,0.14);
  transform: translate3d(0,-6px,0) rotateY(calc(var(--card-ry, 0deg))) scale(var(--card-scale, 1));
}

/* Magnetic feel for main CTA */
.btn{
  will-change: transform;
}


/* =========================
   V4: Plunge section (Human + AI)
   ========================= */
.plunge{
  height: 320vh;
  background: #ffffff;
  position: relative;
  overflow: clip;
}
.plunge-sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  padding-top: 90px;
  display: grid;
  align-content: start;
}

.plunge-stage{
  margin-top: 22px;
  height: 62vh;
  display: grid;
  place-items: center;
  perspective: 1200px;
  position: relative;
}

.plunge-surface{
  width: min(920px, calc(100% - 44px));
  height: min(460px, 62vh);
  border-radius: 28px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(10,10,12,0.10);
  box-shadow: 0 30px 90px rgba(8,10,20,0.10);
  position: relative;
  overflow: hidden;

  transform-style: preserve-3d;
  transform:
    translate3d(var(--pl-x, 0px), var(--pl-y, 0px), 0px)
    rotateX(var(--pl-rx, 0deg))
    rotateY(var(--pl-ry, 0deg))
    scale(var(--pl-s, 1));
  transition: transform 60ms linear;
  will-change: transform;
}

/* subtle vignette */
.plunge-surface::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(900px 420px at 50% 40%, rgba(0,0,0,0.03), transparent 60%),
    radial-gradient(600px 320px at 20% 10%, rgba(0,0,0,0.02), transparent 55%);
  pointer-events:none;
}

.plunge-lines{
  position: absolute;
  inset: 0;
  padding: 34px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.pl-line{
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  color: rgba(10,10,12,0.82);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 420ms cubic-bezier(.2,.8,.2,1);
}
.pl-line.strong{
  font-weight: 600;
  color: rgba(10,10,12,0.92);
}

.pl-line.is-on{
  opacity: 1;
  transform: none;
}

.plunge-cursor{
  position: absolute;
  left: 34px;
  bottom: 24px;
  font-size: 1.1rem;
  color: rgba(10,10,12,0.35);
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink{ 50%{ opacity: 0; } }

.plunge-progress{
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(520px, calc(100% - 44px));
  height: 3px;
  background: rgba(10,10,12,0.10);
  border-radius: 999px;
  overflow: hidden;
}
.plunge-bar{
  height: 100%;
  width: 0%;
  background: rgba(10,10,12,0.65);
  border-radius: 999px;
}


/* V5: Mobile nav stays bottom */
@media (max-width: 720px){
  body.scrolled .site-nav{
    top: auto;
    bottom: 18px;
    transform: none;
  }
}


/* =========================
   V5: Plunge polish (no doors)
   ========================= */
.plunge-surface{
  background: rgba(255,255,255,0.98);
}
.plunge-surface::after{
  content:"";
  position:absolute;
  inset: 10px;
  border-radius: 22px;
  border: 1px solid rgba(10,10,12,0.06);
  pointer-events:none;
  opacity: 0.7;
}

/* Small screens: keep UI clear + avoid overlaps with bottom nav */
@media (max-width: 720px){
  .enter-progress,
  .plunge-progress{ bottom: 86px; }
  .plunge-stage{ height: 58vh; }
  .plunge-lines{ padding: 22px; }
  .plunge-cursor{ left: 22px; bottom: 18px; }
  .pl-line{ font-size: 1rem; }
}

@media (max-width: 380px){
  .site-nav a{ font-size: 0.88rem; padding: 9px 10px; }
}


.enter--right{ background: #f6f7fb; }


/* =========================
   Mecamat — Garage accents
   ========================= */
:root{
  --garage-blue: rgba(37,99,235,.16);
  --garage-red: rgba(220,38,38,.14);
}

/* subtle technical grid / workshop vibe */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(15,23,42,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .12;
  mask: radial-gradient(circle at 20% 10%, rgba(0,0,0,.9), transparent 60%);
  -webkit-mask: radial-gradient(circle at 20% 10%, rgba(0,0,0,.9), transparent 60%);
  z-index: 0;
}

/* hero: slightly more “garage” */
.hero::before{
  background:
    radial-gradient(900px 560px at 18% 40%, var(--garage-blue), transparent 62%),
    radial-gradient(900px 560px at 70% 55%, var(--garage-red), transparent 65%);
}

/* badges */
.hero__badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 14px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.72);
  font-weight: 800;
  color: rgba(15,23,42,.74);
}

/* give CTA buttons a more “garage” punch (still subtle) */
.btn--primary{
  box-shadow: 0 18px 40px rgba(37,99,235,.18);
}
.btn--call{
  box-shadow: 0 18px 40px rgba(220,38,38,.12);
}

/* active card accent: blue + tiny red corner glow */
.enter-card.is-active,
.card.is-active{
  border-color: rgba(37,99,235,.30) !important;
  box-shadow: 0 34px 90px rgba(37,99,235,.14);
}
.enter-card.is-active::after,
.card.is-active::after{
  content:"";
  position:absolute;
  top: 10px;
  right: 12px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(220,38,38,.50);
  filter: blur(.2px);
  opacity: .55;
}

/* =========================
   Mecamat V11 — Garage theme + fixes
   ========================= */
:root{
  --blue: #3B82F6; /* lighter blue */
  --navy: #0B1224;
  --red: #DC2626;
}

/* Topbar (sticky blue) */
.topbar{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0,0,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 0;
}
.topbar .brand{ color:#fff; }
.brand__dot{
  width:10px;height:10px;border-radius:999px;
  background: rgba(59,130,246,.95);
  box-shadow: 0 0 0 4px rgba(59,130,246,.18);
}
.nav{
  display:none;
  align-items:center;
  gap: 18px;
  font-weight: 800;
}
.nav a{
  color: rgba(255,255,255,.82);
  text-decoration:none;
  padding: 8px 10px;
  border-radius: 999px;
  position:relative;
}
.nav a:hover{ color:#fff; background: rgba(255,255,255,.06); }
.nav a::after{
  content:"";
  position:absolute;
  left: 10px; right:10px; bottom: 6px;
  height:2px; border-radius:2px;
  background: linear-gradient(90deg, rgba(59,130,246,.85), rgba(220,38,38,.55));
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .22s ease;
}
.nav a:hover::after{ transform: scaleX(1); }
@media (min-width: 980px){ .nav{ display:flex; } }

.btn--nav{ padding: 10px 14px; }
.btn--primary{
  background: rgba(59,130,246,.94) !important;
  border-color: rgba(59,130,246,.94) !important;
}
.btn--primary:hover{ background: rgba(37,99,235,.96) !important; }
.btn--call{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.16);
  /*color:#fff;*/
}
.btn--call:hover{ background: rgba(255,255,255,.16); }

/* Hero readability: remove heavy blur/veil */
.hero::after{ opacity: 0 !important; }
.hero .glass, .hero .veil, .hero [data-veil]{ display:none !important; }
.hero:before{ filter:none !important; opacity:.9 !important; }

/* Hero call button readable (if any light bg) */
.hero .btn--xl.btn--call{ color: rgba(15,23,42,.95) !important; background: rgba(255,255,255,.94) !important; border-color: rgba(15,23,42,.14) !important; }

/* Services (garage cards) */
.section--services{
  background:
    radial-gradient(900px 520px at 14% 0%, rgba(59,130,246,.10), transparent 60%),
    radial-gradient(900px 520px at 86% 40%, rgba(220,38,38,.08), transparent 62%);
}
.serviceGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 22px;
}
@media (min-width: 900px){
  .serviceGrid{ grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
  .svc--wide{ grid-column: 1 / -1; }
}
.svc{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 22px 70px rgba(2,6,23,.08);
}
.svc__i{
  width: 44px;height:44px;border-radius: 14px;
  display:grid;place-items:center;
  background: rgba(59,130,246,.10);
  border: 1px solid rgba(59,130,246,.18);
  font-size: 1.15rem;
}
.svc h3{ margin:0 0 6px 0; font-size: 1.05rem; letter-spacing:-.01em; }
.svc p{ margin:0; color: rgba(15,23,42,.68); }
.svc:hover{ transform: translateY(-2px); border-color: rgba(59,130,246,.24); }

/* Contact simple */
.contactSimple{ max-width: 920px; }
.contactSimple__cta{ display:flex; gap: 12px; flex-wrap:wrap; margin-top: 16px; }
.contactSimple__meta{ display:flex; gap: 10px; flex-wrap:wrap; margin-top: 14px; }
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.84);
  font-weight: 800;
  color: rgba(15,23,42,.76);
}

/* Footer 3 columns + visible brand */
.footer__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 900px){
  .footer__grid{ grid-template-columns: 1.2fr 1fr 1fr; }
}
.footer .brand{ color: rgba(15,23,42,.95) !important; }
.footer__bottom{
  display:flex;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(15,23,42,.10);
}

/* FAB mobile only */
@media (min-width: 980px){ .fab{ display:none !important; } }

/* =========================
   V12 — NAV visible + Services WOW (Garage)
   ========================= */
:root{
  --blue:#3B82F6;
  --blue2:#60A5FA;
  --navy:#0B1224;
  --red:#DC2626;
  --bg:#ffffff;
  --text: rgba(15,23,42,.95);
}

/* Nav visibility + mobile drawer */
.navToggle{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:#fff;
}
.navToggle span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  margin: 2px 0;
}
@media (min-width: 980px){
  .navToggle{ display:none; }
}

.nav{
  display:none;
}
@media (min-width: 980px){
  .nav{
    display:flex;
    align-items:center;
    gap: 18px;
  }
  .nav__cta{ display:none; }
}
.topbar__cta{ display:none; }
@media (min-width: 980px){
  .topbar__cta{ display:flex; gap:10px; }
}

/* mobile drawer */
.nav.is-open{
  display:flex;
  flex-direction: column;
  position: fixed;
  inset: 70px 12px auto 12px;
  background: rgba(11,18,36,.96);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 14px;
  gap: 10px;
  z-index: 1000;
  box-shadow: 0 30px 120px rgba(0,0,0,.35);
}
.nav.is-open a{
  padding: 12px 12px;
  border-radius: 14px;
}
.nav.is-open .nav__cta{
  display:flex;
  gap:10px;
  margin-top: 6px;
}
.nav.is-open .btn--nav{ width: 100%; justify-content:center; }

/* Services WOW */
.section--services{
  position: relative;
  background:
    radial-gradient(800px 520px at 18% 0%, rgba(96,165,250,.18), transparent 60%),
    radial-gradient(900px 560px at 90% 40%, rgba(220,38,38,.10), transparent 62%),
    linear-gradient(to bottom, rgba(15,23,42,.02), rgba(15,23,42,0));
}
.section--services::before{
  content:"";
  position:absolute;
  inset: 0;
  pointer-events:none;
  background:
    linear-gradient(to right, rgba(15,23,42,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .10;
  mask: radial-gradient(circle at 20% 0%, rgba(0,0,0,.85), transparent 62%);
  -webkit-mask: radial-gradient(circle at 20% 0%, rgba(0,0,0,.85), transparent 62%);
}

.servicesWow{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 22px;
}
@media (min-width: 980px){
  .servicesWow{
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.svcCard{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  padding: 18px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 22px 80px rgba(2,6,23,.10);
  transform: translateY(0);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  position: relative;
  overflow:hidden;
}
.svcCard::after{
  content:"";
  position:absolute;
  inset:-1px;
  background: linear-gradient(120deg, rgba(96,165,250,.22), transparent 45%, rgba(220,38,38,.12));
  opacity: .0;
  transition: opacity .22s ease;
  pointer-events:none;
}
.svcCard:hover{
  transform: translateY(-2px);
  border-color: rgba(59,130,246,.26);
  box-shadow: 0 28px 110px rgba(2,6,23,.14);
}
.svcCard:hover::after{ opacity: 1; }

.svcCard__icon{
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(59,130,246,.10);
  border: 1px solid rgba(59,130,246,.18);
  font-size: 1.2rem;
  flex: 0 0 auto;
}
.svcCard--red .svcCard__icon{
  background: rgba(220,38,38,.10);
  border-color: rgba(220,38,38,.18);
}
.svcCard__body h3{
  margin:0 0 6px 0;
  letter-spacing: -.01em;
}
.svcCard__body p{ margin:0; color: rgba(15,23,42,.70); }

.svcCard__chips{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-top: 12px;
}
.chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.70);
  font-weight: 800;
  color: rgba(15,23,42,.74);
  font-size: .85rem;
}

/* Banner CTA */
.servicesBanner{
  margin-top: 18px;
  border-radius: 22px;
  padding: 18px 18px;
  background: rgba(11,18,36,.92);
  border: 1px solid rgba(255,255,255,.10);
  display:flex;
  gap: 14px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  box-shadow: 0 30px 120px rgba(0,0,0,.22);
}
.servicesBanner h3{ margin:0 0 4px 0; color:#fff; }
.servicesBanner p{ margin:0; color: rgba(255,255,255,.72); }
.servicesBanner__cta{ display:flex; gap:10px; flex-wrap:wrap; }
.servicesBanner .btn--call{
  background: rgba(255,255,255,.92);
  color: rgba(15,23,42,.95);
  border-color: rgba(255,255,255,.18);
}
.servicesBanner .btn--call:hover{ background:#fff; }

/* Keep WhatsApp fab on mobile only, bottom-right */
.fab{
  right: 16px !important;
  left: auto !important;
}



/* =========================
   V13 — More GARAGE (less agency) + fixes
   ========================= */
:root{
  --blue:#3B82F6;
  --blue2:#60A5FA;
  --navy:#0B1224;
  --steel:#0f172a;
  --red:#DC2626;
  --paper:#ffffff;
}

/* Global garage feel: subtle workshop grid + vignette */
body{
  background: var(--paper);
}
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events:none;
  background:
    linear-gradient(to right, rgba(15,23,42,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,.06) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: .08;
  mask: radial-gradient(circle at 25% 10%, rgba(0,0,0,.9), transparent 62%);
  -webkit-mask: radial-gradient(circle at 25% 10%, rgba(0,0,0,.9), transparent 62%);
  z-index: 0;
}

/* NAV: visible styling (desktop links + mobile drawer) */
.topbar{ background: rgba(0,0,255,.94) !important; }
.nav{ display:none; }
.nav a{
  color: rgba(255,255,255,.86);
  text-decoration:none;
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.nav a:hover{
  background: rgba(255,255,255,.08);
  color:#fff;
  transform: translateY(-1px);
}
.nav a::after{
  content:"";
  display:block;
  height:2px;
  margin-top:6px;
  border-radius:2px;
  background: linear-gradient(90deg, rgba(96,165,250,.9), rgba(220,38,38,.55));
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .18s ease;
}
.nav a:hover::after{ transform: scaleX(1); }

/* Desktop nav layout */
@media (min-width: 980px){
  .nav{
    display:flex !important;
    align-items:center;
    gap: 10px;
  }
  .nav__cta{ display:none !important; }
  .topbar__cta{ display:flex !important; gap:10px; }
}

/* Mobile drawer */
.nav.is-open{
  display:flex !important;
  flex-direction: column;
  position: fixed;
  inset: 72px 12px auto 12px;
  background: rgba(11,18,36,.98);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 14px;
  gap: 10px;
  z-index: 1000;
  box-shadow: 0 30px 120px rgba(0,0,0,.35);
}
.nav.is-open a::after{ display:none; }
.nav.is-open .nav__cta{
  display:flex !important;
  gap:10px;
  margin-top: 6px;
}
.nav.is-open .btn--nav{
  width: 100%;
  justify-content:center;
}

/* Avoid double CTAs on small screens */
.topbar__cta{ display:none !important; }

/* HERO: remove blur/veil; give simple garage background */
.hero{ position: relative; }
.heroBg{
  position:absolute;
  inset:0;
  z-index:0;
  background:
    radial-gradient(900px 520px at 18% 35%, rgba(96,165,250,.22), transparent 60%),
    radial-gradient(900px 520px at 82% 55%, rgba(220,38,38,.14), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.0), rgba(15,23,42,.02));
}
.hero::after{ opacity: 0 !important; filter:none !important; backdrop-filter:none !important; }
.hero *{ position: relative; z-index: 1; }

/* SERVICES: more garage (structure + accents) */
.section--services{
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(96,165,250,.18), transparent 60%),
    radial-gradient(900px 560px at 88% 40%, rgba(220,38,38,.12), transparent 62%),
    linear-gradient(to bottom, rgba(15,23,42,.02), rgba(15,23,42,0));
}
.svcCard{
  border: 1px solid rgba(15,23,42,.12) !important;
}
.svcCard__icon{
  box-shadow: inset 0 0 0 1px rgba(15,23,42,.06);
}
.svcCard::before{
  content:"";
  position:absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 4px;
  background: rgba(96,165,250,.85);
  opacity:.55;
}
.svcCard--red::before{ background: rgba(220,38,38,.85); opacity:.5; }

/* FOOTER 3 columns */
.footer__grid{
  display:grid !important;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 900px){
  .footer__grid{ grid-template-columns: 1.2fr 1fr 1fr; }
}
.footer__bottom{
  display:flex;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(15,23,42,.10);
}

/* FAB: bottom-right only, clean label */
.fab{
  position: fixed;
  right: 16px !important;
  left: auto !important;
  bottom: 16px;
  z-index: 999;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.92);
  box-shadow: 0 20px 60px rgba(2,6,23,0.12);
  font-weight: 900;
  text-decoration:none;
  color: rgba(15,23,42,.92);
}
@media (min-width: 980px){ .fab{ display:none !important; } }

/* =========================
   V14 — WhatsApp official button + hero CTA fixes
   ========================= */
.btn--wa{
  background:#25D366 !important;
  color:#fff !important;
  border:none !important;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.btn--wa:hover{
  background:#1ebe5d !important;
  transform: translateY(-1px);
}
.wa-svg{
  width:18px;
  height:18px;
  fill: currentColor;
  flex: 0 0 auto;
}

/* Hero call button: never looks disabled */
.hero .btn--call{
  background:#ffffff !important;
  color:#0f172a !important;
  border: 1px solid rgba(15,23,42,0.20) !important;
  font-weight: 800 !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.hero .btn--call:hover{
  background:#f8fafc !important;
  transform: translateY(-1px);
}

/* Hero: more garage texture */
.heroBg{
  background:
    repeating-linear-gradient(
      45deg,
      rgba(15,23,42,0.04),
      rgba(15,23,42,0.04) 1px,
      transparent 1px,
      transparent 12px
    ),
    radial-gradient(800px 420px at 22% 35%, rgba(96,165,250,.22), transparent 60%),
    radial-gradient(820px 460px at 80% 60%, rgba(220,38,38,.14), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,0), rgba(15,23,42,.02));
}

/* Hero scroll hint */
.hero__hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: -100px; /* remonte le bloc */

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: rgba(15, 23, 42, 0.55);
  user-select: none;
  pointer-events: none;
}

/* Small line */
.hero__hint::before {
  content: "";
  width: 36px;
  height: 2px;
  background: rgba(15, 23, 42, 0.35);
  border-radius: 2px;
}

/* Arrow */
.hero__hint::after {
  content: "↓";
  font-size: 0.9rem;
  opacity: 0.8;
  animation: heroHintBounce 1.8s ease-in-out infinite;
}

/* Animation */
@keyframes heroHintBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

/* Dark hero support */
.hero.dark .hero__hint {
  color: rgba(255, 255, 255, 0.65);
}
.hero.dark .hero__hint::before {
  background: rgba(255, 255, 255, 0.45);
}

/* Mobile spacing */
@media (max-width: 768px) {
  .hero__hint {
    bottom: 18px;
    font-size: 0.7rem;
  }
}
																																	
.footer .tiny a{
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(15,23,42,.25);
}
.footer .tiny a:hover{
  border-bottom-color: rgba(220,38,38,.6);
}
																																	
/* =========================
   Footer
   ========================= */

.footer {
  background: #ffffff;
  border-top: 1px solid rgba(15,23,42,0.08);
  padding: 40px 20px 32px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;

  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__logo {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.footer__tagline {
  font-size: 0.8rem;
  color: rgba(15,23,42,0.55);
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.85rem;
}

.footer__contact a {
  text-decoration: none;
  color: #0b1224;
}

.footer__contact a:hover {
  text-decoration: underline;
}

.footer__meta {
  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 0.75rem;
  color: rgba(15,23,42,0.55);
}

.footer__meta a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.footer__meta a:hover {
  color: #dc2626;
}

.footer__meta .sep {
  opacity: 0.5;
}

/* Desktop: un peu plus aéré */
@media (min-width: 768px) {
  .footer {
    padding: 48px 20px 40px;
  }
}
																																	
																																	
																																	
																																	
