:root {
  --navy-950: #03111c;
  --navy-900: #061824;
  --navy-850: #0a1f2e;
  --navy-800: #0e2a3b;
  --blue: #138cdb;
  --blue-light: #3db8ff;
  --cyan: #24d0df;
  --green: #12a673;
  --green-light: #35d49b;
  --ink: #122231;
  --muted: #5d6d79;
  --line: #dfe9ef;
  --surface: #f4f8fa;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(7, 32, 49, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: -36px;
  z-index: 50;
  background: var(--navy-950);
  box-shadow: 0 12px 34px rgba(2, 17, 28, 0.14);
  color: var(--white);
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.14);
}

.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #abc0cd;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.topbar p,
.topbar a {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar a {
  color: #d7e6ed;
  transition: color 180ms ease;
}

.topbar a:hover {
  color: var(--blue-light);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(210px, 18vw, 250px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
  margin-left: auto;
}

.nav-links a {
  position: relative;
  padding: 29px 0;
  color: #c8d6de;
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  min-height: 52px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue) 0%, #137cca 55%, var(--green) 145%);
  box-shadow: 0 15px 35px rgba(19, 140, 219, 0.24);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  box-shadow: 0 19px 40px rgba(19, 140, 219, 0.32);
  transform: translateY(-2px);
}

.button-small {
  min-height: 43px;
  padding-inline: 18px;
  border-radius: 12px;
  font-size: 13px;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--white);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-panel {
  position: absolute;
  top: 54px;
  right: 0;
  width: min(290px, calc(100vw - 48px));
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(5, 22, 34, 0.98);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.mobile-menu-panel a {
  padding: 12px 14px;
  border-radius: 10px;
  color: #d4e1e7;
  font-size: 14px;
  font-weight: 700;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a:last-child {
  background: rgba(19, 140, 219, 0.15);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 710px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 45%, rgba(19, 140, 219, 0.14), transparent 34%),
    linear-gradient(135deg, var(--navy-950) 0%, #061c2b 58%, #052331 100%);
  color: var(--white);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(64, 169, 220, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 169, 220, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, transparent 0%, #000 55%, #000 100%);
  opacity: 0.7;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  pointer-events: none;
}

.hero-glow-one {
  top: -220px;
  right: -150px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(61, 184, 255, 0.13);
  box-shadow: inset 0 0 120px rgba(19, 140, 219, 0.07);
}

.hero-glow-two {
  bottom: -260px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: rgba(18, 166, 115, 0.055);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.95fr);
  align-items: center;
  gap: 54px;
  padding-block: 74px 82px;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 12px;
  border: 1px solid rgba(61, 184, 255, 0.2);
  border-radius: 999px;
  background: rgba(19, 140, 219, 0.08);
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(47px, 5.2vw, 72px);
  font-weight: 750;
  letter-spacing: -0.058em;
  line-height: 0.99;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--blue-light), var(--cyan) 54%, var(--green-light));
  background-clip: text;
}

.hero-lead {
  max-width: 610px;
  margin: 25px 0 0;
  color: #b5c8d3;
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
  color: #dbe7ec;
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: rgba(61, 184, 255, 0.35);
  box-shadow: none;
}

.hero-proof {
  margin-top: 31px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: #9fb6c3;
  font-size: 12px;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-proof svg {
  color: var(--green-light);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-image-shell {
  position: relative;
  width: min(660px, 58vw);
  height: 500px;
  overflow: hidden;
  border: 1px solid rgba(84, 190, 238, 0.18);
  border-radius: 46% 14% 24% 18% / 24% 15% 26% 18%;
  background: #051725;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.38);
}

.hero-image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
  opacity: 0.94;
}

.hero-image-shell::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(3, 17, 28, 0.98) 0%, rgba(3, 17, 28, 0.26) 31%, transparent 62%);
  content: "";
}

.hero-signal-field {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hero-signal-field i {
  --signal-y: 20%;
  --signal-delay: 0s;
  position: absolute;
  top: var(--signal-y);
  left: 27%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e8fbff;
  box-shadow: 0 0 8px #fff, 0 0 20px var(--blue-light);
  opacity: 0;
  animation: heroSignal 4.8s var(--signal-delay) ease-in-out infinite;
}

.hero-signal-field i::before {
  position: absolute;
  top: 3px;
  right: 4px;
  width: 82px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61, 184, 255, 0.8));
  content: "";
}

.hero-signal-field i:nth-child(2) { --signal-y: 31%; --signal-delay: -1.1s; left: 42%; }
.hero-signal-field i:nth-child(3) { --signal-y: 45%; --signal-delay: -2.4s; left: 50%; }
.hero-signal-field i:nth-child(4) { --signal-y: 58%; --signal-delay: -3.2s; left: 33%; }
.hero-signal-field i:nth-child(5) { --signal-y: 70%; --signal-delay: -0.6s; left: 47%; }
.hero-signal-field i:nth-child(6) { --signal-y: 80%; --signal-delay: -1.8s; left: 58%; }
.hero-signal-field i:nth-child(7) { --signal-y: 25%; --signal-delay: -3.8s; left: 61%; }
.hero-signal-field i:nth-child(8) { --signal-y: 52%; --signal-delay: -0.2s; left: 66%; }
.hero-signal-field i:nth-child(9) { --signal-y: 67%; --signal-delay: -2.8s; left: 72%; }
.hero-signal-field i:nth-child(10) { --signal-y: 38%; --signal-delay: -1.5s; left: 76%; }

@keyframes heroSignal {
  0% { opacity: 0; transform: translate(-55px, 22px) scale(0.55); }
  18%, 70% { opacity: 0.95; }
  100% { opacity: 0; transform: translate(110px, -28px) scale(1.15); }
}

.image-sheen {
  position: absolute;
  z-index: 2;
  inset: auto 10% 7% auto;
  width: 46%;
  height: 28%;
  border-radius: 50%;
  background: rgba(36, 208, 223, 0.12);
  filter: blur(40px);
}

.visual-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(61, 184, 255, 0.14);
  border-radius: 50%;
}

.orbit-one {
  width: 550px;
  height: 550px;
}

.orbit-two {
  width: 430px;
  height: 430px;
  border-style: dashed;
  animation: orbit 40s linear infinite;
}

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

.floating-card {
  position: absolute;
  z-index: 4;
  min-width: 250px;
  min-height: 74px;
  padding: 14px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(8, 30, 44, 0.82);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  margin-bottom: 4px;
  color: #91abba;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-card strong {
  color: #eef7fa;
  font-size: 13px;
}

.floating-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(19, 140, 219, 0.18);
  color: var(--blue-light);
}

.verified {
  margin-left: auto;
  color: var(--green-light);
}

.card-network {
  top: 42px;
  left: -32px;
}

.card-support {
  right: -14px;
  bottom: 28px;
  min-width: 220px;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  border: 3px solid rgba(53, 212, 155, 0.25);
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 20px rgba(53, 212, 155, 0.6);
}

