:root {
  --bg: #020712;
  --bg-soft: #061226;
  --panel: rgba(7, 22, 43, 0.86);
  --panel-strong: rgba(8, 27, 55, 0.96);
  --line: rgba(74, 153, 255, 0.24);
  --line-strong: rgba(0, 153, 255, 0.58);
  --text: #f5f8ff;
  --muted: #aebbd1;
  --blue: #087bff;
  --cyan: #26c7ff;
  --green: #19d76b;
  --warning: #ffd27a;
  --danger: #ff6c8d;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  background:
    linear-gradient(135deg, rgba(0, 88, 188, 0.18), transparent 32rem),
    linear-gradient(180deg, #020814 0%, #061426 45%, #020711 100%);
  overflow-x: hidden;
  padding-bottom: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(21, 118, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(21, 118, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 72%);
  opacity: 0.55;
}

img,
svg {
  display: block;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-220%);
  padding: 10px 14px;
  border-radius: 8px;
  color: #001020;
  background: #ffffff;
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 82px;
  margin: 0;
  padding: 14px max(24px, calc((100% - var(--container)) / 2));
  transition: min-height 0.2s ease, padding 0.2s ease;
}

.site-header::before {
  content: "";
  position: fixed;
  inset: 0 0 auto 0;
  height: 88px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(2, 7, 18, 0.94), rgba(2, 7, 18, 0.74), transparent);
  opacity: 0.54;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.site-header.is-scrolled::before,
.site-header[data-open="true"]::before {
  opacity: 1;
}

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

.brand img {
  width: 236px;
  max-width: 38vw;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(0, 145, 255, 0.32));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(245, 248, 255, 0.88);
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(38, 199, 255, 0.46);
  border-radius: 8px;
  color: #e5f8ff;
  background: rgba(8, 43, 86, 0.34);
  box-shadow: inset 0 0 0 1px rgba(38, 199, 255, 0.1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 22, 43, 0.82);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
}

main {
  position: relative;
  z-index: 1;
}

.section {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  scroll-margin-top: 104px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  gap: 0;
  width: 100%;
  min-height: 100svh;
  margin: 0 auto;
  padding: 118px max(24px, calc((100% - var(--container)) / 2)) 78px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background: #020712;
}

.hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 18, 0.94) 0%, rgba(2, 7, 18, 0.7) 30%, rgba(2, 7, 18, 0.2) 64%, rgba(2, 7, 18, 0.1) 100%),
    linear-gradient(180deg, rgba(2, 7, 18, 0.08) 0%, rgba(2, 7, 18, 0.06) 45%, rgba(2, 7, 18, 0.94) 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-top: 24px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #46b7ff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: 4.7rem;
  line-height: 1.02;
  font-weight: 900;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.48);
}

.hero h1 span {
  color: var(--blue);
}

.hero-text {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgba(245, 248, 255, 0.84);
  font-size: 1.12rem;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.48);
}

.hero-price {
  display: grid;
  justify-items: start;
  gap: 4px;
  margin-top: 22px;
  color: #ffffff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.48);
}

