:root {
  --bg: #02070a;
  --bg-2: #061219;
  --panel: rgba(7, 20, 27, .74);
  --panel-strong: rgba(8, 24, 32, .94);
  --line: rgba(145, 240, 255, .16);
  --line-strong: rgba(0, 234, 255, .42);
  --cyan: #00eaff;
  --cyan-soft: #7df7ff;
  --cyan-deep: #0099b8;
  --white: #f4feff;
  --text: #e9fbff;
  --muted: #94aeb8;
  --dark: #000407;
  --shadow: 0 28px 90px rgba(0, 0, 0, .42);
  --radius: 28px;
  --container: 1180px;
  --header: 78px;

  --p: 0;
  --activation: 0;
  --entry: 0;
  --tunnel: 0;
  --exit: 0;
  --before: 1;
  --fragments: 1;
  --fragment-focus: 0;
  --pulse: 0;
  --mono-scale: .72;
  --mono-opacity: 1;
  --vignette: .88;
}

* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(0, 234, 255, .28); color: #fff; }

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 234, 255, .16), transparent 24rem),
    radial-gradient(circle at 88% 34%, rgba(0, 153, 184, .12), transparent 22rem),
    linear-gradient(180deg, #02070a 0%, #050b0f 42%, #02070a 100%);
}
.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 80%, transparent);
}
.cursor-glow {
  position: fixed;
  z-index: 5;
  width: 20rem;
  height: 20rem;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,234,255,.16), transparent 66%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
  mix-blend-mode: screen;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}
.section { position: relative; padding: clamp(5rem, 9vw, 9rem) 0; overflow: clip; }
.section[id] { scroll-margin-top: calc(var(--header) + 24px); }
.section-head { max-width: 760px; }
.section-head.center { margin: 0 auto clamp(2rem, 5vw, 4rem); text-align: center; }
.section-kicker,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
  color: var(--cyan);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.kicker span { width: .48rem; height: .48rem; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px rgba(0,234,255,.88); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(2.7rem, 7.4vw, 7.4rem);
  line-height: .92;
  letter-spacing: -.075em;
  text-wrap: balance;
}
h2 { font-size: clamp(2.05rem, 5.2vw, 5.2rem); }
h3 { margin-bottom: .65rem; color: var(--white); font-size: clamp(1.15rem, 1.8vw, 1.55rem); line-height: 1.08; letter-spacing: -.035em; }
p { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.08rem;
  padding: .85rem 1.18rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--cyan), #fff 68%, #ddfbff); color: #001014; box-shadow: 0 18px 56px rgba(0,234,255,.24); }
.btn-ghost { background: rgba(255,255,255,.05); color: var(--white); backdrop-filter: blur(12px); }
.btn-ghost:hover { border-color: rgba(0,234,255,.38); background: rgba(0,234,255,.08); }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header);
  display: flex;
  align-items: center;
  background: rgba(2, 8, 11, .55);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled { background: rgba(2, 8, 11, .88); border-color: rgba(255,255,255,.08); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; font-weight: 950; letter-spacing: .16em; }
.brand img { width: 2.15rem; height: 2.15rem; object-fit: contain; filter: drop-shadow(0 0 18px rgba(0,234,255,.36)); }
.nav-links { display: flex; align-items: center; justify-content: center; gap: .28rem; padding: .25rem; border: 1px solid rgba(255,255,255,.08); border-radius: 999px; background: rgba(255,255,255,.04); }
.nav-links a { padding: .68rem .9rem; border-radius: 999px; color: rgba(233,251,255,.75); font-size: .92rem; font-weight: 750; transition: color .2s ease, background .2s ease; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.07); }
.header-cta { min-height: 2.75rem; padding-inline: 1rem; font-size: .9rem; }
.menu-toggle { display: none; width: 2.85rem; height: 2.85rem; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; background: rgba(255,255,255,.04); }
.menu-toggle span { display: block; width: 1.08rem; height: 2px; margin: .25rem auto; border-radius: 999px; background: var(--white); transition: transform .25s ease, opacity .2s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Portal */
.portal-section {
  position: relative;
  height: 420vh;
  background: #000;
  isolation: isolate;
}
.portal-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 610px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 234, 255, calc(.04 + var(--exit) * .17)), transparent min(40rem, 90vw)),
    linear-gradient(180deg, #000 0%, #01080b 48%, #02171d 100%);
}
.portal-scene,
.starfield,
.portal-mouth,
.rings,
.rays,
.vignette,
.side-streaks,
.signal-dots,
.tunnel,
.monogram-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.portal-scene { z-index: 1; overflow: hidden; }

