:root {
  --ink: #071521;
  --ink-2: #0a2230;
  --ink-3: #103648;
  --blue: #1f7a8c;
  --cyan: #47d8e7;
  --cyan-soft: #baf5fa;
  --orange: #f4b740;
  --eco-blue: #1287d9;
  --eco-cyan: #33d2e8;
  --eco-green: #7ed957;
  --paper: #f3f7f9;
  --white: #fff;
  --text: #e9f5f9;
  --muted: #9bb2bd;
  --line: rgba(255,255,255,.1);
  --shadow: 0 26px 80px rgba(0,0,0,.28);
  --shadow-dark: 0 32px 90px rgba(0,0,0,.4);
  --radius: 24px;
  --radius-lg: 34px;
  --header-height: 124px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: #020a0f;
}
body {
  margin: 0;
  min-width: 0;
  color: var(--text);
  background: #06141f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
main, section, header, footer, nav, div, article, form, label, fieldset { min-width: 0; }
section[id] { scroll-margin-top: calc(var(--header-height) + 18px); }

:focus-visible {
  outline: 3px solid rgba(71,216,231,.92);
  outline-offset: 4px;
}

.container {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  left: 12px;
  top: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.form-hidden { position: absolute; left: -9999px; }

.scroll-progress {
  position: fixed;
  z-index: 9999;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--eco-green));
  box-shadow: 0 0 18px rgba(71,216,231,.75);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  color: #eaf7fb;
  background: linear-gradient(135deg, rgba(2,10,18,.97), rgba(5,22,34,.96) 52%, rgba(7,37,49,.94));
  border-bottom: 1px solid rgba(71,216,231,.11);
  box-shadow: 0 16px 42px rgba(0,0,0,.25), inset 0 -1px 0 rgba(255,255,255,.03);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 18px 48px rgba(0,0,0,.38); }
.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(71,216,231,.34), rgba(126,217,87,.22), transparent);
  pointer-events: none;
}
.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo-link {
  width: 292px;
  height: 112px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding-right: 8px;
  transition: transform .22s ease, filter .22s ease;
}
.brand-logo-link:hover,
.brand-logo-link:focus-visible {
  transform: translateY(-2px) scale(1.018);
  filter: drop-shadow(0 0 16px rgba(71,216,231,.12));
}
.header-company-logo {
  width: 282px;
  height: 108px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.3)) drop-shadow(0 0 10px rgba(71,216,231,.08));
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  font-size: 1rem;
  font-weight: 800;
}
.main-nav > a {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 13px;
  border-radius: 15px;
  white-space: nowrap;
  transition: transform .22s ease, color .22s ease, background .22s ease, box-shadow .22s ease;
}
.main-nav > a:not(.nav-cta) { color: #d9edf4; }
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--eco-green), transparent);
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .22s ease, transform .22s ease;
}
.main-nav > a:not(.nav-cta):hover,
.main-nav > a:not(.nav-cta):focus-visible {
  color: #fff;
  background: linear-gradient(135deg, rgba(71,216,231,.1), rgba(126,217,87,.04));
  box-shadow: inset 0 0 0 1px rgba(71,216,231,.14), 0 12px 26px rgba(0,0,0,.2);
  transform: translateY(-2px);
}
.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after { opacity: 1; transform: scaleX(1); }
.nav-cta {
  gap: 9px;
  min-height: 52px;
  padding-inline: 20px;
  color: #071521;
  background: linear-gradient(135deg, var(--eco-blue), var(--eco-cyan) 52%, var(--eco-green));
  border: 1px solid rgba(126,217,87,.24);
  box-shadow: 0 16px 34px rgba(7,21,33,.28), 0 0 24px rgba(18,135,217,.15), 0 0 20px rgba(126,217,87,.12);
}
.nav-cta:hover,
.nav-cta:focus-visible { transform: translateY(-3px) scale(1.02); filter: saturate(1.08) brightness(1.03); }
.menu-toggle {
  display: none;
  width: 48px;
  height: 46px;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid rgba(71,216,231,.2);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 8px 18px rgba(0,0,0,.2);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: #effbff;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Shared typography */
.section { padding: 118px 0; }
.eyebrow {
  margin: 0 0 13px;
  color: var(--cyan);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--cyan); }
