:root {
  --navy: #061426;
  --navy-2: #0a1d35;
  --ink: #0b1930;
  --muted: #637086;
  --blue: #0878f9;
  --blue-2: #38b9ff;
  --cyan: #7ee8ff;
  --coral: #ff6948;
  --ice: #eef7ff;
  --line: #dce7f0;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 35, 74, 0.13);
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font-family: inherit;
}

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

button,
input {
  font-size: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.topline {
  position: relative;
  z-index: 40;
  height: 34px;
  color: rgba(255, 255, 255, 0.66);
  background: #03101f;
  font-size: 12px;
}

.topline-inner {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topline-inner > span {
  letter-spacing: 0.03em;
}

.topline-inner > div,
.topline-inner a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topline-inner > div {
  gap: 24px;
}

.topline a {
  color: #fff;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 34px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(2, 13, 27, 0.72), rgba(2, 13, 27, 0.2));
  backdrop-filter: blur(14px);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  transform: rotate(-15deg);
}

.brand-mark span {
  position: absolute;
  inset: 4px 0 4px 9px;
  display: block;
  border: 4px solid var(--blue);
  border-left-width: 6px;
  border-radius: 50%;
}

.brand-mark span:last-child {
  inset: 9px 7px 9px 0;
  border-width: 3px;
  border-color: var(--blue-2);
}

.brand-word {
  color: var(--navy);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand-word span {
  color: var(--blue);
}

.brand-inverse .brand-word {
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex: 1;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.nav-links > a {
  transition: color 0.2s ease;
}

.nav-links > a:hover {
  color: #fff;
}

.nav-phone {
  display: none;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0 21px;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.text-arrow svg {
  transition: transform 0.2s ease;
}

.button:hover svg,
.text-arrow:hover svg {
  transform: translateX(3px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0b93ff);
  box-shadow: 0 12px 30px rgba(8, 120, 249, 0.28);
}

.button-primary:hover {
  box-shadow: 0 16px 38px rgba(8, 120, 249, 0.36);
}

.button-header {
  min-height: 42px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.button-large {
  min-height: 55px;
  padding-inline: 26px;
}

.button-white {
  color: var(--navy);
  background: #fff;
}

.button-outline-white {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  height: 790px;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero-slide {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.85s ease,
    visibility 0s linear 0.85s;
}

.hero-slide.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide.is-active .hero-image {
  animation: heroZoom 16s ease-out both;
}

.hero-slide-tv .hero-image {
  object-position: center;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 11, 24, 0.96) 0%, rgba(2, 13, 28, 0.86) 32%, rgba(2, 13, 28, 0.27) 70%, rgba(2, 13, 28, 0.17) 100%),
    linear-gradient(0deg, rgba(2, 12, 27, 0.65), transparent 42%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, black, transparent 68%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 96px;
}

.hero-copy {
  width: min(690px, 62vw);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active .hero-copy {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-tag span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #53e6ff;
  box-shadow: 0 0 0 7px rgba(83, 230, 255, 0.11), 0 0 20px #53e6ff;
  animation: pulseDot 2s ease infinite;
}

.hero-tag-new {
  padding: 8px 13px;
  border: 1px solid rgba(83, 230, 255, 0.24);
  border-radius: 999px;
  background: rgba(10, 116, 206, 0.2);
  backdrop-filter: blur(12px);
}

@keyframes pulseDot {
  50% {
    box-shadow: 0 0 0 12px rgba(83, 230, 255, 0), 0 0 28px #53e6ff;
  }
}

.hero h1,
.section-heading h2,
.performance-copy h2,
.tv-copy h2,
.trust-copy h2,
.support-copy h2,
.final-grid h2 {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(58px, 6vw, 84px);
  line-height: 0.99;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, #fff 0%, #58cbff 40%, #0d8fff 90%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy > p {
  max-width: 590px;
  margin: 28px 0 32px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.play-icon {
  width: 43px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
}

.hero-stats div {
  min-width: 112px;
}

.hero-stats strong {
  display: block;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.hero-stats span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.hero-controls {
  position: absolute;
  z-index: 6;
  right: max(24px, calc((100vw - var(--shell)) / 2));
  bottom: 92px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(3, 18, 38, 0.62);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(15px);
}

.hero-arrow,
.hero-dots button {
  flex: 0 0 auto;
  padding: 0;
  color: #fff;
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  font-size: 26px;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.19);
  transform: scale(1.04);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
  width: 28px;
  background: #35bdff;
}

.signal {
  position: absolute;
  z-index: 1;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #5ceaff;
  box-shadow: 0 0 20px 4px #0a91ff;
}

.signal::before,
.signal::after {
  content: "";
  position: absolute;
  inset: -13px;
  border: 1px solid rgba(105, 230, 255, 0.55);
  border-radius: 50%;
  animation: signalWave 3s ease-out infinite;
}

.signal::after {
  animation-delay: 1.5s;
}

.signal-one {
  top: 35%;
  right: 16.2%;
}

.signal-two {
  top: 56%;
  right: 6.5%;
}

@keyframes signalWave {
  0% {
    opacity: 0.8;
    transform: scale(0.2);
  }
  100% {
    opacity: 0;
    transform: scale(2.9);
  }
}

.availability-wrap {
  position: relative;
  z-index: 8;
  margin-top: -62px;
}

.availability {
  padding: 25px 27px;
  border: 1px solid rgba(215, 230, 244, 0.85);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.availability:not(.compact) {
  display: grid;
  grid-template-columns: 0.82fr 1.5fr;
  gap: 28px;
}

.availability-copy {
  display: flex;
  align-items: center;
  gap: 15px;
}

.availability-copy .icon-box {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  border-radius: 14px;
  background: var(--ice);
}

.availability-copy strong,
.availability-copy span {
  display: block;
}

.availability-copy strong {
  margin-bottom: 4px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
}

.availability-copy span {
  color: var(--muted);
  font-size: 13px;
}

.availability-form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 16px;
  border: 1px solid #dce7f0;
  border-radius: 999px;
  background: #f8fbfe;
}

.availability-form > svg {
  flex-shrink: 0;
  color: #8996aa;
}

.availability-form input {
  width: 100%;
  height: 52px;
  min-width: 100px;
  color: var(--ink);
  border: 0;
  outline: 0;
  background: transparent;
}

.availability-form input::placeholder {
  color: #8b97a9;
}

.availability-form .button {
  min-height: 52px;
  margin: -1px;
}

.availability-result {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: -8px;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.45;
}

.availability-result svg {
  flex-shrink: 0;
}

.availability-result.known {
  color: #10663e;
  background: #eaf9f1;
}

.availability-result.unknown {
  color: #80541d;
  background: #fff6e6;
}

.availability-result a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  font-weight: 800;
  white-space: nowrap;
}

.services-section {
  padding: 122px 0 130px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 50px;
}

.section-heading > div {
  flex: 1;
}

.section-heading h2,
.performance-copy h2,
.tv-copy h2,
.trust-copy h2,
.support-copy h2,
.final-grid h2 {
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.08;
}

.section-heading > p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #78dfff;
}

.eyebrow.dark {
  color: #75c9ff;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.14fr 0.93fr 0.93fr;
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 475px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 34px;
  color: #fff;
  border-radius: 23px;
  isolation: isolate;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(12, 34, 65, 0.18);
}

.service-internet {
  background:
    radial-gradient(circle at 95% 5%, rgba(45, 204, 255, 0.6), transparent 34%),
    linear-gradient(145deg, #087af8, #053fbb 78%);
}

.service-tv {
  background:
    radial-gradient(circle at 30% 105%, rgba(255, 140, 75, 0.7), transparent 40%),
    linear-gradient(145deg, #191939, #4f255a 65%, #b64855);
}

.service-security {
  background:
    radial-gradient(circle at 50% 75%, rgba(82, 231, 187, 0.16), transparent 28%),
    linear-gradient(145deg, #09251f, #063c31);
}

.service-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, transparent, black);
}

.service-icon {
  width: 53px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(8px);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-kicker {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 9px 0 12px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 38px;
  letter-spacing: -0.04em;
}

.service-card p {
  max-width: 350px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.service-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 35px;
}

.service-meta > span:first-child {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  line-height: 1.45;
}

.service-meta strong {
  display: block;
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 20px;
}

.circle-link {
  width: 47px;
  height: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: currentColor;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.service-card:hover .circle-link {
  transform: rotate(-25deg);
  background: rgba(255, 255, 255, 0.25);
}

.speed-lines {
  position: absolute;
  z-index: -1;
  right: -60px;
  bottom: 40px;
  width: 300px;
  height: 210px;
  transform: rotate(-10deg);
}

.speed-lines i {
  position: absolute;
  right: 0;
  width: 260px;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8));
  animation: speedLine 2.8s ease-in-out infinite;
}

.speed-lines i:nth-child(1) { top: 10px; width: 180px; }
.speed-lines i:nth-child(2) { top: 52px; animation-delay: 0.3s; }
.speed-lines i:nth-child(3) { top: 94px; width: 210px; animation-delay: 0.6s; }
.speed-lines i:nth-child(4) { top: 136px; animation-delay: 0.9s; }
.speed-lines i:nth-child(5) { top: 178px; width: 170px; animation-delay: 1.2s; }

@keyframes speedLine {
  50% {
    transform: translateX(-35px);
    opacity: 0.35;
  }
}

.channel-chips {
  position: absolute;
  right: -15px;
  bottom: 105px;
  display: flex;
  gap: 8px;
  transform: rotate(-8deg);
}

.channel-chips span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  font-size: 9px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.security-orbit {
  position: absolute;
  right: 18px;
  bottom: 95px;
  width: 135px;
  height: 135px;
  border: 1px solid rgba(102, 255, 211, 0.25);
  border-radius: 50%;
}

.security-orbit::before,
.security-orbit::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(102, 255, 211, 0.15);
  border-radius: 50%;
}

.security-orbit::after {
  inset: 40px;
}

.security-orbit span {
  position: absolute;
  inset: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7fffd4;
  border-radius: 50%;
  background: rgba(89, 255, 209, 0.09);
  box-shadow: 0 0 35px rgba(75, 255, 205, 0.13);
}

.performance-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: #fff;
  background:
    radial-gradient(circle at 78% 40%, rgba(0, 144, 255, 0.22), transparent 32%),
    linear-gradient(135deg, #061426, #071b34 70%, #09284a);
}

.performance-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image: radial-gradient(rgba(111, 214, 255, 0.6) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, transparent 30%, black);
}

.performance-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.performance-copy p,
.tv-copy > p,
.trust-copy p,
.support-copy > p {
  margin: 25px 0 28px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.75;
}

.performance-copy ul {
  display: grid;
  gap: 12px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.performance-copy li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.performance-copy li svg {
  width: 23px;
  height: 23px;
  padding: 5px;
  color: #70e4ff;
  border-radius: 50%;
  background: rgba(112, 228, 255, 0.12);
}

.performance-visual {
  position: relative;
  min-height: 480px;
}

.speed-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(98, 213, 255, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(16, 126, 236, 0.25), transparent 62%);
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 80px rgba(0, 136, 255, 0.1);
}

.speed-ring::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 7px solid transparent;
  border-top-color: #42d2ff;
  border-right-color: #0b80ff;
  border-radius: 50%;
  transform: rotate(20deg);
  filter: drop-shadow(0 0 12px rgba(63, 209, 255, 0.45));
}

.speed-ring > div {
  text-align: center;
}

.speed-ring svg {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto 10px;
  color: #79dcff;
}

.speed-ring strong {
  display: block;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 70px;
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.speed-ring span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(106, 215, 255, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

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

.orbit-two {
  width: 555px;
  height: 555px;
}

.device-node {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(6, 27, 53, 0.74);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 700;
}

.device-node svg {
  width: 19px;
  height: 19px;
  color: #5ddcff;
}

.node-one { top: 8%; right: 7%; }
.node-two { left: -2%; bottom: 19%; }
.node-three { right: -2%; bottom: 9%; }

.pricing-section {
  padding: 125px 0;
  color: #fff;
  background: #091526;
}

.pricing-heading {
  align-items: center;
}

.segmented {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.segmented button {
  height: 40px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.55);
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.segmented button.active {
  color: var(--navy);
  background: #fff;
}

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

.plan {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.plan:hover {
  transform: translateY(-6px);
  border-color: rgba(89, 207, 255, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

.plan.featured {
  border-color: rgba(71, 199, 255, 0.55);
  background:
    radial-gradient(circle at 90% 0%, rgba(40, 171, 255, 0.22), transparent 38%),
    linear-gradient(150deg, rgba(8, 116, 239, 0.28), rgba(255, 255, 255, 0.05));
  box-shadow: 0 22px 70px rgba(0, 100, 255, 0.12);
}

.plan-badge {
  position: absolute;
  top: 17px;
  right: 17px;
  padding: 7px 10px;
  color: #bceeff;
  border-radius: 999px;
  background: rgba(45, 188, 255, 0.13);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-top > span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.plan-top h3 {
  margin: 8px 0 32px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 27px;
}

.speed {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 34px;
}

.speed strong {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.speed span {
  color: #64d4ff;
  font-size: 12px;
  font-weight: 700;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.plan-feature svg {
  width: 19px;
  height: 19px;
  padding: 4px;
  color: #7bdeff;
  border-radius: 50%;
  background: rgba(86, 209, 255, 0.12);
}

.plan-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 30px;
}

.price span,
.price small {
  display: block;
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
}

.price strong {
  display: inline-block;
  margin: 3px 0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 28px;
}

.plan-bottom .circle-link {
  color: var(--navy);
  background: #fff;
}

.pricing-note {
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  text-align: center;
}

.tv-section {
  overflow: hidden;
  padding: 145px 0;
  background: #f2f7fb;
}

.tv-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 100px;
}

.tv-visual {
  position: relative;
  min-height: 480px;
}

.tv-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(570px, 46vw);
  padding: 10px;
  border-radius: 17px;
  background: #08111e;
  box-shadow: 0 40px 80px rgba(19, 41, 72, 0.22);
  transform: translate(-50%, -50%) perspective(1000px) rotateY(6deg) rotateX(2deg);
}

.tv-frame::after {
  content: "";
  position: absolute;
  bottom: -48px;
  left: 50%;
  width: 120px;
  height: 48px;
  border-bottom: 8px solid #101c2d;
  background: linear-gradient(90deg, transparent, #17263a, transparent);
  transform: translateX(-50%);
}

.tv-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 9px;
  color: #fff;
  background:
    radial-gradient(circle at 60% 40%, rgba(255, 110, 62, 0.75), transparent 22%),
    radial-gradient(circle at 36% 52%, rgba(57, 119, 255, 0.8), transparent 27%),
    linear-gradient(140deg, #0c1024, #672261 50%, #f1764e);
}

.tv-screen::before,
.tv-screen::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.tv-screen::before {
  left: -80px;
  bottom: -210px;
  box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.04), 0 0 0 70px rgba(255, 255, 255, 0.025);
}

.tv-screen::after {
  right: -190px;
  top: -210px;
}

.tv-screen > span {
  position: relative;
  z-index: 2;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 74px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
}

.tv-screen small {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.tv-progress {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 24px;
  left: 30px;
  height: 3px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
}

.tv-progress i {
  display: block;
  width: 52%;
  height: 100%;
  background: #fff;
}

.floating-label {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 40px rgba(28, 60, 94, 0.15);
  backdrop-filter: blur(14px);
}

.floating-label svg {
  color: var(--blue);
}

.floating-label strong,
.floating-label span {
  display: block;
}

.floating-label span {
  color: var(--muted);
  font-size: 10px;
}

.floating-label strong {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 14px;
}

.label-archive {
  left: 0;
  bottom: 65px;
}

.label-quality {
  top: 45px;
  right: -2px;
}

.tv-copy > p,
.support-copy > p {
  color: var(--muted);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 34px 0;
}

.feature-row > div {
  padding-left: 20px;
  border-left: 2px solid #cfddea;
}

.feature-row svg {
  width: 21px;
  height: 21px;
  margin-bottom: 11px;
  color: var(--blue);
}

.feature-row strong,
.feature-row span {
  display: block;
}

.feature-row strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.feature-row span {
  color: var(--muted);
  font-size: 12px;
}

.text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.text-arrow svg {
  width: 18px;
}

.trust-section {
  overflow: hidden;
  padding: 130px 0 0;
  color: #fff;
  background:
    radial-gradient(circle at 18% 110%, rgba(20, 123, 239, 0.35), transparent 40%),
    #071527;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
  padding-bottom: 110px;
}

.trust-copy p {
  max-width: 520px;
}

.trust-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.trust-metrics div {
  min-height: 175px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.045);
}

.trust-metrics div:first-child {
  grid-column: 1 / -1;
  min-height: 210px;
  background:
    radial-gradient(circle at 90% 10%, rgba(53, 199, 255, 0.15), transparent 35%),
    rgba(255, 255, 255, 0.045);
}

.trust-metrics strong {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.trust-metrics span {
  max-width: 180px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.5;
}

.town-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
}

.town-marquee > div {
  width: max-content;
  display: flex;
  animation: marquee 38s linear infinite;
}

.town-marquee span {
  height: 62px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 28px;
  color: rgba(255, 255, 255, 0.44);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.town-marquee svg {
  color: #4cc9ff;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.steps-section {
  padding: 130px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.steps article {
  position: relative;
  padding: 35px 28px 0 0;
}

.steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 28px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(8, 120, 249, 0.1);
}

.steps article > span {
  color: #a1adbb;
  font-size: 11px;
  font-weight: 800;
}

.step-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 26px;
  color: var(--blue);
  border-radius: 15px;
  background: var(--ice);
}

.steps h3 {
  margin: 0 0 10px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 18px;
}

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

.support-section {
  padding: 130px 0;
  background: #f4f8fb;
}

.support-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 110px;
}

.contact-cards {
  display: grid;
  gap: 10px;
}

.contact-cards > a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-cards > a:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 30px rgba(18, 44, 76, 0.08);
}

.contact-cards > a > svg:first-child {
  color: var(--blue);
}

.contact-cards > a > svg:last-child {
  width: 18px;
  color: #9aa7b6;
}

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

.contact-cards small {
  color: var(--muted);
  font-size: 10px;
}

.contact-cards strong {
  margin-top: 3px;
  font-size: 14px;
}

.faq-wrap {
  padding: 34px;
  border: 1px solid #dce6ef;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(23, 51, 82, 0.08);
}

.faq-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.faq-title svg {
  width: 20px;
}

.faq {
  border-bottom: 1px solid #e2e9f0;
}

.faq:last-child {
  border-bottom: 0;
}

.faq button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  color: var(--ink);
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}

.faq button svg {
  flex-shrink: 0;
  color: #8492a5;
  transition: transform 0.25s ease;
}

.faq.open button svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.faq.open .faq-answer p {
  padding-bottom: 22px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  color: #fff;
  background: #0678f6;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 72px 72px;
}

.final-glow {
  position: absolute;
  top: 50%;
  left: 48%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98, 230, 255, 0.5), transparent 66%);
  transform: translate(-50%, -50%);
}

.final-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 95px;
}

.final-grid h2 {
  max-width: 570px;
}

.availability.compact {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.compact .availability-form {
  border-color: rgba(255, 255, 255, 0.45);
  background: #fff;
}

.compact .availability-result {
  margin-top: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.compact .availability-result.unknown {
  color: #fff;
}

.final-grid > div:last-child > p {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-align: center;
}

.final-grid > div:last-child > p a {
  color: #fff;
  font-weight: 800;
}

footer {
  padding: 82px 0 26px;
  color: rgba(255, 255, 255, 0.62);
  background: #04101e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.8fr 0.8fr 1.2fr;
  gap: 55px;
  padding-bottom: 58px;
}

.footer-brand p {
  max-width: 290px;
  margin: 22px 0 25px;
  font-size: 13px;
  line-height: 1.7;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.socials svg {
  width: 17px;
}

.footer-grid h3 {
  margin: 4px 0 22px;
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
}

.footer-grid > div:not(:first-child) > a {
  display: block;
  margin: 0 0 13px;
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-grid > div:not(:first-child) > a:hover {
  color: #fff;
}

.footer-contact p,
.footer-contact a {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  font-size: 12px !important;
  line-height: 1.6;
}

.footer-contact svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #50cfff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.32);
  font-size: 10px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease var(--delay, 0ms),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  :root {
    --shell: min(920px, calc(100vw - 40px));
  }

  .nav {
    gap: 25px;
  }

  .nav-links {
    gap: 18px;
  }

  .button-header {
    display: none;
  }

  .hero-copy {
    width: 66vw;
  }

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

  .service-internet {
    grid-column: 1 / -1;
    min-height: 410px;
  }

  .performance-grid,
  .tv-grid,
  .trust-grid,
  .support-grid {
    gap: 55px;
  }

  .plan {
    padding: 28px;
  }

  .speed strong {
    font-size: 42px;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    row-gap: 45px;
  }

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

  .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  .topline {
    display: none;
  }

  .site-header {
    position: absolute;
    top: 0;
  }

  .nav {
    height: 70px;
  }

  .menu-button {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 16px;
    left: 16px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    overflow: hidden;
    padding: 12px;
    visibility: hidden;
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(5, 20, 39, 0.96);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-10px);
    transition: 0.25s ease;
  }

  .nav-links.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links > a {
    padding: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links > a:last-child {
    border-bottom: 0;
  }

  .nav-phone {
    display: flex;
    align-items: center;
    gap: 9px;
  }

  .hero {
    height: 810px;
    min-height: 0;
  }

  .hero-image {
    object-position: 67% center;
  }

  .hero-slide-tv .hero-image {
    object-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 11, 24, 0.97), rgba(2, 11, 24, 0.7) 70%, rgba(2, 11, 24, 0.42)),
      linear-gradient(0deg, rgba(2, 12, 27, 0.84), transparent 60%);
  }

  .hero-content {
    align-items: flex-end;
    padding: 0 0 145px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(47px, 13vw, 65px);
  }

  .hero-copy > p {
    margin: 22px 0 25px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

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

  .text-link {
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
    margin-top: 34px;
  }

  .hero-stats div {
    min-width: 0;
  }

  .hero-stats strong {
    font-size: 20px;
  }

  .hero-controls {
    right: 50%;
    bottom: 72px;
    transform: translateX(50%);
  }

  .availability-wrap {
    margin-top: -60px;
  }

  .availability:not(.compact) {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .availability-form {
    align-items: stretch;
    flex-wrap: wrap;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .availability-form > svg {
    position: absolute;
    top: 17px;
    left: 16px;
  }

  .availability-form input {
    height: 52px;
    padding: 0 16px 0 44px;
    border: 1px solid #dce7f0;
    border-radius: 999px;
    background: #f8fbfe;
  }

  .availability-form .button {
    width: 100%;
    margin: 0;
  }

  .availability-result {
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 0;
  }

  .availability-result span {
    flex: 1;
  }

  .availability-result a {
    width: 100%;
    margin-left: 29px;
  }

  .services-section,
  .pricing-section,
  .steps-section,
  .support-section {
    padding: 100px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 38px;
  }

  .section-heading h2,
  .performance-copy h2,
  .tv-copy h2,
  .trust-copy h2,
  .support-copy h2,
  .final-grid h2 {
    font-size: clamp(35px, 10vw, 48px);
  }

  .service-grid,
  .plans,
  .performance-grid,
  .tv-grid,
  .trust-grid,
  .support-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .service-internet {
    grid-column: auto;
  }

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

  .performance-section,
  .tv-section,
  .trust-section {
    padding: 100px 0;
  }

  .performance-grid,
  .tv-grid,
  .trust-grid,
  .support-grid,
  .final-grid {
    gap: 65px;
  }

  .performance-visual {
    min-height: 430px;
    transform: scale(0.85);
  }

  .pricing-heading {
    align-items: stretch;
  }

  .segmented {
    width: 100%;
  }

  .segmented button {
    flex: 1;
  }

  .plan {
    min-height: 470px;
  }

  .tv-grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .tv-visual {
    width: 100%;
    min-height: 360px;
  }

  .tv-frame {
    width: 94vw;
  }

  .label-quality {
    top: 25px;
  }

  .label-archive {
    bottom: 20px;
  }

  .trust-grid {
    padding-bottom: 30px;
  }

  .trust-metrics strong {
    font-size: 42px;
  }

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

  .steps article {
    min-height: 180px;
    padding: 30px 0 15px 82px;
  }

  .steps article::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    border-left: 1px solid var(--line);
  }

  .steps article:not(:last-child)::after {
    top: 47px;
    right: auto;
    left: 20px;
  }

  .step-icon {
    position: absolute;
    top: 15px;
    left: 51px;
    margin: 0;
  }

  .faq-wrap {
    padding: 25px;
  }

  .final-cta {
    padding: 90px 0;
  }

  .compact .availability-form input {
    background: #fff;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 25px;
  }

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

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

@media (max-width: 480px) {
  .hero {
    height: 850px;
  }

  .hero-tag {
    font-size: 10px;
  }

  .hero-stats {
    justify-content: space-between;
  }

  .hero-stats span {
    max-width: 84px;
  }

  .availability {
    padding: 22px 18px;
  }

  .service-card {
    padding: 28px;
  }

  .performance-visual {
    margin: -40px -70px;
    transform: scale(0.72);
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

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

  .trust-metrics div:first-child {
    grid-column: auto;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
