:root {
  --bg: #050607;
  --bg-2: #090B0D;
  --surface: #111417;
  --surface-2: #171A1D;
  --surface-3: #1C2024;
  --border: rgba(255, 255, 255, .08);
  --border-strong: rgba(255, 255, 255, .16);
  --text: #FFFFFF;
  --muted: #D6D8DA;
  --muted-2: #8A8F96;
  --primary: #258CFF;
  --primary-light: #258CFF;
  --primary-dim: rgba(37, 140, 255, .14);
  --glow: rgba(37, 140, 255, .18);
  --ok: #3DDC97;
  --warn: #E7B549;
  --crit: #FF5D5D;
  --radius: 4px;
  --radius-sm: 2px;
  --shadow: 0 24px 64px rgba(0, 0, 0, .45);
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --nav-h: 80px;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: var(--font); }
body {
  min-height: 100%;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -.011em;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--primary); color: #fff; }

.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus { left: 16px; top: 16px; z-index: 80; background: #fff; color: #000; padding: 8px 12px; }

.noise {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 40; opacity: .035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.55'/></svg>");
}

.grid-bg {
  pointer-events: none;
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 20%, transparent 72%);
}

.net-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; opacity: .35; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.container-wide { width: min(1280px, calc(100% - 40px)); margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 500;
}
.eyebrow::before {
  content: ""; width: 18px; height: 1px; background: var(--primary);
}

h1, h2, h3 { margin: 0; letter-spacing: -.04em; line-height: 1.05; font-weight: 500; }
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.1rem); }
h3 { font-size: 1.2rem; letter-spacing: -.03em; }
.lead { color: var(--muted); font-size: clamp(1.02rem, 1.6vw, 1.2rem); max-width: 46ch; }
.accent { color: var(--primary); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px; padding: 0 22px; border-radius: 2px; border: 1px solid transparent;
  font-weight: 500; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; cursor: pointer;
  transition: background .35s ease, border-color .35s ease, color .35s ease, transform .35s ease;
}
.btn:hover { transform: none; }
.btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: #1d78e0; }
.btn-ghost {
  background: transparent; border-color: rgba(255,255,255,.18); color: var(--text);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.03); }
.btn-full { width: 100%; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50; height: var(--nav-h);
  display: flex; align-items: center; transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
  background: transparent;
}
.nav.is-scrolled {
  background: rgba(8, 10, 12, .82);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: rgba(255, 255, 255, .06);
}
.nav-inner {
  width: min(1280px, calc(100% - 40px)); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  display: block;
  position: relative;
  flex: 0 0 auto;
  width: 228px;
  height: 68px;
  overflow: hidden;
  min-width: 228px;
  background: transparent;
}
.logo img, .logo svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 228px;
  height: 228px;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%);
  background: transparent;
}
.logo span, .logo small { display: none; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  position: relative;
  font-size: 13px; color: var(--muted); font-weight: 400;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: #fff;
  transition: right .35s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { height: 42px; padding: 0 16px; }
.nav-cta .link { font-size: 13.5px; color: var(--muted); font-weight: 500; padding: 8px 10px; }
.nav-cta .link:hover { color: var(--text); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.12); border-radius: 0;
  background: transparent; cursor: pointer; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  position: absolute; left: 12px; right: 12px; height: 1px; background: #fff; content: "";
  transition: transform .35s ease, opacity .35s ease, top .35s ease;
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 32px) 0 80px; overflow: hidden;
}
.hero-inner {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
  width: min(1280px, calc(100% - 40px)); margin: 0 auto;
}
.hero-copy h1 { max-width: 11ch; margin: 18px 0 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 22px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 16px; color: var(--muted); font-size: 13px; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--ok);
  box-shadow: 0 0 0 4px rgba(61, 220, 151, .12);
}
.hero-visual { position: relative; min-height: 560px; }
.hero-visual picture, .hero-visual img {
  position: absolute; inset: -8% -10% -8% 0; width: 118%; height: 116%; object-fit: cover;
  filter: saturate(.85) contrast(1.05);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 70%, transparent 100%),
              linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 70%, transparent 100%),
                      linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
  mask-composite: intersect; -webkit-mask-composite: source-in;
}
.hero-visual::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background:
    radial-gradient(ellipse at 70% 40%, transparent 20%, rgba(5,7,10,.55) 70%),
    linear-gradient(90deg, var(--bg) 0%, transparent 35%);
  box-shadow: inset 0 0 120px rgba(0,0,0,.55);
}
.hero-glow {
  position: absolute; width: 480px; height: 480px; right: 10%; top: 12%;
  background: radial-gradient(circle, var(--glow), transparent 68%);
  filter: blur(10px); z-index: 2; pointer-events: none;
}