.starfield {
  z-index: 1;
  opacity: calc(.38 + var(--activation) * .28 - var(--exit) * .25);
  transform: translate3d(0, calc(var(--p) * -4rem), 0) scale(calc(1 + var(--entry) * .08));
  background-image:
    radial-gradient(circle at 12% 24%, rgba(255,255,255,.48) 0 1px, transparent 1.7px),
    radial-gradient(circle at 78% 18%, rgba(0,234,255,.48) 0 1px, transparent 1.9px),
    radial-gradient(circle at 33% 72%, rgba(255,255,255,.38) 0 1px, transparent 1.7px),
    radial-gradient(circle at 86% 68%, rgba(0,234,255,.38) 0 1px, transparent 1.9px),
    radial-gradient(circle at 54% 36%, rgba(255,255,255,.26) 0 1px, transparent 1.7px);
  background-size: 220px 180px, 260px 220px, 190px 240px, 310px 260px, 160px 180px;
}

.portal-mouth {
  z-index: 12;
  left: 50%; top: 50%; inset: auto;
  width: min(70vmin, 46rem);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: calc(var(--activation) * .72 + var(--tunnel) * .62 - var(--exit) * .76);
  transform: translate(-50%, -50%) scale(calc(.08 + var(--entry) * 4.6 + var(--tunnel) * 8 + var(--pulse) * .08));
  background:
    radial-gradient(circle, rgba(255,255,255,.88) 0 1.5%, rgba(0,234,255,.34) 7%, rgba(0,94,120,.22) 19%, transparent 58%);
}

.tunnel {
  z-index: 14;
  opacity: calc(var(--tunnel) * .85 + var(--entry) * .25 - var(--exit) * .85);
  transform: scale(calc(.82 + var(--entry) * .42 + var(--tunnel) * .65)) rotate(calc(var(--p) * 22deg));
  background:
    repeating-radial-gradient(circle at 50% 50%, transparent 0 26px, rgba(0,234,255,.12) 27px 29px, transparent 31px 52px);
  mix-blend-mode: screen;
}
.tunnel-b {
  z-index: 15;
  opacity: calc(var(--tunnel) * .42);
  transform: scale(calc(1.05 + var(--tunnel) * .55)) rotate(calc(var(--p) * -36deg));
  background:
    conic-gradient(from 90deg at 50% 50%, transparent 0deg, rgba(0,234,255,.16) 16deg, transparent 34deg, transparent 64deg, rgba(255,255,255,.14) 81deg, transparent 105deg, transparent 141deg, rgba(0,234,255,.12) 158deg, transparent 181deg, transparent 360deg);
}
.tunnel-c {
  z-index: 16;
  opacity: calc(var(--entry) * .24 + var(--tunnel) * .34);
  transform: scale(calc(.7 + var(--entry) * .5 + var(--tunnel) * 1.2));
  background: radial-gradient(circle at 50% 50%, transparent 0 8%, rgba(0,234,255,.12) 9%, transparent 11%, transparent 16%, rgba(255,255,255,.12) 17%, transparent 19%, transparent 100%);
}

.rings { z-index: 20; }
.ring {
  position: absolute;
  left: 50%; top: 50%;
  width: min(55vmin, 38rem);
  aspect-ratio: 1;
  border: 1px solid rgba(120, 246, 255, .45);
  border-radius: 44% 56% 62% 38%;
  opacity: calc(var(--activation) * .68 + var(--tunnel) * .25 - var(--exit) * .68);
  transform: translate(-50%, -50%) scale(.6);
}
.ring-1 { transform: translate(-50%, -50%) scale(calc(.65 + var(--p) * 5.8)) rotate(calc(var(--p) * 180deg)); }
.ring-2 { transform: translate(-50%, -50%) scale(calc(1 + var(--p) * 7.6)) rotate(calc(var(--p) * -230deg)); border-style: dashed; }
.ring-3 { transform: translate(-50%, -50%) scale(calc(1.35 + var(--p) * 9.8)) rotate(calc(var(--p) * 260deg)); opacity: calc(var(--activation) * .42 + var(--tunnel) * .3); }
.ring-4 { transform: translate(-50%, -50%) scale(calc(1.8 + var(--p) * 12)) rotate(calc(var(--p) * -110deg)); opacity: calc(var(--tunnel) * .34); }