.hero-price span {
  color: rgba(245, 248, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-price-line {
  display: flex;
  align-items: end;
  gap: 8px;
}

.hero-price strong {
  font-size: 3.25rem;
  line-height: 0.95;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-price small {
  padding-bottom: 6px;
  color: rgba(245, 248, 255, 0.76);
  font-size: 1.32rem;
}

.hero-currency {
  padding-bottom: 5px;
  color: #ffffff;
  font-size: 1.72rem;
  font-weight: 900;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  max-width: 610px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 900px;
  margin-top: 24px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(83, 150, 255, 0.26);
  border-radius: 8px;
  color: rgba(225, 235, 250, 0.82);
  background: rgba(4, 14, 30, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.hero-trust span::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 9px;
  border: 1px solid rgba(38, 199, 255, 0.38);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(8, 123, 255, 0.16);
  box-shadow: 0 0 18px rgba(38, 199, 255, 0.2);
  font-size: 0.68rem;
  font-weight: 900;
}

.button,
.hero-actions button,
.plan-card button,
.lead-form button,
.support-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 22px;
  color: var(--text);
  font-weight: 900;
}

.hero-actions .button {
  justify-content: flex-start;
  min-width: 235px;
  min-height: 58px;
  padding: 0 20px;
}

.hero-actions .button::after {
  content: "→";
  margin-left: auto;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.38rem;
  font-weight: 700;
  line-height: 1;
}

.button svg,
.hero-actions button svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button.primary {
  background: linear-gradient(135deg, #0b87ff, #0758d8);
  box-shadow: 0 14px 32px rgba(0, 113, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button.secondary,
.hero-actions .secondary {
  border: 1px solid rgba(38, 199, 255, 0.38);
  background: rgba(8, 31, 58, 0.58);
  box-shadow: inset 0 0 0 1px rgba(38, 199, 255, 0.12);
}

.logos-mark {
  width: 24px;
  height: 24px;
  margin-right: 9px;
  overflow: hidden;
  border-radius: 50%;
  background: #03101f;
}

.logos-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
}

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

.section-head.centered {
  display: block;
  max-width: 680px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-head h2,
.section-copy h2,
.support-card h2,
.final-cta h2 {
  margin: 0;
  font-size: 2.15rem;
  line-height: 1.12;
}

.section-head p,
.section-copy p,
.support-card p,
.final-cta p {
  margin: 10px 0 0;
  color: var(--muted);
}

.plans-section {
  padding: 8px 0 76px;
}

.section-kicker {
  text-align: center;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}

.plan-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  min-height: 286px;
  padding: 28px;
  border: 1px solid rgba(83, 150, 255, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 0%, rgba(14, 139, 255, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(8, 24, 50, 0.96), rgba(3, 12, 27, 0.98));
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.36);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(38, 199, 255, 0.08), transparent 36%);
  opacity: 0.65;
}

.plan-card:hover,
.client-grid button:hover,
.benefits-grid article:hover {
  border-color: rgba(38, 199, 255, 0.52);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(38, 199, 255, 0.08);
  transform: translateY(-2px);
}

.plan-card.featured {
  border-color: rgba(27, 163, 255, 0.92);
  background:
    radial-gradient(circle at 45% 0%, rgba(38, 199, 255, 0.26), transparent 36%),
    linear-gradient(180deg, rgba(8, 28, 58, 0.98), rgba(3, 12, 27, 0.98));
  box-shadow: 0 0 0 1px rgba(31, 188, 255, 0.32), 0 24px 66px rgba(0, 126, 255, 0.26);
}

.plan-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #dff5ff;
  background: rgba(0, 132, 255, 0.22);
  font-size: 0.76rem;
  font-weight: 900;
}

.plan-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  color: var(--blue);
  background: rgba(0, 126, 255, 0.12);
}

.plan-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plan-fit {
  position: absolute;
  top: 28px;
  left: 92px;
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(83, 150, 255, 0.24);
  border-radius: 8px;
  color: #cfe7ff;
  background: rgba(2, 10, 23, 0.46);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-card h3 {
  position: relative;
  margin: 0;
  font-size: 1.75rem;
  line-height: 1;
  text-transform: uppercase;
}

.plan-card h3 em {
  display: block;
  margin-top: 6px;
  color: #57aaff;
  font-style: normal;
  font-size: 1rem;
}

.plan-price {
  position: relative;
  margin: 0;
  color: var(--blue);
  font-size: 2.85rem;
  line-height: 1;
  font-weight: 900;
}

.plan-price small {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.plan-note {
  position: relative;
  margin: 0;
  color: var(--muted);
}

.plan-points {
  position: relative;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(220, 231, 248, 0.88);
  font-size: 0.92rem;
  font-weight: 800;
}

.plan-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-points li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(38, 199, 255, 0.52);
}

.plan-card button {
  position: relative;
  width: 100%;
  margin-top: auto;
  background: linear-gradient(135deg, #0c82ff, #0956c9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.conditions-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  max-width: 1000px;
  margin: 24px auto 0;
  border: 1px solid rgba(88, 158, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 25, 50, 0.84), rgba(3, 12, 27, 0.9)),
    rgba(4, 14, 30, 0.76);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.conditions-strip article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon text";
  column-gap: 13px;
  row-gap: 3px;
  align-items: start;
  min-height: 92px;
  padding: 18px;
  border-right: 1px solid rgba(88, 158, 255, 0.16);
  color: rgba(245, 248, 255, 0.9);
}

.conditions-strip article:last-child {
  border-right: 0;
}

.conditions-strip svg {
  grid-area: icon;
  width: 30px;
  height: 30px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.conditions-strip strong {
  grid-area: title;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.16;
}

.conditions-strip span {
  grid-area: text;
  color: rgba(174, 187, 209, 0.9);
  font-size: 0.86rem;
  line-height: 1.3;
}

.coverage-section,
.support-card,
.final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.92fr);
  gap: 36px;
  align-items: stretch;
  padding: 42px;
  border: 1px solid rgba(83, 150, 255, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 16%, rgba(10, 133, 255, 0.34), transparent 31%),
    radial-gradient(circle at 58% 58%, rgba(38, 199, 255, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(0, 112, 255, 0.16), transparent 52%),
    rgba(6, 18, 38, 0.86);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.coverage-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(38, 199, 255, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 34%);
  opacity: 0.9;
}

.coverage-section::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -34%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(38, 199, 255, 0.1);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9, 122, 255, 0.16), transparent 58%);
  pointer-events: none;
}

