﻿:root {
  --bg: #061018;
  --bg-2: #0b1a24;
  --bg-3: #102633;
  --paper: #f3fafc;
  --ink: #13222b;
  --cyan: #3ec8dc;
  --cyan-2: #8ae4f0;
  --green: #7ac943;
  --green-2: #9be06a;
  --amber: #ffb020;
  --red: #ff5d5d;
  --text: #e7f4f8;
  --muted: #9bb8c4;
  --line: rgba(62, 200, 220, 0.22);
  --glass: rgba(10, 26, 36, 0.72);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --max: 1180px;
  --font: "Manrope", "Segoe UI", sans-serif;
  --display: "Unbounded", "Trebuchet MS", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan-2); text-decoration: none; }
a:hover { color: #fff; }
button, input, textarea, select { font: inherit; }
.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus { left: 12px; top: 12px; z-index: 80; background: #fff; color: #000; padding: 8px 12px; }

.grain {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 1; opacity: 0.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='.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.topbar {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(6, 16, 24, 0.78);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.logo {
  display: flex; align-items: center; gap: 10px; color: #fff; flex: 0 0 auto;
}
.logo img { width: 42px; height: 42px; }
.logo strong { display: block; font-family: var(--display); font-size: 15px; letter-spacing: 0.02em; }
.logo span { display: block; font-size: 11px; color: var(--muted); margin-top: -2px; }

.nav { display: flex; gap: 4px; flex: 1; }
.nav-item { position: relative; }
.nav-item > a {
  display: block;
  color: var(--text);
  padding: 10px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.nav-item > a:hover, .nav-item:focus-within > a { background: rgba(62, 200, 220, 0.12); color: #fff; }
.mega {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 280px;
  padding: 12px;
  background: rgba(8, 20, 28, 0.96);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.nav-item:hover .mega, .nav-item:focus-within .mega { display: grid; gap: 4px; }
.mega a {
  display: block;
  color: var(--text);
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px;
}
.mega a:hover { background: rgba(62, 200, 220, 0.12); }
.mega .sub { padding-left: 12px; opacity: 0.8; font-size: 12px; }

.top-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.phone-link {
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}
.search-btn, .menu-btn {
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.search-btn svg, .menu-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.menu-btn { display: none; }

.hero {
  position: relative;
  min-height: 67vh;
  display: grid;
  align-items: start;
  overflow: hidden;
}
.hero-stage { position: absolute; inset: 0; }
.hero-layer {
  position: absolute; inset: -12%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.layer-city { background-image: url("../images/layer-city.png"); opacity: 0.55; }
.layer-globe {
  background-image: url("../images/hero-globe.png");
  background-size: 108%;
  background-position: 62% 38%;
  mix-blend-mode: screen;
  opacity: 0.92;
}
.layer-cables {
  background-image: none;
  background:
    radial-gradient(ellipse at 8% 42%, rgba(62, 200, 220, 0.28), transparent 42%),
    radial-gradient(ellipse at 88% 28%, rgba(255, 176, 32, 0.18), transparent 40%),
    linear-gradient(118deg, transparent 10%, rgba(62, 200, 220, 0.16) 38%, transparent 58%);
  mix-blend-mode: screen;
  opacity: 0.85;
}
.layer-vignette {
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, transparent 0%, rgba(6,16,24,0.15) 42%, rgba(6,16,24,0.88) 100%),
    linear-gradient(180deg, rgba(6,16,24,0.15), rgba(6,16,24,0.92));
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px 22px 48px;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(6,16,24,0.5);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-2);
  font-weight: 800;
}
h1, h2, h3, .display {
  font-family: var(--display);
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.hero h1 {
  font-size: clamp(34px, 6vw, 72px);
  max-width: 14ch;
  margin: 18px 0 16px;
}
.hero p.lead, .page-hero .lead {
  max-width: 54ch;
  color: var(--muted);
  font-size: 18px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 18px; border-radius: 14px;
  border: 0; cursor: pointer; font-weight: 800;
}
.btn-primary { background: linear-gradient(180deg, var(--green-2), var(--green)); color: #10210a; }
.btn-primary:hover { color: #081206; filter: brightness(1.05); }
.btn-ghost { background: rgba(255,255,255,0.06); color: #fff; border: 1px solid var(--line); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }

.cloud-float {
  position: fixed; left: 16px; top: 86px; z-index: 30; width: 148px;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.4));
  animation: floaty 6s ease-in-out infinite;
}
.cloud-float img { width: 100%; border-radius: 24px; }
.cloud-float span {
  position: absolute; left: 14px; top: 14px;
  background: var(--red); color: #fff; font-size: 10px; font-weight: 800;
  padding: 3px 8px; border-radius: 999px; letter-spacing: 0.08em;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; position: relative; }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 32px; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); margin: 0; }
.kicker { color: var(--cyan); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; font-size: 12px; margin-bottom: 8px; }

.services {
  display: block;
  width: 100%;
}
.services > .custom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
}
.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16,38,51,0.8), rgba(8,20,28,0.9));
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
  box-shadow: var(--shadow);
}
.card img.cover {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.48;
  transform: scale(1.08);
  transition: transform 0.7s ease, opacity 0.4s;
}
.card:hover img.cover { transform: scale(1.16); opacity: 0.62; }
.card .shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, #061018 92%);
}
.card h3, .card p, .card .more { position: relative; z-index: 1; }
.card h3 { margin: 0 0 8px; font-size: 22px; }
.card p { margin: 0; color: var(--muted); }
.more { margin-top: 14px; font-weight: 800; color: var(--green-2); }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: -40px; position: relative; z-index: 3;
}
.stat {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  backdrop-filter: blur(12px);
}
.stat b { display: block; font-family: var(--display); font-size: 28px; color: var(--cyan-2); }
.stat span { color: var(--muted); font-size: 13px; }