.rays { z-index: 26; opacity: calc(var(--entry) * .35 + var(--tunnel) * .88 - var(--exit) * .88); }
.ray {
  position: absolute;
  left: 50%; top: 50%;
  width: min(52vw, 760px);
  height: 2px;
  transform-origin: 0 50%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.75), rgba(0,234,255,.45), transparent);
  opacity: var(--ray-opacity, .55);
  transform: rotate(var(--angle)) translateX(calc(8vmin + var(--tunnel) * -10vmin)) scaleX(calc(.12 + var(--entry) * .58 + var(--tunnel) * 1.45));
}

.side-streaks { z-index: 33; opacity: calc(var(--tunnel) * .62 - var(--exit) * .5); }
.side-streaks span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: clamp(8rem, 24vw, 26rem);
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgba(0,234,255,.55), rgba(255,255,255,.82), transparent);
  transform: rotate(var(--r)) translateX(calc(var(--tunnel) * 22vw));
}
.side-streaks span:nth-child(1){--x:-10%;--y:20%;--r:8deg}.side-streaks span:nth-child(2){--x:70%;--y:24%;--r:172deg}.side-streaks span:nth-child(3){--x:-8%;--y:52%;--r:-6deg}.side-streaks span:nth-child(4){--x:72%;--y:58%;--r:186deg}.side-streaks span:nth-child(5){--x:5%;--y:78%;--r:14deg}.side-streaks span:nth-child(6){--x:62%;--y:82%;--r:168deg}

.signal-dots {
  z-index: 36;
  opacity: calc(var(--activation) * .25 + var(--entry) * .55 + var(--tunnel) * .3 - var(--exit) * .6);
  transform: scale(calc(1 + var(--entry) * .14));
}
.signal-dot {
  --x: 50%;
  --y: 50%;
  --size: 4px;
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: rgba(190, 252, 255, .92);
  box-shadow: 0 0 10px rgba(0,234,255,.68);
  transform: translate(-50%, -50%) scale(calc(.7 + var(--activation) * .7 + var(--tunnel) * 1.1));
}
.signal-dot::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: calc(var(--size) * 5);
  height: 1px;
  transform-origin: 0 50%;
  transform: rotate(var(--angle));
  background: linear-gradient(90deg, rgba(0,234,255,.55), transparent);
}

.monogram-wrap { z-index: 30; }
.monogram,
.mono-fallback {
  position: absolute;
  left: 50%; top: 50%;
  width: min(68vw, 50rem);
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%) scale(var(--mono-scale)) rotate(calc(var(--p) * 1.2deg));
  transform-origin: 50% 50%;
  opacity: var(--mono-opacity);
}
.monogram-main { filter: saturate(1.35) brightness(calc(1.08 + var(--activation) * .22)); }
.monogram-shadow {
  opacity: calc(var(--mono-opacity) * .34 + var(--activation) * .18);
  transform: translate(-50%, -50%) scale(calc(var(--mono-scale) * 1.02)) rotate(calc(var(--p) * 1.2deg));
  filter: blur(18px) saturate(1.4);
}
.mono-fallback {
  display: none;
  width: auto;
  color: var(--cyan);
  font-size: clamp(11rem, 30vw, 24rem);
  font-weight: 950;
  line-height: .8;
  text-shadow: 0 0 45px rgba(0,234,255,.5);
}
.monogram-wrap.missing-logo .monogram { display: none; }
.monogram-wrap.missing-logo .mono-fallback { display: block; }

.vignette { z-index: 80; background: radial-gradient(circle at 50% 50%, transparent 15%, rgba(0,0,0,.15) 46%, rgba(0,0,0,var(--vignette)) 100%); }