.trust-strip {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-grid span {
  min-height: 38px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid var(--line);
  color: #506473;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.trust-grid span:first-child {
  border-left: 1px solid var(--line);
}

.trust-grid svg {
  color: var(--blue);
}

.section {
  padding-block: 110px;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading h2,
.experience-copy h2,
.coverage-copy h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(37px, 4vw, 54px);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.section-heading > p,
.heading-split > p,
.experience-copy > p,
.coverage-copy > p,
.contact-grid > div:first-child > p:last-child {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.heading-split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 70px;
}

.heading-split > p {
  margin: 0 0 4px;
}

.services {
  background: var(--surface);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.service-card {
  position: relative;
  min-height: 286px;
  padding: 29px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e0e9ee;
  border-radius: 21px;
  background: var(--white);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card::before {
  position: absolute;
  top: -80px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--card-glow);
  content: "";
  filter: blur(10px);
  opacity: 0.13;
}

.service-card:hover {
  border-color: rgba(19, 140, 219, 0.3);
  box-shadow: 0 24px 50px rgba(8, 40, 58, 0.09);
  transform: translateY(-6px);
}

.accent-blue { --card-color: var(--blue); --card-glow: var(--blue); }
.accent-cyan { --card-color: #0aaabe; --card-glow: var(--cyan); }
.accent-green { --card-color: var(--green); --card-glow: var(--green); }

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--card-color) 20%, transparent);
  border-radius: 15px;
  background: color-mix(in srgb, var(--card-color) 9%, white);
  color: var(--card-color);
}

.service-card h3 {
  margin: 24px 0 10px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.service-card-actions a:first-child,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--card-color, var(--blue));
  font-size: 13px;
  font-weight: 900;
}

.service-card-actions {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.service-card-actions a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 900;
}

.service-card-actions a:last-child {
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--card-color) 22%, transparent);
  border-radius: 999px;
  color: var(--card-color);
}

.solutions {
  background: var(--white);
}

.heading-centered {
  max-width: 750px;
  margin-inline: auto;
  text-align: center;
}

.heading-centered .section-kicker {
  justify-content: center;
}

.heading-centered > p {
  max-width: 620px;
  margin: 20px auto 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.audience-card {
  position: relative;
  min-height: 285px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(155deg, rgba(19, 140, 219, 0.12), transparent 44%),
    var(--navy-900);
  color: var(--white);
  transition: transform 220ms ease, background 220ms ease;
}

.audience-card:hover {
  background:
    linear-gradient(155deg, rgba(19, 140, 219, 0.22), transparent 48%),
    var(--navy-850);
  transform: translateY(-5px);
}

.audience-number {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(255, 255, 255, 0.13);
  font-size: 34px;
  font-weight: 800;
}

.audience-card > svg {
  margin: 50px 0 26px;
  color: var(--green-light);
}

.audience-card h3 {
  margin: 0 0 12px;
  font-size: 19px;
}

.audience-card p {
  margin: 0;
  color: #9eb4c1;
  font-size: 13px;
  line-height: 1.72;
}

.experience {
  overflow: hidden;
  background: #f1f7f9;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 90px;
}

.experience-visual {
  position: relative;
  min-height: 500px;
}

.experience-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: var(--navy-900);
  box-shadow: var(--shadow);
  color: var(--white);
}

.panel-main {
  position: absolute;
  inset: 0 55px 55px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 54% 48%, rgba(19, 140, 219, 0.2), transparent 34%),
    linear-gradient(145deg, #071b29, #092534);
}

.panel-main::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 184, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 184, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
}

.panel-status {
  position: absolute;
  top: 25px;
  left: 27px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #bcd0da;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 18px rgba(53, 212, 155, 0.7);
}

.network-map {
  position: absolute;
  inset: 0;
}

.node {
  position: absolute;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(61, 184, 255, 0.3);
  border-radius: 15px;
  background: rgba(9, 37, 52, 0.92);
  color: var(--blue-light);
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.26);
}

.node-center {
  top: 42%;
  left: 44%;
  width: 72px;
  height: 72px;
  border-color: rgba(53, 212, 155, 0.4);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(19, 140, 219, 0.32), rgba(18, 166, 115, 0.24));
  color: var(--green-light);
}

.node-one { top: 20%; left: 18%; }
.node-two { top: 18%; right: 18%; }
.node-three { bottom: 19%; left: 17%; }
.node-four { right: 16%; bottom: 17%; }

.line {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 32%;
  height: 1px;
  background: linear-gradient(90deg, rgba(61, 184, 255, 0.7), rgba(53, 212, 155, 0.2));
  transform-origin: left center;
}

.line::after {
  position: absolute;
  top: -2px;
  left: 18%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  content: "";
}

.line-one { transform: rotate(218deg); }
.line-two { transform: rotate(319deg); }
.line-three { transform: rotate(141deg); }
.line-four { transform: rotate(39deg); }

.panel-mini {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 215px;
  min-height: 145px;
  padding: 27px;
  border-color: rgba(53, 212, 155, 0.24);
  background: linear-gradient(145deg, #0b7e5c, #0d9568);
}

.panel-mini span {
  display: block;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.panel-mini p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.5;
}

.experience-copy > p {
  margin: 23px 0 0;
}

.check-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.check-list p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #405361;
  font-size: 14px;
  font-weight: 700;
}

.check-list svg {
  flex: 0 0 auto;
  padding: 3px;
  border-radius: 50%;
  background: rgba(18, 166, 115, 0.1);
  color: var(--green);
}

.text-link {
  --card-color: var(--blue);
  margin-top: 31px;
  font-size: 14px;
}

.experience-stats {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.experience-stats span {
  min-height: 86px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #dce8ed;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
}

.experience-stats strong {
  color: var(--blue);
  font-size: 23px;
  letter-spacing: -0.04em;
}

.experience-stats small {
  margin-top: 4px;
  color: #60727f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.credentials {
  background: var(--white);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.credential-card {
  min-height: 148px;
  padding: 23px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: linear-gradient(145deg, #fff, #f7fafc);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.credential-card:nth-child(1),
.credential-card:nth-child(2),
.credential-card:nth-child(3) {
  grid-column: span 2;
}

.credential-card:nth-child(4),
.credential-card:nth-child(5) {
  grid-column: span 3;
}

.credential-card:hover {
  border-color: rgba(19, 140, 219, 0.34);
  box-shadow: 0 18px 42px rgba(8, 40, 58, 0.08);
  transform: translateY(-3px);
}

.credential-card > span {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(19, 140, 219, 0.09);
  color: var(--blue);
}

.credential-card h3 {
  margin: 2px 0 7px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.credential-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.credential-note {
  margin: 22px 0 0;
  color: #748590;
  font-size: 11px;
  line-height: 1.6;
}

.brands {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(19, 140, 219, 0.1), transparent 28%),
    #f1f7f9;
}

.brands-heading {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 70px;
}

.brands-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(37px, 4vw, 54px);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.brands-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.brand-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.brand-group {
  padding: 25px;
  border: 1px solid #dce7ec;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(8, 40, 58, 0.04);
}

.brand-group h3 {
  margin: 0 0 18px;
  color: #526572;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.brand-tile {
  min-width: 0;
  min-height: 90px;
  padding: 11px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #e6edf1;
  border-radius: 13px;
  background: var(--white);
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease;
}

.brand-tile:hover {
  border-color: rgba(19, 140, 219, 0.3);
  transform: translateY(-3px);
}

.brand-tile img {
  width: min(76px, 100%);
  height: 30px;
  object-fit: contain;
  opacity: 0.86;
}

.brand-tile strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: #243746;
  font-size: 10px;
  line-height: 1.2;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(19, 140, 219, 0.12), rgba(18, 166, 115, 0.12));
  color: #157faf;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-assurance {
  margin-top: 18px;
  padding: 19px 22px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  border: 1px solid rgba(18, 166, 115, 0.22);
  border-radius: 17px;
  background: rgba(18, 166, 115, 0.07);
}

.brand-assurance svg {
  flex: 0 0 auto;
  color: var(--green);
}

.brand-assurance p {
  margin: 0;
  color: #466158;
  font-size: 12px;
  line-height: 1.65;
}

.projects {
  position: relative;
  background: var(--navy-950);
  color: var(--white);
}

.projects::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 184, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 184, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  pointer-events: none;
}

.projects .container {
  position: relative;
  z-index: 2;
}

.projects .section-heading h2 {
  color: var(--white);
}

.projects .section-heading > p,
.projects .heading-split > p {
  color: #9eb4c1;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: #09202e;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, border-color 220ms ease;
}

.project-card:hover {
  border-color: rgba(61, 184, 255, 0.34);
  transform: translateY(-6px);
}

.project-image {
  position: relative;
  height: 290px;
  display: block;
  overflow: hidden;
  background: #051622;
}

.project-image::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(3, 17, 28, 0.82));
  content: "";
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.project-card:hover .project-image img {
  transform: scale(1.035);
}