h1, h2, h3 { overflow-wrap: normal; word-break: normal; }
p, a, strong, span, label { overflow-wrap: anywhere; }
h2 {
  margin: 0;
  color: #f5fbfe;
  font-size: clamp(2.35rem, 4.7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  text-wrap: balance;
}
h2 span {
  color: transparent;
  background: linear-gradient(90deg, #32c8ff, #46dff0 47%, #82dc57);
  -webkit-background-clip: text;
  background-clip: text;
}
.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}
.section-copy { margin: 0 0 5px; color: var(--muted); font-size: 1.08rem; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--cyan);
  font-weight: 850;
}
.text-link span { color: var(--orange); }
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #06131d;
  background: linear-gradient(135deg, #1492e8, #46dcf0 52%, #8ee567);
  box-shadow: 0 14px 32px rgba(51,210,232,.2), 0 0 22px rgba(126,217,87,.13);
}
.btn-secondary { color: #f5fbfe; background: rgba(5,20,31,.76); }

/* Desktop artwork hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 72% 28%, rgba(15,114,151,.16), transparent 36%), linear-gradient(135deg, #020911, #05141f 52%, #082633);
}
.hero-grid, .hero-glow { position: absolute; pointer-events: none; }
.hero-grid {
  inset: 0;
  opacity: .13;
  background-image: linear-gradient(rgba(143,184,200,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(143,184,200,.1) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-glow { border-radius: 50%; filter: blur(4px); }
.hero-glow-one { width: 560px; height: 560px; right: -160px; top: -160px; background: radial-gradient(circle, rgba(71,216,231,.13), transparent 68%); }
.hero-glow-two { width: 460px; height: 460px; left: -220px; bottom: -250px; background: radial-gradient(circle, rgba(244,183,64,.08), transparent 68%); }
.hero-wow { padding: 0; }
.hero-wow .container { width: 100%; max-width: 1720px; }
.hero-wow-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}
.hero-wow-image { width: 100%; height: auto; object-fit: cover; }
.hero-hotspot {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}
.hero-hotspot-offer {
  left: 8.8%;
  bottom: 18.6%;
  width: 16.6%;
  height: 8.4%;
  gap: clamp(5px, .55vw, 10px);
  padding-inline: clamp(8px, 1vw, 18px);
  color: #06131d;
  background: linear-gradient(100deg, #1597eb 0%, #29d2df 52%, #a6ef35 100%);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 0 28px rgba(38,210,225,.24), 0 0 22px rgba(166,239,53,.17);
  font-size: clamp(.68rem, 1.05vw, 1.08rem);
  font-weight: 950;
  letter-spacing: -.025em;
  white-space: nowrap;
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
}
.hero-offer-arrow { font-size: 1.12em; }
.hero-hotspot-call { left: 26.2%; bottom: 18.6%; width: 15.2%; height: 8.4%; background: rgba(255,255,255,.001); }
.hero-hotspot-offer:hover,
.hero-hotspot-offer:focus-visible { transform: translateY(-3px) scale(1.015); filter: saturate(1.08) brightness(1.04); box-shadow: 0 0 0 2px rgba(71,216,231,.72), 0 0 32px rgba(71,216,231,.28), 0 0 24px rgba(126,217,87,.18); }
.hero-hotspot-call:hover,
.hero-hotspot-call:focus-visible { box-shadow: 0 0 0 2px rgba(71,216,231,.72), 0 0 24px rgba(71,216,231,.22); }
.hero-airflow { position: absolute; inset: 0; z-index: 3; pointer-events: none; overflow: hidden; }
.hero-air-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-air-glow {
  position: absolute;
  left: 78.5%;
  top: 33%;
  width: 17%;
  height: 16%;
  border-radius: 999px;
  background: radial-gradient(circle at 12% 50%, rgba(93,255,82,.42), rgba(120,255,128,.18) 48%, transparent 78%);
  filter: blur(18px);
  opacity: .85;
  mix-blend-mode: screen;
  animation: pulseOutFlow 3.8s ease-in-out infinite;
}
.air-path { fill: none; stroke-linecap: round; stroke-linejoin: round; mix-blend-mode: screen; }
.air-path-out { stroke: url(#airGreenGrad); filter: url(#greenGlow); stroke-dasharray: 20 18 110 26; animation: airflowMoveOut 2s linear infinite; }
.hero-air-svg-out .air-core { stroke-width: 7; }
.hero-air-svg-out .air-core:nth-of-type(1) { animation-duration: 1.85s; animation-delay: -.2s; }
.hero-air-svg-out .air-core:nth-of-type(2) { animation-duration: 2.15s; animation-delay: -.8s; opacity: .88; }
.hero-mobile { display: none; }

/* Moving values strip */
.logo-strip {
  overflow: hidden;
  color: #16313e;
  background: linear-gradient(90deg, #35c7e8, #55dfd2 56%, #83dd57);
  border-block: 1px solid rgba(7,21,33,.15);
}
.marquee { overflow: hidden; }
.marquee-track {
  width: max-content;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .18em;
  animation: marquee 26s linear infinite;
}
.marquee-track i { color: rgba(7,21,33,.35); font-style: normal; }

/* Desktop services artwork */
.services-neon-section {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: radial-gradient(circle at 76% 32%, rgba(23,130,176,.12), transparent 34%), radial-gradient(circle at 68% 72%, rgba(107,225,63,.08), transparent 30%), linear-gradient(135deg, #020911, #06141f 52%, #08242f);
}
.services-neon-container { width: 100%; max-width: 1720px; }
.services-neon-wrap { position: relative; width: 100%; overflow: hidden; isolation: isolate; }
.services-neon-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 42%, rgba(255,255,255,.04) 48%, transparent 55%);
  transform: translateX(-120%);
  animation: servicesNeonSweep 9s ease-in-out infinite;
  mix-blend-mode: screen;
}
.services-neon-image { width: 100%; height: auto; object-fit: cover; }
.services-neon-hotspot {
  position: absolute;
  z-index: 4;
  bottom: 7.6%;
  height: 35.5%;
  border-radius: 28px;
  background: rgba(255,255,255,.001);
  transition: transform .24s ease, box-shadow .24s ease;
}
.services-neon-hotspot-one { left: 8%; width: 25.2%; }
.services-neon-hotspot-two { left: 37%; width: 25.2%; }
.services-neon-hotspot-three { left: 65.4%; width: 24.2%; }
.services-neon-hotspot:hover,
.services-neon-hotspot:focus-visible { transform: translateY(-5px) scale(1.01); box-shadow: 0 0 0 2px rgba(65,224,239,.46), 0 22px 42px rgba(0,0,0,.24), 0 0 28px rgba(76,218,232,.15); }
.services-mobile { display: none; }

/* About */
.statement-section {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
  background: radial-gradient(circle at 78% 18%, rgba(42,183,235,.12), transparent 24%), radial-gradient(circle at 12% 82%, rgba(126,217,87,.07), transparent 20%), var(--ink);
}
.statement-lines {
  position: absolute;
  inset: 0;
  opacity: .12;
  background: repeating-linear-gradient(118deg, transparent 0 88px, rgba(71,216,231,.22) 89px, transparent 90px), linear-gradient(90deg, transparent, rgba(71,216,231,.1), transparent);
}
.statement-shell {
  position: relative;
  padding: clamp(36px, 4.2vw, 56px);
  border: 1px solid rgba(84,214,231,.16);
  border-radius: 38px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(7,24,38,.84), rgba(5,18,29,.9)), radial-gradient(circle at 0 0, rgba(71,216,231,.08), transparent 20%), radial-gradient(circle at 100% 0, rgba(126,217,87,.07), transparent 22%);
  box-shadow: 0 32px 90px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.05);
}
.statement-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent);
}
.statement-shell-glow { position: absolute; right: -70px; top: -70px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(41,205,234,.2), transparent 68%); filter: blur(10px); pointer-events: none; }
.statement-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0,.94fr) minmax(0,1.06fr);
  grid-template-areas: "intro visual" "highlights highlights";
  gap: clamp(30px,4vw,48px);
  align-items: start;
}
.statement-intro { grid-area: intro; }
.statement-visual { grid-area: visual; }
.statement-highlights { grid-area: highlights; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.statement-lead { max-width: 560px; margin: 26px 0 0; color: #a8c0cb; font-size: 1.08rem; line-height: 1.86; }
.statement-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.statement-tags span { padding: 11px 16px; border: 1px solid rgba(84,214,231,.18); border-radius: 999px; color: #def7ff; background: linear-gradient(180deg, rgba(13,40,57,.82), rgba(9,28,42,.7)); font-size: .88rem; font-weight: 600; }
.ops-board {
  position: relative;
  min-height: 390px;
  padding: 26px;
  border: 1px solid rgba(84,214,231,.18);
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10,30,46,.76), rgba(6,18,29,.7)), radial-gradient(circle at 50% 50%, rgba(73,157,255,.08), transparent 36%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 18px 45px rgba(0,0,0,.24);
}
.ops-grid { position: absolute; inset: 0; opacity: .22; background: linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 38px 38px; }
.ops-main { position: absolute; z-index: 3; left: 50%; top: 50%; width: min(72%,340px); transform: translate(-50%,-50%); padding: 24px; border: 1px solid rgba(84,214,231,.22); border-radius: 26px; background: linear-gradient(180deg, rgba(6,22,35,.92), rgba(9,29,44,.84)); box-shadow: 0 22px 55px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.06); }
.ops-kicker { display: inline-flex; margin-bottom: 14px; color: var(--orange); font-size: .76rem; font-weight: 700; letter-spacing: .16em; }
.ops-main strong { display: block; color: #f1fbff; font-size: 1.4rem; line-height: 1.18; }
.ops-main p { margin: 12px 0 0; color: #a6bcc7; line-height: 1.72; }
.ops-node { position: absolute; z-index: 4; padding: 12px 16px; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; color: #effcff; background: linear-gradient(180deg, rgba(13,41,58,.88), rgba(9,28,41,.76)); box-shadow: 0 12px 28px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.06); font-size: .92rem; font-weight: 600; }
.node-plan { left: 8%; top: 11%; }
.node-sam { right: 9%; top: 13%; }
.node-arb { left: 11%; bottom: 15%; }
.node-ater { right: 8%; bottom: 17%; }
.ops-line { position: absolute; z-index: 2; height: 2px; transform-origin: left center; background: linear-gradient(90deg, rgba(68,214,242,.15), rgba(68,214,242,.95), rgba(126,217,87,.8)); box-shadow: 0 0 14px rgba(68,214,242,.45); }
.line-a { left: 23%; top: 24%; width: 30%; transform: rotate(28deg); }
.line-b { left: 56%; top: 25%; width: 21%; transform: rotate(-25deg); }
.line-c { left: 25%; top: 67%; width: 29%; transform: rotate(-27deg); }
.line-d { left: 55%; top: 66%; width: 24%; transform: rotate(29deg); }
.ops-ring { position: absolute; left: 50%; top: 50%; width: 260px; height: 260px; transform: translate(-50%,-50%); border: 1px solid rgba(84,214,231,.18); border-radius: 50%; box-shadow: inset 0 0 60px rgba(68,214,242,.08), 0 0 30px rgba(68,214,242,.06); }
.principle-card { position: relative; min-height: 238px; padding: 24px 22px 22px; border: 1px solid rgba(255,255,255,.08); border-radius: 26px; overflow: hidden; background: linear-gradient(180deg, rgba(11,32,47,.86), rgba(7,20,32,.72)); box-shadow: 0 18px 45px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.05); transition: transform .3s ease, border-color .3s ease; }
.principle-card:hover { transform: translateY(-6px); }
.principle-card-cyan:hover { border-color: rgba(90,225,241,.34); }
.principle-card-blue:hover { border-color: rgba(73,157,255,.36); }
.principle-card-green:hover { border-color: rgba(135,245,117,.34); }
.principle-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.principle-top strong { color: var(--orange); font-size: .84rem; letter-spacing: .13em; }
.principle-icon { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; color: #edfaff; background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05)); font-size: 1.22rem; font-weight: 700; }
.principle-card h3 { margin: 0 0 12px; color: #fff; font-size: 1.26rem; line-height: 1.2; }
.principle-card p { margin: 0; color: #aec3cd; line-height: 1.68; }

/* Why */
.why-section { background: linear-gradient(180deg, #081b28, #071620); }
.why-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: 70px; align-items: center; }
.why-logo-wrap { min-height: 500px; display: grid; place-items: center; padding: 32px; border: 1px solid rgba(255,255,255,.07); border-radius: 30px; background: radial-gradient(circle at 55% 45%, rgba(71,216,231,.08), transparent 36%), rgba(255,255,255,.025); }
.why-logo { width: 100%; max-width: 500px; filter: drop-shadow(0 25px 35px rgba(0,0,0,.35)); }
.why-copy > p:not(.eyebrow) { color: #9fb7c2; font-size: 1.05rem; }
.why-points { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 13px; margin-top: 30px; }
.why-points article { display: grid; grid-template-columns: 43px minmax(0,1fr); gap: 14px; padding: 18px; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; background: rgba(255,255,255,.045); }
.why-points article > strong { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; color: #071521; background: linear-gradient(135deg, var(--cyan), var(--eco-green)); font-size: .78rem; }
.why-points h3 { margin: 0 0 5px; color: #fff; font-size: 1rem; }
.why-points p { margin: 0; color: #829ca8; font-size: .88rem; }

/* Area */
.area-section { padding: 132px 0 138px; background: linear-gradient(180deg, #071620, #0a1c29); }
.area-section > .container.area-grid { width: min(1380px, calc(100% - 56px)); }
.area-grid { display: grid; grid-template-columns: minmax(430px,.8fr) minmax(0,1.2fr); align-items: start; gap: 86px; }
.area-copy { padding-top: 8px; }
.area-copy h2 { max-width: 620px; }
.area-copy > p:not(.eyebrow), .area-note { max-width: 600px; color: #9db4bf; font-size: 1.08rem; }
.area-group { margin-top: 28px; }
.area-group + .area-group { margin-top: 22px; }
.area-group-title { margin: 0 0 12px; color: #dcebf1; font-size: .78rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.area-list { max-width: 640px; display: flex; flex-wrap: wrap; gap: 10px; margin: 0; }
.area-list span { display: inline-flex; align-items: center; gap: 9px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.11); border-radius: 999px; color: #e8f5f9; background: rgba(255,255,255,.04); font-size: .84rem; font-weight: 750; }
.area-list i { width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px rgba(71,216,231,.75); }
.area-group-stockholm .area-list i { background: var(--eco-green); box-shadow: 0 0 12px rgba(126,217,87,.65); }
.area-list-compact span { padding: 11px 16px; font-size: .9rem; }
.area-note { margin: 22px 0 0; line-height: 1.7; }
.area-link-spacing { margin-top: 12px; }
.map-card {
  position: relative;
  min-height: 690px;
  border: 1px solid rgba(71,216,231,.16);
  border-radius: 34px;
  overflow: hidden;
  background: radial-gradient(circle at 62% 48%, rgba(130,217,31,.1), transparent 28%), radial-gradient(circle at 28% 72%, rgba(71,216,231,.09), transparent 26%), linear-gradient(145deg, #0b2736, #06151f);
  box-shadow: var(--shadow-dark);
}
.map-grid { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 34px 34px; }
.map-label { position: absolute; z-index: 6; left: 28px; top: 26px; max-width: 250px; display: grid; padding: 12px 14px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(5,17,25,.76); backdrop-filter: blur(10px); }
.map-label span { color: #7f9ba8; font-size: .67rem; letter-spacing: .12em; text-transform: uppercase; }
.map-label strong { margin-top: 3px; color: #fff; font-size: .95rem; line-height: 1.35; }
.map-lines { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; }
.route-main { fill: none; stroke: rgba(71,216,231,.58); stroke-width: 3.4; stroke-dasharray: 8 11; stroke-linecap: round; opacity: .92; animation: dash 7s linear infinite; }
.route-muni { fill: none; stroke: rgba(71,216,231,.34); stroke-width: 2.5; stroke-dasharray: 6 8; stroke-linecap: round; opacity: .88; animation: dash 9s linear infinite; }
.map-node { position: absolute; z-index: 5; display: grid; padding-left: 24px; color: #fff; white-space: nowrap; }
.map-node > span { position: absolute; left: 0; top: 7px; width: 11px; height: 11px; border-radius: 50%; background: var(--eco-green); box-shadow: 0 0 0 7px rgba(126,217,87,.1), 0 0 24px rgba(126,217,87,.42); }
.map-node strong { color: #fff; font-size: .92rem; line-height: 1.25; }
.map-node-center { padding-left: 28px; }
.map-node-center > span { background: #f3bc36; box-shadow: 0 0 0 8px rgba(243,188,54,.14), 0 0 26px rgba(243,188,54,.45); }
.map-node-center strong { font-size: 1.05rem; }
.node-sodertalje { left: 39.8%; top: 53%; }
.node-vasteras { left: 10.8%; top: 14%; }
.node-eskilstuna { left: 11.8%; top: 28%; }
.node-strangnas { left: 24.8%; top: 34%; }
.node-malmkoping { left: 22%; top: 49.5%; }
.node-flen { left: 11.8%; top: 65.5%; }
.node-katrineholm { left: 24%; top: 84%; }
.node-nykoping { left: 42%; top: 84%; }
.node-norrkoping { left: 59%; top: 85%; }
.node-muni-jarfalla { left: 45%; top: 12.5%; }
.node-muni-solna { left: 60%; top: 14%; }
.node-muni-stockholm { left: 68.8%; top: 16%; }
.node-muni-sundbyberg { left: 52%; top: 23%; }
.node-muni-huddinge { left: 51%; top: 38.5%; }
.node-muni-nykvarn { left: 30.8%; top: 48.5%; }
.node-muni-salem { left: 44.5%; top: 44.5%; }
.node-muni-botkyrka { left: 52%; top: 47.5%; }
.node-muni-nacka { left: 76.5%; top: 36.5%; }
.node-muni-haninge { left: 78.5%; top: 66.5%; }
.map-radius { position: absolute; border: 1px solid rgba(71,216,231,.14); border-radius: 50%; animation: mapPulse 4s ease-out infinite; }
.radius-stockholm-one { width: 230px; height: 230px; left: 34%; top: 24%; }
.radius-stockholm-two { width: 170px; height: 170px; right: 6%; bottom: 7%; animation-delay: -2s; }

/* Process */
.process-section { background: #07141e; }
.process-track { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.process-step { min-height: 290px; padding: 28px 25px; border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius); background: linear-gradient(180deg, rgba(13,38,53,.88), rgba(8,25,37,.82)); box-shadow: 0 15px 36px rgba(0,0,0,.18); }
.step-head { display: flex; align-items: center; margin-bottom: 62px; }
.step-head span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #071521; background: var(--cyan); font-size: .78rem; font-weight: 900; }
.step-head i { flex: 1; height: 1px; margin-left: 15px; background: linear-gradient(90deg, var(--cyan), transparent); }
.process-step h3 { margin: 0 0 10px; color: #fff; font-size: 1.28rem; }
.process-step p { margin: 0; color: #91aab7; }
.process-step:hover .step-head span { background: var(--orange); }

/* Contact */
.contact-section { position: relative; overflow: hidden; padding: 116px 0; background: linear-gradient(135deg, #030d13, #071824 45%, #0d3445); }
.contact-grid-bg { position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 50px 50px; mask-image: radial-gradient(circle at 70% 40%, #000, transparent 67%); }
.contact-orb { position: absolute; width: 700px; height: 700px; right: -300px; bottom: -280px; border-radius: 50%; background: radial-gradient(circle, rgba(71,216,231,.2), transparent 68%); }
.contact-layout { position: relative; display: grid; grid-template-columns: minmax(320px,.72fr) minmax(600px,1.28fr); gap: 56px; align-items: start; }
.contact-copy { position: sticky; top: calc(var(--header-height) + 38px); padding-top: 66px; }
.contact-copy > p:not(.eyebrow) { max-width: 560px; color: #a8bec8; font-size: 1.08rem; }
.contact-benefits { display: grid; gap: 10px; max-width: 500px; margin-top: 30px; }
.contact-benefits span { display: flex; align-items: center; gap: 12px; color: #dcecf2; font-size: .92rem; font-weight: 750; }
.contact-benefits i { width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center; border: 1px solid rgba(71,216,231,.22); border-radius: 10px; color: var(--cyan); background: rgba(71,216,231,.07); font-size: .7rem; font-style: normal; font-weight: 950; }
.contact-person { display: flex; align-items: center; gap: 14px; margin-top: 38px; }
.avatar { width: 52px; height: 52px; flex: 0 0 52px; display: grid; place-items: center; border-radius: 16px; color: #071521; background: linear-gradient(135deg, var(--eco-blue), var(--eco-cyan) 54%, var(--eco-green)); font-weight: 950; }
.contact-person div:last-child { display: grid; }
.contact-person small { color: #7895a2; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-person strong { color: #fff; }
.contact-person span { color: #91aab6; font-size: .84rem; }
.contact-panel { padding: 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 30px; background: rgba(255,255,255,.065); backdrop-filter: blur(18px); box-shadow: var(--shadow-dark); }
.contact-quick-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
.contact-row { display: grid; grid-template-columns: 48px minmax(0,1fr) auto; align-items: center; gap: 14px; padding: 16px; border-radius: 17px; transition: background .2s ease, transform .2s ease; }
.contact-row + .contact-row { margin-top: 5px; }
.contact-quick-grid .contact-row + .contact-row { margin-top: 0; }
a.contact-row:hover { background: rgba(255,255,255,.075); transform: translateY(-2px); }
.contact-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.11); border-radius: 13px; color: var(--cyan); background: rgba(255,255,255,.05); }
.contact-row div { display: grid; }
.contact-row small { color: #7996a3; font-size: .69rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-row strong { color: #fff; font-size: .96rem; overflow-wrap: anywhere; }
.contact-row b { color: var(--orange); font-size: 1.1rem; }
.static-row { grid-template-columns: 48px minmax(0,1fr); margin-top: 6px; }
.contact-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; margin: 14px 16px 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); color: #7f99a5; font-size: .74rem; }
.offer-form { margin-top: 18px; padding: 22px 12px 4px; border-top: 1px solid rgba(255,255,255,.11); }
.offer-form-title { display: grid; margin-bottom: 20px; }
.offer-form-title small { color: #7d99a6; font-size: .68rem; letter-spacing: .12em; }
.offer-form-title strong { color: #fff; font-size: clamp(1.4rem,2.4vw,1.9rem); line-height: 1.18; }
.offer-form-title p { margin: 7px 0 0; color: #8ea8b4; font-size: .84rem; }
.form-progress { display: none; gap: 8px; margin: 0 0 20px; padding: 12px 14px; border: 1px solid rgba(71,216,231,.12); border-radius: 14px; background: rgba(71,216,231,.035); }
.form-enhanced .form-progress { display: grid; }
.form-progress-track { height: 5px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.08); }
.form-progress-track span { display: block; width: 16.666%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--eco-blue), var(--eco-cyan), var(--eco-green)); box-shadow: 0 0 14px rgba(71,216,231,.3); transition: width .28s ease; }
.form-progress p { display: flex; align-items: baseline; gap: 5px; margin: 0; color: #7794a0; font-size: .72rem; }
.form-progress p strong { color: var(--cyan); font-size: .92rem; }
.form-progress p b { margin-left: 5px; color: #d9e9ef; font-size: .78rem; }
.form-section-card { min-width: 0; margin: 0 0 16px; padding: 18px; border: 1px solid rgba(255,255,255,.09); border-radius: 20px; background: rgba(3,15,24,.38); }
.form-section-card legend { display: flex; align-items: center; gap: 10px; max-width: 100%; padding: 0 9px; color: #fff; font-size: .96rem; }
.form-section-card legend span { width: 31px; height: 31px; flex: 0 0 31px; display: grid; place-items: center; border-radius: 10px; color: #04131d; background: linear-gradient(135deg, var(--eco-blue), var(--eco-cyan) 55%, var(--eco-green)); font-size: .68rem; font-weight: 950; }
.form-section-card legend strong { overflow-wrap: anywhere; }
.offer-form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px 12px; }
.form-span-2 { grid-column: 1 / -1; }
.offer-form label { display: grid; gap: 6px; min-width: 0; margin-bottom: 10px; }
.offer-form label > span, .form-subtitle { color: #91aab6; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.form-subtitle { margin: 0 0 10px; font-weight: 800; }
.form-subgroup { margin-top: 15px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.075); }
.form-subgroup-first { margin-top: 2px; padding-top: 0; border-top: 0; }
.offer-form input:not([type="checkbox"]):not([type="file"]), .offer-form select, .offer-form textarea { width: 100%; min-width: 0; border: 1px solid rgba(255,255,255,.11); border-radius: 12px; color: #fff; background: rgba(3,15,24,.78); padding: 12px 13px; font-size: 16px; line-height: 1.35; outline: none; }
.offer-form select { min-height: 48px; color-scheme: dark; cursor: pointer; }
.offer-form select option { color: #fff; background: #071824; }
.offer-form input::placeholder, .offer-form textarea::placeholder { color: #607e8c; opacity: 1; }
.offer-form textarea { resize: vertical; min-height: 120px; }
.offer-form input:not([type="checkbox"]):not([type="file"]):focus, .offer-form select:focus, .offer-form textarea:focus { border-color: rgba(71,216,231,.65); box-shadow: 0 0 0 4px rgba(71,216,231,.08); }
.choice-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; margin-bottom: 12px; }
.choice-grid-wide { grid-template-columns: repeat(2,minmax(0,1fr)); }
.offer-form .choice { position: relative; display: flex; align-items: center; gap: 9px; min-height: 46px; margin: 0; padding: 10px 11px; border: 1px solid rgba(255,255,255,.09); border-radius: 12px; background: rgba(255,255,255,.035); cursor: pointer; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.offer-form .choice:hover { border-color: rgba(71,216,231,.3); background: rgba(71,216,231,.055); transform: translateY(-1px); }
.offer-form .choice input { width: 17px; height: 17px; flex: 0 0 17px; margin: 0; accent-color: var(--eco-cyan); }
.offer-form .choice > span { color: #d5e6ec; font-size: .77rem; line-height: 1.3; letter-spacing: 0; text-transform: none; }
.upload-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.offer-form .upload-field { min-height: 124px; align-content: start; margin: 0; padding: 13px; border: 1px dashed rgba(71,216,231,.28); border-radius: 14px; background: rgba(71,216,231,.035); }
.upload-field input[type="file"] { width: 100%; min-width: 0; color: #9db4bf; font-size: .76rem; }
.upload-field input[type="file"]::file-selector-button { margin: 3px 8px 7px 0; padding: 8px 10px; border: 0; border-radius: 9px; color: #06141f; background: linear-gradient(135deg, var(--eco-cyan), var(--eco-green)); font-weight: 850; cursor: pointer; }
.upload-field small { display: block; min-height: 1.2em; color: #7f9ca8; overflow-wrap: anywhere; }
.file-help { margin: 10px 0 0; color: #7894a1; font-size: .75rem; }
.file-error { margin: 10px 0 0; padding: 10px 12px; border: 1px solid rgba(244,183,64,.3); border-radius: 10px; color: #ffe0a0; background: rgba(244,183,64,.08); font-size: .8rem; }
.offer-form .consent-choice { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 0; padding: 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; background: rgba(255,255,255,.025); }
.consent-choice input { width: 18px; height: 18px; flex: 0 0 18px; margin: 2px 0 0; accent-color: var(--eco-cyan); }
.offer-form .consent-choice > span { color: #b7cbd4; font-size: .78rem; line-height: 1.45; letter-spacing: 0; text-transform: none; }
.form-submit-row { display: grid; gap: 12px; padding: 2px 0; }
.form-submit-row p { margin: 0; color: #7f9aa6; font-size: .78rem; text-align: center; }
.form-step-nav { display: flex; justify-content: space-between; gap: 10px; margin-top: 17px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.075); }
.form-step-nav button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 15px; border: 1px solid rgba(255,255,255,.11); border-radius: 12px; cursor: pointer; font-size: .8rem; font-weight: 900; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.form-step-nav button:hover { transform: translateY(-2px); }
.form-step-back { color: #c0d1d8; background: rgba(255,255,255,.04); }
.form-step-back:hover { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.07); }
.form-step-next { margin-left: auto; color: #06141f; background: linear-gradient(135deg, var(--eco-blue), var(--eco-cyan) 54%, var(--eco-green)); box-shadow: 0 10px 26px rgba(28,192,220,.16); }
.form-step-next:hover { border-color: transparent; box-shadow: 0 14px 30px rgba(28,192,220,.22); }
.form-submit-row[hidden] { display: none; }
.full-btn { width: 100%; min-height: 54px; border-radius: 16px; }
.offer-form .field-error { border-color: #f4b740 !important; box-shadow: 0 0 0 4px rgba(244,183,64,.09) !important; }
.form-validation-message { margin: 0 0 14px; padding: 11px 13px; border: 1px solid rgba(244,183,64,.32); border-radius: 11px; color: #ffe6b0; background: rgba(244,183,64,.08); font-size: .82rem; }

/* Footer */
.site-footer { color: #a3b6c0; background: #020a0f; }
.footer-main { min-height: 130px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 35px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo-link { width: 180px; height: 92px; }
.footer-company-logo { width: 180px; height: 90px; object-fit: contain; filter: drop-shadow(0 12px 18px rgba(0,0,0,.25)); }
.footer-links { display: flex; gap: 26px; font-size: .84rem; font-weight: 750; }
.footer-links a:hover, .footer-contact:hover { color: var(--cyan); }
.footer-contact { justify-self: end; color: #fff; font-size: .86rem; font-weight: 800; overflow-wrap: anywhere; }
.footer-contact span { color: var(--orange); }
.footer-areas { padding: 26px 0 24px; border-bottom: 1px solid rgba(255,255,255,.08); text-align: center; }
.footer-areas-title { margin: 0 0 8px; color: #eef9fc; font-size: .75rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.footer-areas p:last-child { max-width: 980px; margin: 0 auto; color: #77909c; font-size: .82rem; line-height: 1.7; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 25px; font-size: .76rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #fff; font-weight: 750; }

/* Floating contact */
.floating-actions { position: fixed; z-index: 1100; right: max(20px, env(safe-area-inset-right)); bottom: max(20px, env(safe-area-inset-bottom)); display: grid; justify-items: end; gap: 10px; }
.floating-actions a { position: relative; overflow: hidden; isolation: isolate; min-width: 58px; min-height: 54px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 0 17px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; box-shadow: 0 16px 42px rgba(2,10,18,.34); backdrop-filter: blur(10px); font-size: .82rem; font-weight: 900; transition: transform .22s ease, box-shadow .22s ease; }
.floating-actions a::before { content: ""; position: absolute; inset: 0; z-index: -1; }
.floating-actions a:hover,
.floating-actions a:focus-visible { transform: translateY(-4px) scale(1.03); }
.float-offer { min-width: 218px; color: #071521; }
.float-offer::before { background: linear-gradient(135deg, var(--eco-blue), var(--eco-cyan) 52%, var(--eco-green)); }
.float-offer-short { display: none; }
.float-mail { color: #fff; }
.float-mail::before { background: linear-gradient(135deg, #041a29, #0b3650 45%, #1487a6 78%, #47d8e7); }
.float-call { color: #071521; }
.float-call::before { background: linear-gradient(135deg, var(--eco-blue), var(--eco-cyan) 52%, var(--eco-green)); }

/* Thank-you page */
.thanks-body { min-height: 100svh; display: grid; place-items: center; padding: 24px; background: radial-gradient(circle at 70% 20%, rgba(71,216,231,.13), transparent 30%), linear-gradient(135deg, #020a0f, #0a2635); }
.thanks-card { width: min(680px, 100%); padding: clamp(28px,6vw,58px); border: 1px solid rgba(255,255,255,.12); border-radius: 32px; text-align: center; background: rgba(6,23,35,.88); box-shadow: var(--shadow-dark); }
.thanks-card img { width: min(280px, 75%); margin: 0 auto 24px; }
.thanks-card h1 { margin: 0; color: #fff; font-size: clamp(2rem,7vw,4.4rem); line-height: 1.05; letter-spacing: -.05em; }
.thanks-card > p:not(.eyebrow) { margin: 18px auto 28px; color: #a8bec8; font-size: 1.06rem; }

/* Reveal */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Animations */
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes dash { to { stroke-dashoffset: -68; } }
@keyframes mapPulse { 0% { transform: scale(.75); opacity: .75; } 100% { transform: scale(1.25); opacity: 0; } }
@keyframes airflowMoveOut { from { stroke-dashoffset: 0; opacity: .94; } 50% { opacity: 1; } to { stroke-dashoffset: -170; opacity: .88; } }
@keyframes pulseOutFlow { 0%,100% { transform: scale(1); opacity: .55; } 50% { transform: scale(1.08) translateX(1%); opacity: .86; } }
@keyframes servicesNeonSweep { 0%,68% { transform: translateX(-120%); opacity: 0; } 73% { opacity: .9; } 88% { transform: translateX(120%); opacity: .25; } 100% { transform: translateX(120%); opacity: 0; } }

/* Compact desktop / landscape tablet */
@media (max-width: 1280px) {
  :root { --header-height: 108px; }
  .container { width: min(1180px, calc(100% - 40px)); }
  .brand-logo-link { width: 244px; height: 96px; }
  .header-company-logo { width: 236px; height: 92px; }
  .main-nav { gap: 4px; font-size: .88rem; }
  .main-nav > a { padding-inline: 9px; }
  .nav-cta { min-height: 48px; padding-inline: 14px; }
  .area-section > .container.area-grid { width: min(1240px, calc(100% - 40px)); }
  .area-grid { grid-template-columns: .84fr 1.16fr; gap: 54px; }
  .map-card { min-height: 650px; }
}

@media (max-width: 1080px) {
  .statement-grid { grid-template-columns: 1fr; grid-template-areas: "intro" "visual" "highlights"; }
  .statement-highlights { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .why-grid { grid-template-columns: .8fr 1.2fr; gap: 42px; }
  .why-logo-wrap { min-height: 420px; }
  .area-section { padding: 108px 0 114px; }
  .area-section > .container.area-grid { width: min(100% - 40px, 1220px); }
  .area-grid { grid-template-columns: 1fr; gap: 42px; }
  .area-copy > p:not(.eyebrow), .area-note, .area-list { max-width: none; }
  .map-card { min-height: 640px; }
  .process-track { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .contact-layout { grid-template-columns: 1fr; gap: 52px; }
  .contact-copy { position: static; max-width: 760px; padding-top: 0; }
  .contact-panel { max-width: 900px; }
  .footer-main { grid-template-columns: 1fr; padding: 38px 0; text-align: center; }
  .footer-logo-link { justify-self: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .footer-contact { justify-self: center; }
}

/* Mobile navigation and responsive artwork replacement */
@media (max-width: 1080px) {
  :root { --header-height: 88px; }
  .container { width: min(100% - 32px, 900px); }
  .nav-wrap { min-height: var(--header-height); }
  .brand-logo-link { width: 190px; height: 72px; padding: 0; }
  .header-company-logo { width: 184px; height: 68px; }
  .menu-toggle { display: flex; }
  .main-nav {
    position: fixed;
    z-index: 1200;
    top: calc(var(--header-height) + 10px);
    left: 16px;
    right: 16px;
    max-height: calc(100svh - var(--header-height) - 26px);
    display: none;
    overflow-y: auto;
    padding: 14px;
    border: 1px solid rgba(71,216,231,.16);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(4,16,25,.99), rgba(6,22,33,.99));
    box-shadow: 0 24px 56px rgba(0,0,0,.46);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .main-nav.open { display: flex; }
  .main-nav > a { width: 100%; min-height: 48px; justify-content: flex-start; padding: 13px 15px; font-size: 1rem; }
  .main-nav > a:not(.nav-cta) { background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.04); }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { justify-content: center; margin-top: 4px; }
  .section { padding: 92px 0; }
  .section-intro { grid-template-columns: 1fr; gap: 24px; }
  .statement-section { padding: 96px 0; }
  .statement-highlights { grid-template-columns: 1fr; }
  .principle-card { min-height: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-logo-wrap { min-height: 340px; }
  .why-logo { max-width: 390px; }
  .why-copy { max-width: 760px; }
  .area-section { padding: 94px 0 98px; }
  .process-track { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .contact-section { padding: 94px 0; }
}

@media (max-width: 900px) {
  .hero-wow-card { display: none; }
  .hero-wow .container { width: min(100% - 32px, 760px); padding: 46px 0 54px; }
  .hero-mobile {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
    border: 1px solid rgba(71,216,231,.14);
    border-radius: 30px;
    overflow: hidden;
    background: radial-gradient(circle at 80% 18%, rgba(71,216,231,.11), transparent 28%), linear-gradient(145deg, rgba(4,16,25,.97), rgba(7,31,45,.94));
    box-shadow: 0 28px 70px rgba(0,0,0,.36);
  }
  .hero-mobile::before { content: ""; position: absolute; inset: 0; opacity: .12; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 36px 36px; }
  .hero-mobile-copy, .hero-mobile-visual { position: relative; z-index: 1; }
  .hero-mobile h1 { margin: 0; color: #fff; font-size: clamp(2.75rem, 10vw, 5rem); line-height: .98; letter-spacing: -.065em; }
  .hero-mobile h1 span { color: transparent; background: linear-gradient(90deg, #23bdff, #43e0eb 52%, #8cdf4c); -webkit-background-clip: text; background-clip: text; }
  .hero-mobile-copy > p:not(.eyebrow) { max-width: 650px; margin: 22px 0 0; color: #b9ccd6; font-size: 1.04rem; }
  .hero-mobile-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
  .hero-mobile-area { display: flex; align-items: center; gap: 12px; margin-top: 22px; color: #dff6fa; }
  .hero-mobile-area > span { width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center; border-radius: 14px; color: #06131d; background: var(--cyan); }
  .hero-mobile-area div { display: grid; }
  .hero-mobile-area small { color: #829eaa; font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; }
  .hero-mobile-area strong { font-size: .94rem; }
  .hero-mobile-visual { height: 300px; border: 1px solid rgba(71,216,231,.13); border-radius: 22px; overflow: hidden; background: #020911; }
  .hero-mobile-visual img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; }
  .services-neon-wrap { display: none; }
  .services-neon-container { width: min(100% - 32px, 760px); padding: 82px 0 92px; }
  .services-mobile { display: block; }
  .services-mobile-intro h2 { font-size: clamp(2.25rem,8.2vw,4.6rem); }
  .services-mobile-intro h3 { margin: 16px 0 0; color: transparent; background: linear-gradient(90deg, #29bff8, #46dfee 50%, #83dc57); -webkit-background-clip: text; background-clip: text; font-size: clamp(1.45rem,5vw,2.25rem); line-height: 1.15; }
  .services-mobile-intro > p:not(.eyebrow) { max-width: 680px; margin: 20px 0 0; padding-left: 18px; border-left: 2px solid var(--cyan); color: #b8cbd4; font-size: 1.02rem; }
  .services-mobile-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 38px; }
  .services-mobile-card { position: relative; padding: 26px; border: 1px solid rgba(53,199,232,.38); border-radius: 24px; background: linear-gradient(180deg, rgba(7,28,43,.96), rgba(4,17,28,.96)); box-shadow: inset 0 0 0 1px rgba(71,216,231,.05), 0 18px 44px rgba(0,0,0,.26), 0 0 28px rgba(48,195,236,.08); }
  .services-mobile-card-green { border-color: rgba(126,217,87,.42); box-shadow: inset 0 0 0 1px rgba(126,217,87,.05), 0 18px 44px rgba(0,0,0,.26), 0 0 28px rgba(126,217,87,.08); }
  .services-mobile-number { color: #18bdf8; font-size: 1.55rem; font-weight: 950; }
  .services-mobile-card-green .services-mobile-number { color: var(--eco-green); }
  .services-mobile-card h3 { margin: 20px 0 10px; color: #fff; font-size: 1.3rem; }
  .services-mobile-card p { margin: 0; color: #afc3cc; }
  .services-mobile-card a { display: flex; justify-content: space-between; gap: 12px; margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: var(--cyan); font-weight: 850; }
  .services-mobile-card-green a { color: var(--eco-green); }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, 760px); }
  .statement-shell { padding: 24px; border-radius: 28px; }
  .statement-grid { gap: 32px; }
  .ops-board { min-height: 340px; border-radius: 24px; }
  .ops-main { width: min(78%,330px); }
  .ops-node { padding: 9px 11px; font-size: .78rem; }
  .why-points { grid-template-columns: 1fr; }
  .area-section > .container.area-grid { width: min(100% - 28px, 760px); }
  .map-card {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 10px;
    padding: 94px 18px 22px;
    border-radius: 28px;
  }
  .map-grid { opacity: .1; }
  .map-lines, .map-radius { display: none; }
  .map-label { left: 18px; right: 18px; top: 18px; max-width: none; }
  .map-node {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 10px 8px 30px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 13px;
    background: rgba(255,255,255,.035);
    white-space: normal;
  }
  .map-node > span { left: 11px; top: 50%; width: 8px; height: 8px; transform: translateY(-50%); box-shadow: 0 0 0 4px rgba(126,217,87,.08), 0 0 14px rgba(126,217,87,.32); }
  .map-node strong, .map-node-center strong { font-size: .78rem; line-height: 1.25; }
  .map-node-center { grid-column: 1 / -1; min-height: 48px; padding-left: 34px; border-color: rgba(243,188,54,.22); background: rgba(243,188,54,.05); }
  .map-node-center > span { left: 13px; width: 10px; height: 10px; box-shadow: 0 0 0 5px rgba(243,188,54,.1), 0 0 16px rgba(243,188,54,.35); }
  .process-track { grid-template-columns: 1fr; }
  .process-step { min-height: 0; }
  .step-head { margin-bottom: 34px; }
  .contact-quick-grid { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .upload-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; padding: 22px 0; text-align: center; }
}

@media (max-width: 620px) {
  :root { --header-height: 82px; }
  .container { width: calc(100% - 24px); }
  .brand-logo-link { width: 166px; height: 64px; }
  .header-company-logo { width: 162px; height: 60px; }
  .menu-toggle { width: 46px; height: 44px; }
  .main-nav { left: 12px; right: 12px; }
  .section { padding: 76px 0; }
  h2 { font-size: clamp(2.25rem,11vw,3.6rem); }
  .hero-wow .container, .services-neon-container { width: calc(100% - 24px); }
  .hero-wow .container { padding: 28px 0 38px; }
  .hero-mobile { padding: 22px; border-radius: 24px; }
  .hero-mobile h1 { font-size: clamp(2.45rem,13.2vw,3.7rem); }
  .hero-mobile-copy > p:not(.eyebrow) { font-size: .98rem; }
  .hero-mobile-actions { flex-direction: column; }
  .hero-mobile-actions .btn { width: 100%; }
  .hero-mobile-visual { height: 245px; }
  .services-neon-container { padding: 68px 0 76px; }
  .services-mobile-intro h2 { font-size: clamp(2rem, 9.2vw, 2.45rem); }
  .services-mobile-card { padding: 22px; }
  .statement-section { padding: 76px 0; }
  .statement-shell { padding: 20px; border-radius: 24px; }
  .statement-lead { font-size: 1rem; line-height: 1.72; }
  .statement-tags { gap: 8px; }
  .statement-tags span { width: 100%; justify-content: center; text-align: center; }
  .ops-board { min-height: auto; display: grid; gap: 10px; padding: 18px; }
  .ops-grid, .ops-line, .ops-ring { display: none; }
  .ops-main, .ops-node { position: relative; inset: auto; width: 100%; transform: none; }
  .ops-main { order: 0; padding: 20px; }
  .ops-node { display: flex; align-items: center; min-height: 44px; }
  .principle-card { padding: 22px 19px; }
  .why-logo-wrap { min-height: 260px; padding: 18px; }
  .why-logo { max-width: 300px; }
  .area-section { padding: 76px 0 82px; }
  .area-section > .container.area-grid { width: calc(100% - 24px); }
  .area-list { gap: 8px; }
  .area-list span { font-size: .78rem; padding: 8px 11px; }
  .map-card { grid-template-columns: 1fr; padding: 100px 14px 18px; }
  .map-node-center { grid-column: auto; }
  .contact-section { padding: 76px 0; }
  .contact-panel { padding: 10px; border-radius: 22px; }
  .contact-row { grid-template-columns: 42px minmax(0,1fr) auto; gap: 10px; padding: 13px 10px; }
  .static-row { grid-template-columns: 42px minmax(0,1fr); }
  .contact-icon { width: 38px; height: 38px; }
  .contact-row strong { font-size: .9rem; }
  .contact-meta { flex-direction: column; }
  .offer-form { padding-inline: 5px; }
  .form-section-card { padding: 14px 12px; border-radius: 17px; }
  .offer-form-grid { grid-template-columns: 1fr; }
  .form-span-2 { grid-column: auto; }
  .choice-grid, .choice-grid-wide { grid-template-columns: 1fr; }
  .contact-benefits span { align-items: flex-start; }
  .offer-form .choice { min-height: 44px; }
  .form-step-nav { flex-direction: column-reverse; }
  .form-step-nav button { width: 100%; }
  .form-step-next { margin-left: 0; }
  .footer-main { gap: 26px; }
  .footer-links { gap: 12px 20px; }
  .footer-contact { font-size: .8rem; }
  .floating-actions { right: max(10px, env(safe-area-inset-right)); bottom: max(10px, env(safe-area-inset-bottom)); gap: 8px; }
  .floating-actions a { min-width: 0; min-height: 46px; padding: 0 13px; font-size: .76rem; }
  .float-offer { min-width: 156px; }
  .float-offer-long { display: none; }
  .float-offer-short { display: inline; }
  .thanks-body { padding: 14px; }
  .thanks-card { padding: 28px 20px; border-radius: 24px; }
}

@media (max-width: 360px) {
  .brand-logo-link { width: 150px; }
  .header-company-logo { width: 146px; }
  .hero-mobile { padding: 19px; }
  .hero-mobile h1 { font-size: 2.36rem; }
  .hero-mobile-visual { height: 220px; }
  .map-label strong { font-size: .82rem; }
}

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


/* Dedicated offer page */
.offer-page { background: #030d13; }
.offer-page .contact-section {
  min-height: 100svh;
  padding-top: 72px;
  padding-bottom: 72px;
}
.offer-page .contact-copy { top: 36px; }

@media (max-width: 760px) {
  .offer-page .contact-section {
    padding-top: 42px;
    padding-bottom: 52px;
  }
}