.coverage-section,
.benefits-section,
.support-section,
.client-section,
.faq-section {
  margin-top: 24px;
}

.section-copy {
  position: relative;
  max-width: 520px;
}

.coverage-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 410px;
  max-width: 590px;
}

.coverage-copy h2 {
  max-width: 520px;
  font-size: clamp(2.15rem, 4vw, 3.45rem);
}

.coverage-copy > p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(226, 234, 248, 0.84);
  font-size: 1.08rem;
}

.coverage-signal {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 30px;
  padding: 16px 18px;
  border: 1px solid rgba(89, 167, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 29, 58, 0.74), rgba(2, 9, 22, 0.58)),
    rgba(4, 14, 30, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.signal-map {
  position: relative;
  min-height: 118px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 24% 70%, rgba(38, 199, 255, 0.22), transparent 18%),
    radial-gradient(circle at 74% 28%, rgba(8, 123, 255, 0.28), transparent 18%),
    linear-gradient(135deg, rgba(3, 12, 27, 0.86), rgba(9, 32, 64, 0.62));
}

.signal-map::before {
  content: "";
  position: absolute;
  inset: 18px 20px;
  border: 1px solid rgba(38, 199, 255, 0.16);
  border-radius: 999px;
  transform: rotate(-14deg);
}

.signal-node,
.signal-beam,
.signal-ring {
  position: absolute;
  display: block;
}

.signal-node {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: #0b87ff;
  box-shadow: 0 0 22px rgba(38, 199, 255, 0.65);
}

.node-home {
  left: 24px;
  bottom: 28px;
}

.node-pop {
  left: 82px;
  top: 28px;
}

.node-tower {
  right: 24px;
  top: 54px;
}

.signal-beam {
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(38, 199, 255, 0.95), rgba(8, 123, 255, 0.08));
  box-shadow: 0 0 14px rgba(38, 199, 255, 0.36);
}

.beam-one {
  left: 34px;
  top: 75px;
  width: 96px;
  transform: rotate(-32deg);
}

.beam-two {
  left: 92px;
  top: 38px;
  width: 82px;
  transform: rotate(18deg);
}