.project-image > span {
  position: absolute;
  right: 16px;
  bottom: 15px;
  z-index: 2;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(3, 17, 28, 0.76);
  color: #e8f4f8;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.project-card-copy {
  min-height: 172px;
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.project-card-copy small {
  color: var(--green-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card-copy strong {
  margin-top: 10px;
  max-width: 520px;
  font-size: 20px;
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.project-card-copy em {
  margin-top: auto;
  padding-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-light);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: 40px 20px;
  display: grid;
  place-items: start center;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.project-modal:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.project-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(1, 9, 15, 0.88);
  backdrop-filter: blur(9px);
}

.project-modal-card {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 27px;
  background: #071c29;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.5);
}

.project-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.project-modal-copy {
  max-width: 790px;
  padding-right: 45px;
}

.project-modal-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(31px, 4vw, 49px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.project-modal-copy > p:not(.section-kicker) {
  margin: 18px 0 0;
  color: #a9bec9;
  font-size: 14px;
  line-height: 1.75;
}

.project-points {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.project-points span {
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(53, 212, 155, 0.18);
  border-radius: 999px;
  background: rgba(53, 212, 155, 0.07);
  color: #d6eee5;
  font-size: 11px;
  font-weight: 800;
}

.project-points svg {
  color: var(--green-light);
}

.project-gallery {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.project-gallery img {
  width: 100%;
  height: min(54vw, 520px);
  min-height: 310px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;
  background: #03111c;
}

.project-gallery img:only-child {
  grid-column: 1 / -1;
  height: auto;
  max-height: 760px;
  object-fit: contain;
}

.process {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
}

.process-card {
  min-height: 260px;
  padding: 31px;
  background: var(--white);
}

.process-card > span {
  display: inline-flex;
  padding-bottom: 20px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-card h3 {
  margin: 35px 0 12px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.coverage {
  padding-top: 0;
  background: var(--white);
}

.coverage-card {
  min-height: 450px;
  padding: 65px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--navy-900);
  color: var(--white);
}

.coverage-copy {
  position: relative;
  z-index: 2;
}

.coverage-copy h2 {
  color: var(--white);
}

.coverage-copy > p {
  margin: 22px 0 0;
  color: #9db2be;
}

.city-list {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-list span {
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #d6e2e8;
  font-size: 12px;
  font-weight: 800;
}

.city-list svg {
  color: var(--green-light);
}

.coverage-map {
  position: relative;
  min-height: 300px;
  border: 1px solid rgba(61, 184, 255, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(19, 140, 219, 0.19), transparent 32%),
    repeating-radial-gradient(circle, transparent 0 36px, rgba(61, 184, 255, 0.075) 37px 38px);
}

.coverage-map::before,
.coverage-map::after {
  position: absolute;
  background: rgba(61, 184, 255, 0.09);
  content: "";
}

.coverage-map::before { top: 50%; right: 5%; left: 5%; height: 1px; }
.coverage-map::after { top: 5%; bottom: 5%; left: 50%; width: 1px; }

.coverage-dot {
  position: absolute;
  z-index: 2;
  width: 12px;
  height: 12px;
  border: 3px solid rgba(53, 212, 155, 0.22);
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 24px rgba(53, 212, 155, 0.75);
}

.coverage-dot::after {
  position: absolute;
  top: 12px;
  left: 50%;
  color: #dce9ef;
  font-size: 10px;
  font-weight: 800;
  transform: translateX(-50%);
}

.dot-lima { top: 51%; left: 49%; }
.dot-lima::after { content: "LIMA"; }
.dot-arequipa { right: 29%; bottom: 16%; }
.dot-arequipa::after { content: "AREQUIPA"; }
.dot-piura { top: 17%; left: 33%; }
.dot-piura::after { content: "PIURA"; }

.contact {
  position: relative;
  overflow: hidden;
  padding-block: 90px;
  background: linear-gradient(120deg, #0d82c9, var(--blue) 45%, #0a9b72 130%);
  color: var(--white);
}

.contact-glow {
  position: absolute;
  top: -200px;
  right: 10%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.06);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  align-items: center;
  gap: 90px;
}

.contact .section-kicker {
  color: #d8f4ff;
}

.contact h2 {
  max-width: 760px;
  color: var(--white);
}

.contact-grid > div:first-child > p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-actions {
  display: grid;
  gap: 17px;
}

.button-light {
  min-height: 58px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(2, 42, 66, 0.18);
  color: #0a6c9f;
}

.contact-phone {
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.075);
}

.contact-phone > span:first-child {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.contact-phone small,
.contact-phone strong {
  display: block;
}

.contact-phone small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.contact-phone strong {
  margin-top: 3px;
  font-size: 17px;
}

.footer {
  padding-top: 75px;
  background: var(--navy-950);
  color: var(--white);
}

.footer-grid {
  padding-bottom: 65px;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.7fr);
  gap: 55px;
}

.brand-footer {
  margin-bottom: 20px;
}

.footer-about > p {
  max-width: 350px;
  margin: 0;
  color: #8fa7b5;
  font-size: 13px;
  line-height: 1.72;
}

.footer-grid h3 {
  margin: 7px 0 21px;
  color: #dce8ed;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-grid > div:not(:first-child) a,
.footer-grid > div:not(:first-child) p {
  margin: 0;
  color: #8fa7b5;
  font-size: 12px;
  line-height: 1.5;
  transition: color 180ms ease;
}

.footer-grid > div:not(:first-child) a:hover {
  color: var(--blue-light);
}

.social-links {
  margin-top: 22px;
  display: flex;
  gap: 9px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  color: #a8bdc8;
  transition: 180ms ease;
}

.social-links a:hover {
  border-color: rgba(61, 184, 255, 0.25);
  background: rgba(19, 140, 219, 0.1);
  color: var(--blue-light);
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: #6f8997;
  font-size: 11px;
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  min-height: 50px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: #12a673;
  box-shadow: 0 15px 35px rgba(9, 76, 53, 0.28);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.home-float {
  position: fixed;
  z-index: 79;
  right: 22px;
  bottom: 84px;
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(6, 24, 36, 0.94);
  box-shadow: 0 13px 32px rgba(3, 17, 28, 0.25);
  color: var(--white);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, background 180ms ease;
}

.home-float:hover {
  background: var(--blue);
  transform: translateY(-3px);
}

/* Ofertas CCTV: dos paquetes orientados a cotización */
.welcome-offer {
  position: fixed;
  z-index: 200;
  inset: 0;
  padding: 24px;
  display: grid;
  place-items: center;
  overflow-y: auto;
  background: rgba(1, 11, 18, 0.8);
  backdrop-filter: blur(9px);
  animation: offer-backdrop-in 420ms ease both;
}

.welcome-offer-card {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100vh - 48px);
  padding: 30px;
  overflow-y: auto;
  border: 1px solid rgba(61, 184, 255, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 8%, rgba(19, 140, 219, 0.18), transparent 27%),
    linear-gradient(145deg, #071c2a, #03111c 68%);
  box-shadow: 0 35px 110px rgba(0, 0, 0, 0.52);
  color: var(--white);
  animation: offer-card-in 560ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  scrollbar-width: thin;
  scrollbar-color: rgba(61, 184, 255, 0.45) transparent;
}

.welcome-offer-close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #d9e9f1;
  cursor: pointer;
  transition: 180ms ease;
}

.welcome-offer-close:hover {
  border-color: rgba(61, 184, 255, 0.42);
  background: rgba(61, 184, 255, 0.15);
  color: var(--white);
  transform: rotate(8deg);
}

.welcome-offer-heading {
  max-width: 720px;
  padding-right: 50px;
}

.welcome-offer-label {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.welcome-offer-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 43px);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.welcome-offer-heading > p:last-child {
  max-width: 650px;
  margin: 13px 0 0;
  color: #a9c0cc;
  font-size: 13px;
  line-height: 1.65;
}

.welcome-offer-list {
  margin-top: 23px;
  display: grid;
  gap: 13px;
}

.welcome-offer-option {
  position: relative;
  min-height: 188px;
  padding: 16px;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 190px;
  align-items: stretch;
  gap: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.045);
  animation: offer-option-in 620ms 120ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.welcome-offer-option:nth-child(2) {
  animation-delay: 250ms;
}

.welcome-offer-option.is-featured {
  border-color: rgba(53, 212, 155, 0.32);
  background: linear-gradient(115deg, rgba(18, 166, 115, 0.11), rgba(19, 140, 219, 0.08));
}

.welcome-offer-option::after {
  position: absolute;
  inset: 0 auto 0 -35%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.055), transparent);
  content: "";
  pointer-events: none;
  transform: skewX(-16deg);
  animation: offer-scan 5.5s 1.2s ease-in-out infinite;
}

.offer-option-visual {
  position: relative;
  min-height: 154px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(61, 184, 255, 0.16);
  border-radius: 17px;
  background:
    linear-gradient(rgba(61, 184, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 184, 255, 0.04) 1px, transparent 1px),
    rgba(5, 30, 45, 0.86);
  background-size: 22px 22px;
}

.offer-camera {
  z-index: 2;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(61, 184, 255, 0.28);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(19, 140, 219, 0.28), rgba(19, 140, 219, 0.08));
  box-shadow: 0 0 40px rgba(19, 140, 219, 0.2);
  color: var(--blue-light);
  animation: offer-camera-float 3.8s ease-in-out infinite;
}

.offer-drive {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(53, 212, 155, 0.3);
  border-radius: 11px;
  background: #08283a;
  color: var(--green-light);
}

.offer-orbit {
  position: absolute;
  border: 1px solid rgba(61, 184, 255, 0.17);
  border-radius: 50%;
  animation: orbit-spin 12s linear infinite;
}

.offer-orbit-one {
  width: 112px;
  height: 112px;
}

.offer-orbit-two {
  width: 142px;
  height: 142px;
  border-color: rgba(53, 212, 155, 0.12);
  animation-direction: reverse;
  animation-duration: 16s;
}

.offer-option-copy {
  align-self: center;
}

.offer-option-topline {
  display: flex;
  align-items: center;
  gap: 9px;
}

.offer-option-topline > span {
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.offer-option-topline small {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(53, 212, 155, 0.1);
  color: #8ae7c2;
  font-size: 9px;
  font-weight: 800;
}

.offer-option-copy h3 {
  margin: 8px 0 6px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.offer-option-copy > p {
  margin: 0;
  color: #abc0cb;
  font-size: 11px;
  line-height: 1.55;
}

.welcome-offer-points {
  margin-top: 10px;
  display: grid;
  gap: 5px;
}

.welcome-offer-points span {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: #d9e6ec;
  font-size: 10px;
  line-height: 1.4;
}

.welcome-offer-points svg {
  flex: 0 0 auto;
  color: var(--green-light);
}

.offer-option-action {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.offer-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8fe5c4;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-option-action strong {
  font-size: 16px;
  line-height: 1.15;
}

.offer-option-action .button {
  min-height: 42px;
  padding-inline: 13px;
  border-radius: 12px;
  font-size: 11px;
}

.welcome-offer-foot {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.welcome-offer-foot small {
  max-width: 650px;
  color: #7893a2;
  font-size: 9px;
  line-height: 1.5;
}

.welcome-offer-foot a {
  flex: 0 0 auto;
  color: var(--blue-light);
  font-size: 10px;
  font-weight: 900;
}

@keyframes offer-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes offer-card-in {
  from { opacity: 0; transform: translateY(26px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes offer-option-in {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes offer-camera-float {
  0%, 100% { transform: translateY(-3px) rotate(-2deg); }
  50% { transform: translateY(5px) rotate(2deg); }
}

@keyframes offer-scan {
  0%, 56% { left: -35%; opacity: 0; }
  62% { opacity: 1; }
  84%, 100% { left: 118%; opacity: 0; }
}

/* Soluciones digitales: vista previa en el inicio */
.digital-preview {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 20%, rgba(53, 212, 155, 0.13), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(61, 184, 255, 0.12), transparent 26%),
    var(--navy-950);
  color: var(--white);
}

.digital-preview::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.digital-preview .container {
  position: relative;
}

.digital-preview-head {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: end;
  gap: 80px;
}

.digital-preview-head h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(39px, 4.5vw, 60px);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.digital-preview-head > div:last-child > p {
  margin: 0 0 25px;
  color: #a9bfcb;
  font-size: 14px;
  line-height: 1.75;
}

.digital-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.digital-preview-card {
  min-height: 270px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.digital-preview-card:hover {
  border-color: rgba(61, 184, 255, 0.28);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-5px);
}

.digital-preview-card > span {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(53, 212, 155, 0.25);
  border-radius: 14px;
  background: rgba(53, 212, 155, 0.08);
  color: var(--green-light);
}

.digital-preview-card h3 {
  margin: 24px 0 10px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.digital-preview-card p {
  margin: 0;
  color: #9db3bf;
  font-size: 12px;
  line-height: 1.7;
}

.digital-preview-card em {
  margin-top: auto;
  padding-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-light);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

/* Página de la división digital */
.nav-current {
  color: var(--green-light) !important;
}

.digital-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.digital-hero-glow {
  position: absolute;
  top: 4%;
  right: 2%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 140, 219, 0.22), transparent 68%);
  filter: blur(8px);
}

.digital-hero-grid {
  position: relative;
  min-height: 690px;
  padding-block: 95px 105px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 75px;
}

.digital-hero h1 {
  max-width: 720px;
  margin: 19px 0 24px;
  font-size: clamp(48px, 5.5vw, 76px);
  letter-spacing: -0.065em;
  line-height: 0.99;
}

.digital-hero-grid > div:first-child > p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: #abc0cc;
  font-size: 17px;
  line-height: 1.7;
}

.digital-hero-tags {
  margin-top: 31px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.digital-hero-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #a9bfcb;
  font-size: 11px;
  font-weight: 700;
}

.digital-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(61, 184, 255, 0.2);
  border-radius: 25px;
  background: #071a28;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.34), 0 0 80px rgba(19, 140, 219, 0.08);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.console-top {
  height: 49px;
  padding-inline: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
}

.console-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #466371;
}

.console-top i:nth-child(1) { background: #ff7082; }
.console-top i:nth-child(2) { background: #ffc761; }
.console-top i:nth-child(3) { background: var(--green-light); }

.console-top span {
  margin-left: 8px;
  color: #7f9aa8;
  font-family: monospace;
  font-size: 10px;
}

.console-body {
  min-height: 390px;
  display: grid;
  grid-template-columns: 74px 1fr;
}

.console-body aside {
  padding-top: 28px;
  display: grid;
  align-content: start;
  justify-content: center;
  gap: 23px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.12);
}

.console-body aside span {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(61, 184, 255, 0.13);
  border-radius: 7px;
  background: rgba(61, 184, 255, 0.06);
}

.console-body aside span:first-child {
  border-color: rgba(53, 212, 155, 0.35);
  background: rgba(53, 212, 155, 0.12);
}

.console-content {
  padding: 30px;
}

.console-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.console-title > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

.console-title svg { color: var(--blue-light); }

.console-title em {
  color: var(--green-light);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.console-title em::before {
  width: 6px;
  height: 6px;
  margin-right: 6px;
  display: inline-block;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  content: "";
  animation: consolePulse 1.8s ease-in-out infinite;
}

.console-metrics {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.console-metrics span {
  height: 71px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(61, 184, 255, 0.15) 36%, transparent 36%) 14px 17px / 50% 6px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 62%, transparent 62%) 14px 39px / 68% 9px no-repeat,
    rgba(255, 255, 255, 0.025);
}

.console-chart {
  height: 151px;
  margin-top: 13px;
  padding: 22px 24px 0;
  display: flex;
  align-items: end;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background:
    repeating-linear-gradient(to bottom, transparent 0 37px, rgba(255, 255, 255, 0.035) 38px),
    rgba(255, 255, 255, 0.02);
}

.console-chart b {
  width: 13%;
  height: 46%;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(to top, var(--blue), var(--cyan));
  transform-origin: bottom;
  animation: digitalBars 4.2s ease-in-out infinite alternate;
}

.console-chart b:nth-child(2) { height: 70%; animation-delay: 200ms; }
.console-chart b:nth-child(3) { height: 56%; animation-delay: 400ms; }
.console-chart b:nth-child(4) { height: 87%; animation-delay: 600ms; }
.console-chart b:nth-child(5) { height: 68%; animation-delay: 800ms; }
.console-chart b:nth-child(6) { height: 96%; animation-delay: 1s; background: linear-gradient(to top, var(--green), var(--green-light)); }

.console-row {
  margin-top: 13px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 11px;
}

.console-row span {
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

@keyframes consolePulse {
  50% { opacity: 0.42; transform: scale(0.78); }
}

@keyframes digitalBars {
  to { transform: scaleY(0.72); filter: brightness(1.18); }
}

.digital-lines {
  background: var(--surface);
}

.digital-lines-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.digital-line-card {
  scroll-margin-top: 100px;
  min-height: 490px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  border: 1px solid #dde8ed;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 20px 55px rgba(7, 32, 49, 0.055);
}

.digital-line-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(19, 140, 219, 0.18);
  border-radius: 17px;
  background: rgba(19, 140, 219, 0.075);
  color: var(--blue);
}

.digital-line-eyebrow {
  margin: 27px 0 8px !important;
  color: var(--green) !important;
  font-size: 10px !important;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.digital-line-card h2 {
  max-width: 500px;
  margin: 0 0 15px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 39px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.digital-line-card > p:not(.digital-line-eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.digital-line-card ul {
  margin: 25px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.digital-line-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #3f5360;
  font-size: 12px;
  line-height: 1.5;
}

.digital-line-card li svg {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--green);
}

.digital-line-card > a {
  margin-top: auto;
  padding-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.digital-method {
  background: var(--white);
}

.digital-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.digital-steps article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--surface);
}

.digital-steps article > span {
  color: var(--blue);
  font-family: monospace;
  font-size: 12px;
  font-weight: 900;
}

.digital-steps h3 {
  margin: 49px 0 10px;
  font-size: 19px;
}

.digital-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.digital-disclaimer {
  max-width: 780px;
  margin: 35px auto 0;
  padding: 15px 20px;
  border: 1px solid rgba(19, 140, 219, 0.15);
  border-radius: 13px;
  background: rgba(19, 140, 219, 0.045);
  color: #536a77;
  font-size: 11px;
  line-height: 1.65;
  text-align: center;
}

.digital-contact {
  background: linear-gradient(135deg, #0b7fba, #0b9f77);
}

/* Cobertura animada y comunicación por alcance */
.coverage-ring {
  position: absolute;
  inset: 17%;
  border: 1px solid rgba(53, 212, 155, 0.18);
  border-radius: 50%;
  animation: coveragePulse 3.5s ease-in-out infinite;
}

.coverage-ring.ring-two {
  inset: 32%;
  border-color: rgba(61, 184, 255, 0.2);
  animation-delay: 1.1s;
}

.coverage-dot {
  animation: coverageDot 2.4s ease-in-out infinite;
}

.coverage-national-label {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.28);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.55;
  text-align: center;
  transform: translate(-50%, -50%);
}

.coverage-note {
  margin-top: 18px !important;
  color: #78919e !important;
  font-size: 10px !important;
  line-height: 1.55 !important;
}

@keyframes coveragePulse {
  50% { opacity: 0.35; transform: scale(1.08); }
}

@keyframes coverageDot {
  50% { box-shadow: 0 0 34px rgba(53, 212, 155, 0.95); transform: scale(1.12); }
}

/* Páginas individuales de servicios */
.service-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 40%, rgba(19, 140, 219, 0.18), transparent 31%),
    var(--navy-950);
  color: var(--white);
}

.service-hero-grid {
  position: relative;
  min-height: 650px;
  padding-block: 88px 100px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 90px;
}

.service-back {
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8ca7b6;
  font-size: 11px;
  font-weight: 800;
}

.service-hero h1 {
  max-width: 760px;
  margin: 19px 0 24px;
  font-size: clamp(48px, 5.8vw, 78px);
  letter-spacing: -0.065em;
  line-height: 1;
}

.service-hero-grid > div:first-child > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: #a8bec9;
  font-size: 17px;
  line-height: 1.7;
}

.service-visual {
  position: relative;
  min-height: 465px;
  display: grid;
  place-items: center;
}

.service-visual::before {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 184, 255, 0.12), transparent 68%);
  content: "";
}

.service-visual-core {
  position: relative;
  z-index: 3;
  width: 178px;
  height: 178px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(61, 184, 255, 0.3);
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(61, 184, 255, 0.16), rgba(53, 212, 155, 0.08));
  box-shadow: inset 0 0 55px rgba(61, 184, 255, 0.08), 0 28px 80px rgba(0, 0, 0, 0.3);
  color: var(--blue-light);
  transform: rotate(-5deg);
}

.service-visual-core svg {
  filter: drop-shadow(0 0 18px rgba(61, 184, 255, 0.32));
}

.service-motion-field,
.service-tech-motif {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-motion-field {
  z-index: 1;
}

.service-motion-field i {
  --particle-x: 12%;
  --particle-y: 18%;
  --particle-delay: 0s;
  position: absolute;
  top: var(--particle-y);
  left: var(--particle-x);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 14px var(--blue-light);
  animation: serviceParticle 4.6s var(--particle-delay) ease-in-out infinite;
}

.service-motion-field i:nth-child(2) { --particle-x: 24%; --particle-y: 72%; --particle-delay: -1.2s; }
.service-motion-field i:nth-child(3) { --particle-x: 38%; --particle-y: 12%; --particle-delay: -2.7s; }
.service-motion-field i:nth-child(4) { --particle-x: 63%; --particle-y: 18%; --particle-delay: -0.8s; }
.service-motion-field i:nth-child(5) { --particle-x: 82%; --particle-y: 32%; --particle-delay: -3.2s; }
.service-motion-field i:nth-child(6) { --particle-x: 78%; --particle-y: 75%; --particle-delay: -1.8s; }
.service-motion-field i:nth-child(7) { --particle-x: 55%; --particle-y: 88%; --particle-delay: -0.2s; }
.service-motion-field i:nth-child(8) { --particle-x: 15%; --particle-y: 44%; --particle-delay: -3.8s; }
.service-motion-field i:nth-child(9) { --particle-x: 90%; --particle-y: 57%; --particle-delay: -2.1s; }
.service-motion-field i:nth-child(10) { --particle-x: 45%; --particle-y: 66%; --particle-delay: -1.4s; }
.service-motion-field i:nth-child(11) { --particle-x: 68%; --particle-y: 49%; --particle-delay: -3.5s; }
.service-motion-field i:nth-child(12) { --particle-x: 31%; --particle-y: 37%; --particle-delay: -0.5s; }
.service-motion-field i:nth-child(3n) { background: var(--green-light); box-shadow: 0 0 14px var(--green-light); }

@keyframes serviceParticle {
  0%, 100% { opacity: 0.25; transform: translate3d(-8px, 10px, 0) scale(0.65); }
  50% { opacity: 1; transform: translate3d(12px, -14px, 0) scale(1.2); }
}

.service-tech-motif {
  z-index: 2;
  animation: motifFloat 6s ease-in-out infinite;
}

@keyframes motifFloat {
  50% { transform: translateY(-7px); }
}

/* Cada especialidad tiene su propio lenguaje visual, sin videos ni librerías 3D pesadas. */
.visual-wifi .service-tech-motif span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(220px + var(--ring, 0px));
  height: calc(220px + var(--ring, 0px));
  border-top: 2px solid rgba(61, 184, 255, 0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(calc(var(--turn, 0) * 60deg));
  animation: wifiWave 3s calc(var(--turn, 0) * -0.35s) ease-out infinite;
}
.visual-wifi .service-tech-motif span:nth-child(2) { --ring: 38px; --turn: 1; }
.visual-wifi .service-tech-motif span:nth-child(3) { --ring: 76px; --turn: 2; }
.visual-wifi .service-tech-motif span:nth-child(4) { --ring: 114px; --turn: 3; }
.visual-wifi .service-tech-motif span:nth-child(5) { --ring: 152px; --turn: 4; }
.visual-wifi .service-tech-motif span:nth-child(6) { --ring: 190px; --turn: 5; }
@keyframes wifiWave { 0% { opacity: 0; } 45% { opacity: 1; } 100% { opacity: 0.08; } }

.visual-cable .service-tech-motif,
.visual-fiber .service-tech-motif {
  inset: 18% 4%;
  overflow: hidden;
}
.visual-cable .service-tech-motif span,
.visual-fiber .service-tech-motif span {
  position: absolute;
  top: calc(17% * var(--row, 0));
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(61, 184, 255, 0.28) 22%, rgba(61, 184, 255, 0.9) 52%, rgba(53, 212, 155, 0.35) 80%, transparent);
  transform: rotate(calc((var(--row, 0) - 2) * 2deg));
}
.visual-cable .service-tech-motif span::after,
.visual-fiber .service-tech-motif span::after {
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 10px white, 0 0 22px var(--blue-light);
  content: "";
  animation: dataRun 3.4s calc(var(--row, 0) * -0.48s) linear infinite;
}
.visual-cable .service-tech-motif span:nth-child(2), .visual-fiber .service-tech-motif span:nth-child(2) { --row: 1; }
.visual-cable .service-tech-motif span:nth-child(3), .visual-fiber .service-tech-motif span:nth-child(3) { --row: 2; }
.visual-cable .service-tech-motif span:nth-child(4), .visual-fiber .service-tech-motif span:nth-child(4) { --row: 3; }
.visual-cable .service-tech-motif span:nth-child(5), .visual-fiber .service-tech-motif span:nth-child(5) { --row: 4; }
.visual-cable .service-tech-motif span:nth-child(6), .visual-fiber .service-tech-motif span:nth-child(6) { --row: 5; }
.visual-cable .service-tech-motif span { height: 1px; opacity: 0.62; }
.visual-cable .service-tech-motif span::after { border-radius: 2px; background: var(--green-light); }
.visual-fiber .service-tech-motif span { filter: drop-shadow(0 0 7px var(--blue-light)); }
@keyframes dataRun { to { left: 100%; } }

.visual-camera .service-tech-motif::before {
  position: absolute;
  top: 18%;
  right: 8%;
  bottom: 18%;
  left: 38%;
  border-right: 2px solid rgba(61, 184, 255, 0.52);
  border-radius: 50%;
  background: conic-gradient(from 140deg, transparent, rgba(61, 184, 255, 0.13), transparent 32%);
  content: "";
  transform-origin: 40% 50%;
  animation: cameraScan 4.5s ease-in-out infinite alternate;
}
.visual-camera .service-tech-motif span,
.visual-access .service-tech-motif span {
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: rgba(53, 212, 155, 0.5);
  border-style: solid;
}
.visual-camera .service-tech-motif span:nth-child(1), .visual-access .service-tech-motif span:nth-child(1) { top: 21%; left: 28%; border-width: 2px 0 0 2px; }
.visual-camera .service-tech-motif span:nth-child(2), .visual-access .service-tech-motif span:nth-child(2) { top: 21%; right: 28%; border-width: 2px 2px 0 0; }
.visual-camera .service-tech-motif span:nth-child(3), .visual-access .service-tech-motif span:nth-child(3) { right: 28%; bottom: 21%; border-width: 0 2px 2px 0; }
.visual-camera .service-tech-motif span:nth-child(4), .visual-access .service-tech-motif span:nth-child(4) { bottom: 21%; left: 28%; border-width: 0 0 2px 2px; }
.visual-camera .service-tech-motif span:nth-child(n+5), .visual-access .service-tech-motif span:nth-child(n+5) { display: none; }
@keyframes cameraScan { to { transform: rotate(22deg); } }

.visual-access .service-tech-motif::after {
  position: absolute;
  top: 28%;
  right: 25%;
  left: 25%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-light), transparent);
  box-shadow: 0 0 16px var(--green-light);
  content: "";
  animation: accessScan 3s ease-in-out infinite alternate;
}
@keyframes accessScan { to { transform: translateY(190px); } }

.visual-electricity .service-tech-motif span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 2px;
  background: linear-gradient(90deg, white, var(--blue-light), transparent);
  box-shadow: 0 0 10px var(--blue-light);
  transform: rotate(calc(var(--spark, 0) * 60deg)) translateX(118px);
  transform-origin: 0 0;
  animation: electricSpark 1.7s calc(var(--spark, 0) * -0.17s) steps(2) infinite;
}
.visual-electricity .service-tech-motif span:nth-child(2) { --spark: 1; }
.visual-electricity .service-tech-motif span:nth-child(3) { --spark: 2; }
.visual-electricity .service-tech-motif span:nth-child(4) { --spark: 3; }
.visual-electricity .service-tech-motif span:nth-child(5) { --spark: 4; }
.visual-electricity .service-tech-motif span:nth-child(6) { --spark: 5; }
@keyframes electricSpark { 0%, 72% { opacity: 0.12; width: 24px; } 78% { opacity: 1; width: 70px; } 100% { opacity: 0.18; } }

.visual-server .service-tech-motif {
  inset: 19% 17%;
  display: grid;
  align-content: center;
  gap: 9px;
}
.visual-server .service-tech-motif span {
  height: 31px;
  border: 1px solid rgba(61, 184, 255, 0.25);
  border-radius: 7px;
  background: linear-gradient(90deg, rgba(61, 184, 255, 0.11), transparent 65%);
  opacity: 0.52;
}
.visual-server .service-tech-motif span::after {
  float: right;
  width: 6px;
  height: 6px;
  margin: 11px 14px 0 0;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 10px var(--green-light);
  content: "";
  animation: serverLed 1.4s ease-in-out infinite alternate;
}
@keyframes serverLed { to { opacity: 0.25; } }

.visual-security .service-tech-motif span,
.visual-support .service-tech-motif span,
.visual-monitor .service-tech-motif span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 210px;
  height: 210px;
  border: 1px dashed rgba(61, 184, 255, 0.22);
  border-radius: 30%;
  transform: translate(-50%, -50%) rotate(calc(var(--layer, 0) * 15deg));
  animation: securityLayer 8s calc(var(--layer, 0) * -0.5s) linear infinite;
}
.visual-security .service-tech-motif span:nth-child(2), .visual-support .service-tech-motif span:nth-child(2), .visual-monitor .service-tech-motif span:nth-child(2) { --layer: 1; }
.visual-security .service-tech-motif span:nth-child(3), .visual-support .service-tech-motif span:nth-child(3), .visual-monitor .service-tech-motif span:nth-child(3) { --layer: 2; }
.visual-security .service-tech-motif span:nth-child(4), .visual-support .service-tech-motif span:nth-child(4), .visual-monitor .service-tech-motif span:nth-child(4) { --layer: 3; }
.visual-security .service-tech-motif span:nth-child(5), .visual-support .service-tech-motif span:nth-child(5), .visual-monitor .service-tech-motif span:nth-child(5) { --layer: 4; }
.visual-security .service-tech-motif span:nth-child(6), .visual-support .service-tech-motif span:nth-child(6), .visual-monitor .service-tech-motif span:nth-child(6) { --layer: 5; }
.visual-security .service-tech-motif span:nth-child(2), .visual-support .service-tech-motif span:nth-child(2), .visual-monitor .service-tech-motif span:nth-child(2) { width: 244px; height: 244px; }
.visual-security .service-tech-motif span:nth-child(3), .visual-support .service-tech-motif span:nth-child(3), .visual-monitor .service-tech-motif span:nth-child(3) { width: 278px; height: 278px; }
.visual-security .service-tech-motif span:nth-child(4), .visual-support .service-tech-motif span:nth-child(4), .visual-monitor .service-tech-motif span:nth-child(4) { width: 312px; height: 312px; }
.visual-security .service-tech-motif span:nth-child(5), .visual-support .service-tech-motif span:nth-child(5), .visual-monitor .service-tech-motif span:nth-child(5) { width: 346px; height: 346px; }
.visual-security .service-tech-motif span:nth-child(6), .visual-support .service-tech-motif span:nth-child(6), .visual-monitor .service-tech-motif span:nth-child(6) { width: 380px; height: 380px; }
.visual-security .service-tech-motif span:nth-child(odd) { border-color: rgba(53, 212, 155, 0.2); }
.visual-monitor .service-tech-motif span { border-radius: 50%; animation-duration: 5s; }
@keyframes securityLayer { to { transform: translate(-50%, -50%) rotate(360deg); } }