.copy {
  position: absolute;
  z-index: 70;
  width: min(90vw, 820px);
  pointer-events: auto;
}
.copy-before {
  left: clamp(1rem, 5vw, 5rem);
  bottom: clamp(5.2rem, 12vh, 8rem);
  max-width: min(92vw, 760px);
  padding: clamp(1rem, 2.2vw, 1.7rem);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: clamp(1.3rem, 3vw, 2.1rem);
  background: linear-gradient(135deg, rgba(0, 8, 12, .68), rgba(0, 28, 34, .34));
  box-shadow: 0 26px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  opacity: var(--before);
  transform: translate3d(0, calc(var(--p) * -4.5rem), 0) scale(calc(1 - var(--entry) * .08));
}
.copy-before h1 { font-size: clamp(2.65rem, 6.8vw, 6.8rem); }
.copy-after {
  left: 50%; top: 50%;
  padding: clamp(1.2rem, 4vw, 2.7rem);
  border: 1px solid rgba(150, 248, 255, .2);
  border-radius: clamp(1.4rem, 4vw, 2.6rem);
  background: linear-gradient(135deg, rgba(0, 10, 14, .9), rgba(4, 42, 50, .76));
  box-shadow: 0 42px 120px rgba(0,0,0,.52), 0 0 60px rgba(0,234,255,.12);
  opacity: var(--exit);
  transform: translate(-50%, -46%) scale(calc(.9 + var(--exit) * .1));
  text-align: center;
}
.copy h2 { font-size: clamp(2rem, 5.9vw, 5.5rem); }
.copy p:not(.kicker) { max-width: 700px; color: var(--muted); font-size: clamp(1rem, 1.7vw, 1.18rem); line-height: 1.55; }
.portal-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.45rem; }

.fragments {
  position: absolute;
  inset: 0;
  z-index: 58;
  opacity: var(--fragments);
  pointer-events: none;
}
.frag {
  --tx: 0vw;
  --ty: 0vh;
  --sc: 1;
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(8.6rem, 14vw, 13rem);
  min-height: 3.45rem;
  padding: .72rem .95rem;
  border: 1px solid rgba(120, 244, 255, calc(.34 + var(--fragment-focus) * .38));
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(0,234,255,calc(.16 + var(--fragment-focus) * .14)), rgba(255,255,255,calc(.07 + var(--fragment-focus) * .05)));
  color: #f4feff;
  box-shadow: 0 10px 42px rgba(0, 0, 0, .42), 0 0 calc(18px + var(--fragment-focus) * 22px) rgba(0,234,255,calc(.16 + var(--fragment-focus) * .24));
  font-weight: 950;
  text-shadow: 0 0 14px rgba(0,234,255,.26);
  letter-spacing: -.035em;
  text-transform: uppercase;
  font-size: clamp(.7rem, 1.05vw, .92rem);
  transform: translate3d(var(--tx), var(--ty), 0) scale(var(--sc));
  opacity: calc(var(--fragments) * (.72 + var(--fragment-focus) * .28));
  will-change: transform;
}
.f1 { left: 7vw; top: 16vh; }
.f2 { right: 7vw; top: 18vh; }
.f3 { left: 58vw; bottom: 18vh; }
.f4 { right: 8vw; bottom: 30vh; }
.f5 { left: 44vw; top: 7vh; }
.f6 { left: 63vw; bottom: 8vh; }

.modules-after {
  position: absolute;
  z-index: 62;
  inset: auto clamp(1rem, 5vw, 4rem) clamp(1.4rem, 6vh, 4rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  opacity: var(--exit);
  transform: translateY(calc((1 - var(--exit)) * 1.5rem));
  pointer-events: none;
}
.modules-after span {
  min-height: 4.5rem;
  display: flex;
  align-items: end;
  padding: .95rem;
  border: 1px solid rgba(160, 250, 255, .2);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(0,234,255,.12), rgba(255,255,255,.04));
  font-weight: 950;
  text-shadow: 0 0 14px rgba(0,234,255,.26);
  letter-spacing: -.035em;
}
.scroll-helper {
  position: absolute;
  z-index: 90;
  left: clamp(1rem, 5vw, 5rem);
  bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--muted);
  opacity: calc(1 - var(--entry));
  pointer-events: none;
}
.scroll-helper i {
  width: .72rem;
  height: .72rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}
.scroll-helper small { font-weight: 800; }