.signal-ring {
  right: 10px;
  top: 36px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(38, 199, 255, 0.34);
  border-radius: 50%;
}

.ring-two {
  right: -2px;
  top: 24px;
  width: 76px;
  height: 76px;
  opacity: 0.42;
}

.signal-copy {
  display: grid;
  gap: 6px;
}

.signal-copy strong {
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1.15;
}

.signal-copy span {
  color: rgba(212, 224, 242, 0.82);
}

.coverage-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(83, 150, 255, 0.18);
  border-radius: 8px;
  background: rgba(3, 12, 27, 0.34);
}

.coverage-flow span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px 14px;
  border-right: 1px solid rgba(88, 158, 255, 0.14);
  color: #dbeaff;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.25;
}

.coverage-flow span:last-child {
  border-right: 0;
}

.coverage-flow strong {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: var(--cyan);
  font-size: 0.72rem;
  background: rgba(8, 123, 255, 0.15);
}

.lead-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.coverage-form {
  align-content: start;
  align-self: center;
  padding: 26px;
  border: 1px solid rgba(83, 150, 255, 0.3);
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(38, 199, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(7, 22, 43, 0.96), rgba(3, 12, 27, 0.9)),
    rgba(4, 14, 30, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 56px rgba(0, 0, 0, 0.28);
}

.lead-form-head {
  grid-column: 1 / -1;
  display: grid;
  gap: 7px;
  padding-bottom: 8px;
}

.lead-form-head span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form-head strong {
  color: #ffffff;
  font-size: 1.26rem;
  line-height: 1.2;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(83, 150, 255, 0.24);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(2, 10, 23, 0.92);
  padding: 0 15px;
  outline: none;
  font-weight: 800;
  text-transform: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: rgba(37, 192, 255, 0.75);
  box-shadow: 0 0 0 3px rgba(37, 192, 255, 0.12);
}

.lead-form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(174, 187, 209, 0.86);
  font-size: 0.86rem;
}

.lead-form button {
  grid-column: 1 / -1;
  min-height: 60px;
  background: linear-gradient(135deg, #0b87ff, #0758d8);
  box-shadow: 0 18px 34px rgba(0, 113, 255, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.proof-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.proof-section article {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon text";
  column-gap: 16px;
  row-gap: 7px;
  align-items: start;
  min-height: 136px;
  padding: 24px;
  border: 1px solid rgba(83, 150, 255, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(38, 199, 255, 0.15), transparent 35%),
    linear-gradient(180deg, rgba(8, 25, 50, 0.84), rgba(4, 13, 29, 0.94));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.proof-section article::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -54px;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(38, 199, 255, 0.1);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 123, 255, 0.16), transparent 62%);
}

.proof-icon {
  grid-area: icon;
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(38, 199, 255, 0.32);
  border-radius: 50%;
  color: #e7f7ff;
  background:
    radial-gradient(circle at 35% 28%, rgba(38, 199, 255, 0.42), rgba(8, 123, 255, 0.16) 58%, rgba(3, 12, 27, 0.72));
  box-shadow: 0 0 26px rgba(38, 199, 255, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
  font-weight: 900;
}

.proof-section strong {
  grid-area: title;
  display: block;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.3vw, 1.16rem);
  line-height: 1.18;
}

.proof-section p {
  grid-area: text;
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(174, 187, 209, 0.9);
  font-size: clamp(0.92rem, 1.05vw, 0.98rem);
  line-height: 1.42;
}

.benefits-section {
  padding: 72px 0 22px;
}

.benefits-grid,
.client-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefits-grid article,
.client-grid button {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 9px;
  min-height: 136px;
  border: 1px solid rgba(83, 150, 255, 0.22);
  border-radius: 8px;
  color: inherit;
  background:
    radial-gradient(circle at 20% 0%, rgba(8, 123, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(8, 25, 50, 0.9), rgba(5, 14, 29, 0.96));
  padding: 22px;
  text-align: left;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.benefits-grid article::before,
.client-grid button::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(8, 123, 255, 0));
  opacity: 0.65;
}

.card-index {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(38, 199, 255, 0.32);
  border-radius: 50%;
  color: #e7f7ff;
  background:
    radial-gradient(circle at 35% 28%, rgba(38, 199, 255, 0.4), rgba(8, 123, 255, 0.17) 58%, rgba(3, 12, 27, 0.74));
  box-shadow: 0 0 24px rgba(38, 199, 255, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
}

.benefits-grid strong,
.client-grid strong {
  display: block;
  color: #ffffff;
  font-size: clamp(1.02rem, 1.16vw, 1.1rem);
  line-height: 1.18;
}

.benefits-grid span:not(.card-index),
.client-grid span:not(.card-index) {
  display: block;
  color: var(--muted);
  font-size: clamp(0.9rem, 1vw, 0.96rem);
  line-height: 1.4;
}

.support-section {
  padding-top: 32px;
}

.support-card {
  width: 100%;
  margin: 0;
}

.support-card::after,
.final-cta::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(38, 199, 255, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 199, 255, 0.14), transparent 58%);
  pointer-events: none;
}