.service-orbit {
  position: absolute;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(61, 184, 255, 0.16);
  border-radius: 50%;
  animation: serviceOrbit 13s linear infinite;
}

.service-orbit::after {
  position: absolute;
  top: 19px;
  left: 64px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 18px var(--green-light);
  content: "";
}

.service-orbit.orbit-b {
  width: 285px;
  height: 285px;
  border-color: rgba(53, 212, 155, 0.14);
  animation-duration: 9s;
  animation-direction: reverse;
}

.service-orbit.orbit-b::after {
  top: auto;
  right: 32px;
  bottom: 30px;
  left: auto;
  background: var(--blue-light);
  box-shadow: 0 0 18px var(--blue-light);
}

.service-visual-card {
  position: absolute;
  z-index: 4;
  min-width: 188px;
  min-height: 70px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(6, 24, 36, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.visual-card-one { top: 13%; left: 0; }
.visual-card-two { right: 0; bottom: 12%; }

.service-visual-card > svg { color: var(--green-light); }
.service-visual-card span { display: grid; gap: 3px; }
.service-visual-card small { color: #7894a2; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.service-visual-card strong { color: #e6f0f4; font-size: 11px; }

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

.service-scope {
  background: var(--surface);
}

.service-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-highlight-grid article {
  min-height: 285px;
  padding: 31px;
  border: 1px solid #dfe9ee;
  border-radius: 21px;
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-highlight-grid article:hover {
  box-shadow: 0 24px 50px rgba(8, 40, 58, 0.08);
  transform: translateY(-5px);
}

.service-highlight-grid article > span {
  color: var(--blue);
  font-family: monospace;
  font-size: 11px;
  font-weight: 900;
}

.service-highlight-grid h3 {
  margin: 65px 0 13px;
  color: var(--ink);
  font-size: 21px;
  letter-spacing: -0.025em;
}

.service-highlight-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.service-applications {
  background: var(--white);
}

.service-app-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 100px;
}

.service-app-grid h2 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4.5vw, 58px);
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.service-app-grid > div:first-child > p:last-child {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.service-application-list {
  display: grid;
  gap: 12px;
}

.service-application-list p {
  min-height: 68px;
  margin: 0;
  padding: 17px 19px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
  color: #3a4f5c;
  font-size: 13px;
  font-weight: 800;
}

.service-application-list svg {
  color: var(--green);
}

.service-coverage-note {
  padding-block: 25px;
  background: var(--navy-900);
  color: var(--white);
}

.service-coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.service-coverage-grid > div {
  min-height: 105px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--navy-900);
}

.service-coverage-grid svg {
  flex: 0 0 auto;
  color: var(--green-light);
}

.service-coverage-grid span { display: grid; gap: 5px; }
.service-coverage-grid strong { font-size: 12px; }
.service-coverage-grid small { color: #8fa9b7; font-size: 10px; line-height: 1.45; }

.service-contact {
  background: linear-gradient(130deg, #0d82c9, #0d966e);
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .navbar > .button-small {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr 0.82fr;
    gap: 24px;
  }

  .hero-visual {
    min-width: 470px;
  }

  .card-network {
    left: 4px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-grid {
    gap: 55px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 0.7fr);
    gap: 35px;
  }
}

@media (max-width: 860px) {
  .site-header {
    top: 0;
  }

  .container {
    width: min(100% - 36px, 740px);
  }

  .topbar {
    display: none;
  }

  .navbar {
    min-height: 72px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
    margin-left: auto;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-block: 75px 90px;
  }

  .hero h1 {
    max-width: 740px;
  }

  .hero-lead {
    max-width: 680px;
  }

  .hero-visual {
    min-width: 0;
    min-height: 410px;
  }

  .hero-image-shell {
    width: 100%;
    height: 410px;
  }

  .card-network {
    top: -16px;
    left: 18px;
  }

  .card-support {
    right: 15px;
    bottom: -20px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 12px;
  }

  .trust-grid span,
  .trust-grid span:first-child {
    min-height: 52px;
    border: 0;
  }

  .section {
    padding-block: 88px;
  }

  .heading-split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .credential-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .credential-card:nth-child(n) {
    grid-column: span 1;
  }

  .credential-card:last-child {
    grid-column: 1 / -1;
  }

  .brands-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .brand-groups {
    grid-template-columns: 1fr;
  }

  .project-image {
    height: 250px;
  }

  .project-modal-card {
    padding: 36px;
  }

  .experience-visual {
    min-height: 470px;
  }

  .coverage-card {
    padding: 50px;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .coverage-map {
    min-height: 340px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-actions {
    max-width: 430px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .welcome-offer {
    padding: 14px;
    place-items: start center;
  }

  .welcome-offer-card {
    max-height: calc(100vh - 28px);
    padding: 24px;
    border-radius: 24px;
  }

  .welcome-offer-option {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .offer-option-action {
    grid-column: 1 / -1;
    padding: 14px 0 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 0;
  }

  .offer-option-action .offer-status {
    grid-column: 1;
  }

  .offer-option-action strong {
    grid-column: 1;
  }

  .offer-option-action .button {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(100% - 28px, 520px);
  }

  .navbar {
    min-height: 68px;
  }

  .brand-logo {
    width: 194px;
  }

  .hero-content {
    gap: 48px;
    padding-block: 58px 70px;
  }

  .eyebrow {
    align-items: flex-start;
    border-radius: 14px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 52px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-image-shell {
    height: 330px;
    border-radius: 24px;
  }

  .hero-image-shell::after {
    background: linear-gradient(90deg, rgba(3, 17, 28, 0.6), transparent 48%);
  }

  .floating-card {
    min-width: 0;
    min-height: 64px;
    padding: 11px;
  }

  .card-network {
    top: -20px;
    left: 10px;
    right: 56px;
  }

  .card-support {
    right: 10px;
    bottom: -22px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid span {
    justify-content: flex-start;
    padding-inline: 8px;
  }

  .section {
    padding-block: 72px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .experience-copy h2,
  .coverage-copy h2,
  .contact h2 {
    font-size: clamp(33px, 10vw, 43px);
  }

  .service-grid,
  .audience-grid,
  .process-grid,
  .credential-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .credential-card:last-child {
    grid-column: auto;
  }

  .credential-card {
    min-height: 130px;
  }

  .experience-stats {
    grid-template-columns: 1fr;
  }

  .experience-stats span {
    min-height: 72px;
  }

  .brands-heading h2 {
    font-size: clamp(33px, 10vw, 43px);
  }

  .brand-group {
    padding: 19px;
  }

  .brand-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-tile {
    min-height: 88px;
  }

  .brand-assurance {
    padding: 17px;
  }

  .project-image {
    height: 260px;
  }

  .project-modal {
    padding: 12px;
  }

  .project-modal-card {
    padding: 68px 18px 22px;
    border-radius: 22px;
  }

  .project-close {
    top: 14px;
    right: 14px;
  }

  .project-modal-copy {
    padding-right: 0;
  }

  .project-modal-copy h2 {
    font-size: clamp(29px, 9vw, 39px);
  }

  .project-gallery {
    grid-template-columns: 1fr;
  }

  .project-gallery img,
  .project-gallery img:only-child {
    grid-column: auto;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
  }

  .service-card {
    min-height: 270px;
  }

  .audience-card {
    min-height: 245px;
  }

  .audience-card > svg {
    margin-top: 38px;
  }

  .experience-visual {
    min-height: 390px;
  }

  .panel-main {
    inset: 0 20px 50px 0;
  }

  .panel-mini {
    width: 180px;
    min-height: 125px;
    padding: 22px;
  }

  .node-one { top: 20%; left: 10%; }
  .node-two { top: 18%; right: 10%; }
  .node-three { bottom: 17%; left: 8%; }
  .node-four { right: 9%; bottom: 16%; }

  .process-card {
    min-height: 230px;
  }

  .coverage-card {
    width: 100%;
    padding: 50px 25px;
    border-radius: 0;
  }

  .coverage-map {
    min-height: 285px;
  }

  .contact {
    padding-block: 72px;
  }

  .footer {
    padding-top: 62px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-bottom {
    padding-block: 22px 80px;
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }

  .home-float {
    right: 14px;
    bottom: 77px;
    width: 47px;
    height: 47px;
  }

  .welcome-offer {
    padding: 8px;
  }

  .welcome-offer-card {
    max-height: calc(100vh - 16px);
    padding: 22px 14px 16px;
    border-radius: 21px;
  }

  .welcome-offer-close {
    top: 12px;
    right: 12px;
  }

  .welcome-offer-heading {
    padding-right: 40px;
  }

  .welcome-offer-heading h2 {
    font-size: 27px;
  }

  .welcome-offer-option {
    padding: 12px;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 12px;
    border-radius: 17px;
  }

  .offer-option-visual {
    min-height: 132px;
  }

  .offer-camera {
    width: 64px;
    height: 64px;
  }

  .offer-camera svg {
    width: 36px;
    height: 36px;
  }

  .offer-orbit-one { width: 88px; height: 88px; }
  .offer-orbit-two { width: 112px; height: 112px; }

  .offer-option-copy h3 {
    font-size: 19px;
  }

  .offer-option-action {
    grid-template-columns: 1fr;
  }

  .offer-option-action .button {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }

  .welcome-offer-foot {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 1080px) {
  .digital-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .digital-hero-grid {
    gap: 45px;
  }

  .digital-console {
    transform: none;
  }

  .service-hero-grid {
    gap: 45px;
  }

  .service-app-grid {
    gap: 55px;
  }
}

@media (max-width: 860px) {
  .digital-preview-head,
  .digital-hero-grid {
    grid-template-columns: 1fr;
  }

  .digital-preview-head {
    gap: 28px;
  }

  .digital-hero-grid {
    min-height: auto;
    padding-block: 76px 90px;
  }

  .digital-console {
    width: min(100%, 690px);
  }

  .digital-lines-grid {
    grid-template-columns: 1fr;
  }

  .digital-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-hero-grid,
  .service-app-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-grid {
    min-height: auto;
    padding-block: 75px 90px;
  }

  .service-visual {
    width: min(100%, 650px);
    min-height: 430px;
  }

  .service-highlight-grid {
    grid-template-columns: 1fr;
  }

  .service-highlight-grid article {
    min-height: 235px;
  }

  .service-highlight-grid h3 {
    margin-top: 45px;
  }

  .service-app-grid {
    gap: 40px;
  }

  .service-coverage-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .digital-preview-grid,
  .digital-steps {
    grid-template-columns: 1fr;
  }

  .digital-preview-card {
    min-height: 240px;
  }

  .digital-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .digital-hero-grid > div:first-child > p:not(.eyebrow) {
    font-size: 15px;
  }

  .digital-hero-tags {
    display: grid;
  }

  .console-body {
    min-height: 310px;
    grid-template-columns: 1fr;
  }

  .console-body aside {
    display: none;
  }

  .console-content {
    padding: 22px 18px;
  }

  .console-chart {
    height: 125px;
    padding-inline: 16px;
    gap: 9px;
  }

  .digital-line-card {
    min-height: 500px;
    padding: 30px 24px;
  }

  .service-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .service-hero-grid > div:first-child > p:not(.eyebrow) {
    font-size: 15px;
  }

  .service-visual {
    min-height: 350px;
  }

  .service-visual::before {
    width: 310px;
    height: 310px;
  }

  .service-visual-core {
    width: 138px;
    height: 138px;
    border-radius: 32px;
  }

  .service-visual-core svg {
    width: 58px;
    height: 58px;
  }

  .service-orbit {
    width: 280px;
    height: 280px;
  }

  .service-orbit.orbit-b {
    width: 220px;
    height: 220px;
  }

  .service-visual-card {
    min-width: 164px;
    padding: 12px;
  }

  .visual-card-one { top: 6%; }
  .visual-card-two { bottom: 5%; }

  .service-highlight-grid article {
    padding: 26px;
  }

  .service-app-grid h2 {
    font-size: clamp(34px, 10vw, 45px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}