.section { position: relative; padding: 112px 0; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head p { color: var(--muted); margin-top: 16px; }
.section-featured {
  padding-top: 72px;
  background:
    radial-gradient(900px 280px at 50% 0%, rgba(37,140,255,.12), transparent 70%);
}
.cards-featured { grid-template-columns: repeat(3, 1fr); }
.about-home {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start;
}
.about-home .prose p { color: var(--muted); margin: 0 0 14px; }
.clients-section .section-head { margin-bottom: 28px; }
.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.client-tile {
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 2px;
  padding: 18px 16px;
  min-height: 104px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  background: #fff;
  color: #111;
  overflow: hidden;
}
.client-tile img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}
.client-tile-dark {
  background: #0a0a0a;
  border-color: rgba(255, 255, 255, .08);
  color: #f5f5f5;
}
.client-tile-dark img {
  max-height: 80px;
}

.marquee { overflow: hidden; border-block: 1px solid var(--border); padding: 28px 0; width: 100%; }
.marquee-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: marquee 84s linear infinite;
  will-change: transform;
}
.tech-marquee .marquee-track { animation-duration: 84s; }
.marquee-group {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 48px;
  padding-inline-end: 48px;
  flex-shrink: 0;
}
.tech-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}
.tech-item img {
  width: 32px;
  height: 32px;
  max-width: none;
  flex-shrink: 0;
  object-fit: contain;
}
.tech-item span { line-height: 1; }
.tech-meta { display: block; font-size: 10px; color: var(--muted-2); letter-spacing: .14em; margin-top: 4px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; min-height: 220px;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: 0 0 0 1px rgba(37,140,255,.12); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); margin: 0; font-size: 14.5px; }
.card .index { font-family: var(--mono); color: var(--muted-2); font-size: 12px; margin-bottom: 18px; }
.spotlight { position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .3s; }
.card:hover .spotlight { opacity: 1; }

.infra {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
}
.infra-photo {
  position: relative; border-radius: 24px; overflow: hidden; min-height: 520px; border: 1px solid var(--border);
}
.infra-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; filter: saturate(.8); }
.infra-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(5,7,10,.78));
}
.flow { display: grid; gap: 0; margin-top: 28px; }
.flow-item {
  display: grid; grid-template-columns: 16px 1fr; gap: 14px; position: relative; padding: 8px 0;
}
.flow-item .node {
  width: 10px; height: 10px; border-radius: 50%; background: var(--primary); margin-top: 6px;
  box-shadow: 0 0 0 4px var(--primary-dim);
}
.flow-item:not(:last-child)::before {
  content: ""; position: absolute; left: 4px; top: 22px; bottom: -8px; width: 1px;
  background: linear-gradient(180deg, var(--primary), rgba(37,140,255,.1));
  animation: pulseLine 2.8s ease-in-out infinite;
}
.flow strong { display: block; font-size: 14px; }
.flow span { color: var(--muted); font-size: 13px; }

.list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.list-item {
  border: 1px solid var(--border); border-radius: 14px; padding: 16px 18px; color: var(--muted);
  background: var(--surface); font-size: 14px;
}
.list-item strong { color: var(--text); display: block; margin-bottom: 4px; }