.support-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  position: relative;
  z-index: 1;
}

.support-actions button {
  display: grid;
  gap: 5px;
  align-content: center;
  min-height: 94px;
  border: 1px solid rgba(83, 150, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(9, 33, 70, 0.92), rgba(3, 13, 29, 0.92));
  text-align: left;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.support-actions button:hover {
  border-color: rgba(38, 199, 255, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.support-actions strong {
  color: #ffffff;
  font-size: 0.98rem;
}

.support-actions span {
  color: rgba(174, 187, 209, 0.9);
  font-size: 0.84rem;
}

.client-section {
  padding-top: 34px;
}

.client-grid button {
  cursor: pointer;
}

.faq-section {
  padding-top: 30px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid rgba(83, 150, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 25, 50, 0.86), rgba(4, 13, 29, 0.94));
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.faq-list summary {
  position: relative;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cyan);
  font-size: 1.25rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.final-cta {
  margin-top: 54px;
  margin-bottom: 42px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
}

.final-cta-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.52;
  background:
    linear-gradient(125deg, transparent 0 23%, rgba(38, 199, 255, 0.28) 23.2%, transparent 23.8%),
    linear-gradient(130deg, transparent 0 32%, rgba(8, 123, 255, 0.22) 32.2%, transparent 32.9%),
    radial-gradient(circle at 90% 18%, rgba(38, 199, 255, 0.12), transparent 18%);
}

.final-cta .button {
  position: relative;
  z-index: 1;
  justify-self: end;
}

.logos-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 58px;
  padding: 0 16px 0 12px;
  border: 1px solid rgba(38, 199, 255, 0.42);
  border-radius: 8px;
  color: #ffffff;
  background:
    radial-gradient(circle at 22% 24%, rgba(38, 199, 255, 0.22), transparent 36%),
    linear-gradient(135deg, rgba(8, 34, 74, 0.96), rgba(3, 13, 29, 0.96));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38), 0 0 30px rgba(38, 199, 255, 0.18);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.logos-fab img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  transform: scale(1.12);
}

.logos-fab span {
  color: #e7f7ff;
}

.mobile-dock {
  display: none;
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 10px;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 44px;
  color: var(--muted);
  text-align: center;
}

.site-footer img {
  width: 170px;
  height: auto;
  opacity: 0.88;
}