@media (max-width: 760px) {
  .portal-section { height: 330vh; }
  .copy-before {
    left: 1rem;
    right: 1rem;
    bottom: 5rem;
    width: auto;
    padding: .95rem;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 1rem;
    background: rgba(0, 8, 10, .74);
  }
  .copy-before h1 { font-size: clamp(2.1rem, 13vw, 4.2rem); }
  .copy-after {
    left: 1rem;
    right: 1rem;
    top: 50%;
    width: auto;
    transform: translateY(-48%) scale(calc(.94 + var(--exit) * .06));
  }
  .monogram,
  .mono-fallback { width: 112vw; }
  .frag { min-width: 8.4rem; min-height: 3rem; font-size: .66rem; padding: .68rem .75rem; }
  .f1 { left: 2vw; top: 16vh; }
  .f2 { right: 3vw; top: 20vh; }
  .f3 { left: 3vw; bottom: 25vh; }
  .f4 { right: 3vw; bottom: 23vh; }
  .f5,.f6 { display: none; }
  .ray:nth-child(n+17), .signal-dot:nth-child(n+13) { display: none; }
  .modules-after { grid-template-columns: 1fr; bottom: 1rem; }
  .modules-after span { min-height: 3.35rem; padding: .7rem; }
}

/* Content */
.intro-strip { background: linear-gradient(180deg, #02161c, #02070a); }
.intro-grid, .local-grid, .contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .95fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.intro-text { display: grid; gap: 1rem; padding: clamp(1.2rem, 3vw, 2rem); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.035); box-shadow: var(--shadow); }
.transform-grid { display: grid; grid-template-columns: minmax(0, 1fr) 180px minmax(0, 1fr); gap: 1.2rem; align-items: center; }
.transform-card, .impact-card, .service-module, .step, .offer-card, .contact-panel, .contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
}
.transform-card { padding: clamp(1.2rem, 3vw, 2rem); min-height: 280px; }
.transform-card p, .offer-card > p { color: var(--cyan); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; font-size: .76rem; }
.transform-card ul, .offer-card ul { display: grid; gap: .7rem; padding: 0; margin: 1.1rem 0 0; list-style: none; color: var(--muted); }
.transform-card li, .offer-card li { position: relative; padding-left: 1.05rem; }
.transform-card li::before, .offer-card li::before { content: ""; position: absolute; left: 0; top: .65em; width: .38rem; height: .38rem; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px rgba(0,234,255,.7); }
.before-card { opacity: .76; }
.after-card { border-color: rgba(0,234,255,.34); background: linear-gradient(180deg, rgba(0,234,255,.12), rgba(255,255,255,.035)); }
.transform-core { position: relative; display: grid; place-items: center; min-height: 180px; }
.transform-core img { width: 8rem; filter: drop-shadow(0 0 24px rgba(0,234,255,.46)); }
.transform-core span { position: absolute; inset: 50% auto auto 50%; width: 11rem; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(0,234,255,.22); transform: translate(-50%, -50%); animation: corePulse 3s ease-in-out infinite; }
@keyframes corePulse { 0%, 100% { transform: translate(-50%, -50%) scale(.86); opacity: .45; } 50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; } }
.impact-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.impact-card { padding: 1.3rem; min-height: 230px; transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.impact-card:hover, .service-module:hover, .offer-card:hover { transform: translateY(-4px); border-color: rgba(0,234,255,.32); }
.impact-card span, .step span, .module-index { color: var(--cyan); font-weight: 950; font-size: .82rem; letter-spacing: .12em; }
.services-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.sticky-head { position: sticky; top: calc(var(--header) + 2rem); }
.service-stack { display: grid; gap: 1rem; }
.service-module { display: grid; grid-template-columns: 3.2rem 1fr; gap: 1rem; padding: clamp(1.1rem, 2vw, 1.5rem); }
.module-index { width: 3.2rem; height: 3.2rem; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line-strong); background: rgba(0,234,255,.08); }
.method-line { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; margin-top: 3rem; }
.step { padding: 1.3rem; min-height: 240px; }
.offers-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.offer-card { padding: clamp(1.2rem, 2.4vw, 1.7rem); }
.offer-card strong { display: block; margin: 1rem 0 1.2rem; color: var(--white); font-size: clamp(1.7rem, 3vw, 2.5rem); letter-spacing: -.055em; }
.offer-card.featured { border-color: rgba(0,234,255,.42); background: radial-gradient(circle at 50% 0%, rgba(0,234,255,.16), transparent 55%), linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035)); }
.local-section { background: linear-gradient(180deg, transparent, rgba(0,234,255,.035), transparent); }
.sector-cloud { display: flex; flex-wrap: wrap; gap: .72rem; align-content: flex-start; }
.sector-cloud span { padding: .9rem 1rem; border: 1px solid rgba(0,234,255,.2); border-radius: 999px; background: rgba(255,255,255,.045); color: var(--white); font-weight: 850; }
.contact-section { padding-bottom: clamp(5rem, 9vw, 9rem); }
.contact-panel, .contact-form { padding: clamp(1.25rem, 3vw, 2rem); }
.contact-links { display: grid; gap: .85rem; margin-top: 1.65rem; }
.contact-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
  min-height: 3.25rem;
  width: min(100%, 25rem);
  padding: .92rem 1rem .92rem 1.08rem;
  border: 1px solid rgba(125,247,255,.22);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(0,234,255,.13), rgba(255,255,255,.045)),
    rgba(0, 10, 14, .42);
  color: var(--white);
  font-weight: 950;
  box-shadow: 0 15px 45px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.contact-links a::before {
  content: "";
  width: .68rem;
  height: .68rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(0,234,255,.72);
}
.contact-links a::after {
  content: "↗";
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--cyan-soft);
  font-size: .95rem;
  transition: transform .22s ease, background .22s ease;
}
.contact-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(0,234,255,.52);
  background: linear-gradient(135deg, rgba(0,234,255,.2), rgba(255,255,255,.065));
  box-shadow: 0 20px 60px rgba(0,234,255,.14), 0 18px 48px rgba(0,0,0,.34);
}
.contact-links a:hover::after { transform: rotate(12deg) scale(1.04); background: rgba(0,234,255,.14); }
.contact-form { display: grid; gap: 1rem; background: rgba(255,255,255,.045); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-group { display: grid; gap: .45rem; }
label { color: rgba(233,251,255,.84); font-size: .86rem; font-weight: 850; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(0,0,0,.24);
  color: var(--white);
  padding: .95rem 1rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
textarea { resize: vertical; min-height: 130px; }
input:focus, textarea:focus, select:focus { border-color: rgba(0,234,255,.52); box-shadow: 0 0 0 4px rgba(0,234,255,.1); background: rgba(0,0,0,.34); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-submit { width: 100%; border: 0; margin-top: .25rem; }
.form-status { min-height: 1.4rem; margin: 0; font-size: .9rem; }
.form-status.success { color: #9dffdd; }
.form-status.error { color: #ffb9bd; }

/* Finitions visuelles stables — base v5 conservée
   Ces effets ne touchent pas au portail : ils animent seulement les blocs de contenu. */
.transform-card,
.impact-card,
.service-module,
.step,
.offer-card,
.contact-panel,
.contact-form,
.intro-text {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.transform-card::before,
.impact-card::before,
.service-module::before,
.step::before,
.offer-card::before,
.contact-panel::before,
.contact-form::before,
.intro-text::before {
  content: "";
  position: absolute;
  inset: -35% auto -35% -70%;
  width: 52%;
  transform: translateX(-130%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(125,247,255,.16), rgba(255,255,255,.10), transparent);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.transform-card > *,
.impact-card > *,
.service-module > *,
.step > *,
.offer-card > *,
.contact-panel > *,
.contact-form > *,
.intro-text > * {
  position: relative;
  z-index: 1;
}

.transform-card.reveal.is-visible,
.impact-card.reveal.is-visible,
.service-module.reveal.is-visible,
.step.reveal.is-visible,
.offer-card.reveal.is-visible,
.contact-panel.reveal.is-visible,
.contact-form.reveal.is-visible,
.intro-text.reveal.is-visible {
  animation: cardSettle .74s cubic-bezier(.2,.8,.2,1) both;
}

.transform-card.reveal.is-visible::before,
.impact-card.reveal.is-visible::before,
.service-module.reveal.is-visible::before,
.step.reveal.is-visible::before,
.offer-card.reveal.is-visible::before,
.contact-panel.reveal.is-visible::before,
.contact-form.reveal.is-visible::before,
.intro-text.reveal.is-visible::before {
  animation: cardSweep 1.05s cubic-bezier(.2,.8,.2,1) .08s both;
}

@keyframes cardSettle {
  0% { transform: translateY(18px) scale(.982); filter: saturate(.86); }
  65% { transform: translateY(-2px) scale(1.003); }
  100% { transform: translateY(0) scale(1); filter: none; }
}

@keyframes cardSweep {
  0% { opacity: 0; transform: translateX(-135%) skewX(-18deg); }
  18% { opacity: .9; }
  100% { opacity: 0; transform: translateX(365%) skewX(-18deg); }
}

.impact-card,
.service-module,
.step,
.offer-card {
  background:
    radial-gradient(circle at 18% 0%, rgba(0,234,255,.055), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
}

.service-module:hover .module-index,
.step:hover span,
.impact-card:hover span {
  text-shadow: 0 0 18px rgba(0,234,255,.58);
}

.sector-cloud span {
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.sector-cloud span:hover {
  transform: translateY(-2px);
  border-color: rgba(0,234,255,.42);
  background: rgba(0,234,255,.075);
  box-shadow: 0 12px 34px rgba(0,0,0,.22), 0 0 28px rgba(0,234,255,.08);
}

select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 3rem;
  background:
    linear-gradient(45deg, transparent 50%, var(--cyan-soft) 50%) calc(100% - 1.35rem) 52% / .45rem .45rem no-repeat,
    linear-gradient(135deg, rgba(0,234,255,.09), rgba(255,255,255,.035)),
    rgba(0,0,0,.32);
}
select option {
  background: #061219;
  color: #f4feff;
}
select:invalid { color: rgba(233,251,255,.58); }

@media (max-width: 820px) {
  .impact-card,
  .service-module,
  .step,
  .offer-card,
  .transform-card,
  .contact-panel,
  .contact-form,
  .intro-text {
    box-shadow: 0 18px 52px rgba(0,0,0,.34), 0 0 28px rgba(0,234,255,.035);
  }

  .section:not(.intro-strip)::after {
    content: "";
    position: absolute;
    inset: auto 1rem 1.2rem;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(0,234,255,.28), transparent);
    opacity: .55;
  }

  .sector-cloud span:nth-child(odd) { transform: translateY(1px); }
  .sector-cloud span:nth-child(even) { transform: translateY(-1px); }
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 2rem 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(0,234,255,.12), transparent 28rem),
    linear-gradient(180deg, rgba(3,13,17,.92), rgba(0,4,7,.98));
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}
.footer-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.15rem 1.55rem;
  color: rgba(233,251,255,.68);
  font-size: .9rem;
}
.footer-inner p { margin: 0; color: rgba(233,251,255,.66); }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .68rem;
  color: var(--white);
  font-weight: 950;
}
.footer-brand img { width: 2.75rem; height: 2.05rem; object-fit: contain; filter: drop-shadow(0 0 16px rgba(0,234,255,.18)); }
.footer-brand span { font-size: 1.12rem; font-weight: 950; letter-spacing: .08em; }
.footer-contact { display: inline-flex; align-items: center; justify-content: flex-end; gap: .55rem; white-space: nowrap; }
.footer-contact a, .footer-legal { color: rgba(255,255,255,.76); font-weight: 800; transition: color .2s ease; }
.footer-contact a:hover, .footer-legal:hover { color: var(--cyan); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .header-cta { display: none; }
  .impact-grid, .method-line { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offers-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  :root { --header: 70px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { height: var(--header); }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: calc(var(--header) + .8rem) 14px auto 14px;
    display: grid;
    gap: .35rem;
    padding: .75rem;
    border-radius: 24px;
    background: rgba(3, 12, 16, .96);
    box-shadow: 0 30px 90px rgba(0,0,0,.5);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-links.active { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: .9rem 1rem; }
  .intro-grid, .local-grid, .contact-grid, .services-layout, .transform-grid { grid-template-columns: 1fr; }
  .sticky-head { position: static; }
  .transform-core { min-height: 140px; }
  .impact-grid, .method-line { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-contact { justify-content: flex-start; flex-wrap: wrap; white-space: normal; }
  .contact-links a { width: 100%; }
  .section { padding: 4rem 0; }
}

@media (max-width: 520px) {
  h1, h2 { letter-spacing: -.06em; }
  .brand span { letter-spacing: .12em; }
  .service-module { grid-template-columns: 1fr; }
  .module-index { width: 2.8rem; height: 2.8rem; }
}

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


/* Page mentions légales — refonte propre */
.section-padding {
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.legal-page {
  position: relative;
  overflow: hidden;
  padding-top: var(--header);
  background:
    radial-gradient(circle at 18% 6%, rgba(0,234,255,.12), transparent 28rem),
    radial-gradient(circle at 84% 18%, rgba(125,247,255,.075), transparent 25rem),
    linear-gradient(180deg, rgba(2,7,10,.86), rgba(2,7,10,1));
}

.legal-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
}

.legal-hero::before,
.legal-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(80px);
}

.legal-hero::before {
  top: -10rem;
  left: 44%;
  width: min(38rem, 90vw);
  height: min(38rem, 90vw);
  background: rgba(0,234,255,.13);
}

.legal-hero::after {
  right: -13rem;
  bottom: -7rem;
  width: min(32rem, 82vw);
  height: min(32rem, 82vw);
  background: rgba(0,153,184,.18);
}

.legal-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}

.legal-hero-content {
  max-width: 780px;
}

.legal-hero h1 {
  max-width: 760px;
  margin-bottom: 1.1rem;
  font-size: clamp(3.15rem, 7.2vw, 6.8rem);
  line-height: .9;
  letter-spacing: -.07em;
}

.legal-hero .hero-lead {
  max-width: 680px;
  margin-bottom: 1.7rem;
  color: rgba(233,251,255,.76);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
}

.legal-summary,
.legal-card {
  position: relative;
  border: 1px solid rgba(145,240,255,.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035)),
    rgba(6, 18, 25, .78);
  box-shadow: 0 28px 90px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}

.legal-summary {
  display: grid;
  gap: 1.1rem;
  padding: clamp(1.25rem, 3vw, 1.9rem);
  overflow: hidden;
}

.legal-summary::before {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,234,255,.18), transparent 65%);
  pointer-events: none;
}

.legal-summary > * {
  position: relative;
  z-index: 1;
}

.legal-summary-logo {
  display: grid;
  place-items: center;
  min-height: clamp(8.8rem, 18vw, 11rem);
  margin-bottom: .2rem;
  border: 1px solid rgba(125,247,255,.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0,234,255,.12), transparent 62%),
    rgba(0,0,0,.22);
  overflow: hidden;
}

.legal-summary-logo img {
  width: min(11.2rem, 64%);
  filter: drop-shadow(0 0 28px rgba(0,234,255,.18));
}

.legal-summary span,
.legal-article span {
  display: block;
  color: var(--cyan-soft);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.legal-summary strong {
  display: block;
  color: var(--white);
  font-size: 1.03rem;
  line-height: 1.42;
}

.legal-content-section {
  position: relative;
  padding-top: clamp(2rem, 4vw, 3rem);
}

.legal-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(1.35rem, 4vw, 2.8rem);
  overflow: hidden;
}

.legal-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,234,255,.48), transparent);
  opacity: .8;
}