.sla { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.sla-card {
  border: 1px solid var(--border); border-radius: 16px; padding: 20px; background: var(--surface);
  min-height: 140px;
}
.sla-card small { color: var(--muted-2); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.sla-card strong { display: block; margin: 12px 0 8px; font-size: 15px; }
.sla-card p { margin: 0; color: var(--muted); font-size: 13px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { border-top: 1px solid var(--border); padding-top: 18px; }
.stat b { font-family: var(--mono); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 500; letter-spacing: -.04em; display: block; }
.stat span { color: var(--muted); font-size: 13px; }

.seg-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.seg {
  border: 1px solid var(--border); border-radius: 14px; padding: 22px 16px; text-align: left;
  background: var(--surface); font-weight: 600; font-size: 14px;
}

.timeline { display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px; padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step .num { font-family: var(--mono); color: var(--primary-light); font-size: 18px; }
.step p { margin: 8px 0 0; color: var(--muted); }

.cases { display: grid; grid-template-columns: 1.3fr 1fr; gap: 16px; }
.case-card {
  position: relative; border-radius: 22px; overflow: hidden; min-height: 340px; border: 1px solid var(--border);
  display: flex; align-items: flex-end;
}
.case-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.case-card .cap {
  position: relative; z-index: 2; padding: 28px; background: linear-gradient(transparent, rgba(5,7,10,.9));
  width: 100%;
}
.case-card small { color: var(--muted); }

.quotes { display: grid; grid-template-columns: 1fr; }
.quote {
  border: 1px solid var(--border); border-radius: 22px; padding: 36px; background: var(--surface);
}
.quote p { font-size: 1.35rem; letter-spacing: -.03em; line-height: 1.4; max-width: 28ch; }
.quote footer { margin-top: 24px; color: var(--muted); font-size: 14px; }

.quotes-section {
  position: relative;
  padding: 88px 0;
  background:
    radial-gradient(720px 260px at 8% 0%, rgba(37, 140, 255, .10), transparent 62%),
    radial-gradient(520px 200px at 92% 100%, rgba(37, 140, 255, .06), transparent 58%),
    #F2F6FA;
  color: #152334;
}
.quotes-premium {
  background: #090B0D;
  color: #fff;
  border-block: 1px solid rgba(255, 255, 255, .05);
}
.quotes-section .eyebrow { color: #258CFF; }
.quotes-premium .eyebrow { color: #8A8F96; }
.quotes-section .eyebrow::before { background: #258CFF; }
.quotes-section h2 {
  margin-top: 10px;
  color: #1E6FDB;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
}
.quotes-premium h2 { color: #fff; }
.quotes-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.quotes-nav { display: flex; gap: 10px; }
.quotes-premium .quotes-btn {
  border-radius: 2px;
  border-color: rgba(255, 255, 255, .14);
  background: transparent;
  color: #fff;
  box-shadow: none;
}
.quotes-premium .quotes-btn:hover {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .35);
}
.quotes-premium .quotes-btn-next {
  background: #258CFF;
  border-color: #258CFF;
  color: #fff;
  box-shadow: none;
}
.quotes-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(37, 140, 255, .38);
  background: #fff;
  color: #1E6FDB;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 6px 18px rgba(30, 70, 120, .06);
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.quotes-btn svg { width: 18px; height: 18px; }
.quotes-btn:hover {
  transform: translateY(-1px);
  border-color: #258CFF;
  background: #F4F9FF;
}
.quotes-btn-next {
  background: #258CFF;
  border-color: #258CFF;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 140, 255, .28);
}
.quotes-btn-next:hover { background: #1E7CF0; }
.quotes-btn:focus-visible { outline: 2px solid #258CFF; outline-offset: 3px; }
.quotes-viewport { overflow: hidden; }
.quotes-track {
  display: flex;
  gap: 18px;
  width: 100%;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}
.quote-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(37, 140, 255, .16);
  border-radius: 20px;
  padding: 28px 26px 26px;
  box-shadow: 0 14px 36px rgba(21, 48, 84, .07);
}
.quotes-premium .quote-card {
  background: #111417;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 2px;
  box-shadow: none;
}
.quotes-premium .quote-card p { color: #D6D8DA; }
.quotes-premium .quote-card strong { color: #fff; }
.quotes-premium .quote-card footer span { color: #8A8F96; }
.quotes-premium .quote-mark { color: #258CFF; opacity: .35; }
.quote-mark {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: .72;
  color: #258CFF;
  opacity: .28;
  margin-bottom: 8px;
}
.quote-card blockquote { margin: 0; display: flex; flex-direction: column; flex: 1; }
.quote-card p {
  margin: 0;
  color: #3A4A5C;
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: -.01em;
}
.quote-card footer {
  margin-top: auto;
  padding-top: 22px;
  display: grid;
  gap: 2px;
}
.quote-card strong {
  color: #1E6FDB;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.02em;
}
.quote-card footer span {
  color: #6B7A8A;
  font-size: 13px;
  text-transform: lowercase;
}

.certs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cert { border: 1px solid var(--border); border-radius: 16px; padding: 20px; background: var(--surface); }
.cert small { color: var(--muted-2); }

.cta-final {
  position: relative; overflow: hidden;
  border: 1px solid var(--border); border-radius: 28px; padding: 64px 48px;
  background:
    radial-gradient(600px 200px at 80% 0%, rgba(37,140,255,.18), transparent),
    var(--surface);
}
.cta-final .kicker { color: var(--muted); font-size: 1.1rem; margin-bottom: 8px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.footer { border-top: 1px solid var(--border); padding: 64px 0 32px; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px; }
.footer a:hover { color: var(--text); }
.footer h4 { color: var(--text); font-size: 13px; margin-bottom: 14px; font-weight: 600; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 14px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 13px; }

.wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 45;
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(16, 22, 29, .9); border: 1px solid var(--border-strong);
  box-shadow: var(--shadow); color: #fff;
  transition: transform .25s ease, border-color .25s;
}
.wa:hover { transform: translateY(-2px); border-color: var(--primary); }
.wa svg { width: 18px; height: 18px; }

.page-hero { padding: calc(var(--nav-h) + 64px) 0 48px; position: relative; }
.page-hero p { color: var(--muted); max-width: 52ch; margin-top: 18px; }
.prose { color: var(--muted); max-width: 68ch; }
.prose p { margin: 0 0 16px; }
.prose h2, .prose h3 { color: var(--text); margin: 28px 0 10px; }
.form {
  display: grid; gap: 14px; max-width: 720px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { font-size: 13px; color: var(--muted); display: grid; gap: 6px; }
input, select, textarea {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 12px 14px; outline: none;
}
textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-dim); }
.alert { padding: 12px 14px; border-radius: 12px; border: 1px solid var(--border); }
.alert-ok { border-color: rgba(61,220,151,.3); color: var(--ok); }
.alert-err { border-color: rgba(255,93,93,.3); color: #ffb4b4; }

.wifi-plan {
  position: relative; height: 380px; border-radius: 22px; border: 1px solid var(--border);
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    var(--surface);
  background-size: 40px 40px, 40px 40px, auto;
  overflow: hidden;
}
.ap {
  position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--primary);
  box-shadow: 0 0 0 18px rgba(37,140,255,.08), 0 0 0 42px rgba(37,140,255,.05);
}
.ap::after {
  content: ""; position: absolute; inset: -30px; border: 1px dashed rgba(37,140,255,.25); border-radius: 50%;
  animation: ripple 4s linear infinite;
}

.empty {
  border: 1px dashed var(--border-strong); border-radius: 20px; padding: 48px; color: var(--muted); text-align: center;
}

.reveal { opacity: 0; transform: translateY(20px); animation: none; }
.reveal.in { animation: fadeUp .7s ease forwards; }

.status {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted);
}
.status i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.status.ok i { background: var(--ok); }
.status.warn i { background: var(--warn); }
.status.crit i { background: var(--crit); }
.status.neutral i { background: var(--muted-2); }

.cookies {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 48;
  max-width: 420px; margin-right: auto;
  background: rgba(11,15,20,.92); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: 16px; padding: 16px 18px; font-size: 13px; color: var(--muted);
}

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 49;
  background: rgba(5, 6, 7, .97);
  padding: 108px 28px 40px;
}
.mobile-menu.open { display: block; }
.mobile-menu-panel {
  width: min(720px, 100%);
  display: grid;
  gap: 8px;
}
.mobile-menu-kicker {
  margin: 0 0 28px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.mobile-menu nav { display: grid; }
.mobile-menu nav a {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff;
}
.mobile-menu nav a span {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted-2);
}
.mobile-menu nav a strong {
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 500;
  letter-spacing: -.03em;
}
.mobile-menu .btn { margin-top: 32px; justify-self: start; }
details.step { cursor: pointer; }
details.step summary { list-style: none; cursor: pointer; }
details.step summary::-webkit-details-marker { display: none; }

@keyframes fadeUp { to { opacity: 1; transform: none; } }
@keyframes marquee { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }
@keyframes pulseLine { 0%,100% { opacity: .35; } 50% { opacity: 1; } }
@keyframes ripple { from { transform: scale(.4); opacity: .8; } to { transform: scale(1.4); opacity: 0; } }

@media (max-width: 1024px) {
  .hero-inner, .infra, .cases, .footer-grid, .about-home { grid-template-columns: 1fr; }
  .hero-visual { min-height: 320px; }
  .cards, .list-grid, .certs, .cards-featured { grid-template-columns: 1fr 1fr; }
  .sla, .stats, .seg-grid, .client-grid { grid-template-columns: 1fr 1fr; }
  .quote-card { flex-basis: calc((100% - 18px) / 2); }
  .nav-links { display: none; }
  .nav-toggle { display: inline-block; }
  .hero-copy h1 { max-width: none; }
}
@media (max-width: 640px) {
  .cards, .list-grid, .certs, .form-row, .sla, .stats, .seg-grid, .cards-featured, .client-grid { grid-template-columns: 1fr; }
  .quotes-head { align-items: center; }
  .quote-card { flex-basis: 100%; min-height: 0; }
  .nav-cta .link,
  .nav-cta .btn { display: none; }
  .cta-final { padding: 36px 22px; }
  .hero { padding-bottom: 40px; }
  .section { padding: 72px 0; }
  .btn { height: 50px; }
  .logo { width: 176px; min-width: 176px; height: 54px; }
  .logo img, .logo svg { width: 176px; height: 176px; }
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 36px) 0 36px;
  min-height: 280px;
}
.contact-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.contact-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: blur(10px) saturate(.7) brightness(.38);
  transform: scale(1.08);
}
.contact-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(720px 280px at 80% 20%, rgba(37,140,255,.16), transparent 60%),
    linear-gradient(180deg, rgba(5,7,10,.55) 0%, rgba(5,7,10,.88) 70%, var(--bg) 100%);
}
.contact-hero .grid-bg { z-index: 1; opacity: .7; }
.contact-hero-inner { position: relative; z-index: 2; }
.contact-hero h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); max-width: 16ch; }
.contact-hero .lead { margin-top: 16px; max-width: 42ch; }
.contact-kicker {
  margin-top: 22px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-2); font-family: var(--mono);
}
.contact-main { padding: 8px 0 72px; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  grid-template-areas:
    "intro form"
    "blocks form"
    "channels form";
  gap: 28px 48px;
  align-items: start;
}
.contact-intro { grid-area: intro; }
.contact-intro h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 14px; }
.contact-intro p { color: var(--muted); max-width: 40ch; }
.contact-panel {
  grid-area: form;
  background: #0C1118;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 32px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  scroll-margin-top: calc(var(--nav-h) + 18px);
}
.contact-panel h2 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); margin: 6px 0 10px; }
.contact-panel-lead { color: var(--muted); margin: 0 0 24px; font-size: 15px; }
.contact-label {
  margin: 0;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--primary-light); font-weight: 600;
}
.contact-form { display: grid; gap: 16px; position: relative; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-field { display: grid; gap: 7px; }
.contact-field label {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 600;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  height: 54px;
  background: #080C11;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 16px;
  color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%238F9BA8' stroke-width='1.4' d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.contact-field textarea {
  height: auto; min-height: 140px; padding: 14px 16px; resize: vertical; line-height: 1.5;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: #5E6975; }
.contact-field input:hover,
.contact-field select:hover,
.contact-field textarea:hover { border-color: var(--border-strong); }
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-dim);
  background: #0A1017;
}
.contact-field .is-invalid { border-color: rgba(255,93,93,.55); }
.contact-field-error { margin: 0; font-size: 12px; color: #ffb4b4; }
.contact-submit {
  justify-self: start;
  min-width: 248px;
  height: 52px;
  gap: 10px;
}
.contact-submit-arrow { width: 16px; height: 16px; transition: transform .25s ease; }
.contact-submit:hover .contact-submit-arrow { transform: translateX(3px); }
.contact-submit.is-loading { pointer-events: none; opacity: .72; }
.contact-submit.is-loading .contact-submit-arrow { display: none; }
.btn-spinner {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25); border-top-color: #fff;
  animation: spin .7s linear infinite;
}
.contact-privacy, .contact-trust {
  display: flex; gap: 10px; align-items: flex-start;
  margin: 0; font-size: 12px; color: var(--muted-2); line-height: 1.5;
}
.contact-privacy svg { width: 14px; height: 14px; flex: none; margin-top: 2px; color: var(--muted); }
.contact-privacy a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.contact-trust { letter-spacing: .04em; text-transform: uppercase; font-size: 10px; }
.contact-trust span { color: var(--muted); }
.contact-banner {
  display: grid; gap: 4px; padding: 14px 16px; border-radius: 12px; margin-bottom: 8px;
  border: 1px solid var(--border); font-size: 14px;
}
.contact-banner-err { border-color: rgba(255,93,93,.3); color: #ffb4b4; }
.contact-banner strong { color: var(--text); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.contact-success { padding: 12px 4px 8px; }
.contact-success-icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  border: 1px solid rgba(61,220,151,.3); color: var(--ok); margin-bottom: 18px;
}
.contact-success-icon svg { width: 20px; height: 20px; }
.contact-success h2 { margin: 8px 0 10px; }
.contact-success p { color: var(--muted); max-width: 42ch; }
.contact-ref {
  margin-top: 22px; font-family: var(--mono); font-size: 12px; color: var(--muted-2);
}
.contact-ref span { color: var(--text); letter-spacing: .04em; }
.contact-channels { grid-area: channels; }
.contact-status {
  border: 1px solid var(--border); border-radius: 16px; padding: 20px;
  background: rgba(11,15,20,.55);
}
.contact-status-line {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ok); margin: 0 0 10px;
}
.contact-status-line .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--ok);
  box-shadow: 0 0 0 4px rgba(61,220,151,.12);
}
.contact-status > p { color: var(--muted); font-size: 14px; margin: 0 0 16px; }
.contact-channel {
  display: grid; gap: 2px; padding: 12px 0; border-top: 1px solid var(--border);
}
.contact-channel span { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); }
.contact-channel strong { font-size: 14px; font-weight: 600; }
.contact-channel:hover strong { color: var(--primary-light); }
.contact-blocks { grid-area: blocks; display: grid; gap: 18px; }
.contact-blocks article { display: grid; grid-template-columns: 22px 1fr; gap: 4px 12px; }
.contact-blocks svg { width: 18px; height: 18px; color: var(--primary-light); margin-top: 3px; }
.contact-blocks h3 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.contact-blocks p { grid-column: 2; margin: 0; color: var(--muted); font-size: 14px; }
.contact-after { padding: 24px 0 80px; border-top: 1px solid var(--border); }
.contact-after h2 { margin-bottom: 32px; font-size: clamp(1.5rem, 2.4vw, 2rem); }
.contact-steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.contact-steps li { position: relative; padding-right: 24px; }
.contact-steps span { font-family: var(--mono); font-size: 12px; color: var(--primary-light); letter-spacing: .12em; }
.contact-steps h3 { margin: 10px 0 8px; font-size: 1.05rem; }
.contact-steps p { margin: 0; color: var(--muted); font-size: 14px; max-width: 32ch; }
.contact-enterprise {
  position: relative; padding: 72px 0;
  background:
    radial-gradient(600px 200px at 10% 0%, rgba(37,140,255,.12), transparent 60%),
    var(--bg-2);
  border-block: 1px solid var(--border);
}
.contact-enterprise .lead { margin: 16px 0 28px; }
.contact-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-chips span {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid var(--border); border-radius: 999px; padding: 8px 12px; color: var(--muted);
}
.contact-eco { padding: 56px 0 80px; }
.contact-eco-title { margin: 8px 0 28px; color: var(--muted); font-size: 14px; }
.contact-eco-row {
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2);
}
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "form"
      "channels"
      "blocks";
    gap: 28px;
  }
  .contact-steps { grid-template-columns: 1fr; gap: 20px; }
  .contact-panel { padding: 24px 20px; }
}
@media (max-width: 640px) {
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-submit { width: 100%; min-width: 0; }
  .contact-hero { min-height: 240px; padding-bottom: 24px; }
  .container { width: min(var(--max), calc(100% - 40px)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track, .ap::after, .flow-item:not(:last-child)::before, .btn-spinner, .contact-hero-bg img { animation: none; }
  .marquee-group:nth-child(2) { display: none; }
  .quotes-track { transition: none; }
  .btn, .card, .contact-submit-arrow, .quotes-btn { transition: none; }
}