@media (max-width: 1080px) {
  .section,
  .site-footer {
    width: min(100% - 32px, 920px);
  }

  .site-nav {
    gap: 18px;
  }

  .brand img {
    width: 210px;
  }

  .hero {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 100svh;
    padding: 108px 16px 58px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: 4rem;
  }

  .conditions-strip,
  .benefits-grid,
  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-section {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .conditions-strip article:nth-child(2) {
    border-right: 0;
  }

  .conditions-strip article:nth-child(1),
  .conditions-strip article:nth-child(2) {
    border-bottom: 1px solid rgba(88, 158, 255, 0.16);
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .coverage-section,
  .support-card,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .coverage-copy {
    min-height: auto;
    max-width: none;
  }

  .coverage-signal {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .final-cta .button {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 92px;
  }

  body {
    padding-bottom: 88px;
  }

  .site-header {
    min-height: 72px;
    padding: 10px 13px;
  }

  .site-header.is-scrolled,
  .site-header[data-open="true"] {
    padding: 10px 13px;
    border: 1px solid rgba(83, 150, 255, 0.18);
    border-radius: 0;
    background: #041025;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  }

  .brand img {
    width: 174px;
    max-width: 58vw;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 74px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(83, 150, 255, 0.24);
    border-radius: 8px;
    background: rgba(4, 14, 30, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .site-header[data-open="true"] .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 12px;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .section,
  .site-footer {
    width: calc(100% - 26px);
    scroll-margin-top: 92px;
  }

  .hero {
    gap: 0;
    width: 100%;
    min-height: 100svh;
    padding: 92px 13px 30px;
  }

  .hero-bg img {
    object-position: 76% center;
  }

  .hero-bg::before {
    background:
      linear-gradient(90deg, rgba(2, 7, 18, 0.96) 0%, rgba(2, 7, 18, 0.72) 44%, rgba(2, 7, 18, 0.14) 76%, rgba(2, 7, 18, 0.08) 100%),
      linear-gradient(180deg, rgba(2, 7, 18, 0.08) 0%, rgba(2, 7, 18, 0.08) 54%, rgba(2, 7, 18, 0.9) 100%);
  }

  .hero-copy {
    padding-top: 12px;
  }

  .hero h1 {
    max-width: 330px;
    font-size: clamp(2.45rem, 10.7vw, 2.72rem);
    line-height: 1.04;
  }

  .hero-text {
    max-width: 300px;
    margin-top: 18px;
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .hero-price {
    gap: 5px;
    margin-top: 20px;
  }

  .hero-price span {
    max-width: 72px;
    font-size: 0.7rem;
    line-height: 1.12;
  }

  .hero-price strong {
    font-size: 2.74rem;
  }

  .hero-price small {
    padding-bottom: 4px;
    font-size: 0.94rem;
  }

  .hero-currency {
    padding-bottom: 4px;
    font-size: 1.36rem;
  }

  .hero-actions {
    gap: 10px;
    max-width: 228px;
    margin-top: 24px;
  }

  .hero-actions .button {
    min-width: 0;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 228px;
    gap: 7px;
    margin-top: 16px;
  }

  .hero-trust span {
    min-height: 42px;
    padding: 0 12px;
    background: rgba(4, 14, 30, 0.58);
    font-size: 0.86rem;
  }

  .button,
  .hero-actions button {
    flex: 1 1 100%;
    padding: 0 14px;
  }

  .conditions-strip,
  .benefits-grid,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .conditions-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(88, 158, 255, 0.16);
  }

  .conditions-strip article:last-child {
    border-bottom: 0;
  }

  .plans-section {
    padding-bottom: 34px;
  }

  .section-head,
  .section-head.centered {
    margin-bottom: 20px;
    text-align: left;
  }

  .section-head h2,
  .section-copy h2,
  .support-card h2,
  .final-cta h2 {
    font-size: 1.58rem;
    line-height: 1.12;
  }

  .plan-card {
    min-height: auto;
    gap: 11px;
    padding: 19px;
  }

  .plan-fit {
    top: 19px;
    left: 76px;
    padding: 6px 9px;
    font-size: 0.72rem;
  }

  .plan-icon {
    width: 46px;
    height: 46px;
  }

  .plan-icon svg {
    width: 29px;
    height: 29px;
  }

  .plan-card h3 {
    font-size: 1.52rem;
  }

  .plan-price {
    font-size: 2.28rem;
  }

  .plan-note,
  .plan-points {
    font-size: 0.92rem;
  }

  .coverage-section,
  .support-card,
  .final-cta {
    padding: 22px;
  }

  .coverage-copy h2 {
    font-size: 2.25rem;
  }

  .coverage-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .coverage-signal {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 22px;
    padding: 14px;
  }

  .signal-map {
    min-height: 112px;
  }

  .coverage-flow {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .coverage-flow span {
    min-height: 48px;
    border-right: 0;
    border-bottom: 1px solid rgba(88, 158, 255, 0.14);
  }

  .coverage-flow span:last-child {
    border-bottom: 0;
  }

  .coverage-form {
    padding: 20px;
    margin-bottom: 74px;
  }

  .lead-form,
  .support-actions {
    grid-template-columns: 1fr;
  }

  .proof-section {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .proof-section article {
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 13px;
    min-height: auto;
    padding: 17px;
  }

  .proof-icon {
    width: 36px;
    height: 36px;
    font-size: 0.72rem;
  }

  .proof-section strong {
    font-size: 1rem;
  }

  .proof-section p {
    font-size: 0.89rem;
    line-height: 1.36;
  }

  .benefits-grid article,
  .client-grid button {
    gap: 8px;
    min-height: auto;
    padding: 18px;
  }

  .card-index {
    width: 36px;
    height: 36px;
    font-size: 0.72rem;
  }

  .benefits-grid strong,
  .client-grid strong {
    font-size: 1rem;
    line-height: 1.18;
  }

  .benefits-grid span:not(.card-index),
  .client-grid span:not(.card-index) {
    font-size: 0.89rem;
    line-height: 1.38;
  }

  .logos-fab {
    display: none;
  }

  .mobile-dock {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 75;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    min-height: 64px;
    padding: 8px;
    border: 1px solid rgba(83, 150, 255, 0.24);
    border-radius: 8px;
    background: rgba(4, 14, 30, 0.96);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.45);
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  body.dock-visible .mobile-dock {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-dock a {
    display: grid;
    place-items: center;
    min-height: 48px;
    border-radius: 8px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 900;
  }

  .mobile-dock .dock-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #0b87ff, #0758d8);
  }

  .site-footer {
    padding-bottom: 26px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    max-width: 330px;
    font-size: clamp(2.42rem, 10.5vw, 2.66rem);
  }

  .brand img {
    width: 142px;
  }

  .hero-text {
    max-width: 300px;
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .hero-copy-break {
    display: none;
  }

  .hero-price {
    gap: 5px;
  }

  .hero-price span {
    max-width: 68px;
    font-size: 0.72rem;
  }

  .hero-price strong {
    font-size: clamp(2.5rem, 10.4vw, 2.72rem);
  }

  .hero-price small {
    font-size: 0.94rem;
  }

  .hero-currency {
    font-size: 1.34rem;
  }
}

@media (min-width: 700px) and (max-width: 820px) {
  body {
    padding-bottom: 0;
  }

  .hero-actions .button,
  .hero-actions button {
    flex: 0 0 auto;
  }

  .conditions-strip,
  .benefits-grid,
  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-trust span:last-child {
    grid-column: 1 / -1;
  }

  .conditions-strip article:nth-child(1),
  .conditions-strip article:nth-child(2) {
    border-bottom: 1px solid rgba(88, 158, 255, 0.16);
  }

  .conditions-strip article:nth-child(odd) {
    border-right: 1px solid rgba(88, 158, 255, 0.16);
  }

  .conditions-strip article:nth-child(even) {
    border-right: 0;
  }

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

  .support-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mobile-dock {
    display: none;
  }

  .logos-fab {
    display: inline-flex;
  }
}