.legal-intro {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(1.4rem, 3vw, 2.1rem);
  padding-bottom: clamp(1.2rem, 3vw, 1.9rem);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.legal-intro p,
.legal-article p {
  max-width: 86ch;
  margin-bottom: 0;
  color: rgba(233,251,255,.72);
  font-size: 1rem;
  line-height: 1.86;
}

.legal-article {
  display: grid;
  gap: .75rem;
  padding: clamp(1.2rem, 3vw, 1.75rem) 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.legal-article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-article span {
  width: fit-content;
  padding: .5rem .75rem;
  border: 1px solid rgba(125,247,255,.2);
  border-radius: 999px;
  background: rgba(0,234,255,.06);
}

.legal-article h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.legal-page + .site-footer {
  margin-top: 0;
}

@media (max-width: 900px) {
  .legal-hero-grid {
    grid-template-columns: 1fr;
  }
  .legal-summary {
    max-width: 620px;
  }
}

@media (max-width: 820px) {
  .legal-page {
    padding-top: var(--header);
  }
  .legal-hero {
    padding-top: 3.25rem;
  }
  .legal-hero h1 {
    font-size: clamp(2.55rem, 13vw, 4.15rem);
  }
  .legal-hero .hero-lead,
  .legal-intro p,
  .legal-article p {
    font-size: .97rem;
    line-height: 1.72;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .legal-summary,
  .legal-card {
    border-radius: 24px;
  }
}