.parallax-band {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.parallax-band .bg {
  position: absolute; inset: -20%;
  background: url("../images/service-it.png") center / cover no-repeat;
  transform: translateZ(0);
}
.parallax-band .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,16,24,0.92), rgba(6,16,24,0.35) 55%, rgba(6,16,24,0.8));
}
.parallax-band .wrap { position: relative; z-index: 1; max-width: 720px; }
.parallax-band h2 { font-size: clamp(28px, 4vw, 46px); }

.split {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; align-items: center;
}
.panel {
  background: var(--paper);
  color: var(--ink);
  border-radius: 28px;
  padding: 28px;
}
.panel h2, .panel h3 { color: var(--ink); }
.panel p { color: #35505c; }
.quote {
  border-left: 4px solid var(--green);
  padding-left: 16px;
  font-size: 18px;
  font-weight: 600;
}

.price-table, .prose table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}
.price-table th, .prose th {
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.price-table td, .prose td {
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.price-table tr:hover td { background: rgba(62,200,220,0.06); }
.price-table .cost { font-weight: 800; color: var(--green-2); white-space: nowrap; }
.table-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: auto;
}

.articles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.articles .card { min-height: 280px; padding: 22px; }
.article-card h3 { margin: 0 0 8px; font-size: 22px; }

.page-hero {
  position: relative;
  min-height: 180px;
  display: grid;
  align-items: start;
  overflow: hidden;
}
.page-hero .hero-stage { position: absolute; inset: 0; }
.page-hero-copy { position: relative; z-index: 2; padding: 24px 0 36px; }
.crumbs { color: var(--muted); font-size: 13px; margin-bottom: 10px; }
.crumbs a { color: var(--cyan-2); }

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  padding: 24px 0 90px;
}
.prose {
  background: var(--paper);
  color: var(--ink);
  border-radius: 28px;
  padding: 34px 36px 42px;
  box-shadow: var(--shadow);
  overflow-x: auto;
  font-family: Arial, Helvetica, sans-serif;
}
.prose h1, .prose h2, .prose h3 { color: #102028; font-family: var(--display); }
.prose h1 { font-size: 28px; }
.prose p, .prose li { color: #2c4652; font-size: 15px; line-height: 1.55; }
.prose a { color: #0d6e7d; font-weight: 700; }
.prose img, .prose .shot {
  border-radius: 12px;
  margin: 12px 0 20px;
  max-width: 100%;
  height: auto;
}
.prose ul { padding-left: 18px; }
.prose table {
  background: #fff;
  border-radius: 16px;
  width: 100% !important;
  max-width: 100%;
  table-layout: auto;
}
.prose th { color: #5b7380; }
.prose td { border-bottom: 1px solid #e4eef2; color: #243b45; max-width: 100%; }
.prose td img { margin: 6px auto; display: block; }
.prose .accent { color: #b42318; }
.prose strong { color: inherit; }
.is-inner .prose .item-page > h1:first-child,
.is-inner .prose .com-content-article__body > h1:first-child { display: none; }
.figure {
  margin: 0 0 24px;
  border-radius: 22px;
  overflow: hidden;
}
.figure img { width: 100%; height: 280px; object-fit: cover; }

.side { display: flex; flex-direction: column; gap: 16px; }
.side-card {
  border: 1px solid var(--line);
  background: rgba(16, 38, 51, 0.72);
  border-radius: 22px;
  padding: 18px;
}
.side-card h3 { margin: 0 0 10px; font-size: 16px; }
.nav > .nav-item:nth-last-child(-n+3) .mega { left: auto; right: 0; }
.side-card a { display: block; margin: 8px 0; }
.side-card .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
  text-align: center;
  line-height: 1;
}
.side-card .phone-xl { margin-bottom: 8px; }
.portrait { width: 100%; border-radius: 16px; margin-bottom: 12px; height: 180px; object-fit: cover; }

.form {
  display: grid; gap: 12px;
}
.form input, .form textarea, .form select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #d5e6ec;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
}
.form textarea { min-height: 140px; resize: vertical; }
.notice {
  display: none;
  background: rgba(122, 201, 67, 0.15);
  border: 1px solid var(--green);
  color: var(--green-2);
  padding: 12px 14px;
  border-radius: 12px;
}
.notice.show { display: block; }

.listing { display: grid; gap: 10px; }
.listing a {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  border: 1px solid #dce9ee;
}
.listing a:hover { border-color: var(--cyan); color: #0b1a24; }

footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
  background: #050e14;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; }
footer h4 { margin: 0 0 12px; }
footer a { color: var(--muted); display: block; margin: 6px 0; }
.copy { color: #6d8792; margin-top: 28px; font-size: 13px; }

.search-modal {
  display: none;
  position: fixed; inset: 0; z-index: 60;
  background: rgba(0,0,0,0.55);
  padding: 10vh 16px 16px;
}
.search-modal.open { display: block; }
.search-box {
  max-width: 720px; margin: 0 auto;
  background: #0d1d27;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
}
.search-box input {
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 20px;
  outline: none;
}
.search-results { margin-top: 12px; max-height: 50vh; overflow: auto; }
.search-results a { display: block; padding: 10px 6px; color: var(--text); border-top: 1px solid var(--line); }
.search-results small { display: block; color: var(--muted); }

.mobile-nav {
  display: none;
  position: fixed; inset: 58px 0 0 0; z-index: 45;
  background: #061018;
  overflow: auto;
  padding: 18px;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open { display: block; }
body.nav-open { overflow: hidden; }
.mobile-nav details { border-bottom: 1px solid var(--line); padding: 8px 0; }
.mobile-nav a { display: block; padding: 8px 0; color: var(--text); }

.vendor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.vendor {
  display: grid; place-items: center;
  min-height: 84px;
  border-radius: 16px;
  background: #102633;
  border: 1px solid var(--line);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
}

@media (max-width: 1180px) {
  .nav, .phone-link { display: none !important; }
  .menu-btn { display: inline-flex !important; }
  .topbar-inner { padding: 10px 12px; }
  .logo span { display: none; }
}
@media (max-width: 980px) {
  .services, .services > .custom, .articles, .stats, .split, .layout, .foot-grid, .vendor-grid {
    grid-template-columns: 1fr;
  }
  .cloud-float { display: none; }
  .hero { min-height: 58vh; }
  .prose { padding: 22px; }
}

@media (max-width: 420px) {
  .logo span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-layer, .parallax-band .bg, .cloud-float { transform: none !important; animation: none !important; }
}

.nav ul, .mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.nav .skp-menu, .nav .mod-menu { display: flex; gap: 4px; flex: 1; }
.nav .skp-menu > li, .nav .mod-menu > li { position: relative; }
.nav .skp-menu > li > a, .nav .mod-menu > li > a {
  display: block; color: var(--text); padding: 10px 11px; border-radius: 999px;
  font-size: 13px; font-weight: 700; white-space: nowrap;
}
.nav .skp-menu > li > a:hover, .nav .skp-menu > li.active > a, .nav .skp-menu > li:focus-within > a,
.nav .mod-menu > li > a:hover, .nav .mod-menu > li.active > a {
  background: rgba(62, 200, 220, 0.12); color: #fff;
}
.nav .mod-menu__toggle-sub { display: none !important; }
.nav .skp-menu > li > .mega, .nav .mod-menu > li > ul {
  display: none; position: absolute; top: calc(100% - 2px); left: 0; min-width: 280px;
  padding: 12px; background: rgba(8, 20, 28, 0.96); border: 1px solid var(--line);
  border-radius: 18px; box-shadow: var(--shadow); z-index: 50;
}
.nav .skp-menu > li:hover > .mega, .nav .skp-menu > li:focus-within > .mega,
.nav .mod-menu > li:hover > ul, .nav .mod-menu > li:focus-within > ul { display: grid; gap: 4px; }
.nav .mega a, .nav .mod-menu ul a {
  display: block; color: var(--text); padding: 8px 10px; border-radius: 10px; font-size: 13px;
}
.nav .mega a:hover, .nav .mod-menu ul a:hover { background: rgba(62, 200, 220, 0.12); }
.nav .mega ul, .nav .mod-menu ul ul { padding-left: 12px; }
.nav .mega ul a, .nav .mod-menu ul ul a { opacity: 0.8; font-size: 12px; }
.nav > .skp-menu > li:nth-last-child(-n+3) > .mega,
.nav > .mod-menu > li:nth-last-child(-n+3) > ul { left: auto; right: 0; }
.menu-btn { width: auto; min-width: 42px; padding: 0 10px; gap: 6px; font-weight: 800; color: #fff; }
.is-home .home-component .page-header { display: none; }
.is-inner .article-info, .is-inner .icons, .is-inner .com-content-article__info, .is-inner .contentpaneopen .article-info { display: none; }
.is-inner h2.page-header, .is-inner .page-header h2 { display: none; }
.side .moduletable { border: 1px solid var(--line); background: rgba(16, 38, 51, 0.72); border-radius: 22px; padding: 18px; }
.foot-grid .custom h4 { display: none; }
.foot-grid .custom a { display: block; margin: 6px 0; color: var(--muted); }
.breadcrumb { display: flex; gap: 8px; flex-wrap: wrap; padding: 0; margin: 0; list-style: none; color: var(--muted); }
.home-component { padding: 0 0 40px; }
@media (max-width: 1180px) {
  .nav .skp-menu, .nav .mod-menu { display: none !important; }
}
.mobile-nav .skp-menu, .mobile-nav .mod-menu { display: block; }
.mobile-nav .skp-menu > li, .mobile-nav .mod-menu > li { border-bottom: 1px solid var(--line); padding: 8px 0; }
.mobile-nav .mega, .mobile-nav .mod-menu ul {
  display: block; position: static; background: none; border: 0; padding: 8px 0 0 12px; box-shadow: none;
}
.mobile-nav .mega .sub,
.mobile-nav .mod-menu ul ul,
.mobile-nav .mod-menu__toggle-sub { display: none !important; }
