:root {
  --navy-950: #02131f;
  --navy-900: #031b2b;
  --navy-800: #09293b;
  --lime: #c9f12a;
  --lime-soft: #b8e71f;
  --white: #f7fafc;
  --muted: #b8c4ce;
  --line: rgba(184, 205, 218, 0.34);
  --page-gutter: clamp(22px, 5.55vw, 86px);
}

* {
  box-sizing: border-box;
}

html {
  accent-color: var(--lime-soft);
  scroll-behavior: smooth;
}

::selection {
  background: var(--lime);
  color: #102b24;
  text-shadow: none;
}

::-moz-selection {
  background: var(--lime);
  color: #102b24;
  text-shadow: none;
}

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

.brand svg,
.site-header svg,
.hero-copy svg,
.advantages-panel svg,
.connection-section svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

input,
select,
textarea {
  caret-color: #86a815;
}

:where(a, button, summary, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.consent-with-policy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.connection-consent-wrap {
  margin-top: 14px;
}

.contacts-consent-wrap {
  margin-top: 18px;
}

.callback-consent-wrap {
  margin-top: 16px;
}

.consent-with-policy .connection-consent,
.consent-with-policy .contacts-consent,
.consent-with-policy .callback-consent {
  margin-top: 0;
}

.privacy-inline {
  margin: 4px 0 0 24px;
  border: 0;
  border-radius: 5px;
  padding: 2px 4px;
  background: transparent;
  color: #77920d;
  cursor: pointer;
  font: inherit;
  font-size: 9.5px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-color: rgba(119, 146, 13, 0.42);
  text-underline-offset: 3px;
  transition: background 170ms ease, color 170ms ease, text-decoration-color 170ms ease;
}

.privacy-inline:hover,
.privacy-inline:focus-visible {
  background: rgba(201, 241, 42, 0.14);
  color: #587100;
  text-decoration-color: currentColor;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--navy-950);
}

.site-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: min(1000px, 100svh);
  flex-direction: column;
  overflow: hidden;
  background: var(--navy-950);
}

.hero-media,
.hero-wash,
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media {
  z-index: -4;
  background-image: url("assets/hero-house-day-v2.webp");
  background-position: center center;
  background-size: cover;
}

.hero-wash {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(2, 19, 31, 0.98) 0%, rgba(2, 19, 31, 0.87) 28%, rgba(2, 19, 31, 0.42) 52%, rgba(2, 19, 31, 0.03) 100%),
    linear-gradient(180deg, rgba(2, 15, 25, 0.34) 0%, transparent 35%, rgba(2, 16, 26, 0.06) 67%, rgba(2, 19, 31, 0.78) 100%);
}

.hero-noise {
  z-index: -2;
  opacity: 0.22;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 0.45px, transparent 0.45px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
  padding: 26px var(--page-gutter) 18px;
  gap: clamp(22px, 3vw, 52px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  gap: 12px;
}

.brand-symbol {
  position: relative;
  display: block;
  width: 48px;
  height: 50px;
  color: var(--lime);
}

.brand-wifi {
  position: absolute;
  top: -2px;
  left: 4px;
  width: 40px;
  height: 31px;
}

.brand-house {
  position: absolute;
  right: 5px;
  bottom: 0;
  width: 34px;
  height: 34px;
  fill: rgba(201, 241, 42, 0.05);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.brand-copy strong {
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.brand-copy small {
  margin-top: 6px;
  color: #c6d0d7;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.012em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: clamp(16px, 2.05vw, 34px);
}

.desktop-nav a {
  position: relative;
  padding: 13px 0;
  color: rgba(247, 250, 252, 0.88);
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--lime);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
}

.header-phone > svg {
  width: 20px;
  height: 20px;
  color: var(--lime);
  fill: var(--lime);
}

.header-phone span {
  display: flex;
  flex-direction: column;
}

.header-phone strong {
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.header-phone small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 0 25px;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button:focus-visible,
.header-phone:focus-visible,
.brand:focus-visible,
.desktop-nav a:focus-visible,
.mobile-menu summary:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.button svg {
  width: 21px;
  height: 21px;
  flex: none;
}

.button-lime {
  background: linear-gradient(135deg, #d6f83b 0%, #b9eb1d 100%);
  box-shadow: 0 13px 34px rgba(162, 209, 21, 0.17);
  color: #102015;
}

.button-lime:hover {
  background: linear-gradient(135deg, #e2ff57 0%, #c7f428 100%);
  box-shadow: 0 16px 40px rgba(178, 224, 30, 0.26);
}

.button-header {
  min-height: 54px;
  padding-inline: 22px;
  white-space: nowrap;
}

.button-outline {
  min-width: 238px;
  border-color: rgba(238, 245, 249, 0.68);
  background: rgba(3, 24, 37, 0.32);
  backdrop-filter: blur(8px);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--lime);
  background: rgba(5, 33, 48, 0.72);
}

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

.mobile-menu summary {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(4, 27, 42, 0.64);
  cursor: pointer;
  list-style: none;
  backdrop-filter: blur(12px);
}

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

.mobile-menu summary svg {
  width: 22px;
  height: 22px;
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: flex;
  width: min(310px, calc(100vw - 44px));
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(3, 24, 38, 0.97);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.mobile-menu nav a {
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 14px;
}

.mobile-menu nav a:last-child {
  border-bottom: 0;
  color: var(--lime);
  font-weight: 700;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
  padding: clamp(46px, 6vh, 74px) var(--page-gutter) 32px;
}

.hero-copy {
  width: min(675px, 51vw);
}

.eyebrow-pill {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(222, 237, 244, 0.55);
  border-radius: 999px;
  padding: 0 20px;
  gap: 10px;
  background: rgba(3, 26, 40, 0.19);
  color: #f2f6f8;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(7px);
}

.eyebrow-pill svg {
  width: 20px;
  height: 20px;
  color: var(--lime);
}

.hero-copy h1 {
  margin: 34px 0 18px;
  color: var(--white);
  font-size: clamp(48px, 4.4vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-copy h1 span {
  display: block;
  margin-top: 1px;
  color: var(--lime);
}

.hero-lead {
  max-width: 580px;
  margin: 0;
  color: #c0cbd3;
  font-size: 17px;
  line-height: 1.55;
}

.hero-stats {
  display: flex;
  align-items: center;
  margin-top: 30px;
  gap: clamp(26px, 3.2vw, 54px);
}

.stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: none;
  place-items: center;
  border: 1px solid rgba(201, 241, 42, 0.86);
  border-radius: 50%;
  color: var(--lime);
}

.stat-icon svg {
  width: 25px;
  height: 25px;
}

.stat > span:last-child {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.stat strong {
  font-size: 14px;
  line-height: 1.25;
}

.stat small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.hero-cta-row {
  display: flex;
  margin-top: 34px;
  gap: 12px;
}

.button-primary {
  min-width: 350px;
}

.micro-trust {
  display: flex;
  align-items: center;
  margin-top: 19px;
  gap: 11px;
  color: #e4eaee;
  font-size: 11.5px;
}

.micro-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.micro-trust svg {
  width: 15px;
  height: 15px;
  color: var(--lime);
}

.micro-trust i {
  display: block;
  width: 4px;
  height: 4px;
  flex: none;
  border-radius: 50%;
  background: var(--lime);
}

.interactive-signal {
  --signal-origin-x: 84.2%;
  --signal-origin-y: 30.5%;
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.interactive-signal svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  mix-blend-mode: screen;
}

.signal-beam {
  vector-effect: non-scaling-stroke;
  transition: opacity 180ms ease;
}

.signal-beam-glow {
  stroke: rgba(201, 241, 42, 0.48);
  stroke-width: 5px;
  opacity: 0.66;
}

.signal-beam-core {
  stroke: #ddff52;
  stroke-width: 1.65px;
  stroke-linecap: round;
  stroke-dasharray: 7 7;
  opacity: 0.9;
  animation: beam-flow 1s linear infinite;
}

.signal-cursor-glow {
  opacity: 0.42;
  transition: opacity 180ms ease;
}

.interactive-signal[data-active="true"] .signal-beam-glow {
  opacity: 0.9;
}

.interactive-signal[data-active="true"] .signal-cursor-glow {
  opacity: 0.88;
}

.antenna-pulse,
.antenna-core {
  position: absolute;
  top: var(--signal-origin-y);
  left: var(--signal-origin-x);
  border: 1px solid rgba(201, 241, 42, 0.78);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.antenna-pulse {
  animation: signal-pulse 3.4s ease-out infinite;
}

.antenna-pulse-one {
  width: 56px;
  height: 56px;
}

.antenna-pulse-two {
  width: 104px;
  height: 104px;
  animation-delay: 0.24s;
}

.antenna-pulse-three {
  width: 162px;
  height: 162px;
  animation-delay: 0.48s;
}

.antenna-pulse-four {
  width: 224px;
  height: 224px;
  animation-delay: 0.72s;
}

.antenna-core {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(242, 255, 165, 0.95);
  background: var(--lime);
  box-shadow: 0 0 22px 8px rgba(201, 241, 42, 0.36);
}

@keyframes beam-flow {
  to {
    stroke-dashoffset: -28;
  }
}

@keyframes signal-pulse {
  0%,
  100% {
    opacity: 0.35;
  }

  48% {
    opacity: 1;
  }
}

.advantages-panel {
  position: relative;
  z-index: 3;
  display: grid;
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: calc(1536px - (var(--page-gutter) * 2));
  grid-template-columns: repeat(4, 1fr);
  margin: auto auto 30px;
  overflow: hidden;
  border: 1px solid rgba(186, 209, 220, 0.39);
  border-radius: 15px;
  background: linear-gradient(100deg, rgba(3, 24, 37, 0.9), rgba(8, 34, 39, 0.76));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.advantage {
  position: relative;
  isolation: isolate;
  display: grid;
  min-width: 0;
  grid-template-columns: 46px 1fr;
  align-items: start;
  padding: 30px clamp(20px, 2.5vw, 37px);
  gap: 14px;
  outline: none;
  cursor: default;
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.advantage::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 18% 35%, rgba(201, 241, 42, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(201, 241, 42, 0.06), rgba(23, 84, 101, 0.08));
  content: "";
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 220ms ease, transform 280ms ease;
}

.advantage:hover,
.advantage:focus-visible {
  z-index: 2;
  background: rgba(12, 52, 61, 0.72);
  box-shadow: inset 0 -2px 0 var(--lime), 0 16px 30px rgba(0, 0, 0, 0.18);
  transform: translateY(-5px) scale(1.015);
}

.advantage:hover::before,
.advantage:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.advantage:not(:last-child)::after {
  position: absolute;
  top: 21px;
  right: 0;
  bottom: 21px;
  width: 1px;
  background: rgba(207, 224, 231, 0.2);
  content: "";
}

.advantage > svg {
  width: 39px;
  height: 39px;
  color: var(--lime);
  stroke-width: 1.65;
  filter: drop-shadow(0 0 0 rgba(201, 241, 42, 0));
  transform-origin: center;
  transition: filter 220ms ease, transform 220ms ease;
}

.advantage h2 {
  margin: 2px 0 5px;
  font-size: 15px;
  line-height: 1.2;
  transition: color 180ms ease, transform 220ms ease;
}

.advantage p {
  max-width: 230px;
  margin: 0;
  color: #bec8cf;
  font-size: 12px;
  line-height: 1.45;
  transition: color 180ms ease, transform 240ms ease;
}

.advantage:hover h2,
.advantage:focus-visible h2 {
  color: #fff;
  transform: translateX(3px);
}

.advantage:hover p,
.advantage:focus-visible p {
  color: #d9e2e5;
  transform: translateX(3px);
}

.advantage:hover > svg,
.advantage:focus-visible > svg {
  filter: drop-shadow(0 0 10px rgba(201, 241, 42, 0.52));
}

.advantage-map:hover > svg,
.advantage-map:focus-visible > svg {
  animation: advantage-map-drift 1.35s ease-in-out infinite;
}

.advantage-signal:hover > svg,
.advantage-signal:focus-visible > svg {
  animation: advantage-signal-pulse 1.05s ease-in-out infinite;
}

.advantage-settings:hover > svg,
.advantage-settings:focus-visible > svg {
  animation: advantage-settings-spin 2.6s linear infinite;
}

.advantage-result:hover > svg,
.advantage-result:focus-visible > svg {
  animation: advantage-result-bounce 0.72s ease-in-out infinite alternate;
}

@keyframes advantage-map-drift {
  0%,
  100% {
    transform: translate(0, 0) rotate(-2deg);
  }

  50% {
    transform: translate(4px, -3px) rotate(2deg);
  }
}

@keyframes advantage-signal-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15) rotate(-5deg);
  }
}

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

@keyframes advantage-result-bounce {
  from {
    transform: translateY(1px) rotate(-3deg);
  }

  to {
    transform: translateY(-6px) rotate(4deg) scale(1.07);
  }
}

.connection-section {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding: 105px var(--page-gutter) 118px;
  background:
    radial-gradient(circle at 84% 17%, rgba(201, 241, 42, 0.13), transparent 26%),
    #f2f5ef;
  color: #0a2230;
}

.connection-orb {
  position: absolute;
  border: 1px solid rgba(136, 164, 147, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.connection-orb-one {
  top: -310px;
  right: -190px;
  width: 620px;
  height: 620px;
}

.connection-orb-two {
  right: 55px;
  bottom: -280px;
  width: 430px;
  height: 430px;
}

.connection-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}

.connection-heading {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(107, 137, 87, 0.22);
  border-radius: 999px;
  padding: 0 17px;
  gap: 8px;
  background: rgba(255, 255, 255, 0.66);
  color: #506346;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.section-kicker svg {
  width: 17px;
  height: 17px;
  color: #86ab11;
}

.connection-heading h2 {
  margin: 20px 0 17px;
  color: #092536;
  font-size: clamp(40px, 4vw, 59px);
  font-weight: 700;
  line-height: 1.09;
  letter-spacing: -0.047em;
}

.connection-heading h2 span {
  color: #8aad11;
}

.connection-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: #65747b;
  font-size: 16px;
  line-height: 1.6;
}

.connection-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.92fr);
  align-items: stretch;
  gap: 24px;
}

.connection-form-card,
.connection-explainer {
  min-height: 520px;
  border-radius: 26px;
}

.connection-form-card {
  --connection-glow-x: 50%;
  --connection-glow-y: 12%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid #e0e6df;
  padding: clamp(28px, 3vw, 43px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 25px 70px rgba(18, 44, 41, 0.09);
  transition: border-color 250ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.connection-form-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(330px circle at var(--connection-glow-x) var(--connection-glow-y), rgba(199, 239, 40, 0.13), transparent 68%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.connection-form-card > * {
  position: relative;
  z-index: 1;
}

.connection-form-card:hover,
.connection-form-card:focus-within {
  border-color: rgba(157, 191, 38, 0.48);
  box-shadow: 0 35px 82px rgba(18, 55, 47, 0.15), 0 0 0 1px rgba(190, 226, 46, 0.08);
  transform: translateY(-6px);
}

.connection-form-card:hover::before,
.connection-form-card:focus-within::before {
  opacity: 1;
}

.form-step-row strong {
  transition: color 210ms ease, transform 210ms ease;
}

.connection-form-card:hover .form-step-row strong,
.connection-form-card:focus-within .form-step-row strong {
  color: #718e13;
  transform: translateX(3px);
}

.form-step-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 31px;
}

.form-step-row > div:first-child {
  display: flex;
  flex-direction: column;
}

.form-step-row span {
  color: #8aa09c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.form-step-row strong {
  margin-top: 7px;
  color: #102d3b;
  font-size: 20px;
  letter-spacing: -0.02em;
}

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

.step-dots i {
  display: block;
  width: 27px;
  height: 4px;
  border-radius: 999px;
  background: #dce4df;
}

.step-dots i.active {
  width: 43px;
  background: var(--lime-soft);
}

.object-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.object-fieldset legend,
.address-field > label {
  margin-bottom: 11px;
  color: #233d48;
  font-size: 13px;
  font-weight: 700;
}

.object-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.object-option {
  position: relative;
  display: flex;
  min-height: 91px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dce5df;
  border-radius: 14px;
  padding: 15px 10px;
  gap: 7px;
  background: #f8faf7;
  color: #52666c;
  cursor: pointer;
  flex-direction: column;
  transition: border-color 170ms ease, background 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

.object-option:hover {
  border-color: #b9ca9e;
  transform: translateY(-1px);
}

.object-option:has(.object-radio:checked) {
  border-color: #a9cb25;
  background: #f4fadf;
  box-shadow: inset 0 0 0 1px rgba(169, 203, 37, 0.2);
  color: #173542;
}

.object-option > .object-radio {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 16px;
  height: 16px;
  margin: 0;
  appearance: none;
  border: 1px solid #cfdad4;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.object-option > .object-radio:checked {
  border-color: #98bb17;
  box-shadow: inset 0 0 0 4px #fff;
  background: #98bb17;
}

.object-option > svg:not(.option-check) {
  width: 24px;
  height: 24px;
  color: #71858a;
}

.object-option:has(.object-radio:checked) > svg:not(.option-check) {
  color: #89aa15;
}

.object-option > span {
  font-size: 12.5px;
  font-weight: 700;
}

.option-check {
  position: absolute;
  top: 9px;
  right: 9px;
  display: none;
  width: 17px;
  height: 17px;
  color: #73920b;
}

.address-field {
  margin-top: 24px;
}

.connection-phone-field {
  margin-top: 17px;
}

.connection-consent {
  display: flex;
  align-items: flex-start;
  margin-top: 14px;
  gap: 8px;
  color: #778786;
  cursor: pointer;
  font-size: 10px;
  line-height: 1.4;
}

.connection-consent input {
  width: 16px;
  height: 16px;
  flex: none;
  margin: -1px 0 0;
  accent-color: var(--lime-soft);
}

.form-honeypot {
  position: fixed !important;
  top: -10000px !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.address-field > label {
  display: block;
}

.address-input-wrap {
  position: relative;
}

.address-input-wrap > svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 16px;
  width: 20px;
  height: 20px;
  color: #7f9695;
  pointer-events: none;
  transform: translateY(-50%);
}

.address-input-wrap input {
  width: 100%;
  height: 58px;
  border: 1px solid #d8e1dc;
  border-radius: 12px;
  padding: 0 16px 0 47px;
  background: #fbfcfa;
  color: #112f3b;
  font-size: 14px;
  outline: none;
  box-shadow: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.address-input-wrap input::placeholder {
  color: #9ba9aa;
}

.address-input-wrap input:focus-visible {
  border-color: #9fbd26;
  box-shadow: 0 0 0 4px rgba(184, 231, 31, 0.16);
}

.address-input-wrap input[aria-invalid="true"] {
  border-color: #d97064;
}

.address-hint,
.connection-error {
  margin: 8px 0 0;
  font-size: 11px;
}

.address-hint {
  color: #94a2a2;
}

.connection-error {
  color: #bb4d43;
}

.connection-submit {
  display: flex;
  width: 100%;
  height: 59px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #d6f83b, #b9eb1d);
  color: #132d21;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 13px 30px rgba(154, 195, 25, 0.19);
  cursor: pointer;
}

.connection-submit svg {
  width: 20px;
  height: 20px;
}

.connection-submit:hover {
  background: linear-gradient(135deg, #e1ff55, #c9f42a);
  transform: translateY(-1px);
}

.connection-submit:disabled,
.callback-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-note {
  margin: 13px 0 0;
  color: #91a09f;
  font-size: 11px;
  text-align: center;
}

.connection-explainer {
  --connection-glow-x: 76%;
  --connection-glow-y: 18%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(157, 199, 213, 0.13);
  padding: clamp(31px, 3.5vw, 48px);
  background:
    radial-gradient(circle at 85% 9%, rgba(201, 241, 42, 0.17), transparent 32%),
    linear-gradient(145deg, #082b3a, #031c2a 72%);
  box-shadow: 0 25px 70px rgba(4, 30, 42, 0.19);
  color: #f7fafc;
  transition: border-color 250ms ease, box-shadow 270ms ease, transform 260ms ease;
}

.connection-explainer::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: radial-gradient(360px circle at var(--connection-glow-x) var(--connection-glow-y), rgba(201, 241, 42, 0.15), transparent 67%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.connection-explainer:hover,
.connection-explainer:focus-within {
  border-color: rgba(201, 241, 42, 0.3);
  box-shadow: 0 38px 88px rgba(2, 29, 41, 0.29), 0 0 34px rgba(173, 215, 31, 0.055);
  transform: translateY(-6px);
}

.connection-explainer:hover::after,
.connection-explainer:focus-within::after {
  opacity: 1;
}

.explainer-signal {
  position: absolute;
  z-index: 1;
  top: -62px;
  right: -30px;
  width: 270px;
  height: 270px;
  opacity: 0.73;
}

.explainer-signal > svg {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 41px;
  height: 41px;
  color: var(--lime);
  transform: translate(-50%, -50%);
}

.explainer-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(201, 241, 42, 0.38);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.explainer-ring-one {
  width: 87px;
  height: 87px;
}

.explainer-ring-two {
  width: 164px;
  height: 164px;
}

.explainer-ring-three {
  width: 248px;
  height: 248px;
}

.signal-point {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 15px rgba(201, 241, 42, 0.68);
}

.signal-point-one {
  top: 29%;
  left: 22%;
}

.signal-point-two {
  right: 11%;
  bottom: 33%;
}

.signal-point-three {
  bottom: 12%;
  left: 36%;
}

.explainer-kicker {
  position: relative;
  z-index: 2;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.connection-explainer > h3 {
  position: relative;
  z-index: 2;
  max-width: 390px;
  margin: 15px 0 33px;
  font-size: clamp(26px, 2.4vw, 35px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.explainer-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.explainer-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  padding: 16px 0;
  gap: 14px;
  border-top: 1px solid rgba(218, 232, 238, 0.15);
  transition: background 210ms ease, border-color 210ms ease, padding 210ms ease, transform 220ms ease;
}

.explainer-item:hover {
  border-color: rgba(201, 241, 42, 0.23);
  border-radius: 12px;
  padding-right: 10px;
  padding-left: 10px;
  background: linear-gradient(90deg, rgba(201, 241, 42, 0.075), rgba(255, 255, 255, 0.025));
  transform: translateX(5px);
}

.explainer-item > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(201, 241, 42, 0.36);
  border-radius: 50%;
  color: var(--lime);
  background: rgba(201, 241, 42, 0.06);
  transition: background 210ms ease, box-shadow 210ms ease, transform 230ms ease;
}

.explainer-item:hover > span {
  background: rgba(201, 241, 42, 0.13);
  box-shadow: 0 0 24px rgba(201, 241, 42, 0.11);
  transform: scale(1.07) rotate(-4deg);
}

.explainer-item svg {
  width: 21px;
  height: 21px;
}

.explainer-item strong {
  font-size: 13.5px;
}

.explainer-item p {
  margin: 5px 0 0;
  color: #aebdc5;
  font-size: 11.5px;
  line-height: 1.35;
}

.explainer-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-top: 21px;
  gap: 10px;
  color: #c2cdd2;
  font-size: 10.5px;
}

.explainer-footer i {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime);
}

.connection-result {
  display: flex;
  min-height: 434px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.connection-checking {
  display: flex;
  min-height: 434px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #173541;
  text-align: center;
}

.connection-checking[hidden],
.connection-result[hidden] {
  display: none;
}

.checking-radar {
  position: relative;
  width: 150px;
  height: 150px;
  overflow: hidden;
  border: 1px solid #d8e4d4;
  border-radius: 50%;
  background:
    linear-gradient(rgba(147, 174, 157, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147, 174, 157, 0.08) 1px, transparent 1px),
    radial-gradient(circle, #f9fced 0%, #eff5e6 74%);
  background-size: 25px 25px, 25px 25px, auto;
  box-shadow: 0 17px 44px rgba(47, 83, 61, 0.1), inset 0 0 38px rgba(168, 205, 43, 0.08);
}

.checking-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(133, 165, 28, 0.27);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.checking-ring-one {
  width: 48px;
  height: 48px;
}

.checking-ring-two {
  width: 91px;
  height: 91px;
}

.checking-ring-three {
  width: 132px;
  height: 132px;
}

.checking-sweep {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(from 0deg, transparent 0deg 290deg, rgba(178, 220, 35, 0.04) 305deg, rgba(155, 197, 24, 0.42) 359deg);
  animation: checking-radar-spin 1.25s linear infinite;
  transform-origin: 50% 50%;
}

.checking-sweep::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(132, 168, 19, 0.72), transparent);
  box-shadow: 0 0 11px rgba(139, 177, 21, 0.45);
  content: "";
  transform-origin: left center;
}

.checking-pin {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: var(--lime);
  color: #425714;
  box-shadow: 0 0 0 1px rgba(132, 164, 24, 0.18), 0 8px 21px rgba(103, 134, 19, 0.23);
  transform: translate(-50%, -50%);
}

.checking-pin svg {
  width: 18px;
  height: 18px;
}

.checking-point {
  position: absolute;
  z-index: 2;
  width: 6px;
  height: 6px;
  border: 2px solid #f8fbf5;
  border-radius: 50%;
  background: #93b519;
  box-shadow: 0 0 0 3px rgba(147, 181, 25, 0.13);
  animation: checking-point-pulse 1.4s ease-in-out infinite;
}

.checking-point-one {
  top: 25px;
  left: 49px;
}

.checking-point-two {
  top: 61px;
  right: 20px;
  animation-delay: 320ms;
}

.checking-point-three {
  bottom: 24px;
  left: 30px;
  animation-delay: 670ms;
}

.checking-label {
  margin: 21px 0 7px;
  color: #8ca416;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.connection-checking h3 {
  margin: 0;
  color: #173541;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.checking-address {
  display: inline-flex;
  max-width: min(90%, 480px);
  align-items: center;
  margin: 12px 0 0;
  gap: 6px;
  color: #6e8284;
  font-size: 11px;
}

.checking-address svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: #8cae17;
}

.checking-address span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checking-progress {
  width: min(100%, 420px);
  height: 6px;
  margin-top: 21px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9eee8;
}

.checking-progress span {
  display: block;
  width: 94%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #9ec51e, #d5f33f);
  box-shadow: 0 0 13px rgba(164, 202, 30, 0.34);
  animation: checking-progress 2.2s cubic-bezier(0.22, 0.7, 0.2, 1) both;
  transition: width 180ms ease;
}

.connection-checking.is-complete .checking-progress span {
  width: 100%;
  animation: none;
}

.checking-steps {
  display: grid;
  width: min(100%, 470px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
  gap: 6px;
}

.checking-steps > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  color: #9ba8a6;
  font-size: 8.5px;
  line-height: 1.25;
  text-align: left;
  transition: color 180ms ease;
}

.checking-steps i {
  display: block;
  width: 7px;
  height: 7px;
  flex: none;
  border: 1px solid #cbd5ce;
  border-radius: 50%;
  background: #fff;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.checking-steps > span.is-active {
  color: #445e61;
  font-weight: 700;
}

.checking-steps > span.is-active i {
  border-color: #94b818;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(170, 207, 33, 0.12);
}

.checking-steps > span.is-done {
  color: #758886;
}

.checking-steps > span.is-done i {
  border-color: #8dad16;
  background: #8dad16;
}

.checking-note {
  margin: 13px 0 0;
  color: #9aa7a5;
  font-size: 9.5px;
}

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

@keyframes checking-point-pulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@keyframes checking-progress {
  0% {
    width: 7%;
  }

  52% {
    width: 61%;
  }

  100% {
    width: 94%;
  }
}

.result-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid #bdd65d;
  border-radius: 50%;
  background: #f3f9dc;
  color: #7d9e0c;
}

.result-icon svg {
  width: 32px;
  height: 32px;
}

.result-label {
  margin: 19px 0 7px;
  color: #88a014;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.connection-result h3 {
  max-width: 480px;
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.result-address {
  display: inline-flex;
  max-width: 90%;
  align-items: center;
  margin: 17px 0 0;
  gap: 7px;
  color: #526b72;
  font-size: 13px;
}

.result-address svg {
  width: 17px;
  height: 17px;
  flex: none;
  color: #8dac18;
}

.result-copy {
  max-width: 500px;
  margin: 18px 0 0;
  color: #728186;
  font-size: 13px;
  line-height: 1.55;
}

.result-call {
  display: flex;
  align-items: center;
  margin-top: 21px;
  border: 1px solid #dbe3dd;
  border-radius: 12px;
  padding: 12px 17px;
  gap: 13px;
  background: #f8faf7;
}

.result-call span {
  color: #788987;
  font-size: 11px;
}

.result-call strong {
  color: #183745;
  font-size: 14px;
}

.check-reset-button {
  display: inline-flex;
  height: 39px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border: 0;
  border-radius: 8px;
  padding: 0 13px;
  gap: 8px;
  background: transparent;
  color: #71827f;
  cursor: pointer;
}

.check-reset-button svg {
  width: 16px;
  height: 16px;
}

.check-reset-button:hover {
  background: #f2f5ef;
  color: #173541;
}

.process-section {
  --process-progress: 0%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px var(--page-gutter) 106px;
  background: #031a28;
  color: #f7fafc;
}

.process-grid-bg,
.process-glow {
  position: absolute;
  z-index: -2;
  pointer-events: none;
}

.process-grid-bg {
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(161, 190, 200, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(161, 190, 200, 0.16) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 76%, transparent 100%);
}

.process-glow {
  border-radius: 50%;
  filter: blur(8px);
}

.process-glow-one {
  top: -260px;
  left: -210px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(23, 109, 141, 0.3), transparent 70%);
}

.process-glow-two {
  right: -260px;
  bottom: -290px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(178, 224, 30, 0.13), transparent 69%);
}

.process-container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}

.process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  align-items: end;
  gap: clamp(45px, 8vw, 115px);
}

.process-kicker {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(201, 241, 42, 0.35);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(201, 241, 42, 0.06);
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-heading h2 {
  max-width: 850px;
  margin: 20px 0 0;
  font-size: clamp(42px, 4.25vw, 62px);
  line-height: 1.07;
  letter-spacing: -0.048em;
}

.process-heading h2 span {
  color: var(--lime);
}

.process-heading > p {
  margin: 0 0 5px;
  color: #adbbc2;
  font-size: 15px;
  line-height: 1.62;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 64px;
  gap: 16px;
}

.process-line {
  position: absolute;
  z-index: 0;
  top: 87px;
  right: 12.5%;
  left: 12.5%;
  height: 2px;
  overflow: hidden;
  background: rgba(180, 204, 214, 0.22);
}

.process-progress {
  display: block;
  width: var(--process-progress);
  height: 100%;
  background: linear-gradient(90deg, #9ecf15, #ddff58);
  box-shadow: 0 0 15px rgba(201, 241, 42, 0.55);
  transition: width 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process-card {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  min-height: 315px;
  align-items: flex-start;
  border: 1px solid rgba(183, 207, 216, 0.22);
  border-radius: 20px;
  padding: 27px 25px 24px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(13, 48, 64, 0.9), rgba(5, 31, 45, 0.93));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.13);
  color: #f7fafc;
  cursor: pointer;
  flex-direction: column;
  font: inherit;
  text-align: left;
  transition: border-color 230ms ease, box-shadow 230ms ease, transform 260ms ease, background 230ms ease;
}

.process-card::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 19%, rgba(201, 241, 42, 0.13), transparent 33%),
    linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.07) 47%, transparent 73%);
  content: "";
  opacity: 0;
  transform: translateX(-28%);
  transition: opacity 230ms ease, transform 520ms ease;
}

.process-card:hover,
.process-card:focus-visible,
.process-card.is-active {
  border-color: rgba(201, 241, 42, 0.68);
  background: linear-gradient(145deg, rgba(18, 61, 73, 0.97), rgba(6, 39, 49, 0.98));
  box-shadow: 0 23px 55px rgba(0, 0, 0, 0.25), 0 0 30px rgba(183, 230, 31, 0.08);
  outline: none;
  transform: translateY(-10px);
}

.process-card:hover::before,
.process-card:focus-visible::before,
.process-card.is-active::before {
  opacity: 1;
  transform: translateX(0);
}

.process-number {
  position: absolute;
  z-index: 1;
  top: 22px;
  right: 22px;
  color: rgba(211, 225, 231, 0.35);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: color 220ms ease;
}

.process-card:hover .process-number,
.process-card:focus-visible .process-number,
.process-card.is-active .process-number {
  color: var(--lime);
}

.process-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 64px;
  height: 64px;
  flex: none;
  place-items: center;
  border: 1px solid rgba(201, 241, 42, 0.42);
  border-radius: 50%;
  background: #082a3b;
  color: var(--lime);
  box-shadow: 0 0 0 8px rgba(201, 241, 42, 0.035);
  transition: background 220ms ease, box-shadow 220ms ease, transform 260ms ease;
}

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

.process-card:hover .process-icon,
.process-card:focus-visible .process-icon,
.process-card.is-active .process-icon {
  background: rgba(201, 241, 42, 0.12);
  box-shadow: 0 0 0 10px rgba(201, 241, 42, 0.05), 0 0 24px rgba(201, 241, 42, 0.14);
}

.process-card:hover .process-icon-phone,
.process-card:focus-visible .process-icon-phone,
.process-card.is-active .process-icon-phone {
  animation: process-phone-ring 0.82s ease-in-out infinite;
}

.process-card:hover .process-icon-tower,
.process-card:focus-visible .process-icon-tower,
.process-card.is-active .process-icon-tower {
  animation: process-tower-pulse 1.25s ease-in-out infinite;
}

.process-card:hover .process-icon-settings svg,
.process-card:focus-visible .process-icon-settings svg,
.process-card.is-active .process-icon-settings svg {
  animation: process-settings-spin 2.8s linear infinite;
}

.process-card:hover .process-icon-shield,
.process-card:focus-visible .process-icon-shield,
.process-card.is-active .process-icon-shield {
  animation: process-shield-pop 0.9s ease-in-out infinite alternate;
}

.process-card-copy {
  position: relative;
  z-index: 2;
  display: flex;
  margin-top: 41px;
  flex-direction: column;
}

.process-card-copy strong {
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.022em;
}

.process-card-copy > span {
  margin-top: 10px;
  color: #aebdc4;
  font-size: 12.5px;
  line-height: 1.52;
  transition: color 180ms ease;
}

.process-card:hover .process-card-copy > span,
.process-card:focus-visible .process-card-copy > span,
.process-card.is-active .process-card-copy > span {
  color: #d2dcdf;
}

.process-arrow {
  position: relative;
  z-index: 2;
  width: 21px;
  height: 21px;
  margin-top: auto;
  color: #78919b;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color 180ms ease, transform 220ms ease;
}

.process-card:hover .process-arrow,
.process-card:focus-visible .process-arrow,
.process-card.is-active .process-arrow {
  color: var(--lime);
  transform: translateX(7px);
}

.process-summary {
  display: grid;
  grid-template-columns: minmax(330px, 1fr) auto auto;
  align-items: center;
  margin-top: 42px;
  border: 1px solid rgba(182, 207, 217, 0.24);
  border-radius: 18px;
  padding: 24px 26px;
  gap: clamp(24px, 4vw, 56px);
  background: rgba(6, 35, 49, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.process-summary-copy {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
}

.summary-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 241, 42, 0.11);
  color: var(--lime);
}

.summary-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.process-summary-copy strong {
  font-size: 14px;
}

.process-summary-copy p {
  margin: 6px 0 0;
  color: #a8b8bf;
  font-size: 11.5px;
  line-height: 1.4;
}

.process-facts {
  display: flex;
  align-items: center;
  gap: 18px;
}

.process-facts > span {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.process-facts strong {
  color: var(--lime);
  font-size: 14px;
}

.process-facts small {
  margin-top: 5px;
  color: #9eafb6;
  font-size: 10px;
}

.process-facts i {
  width: 1px;
  height: 34px;
  background: rgba(196, 215, 223, 0.18);
}

.process-cta {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0 21px;
  gap: 10px;
  background: linear-gradient(135deg, #d6f83b, #b9eb1d);
  color: #132d21;
  font-size: 12.5px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(166, 211, 25, 0.15);
  transition: box-shadow 190ms ease, transform 190ms ease;
}

.process-cta:hover,
.process-cta:focus-visible {
  box-shadow: 0 16px 34px rgba(178, 224, 30, 0.25);
  outline: none;
  transform: translateY(-3px);
}

.process-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 190ms ease;
}

.process-cta:hover svg,
.process-cta:focus-visible svg {
  transform: translateX(4px);
}

@keyframes process-phone-ring {
  0%,
  100% {
    transform: rotate(0);
  }

  25% {
    transform: rotate(-7deg);
  }

  75% {
    transform: rotate(7deg);
  }
}

@keyframes process-tower-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.11);
  }
}

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

@keyframes process-shield-pop {
  from {
    transform: translateY(0) scale(1);
  }

  to {
    transform: translateY(-4px) scale(1.05);
  }
}

.tariffs-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 108px var(--page-gutter) 112px;
  background:
    radial-gradient(circle at 10% 20%, rgba(194, 232, 51, 0.1), transparent 24%),
    linear-gradient(180deg, #f5f7f2 0%, #eef3ed 100%);
  color: #0a2735;
}

.tariffs-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(109, 137, 124, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.tariffs-orbit-one {
  top: -380px;
  right: -270px;
  width: 760px;
  height: 760px;
}

.tariffs-orbit-two {
  bottom: -280px;
  left: -220px;
  width: 520px;
  height: 520px;
}

.tariffs-container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}

.tariffs-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(350px, 0.75fr);
  align-items: end;
  gap: clamp(45px, 8vw, 115px);
}

.tariffs-kicker {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(113, 145, 95, 0.22);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.68);
  color: #66804e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tariffs-heading h2 {
  max-width: 810px;
  margin: 20px 0 0;
  font-size: clamp(42px, 4.25vw, 62px);
  line-height: 1.07;
  letter-spacing: -0.048em;
}

.tariffs-heading h2 span {
  color: #89aa17;
}

.tariffs-heading > p {
  margin: 0 0 5px;
  color: #687a7d;
  font-size: 15px;
  line-height: 1.62;
}

.usage-switcher {
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 42px auto 0;
  border: 1px solid #d7e0d9;
  border-radius: 999px;
  padding: 6px;
  gap: 4px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(27, 60, 52, 0.07);
}

.usage-switcher > span {
  padding: 0 14px 0 12px;
  color: #718180;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.usage-switcher button {
  min-height: 39px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: transparent;
  color: #53696d;
  cursor: pointer;
  font: inherit;
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.usage-switcher button:hover,
.usage-switcher button:focus-visible {
  background: #edf3e1;
  color: #193641;
  outline: none;
  transform: translateY(-1px);
}

.usage-switcher button.is-active {
  background: #092b3a;
  box-shadow: 0 8px 20px rgba(7, 42, 56, 0.16);
  color: #f5f8f9;
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  margin-top: 43px;
  gap: 18px;
  perspective: 1400px;
}

.tariff-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glare-x: 50%;
  --glare-y: 0%;
  position: relative;
  isolation: isolate;
  display: flex;
  min-width: 0;
  min-height: 610px;
  border: 1px solid #dce4df;
  border-radius: 25px;
  padding: 30px 30px 27px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 58px rgba(21, 55, 48, 0.08);
  outline: none;
  color: #102f3b;
  flex-direction: column;
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0);
  transform-style: preserve-3d;
  transition: border-color 230ms ease, box-shadow 230ms ease, color 230ms ease, background 230ms ease, transform 130ms ease;
}

.tariff-card:hover,
.tariff-card:focus-visible {
  border-color: rgba(155, 190, 28, 0.62);
  box-shadow: 0 31px 75px rgba(18, 52, 45, 0.15), 0 0 0 1px rgba(180, 222, 36, 0.12);
}

.tariff-card.is-recommended {
  border-color: rgba(201, 241, 42, 0.72);
  background:
    radial-gradient(circle at 78% 5%, rgba(201, 241, 42, 0.16), transparent 31%),
    linear-gradient(155deg, #0a3444, #031c2a 74%);
  box-shadow: 0 30px 75px rgba(4, 36, 48, 0.22), 0 0 0 1px rgba(201, 241, 42, 0.1);
  color: #f7fafc;
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-10px);
}

.tariff-card.is-recommended:hover,
.tariff-card.is-recommended:focus-visible {
  box-shadow: 0 38px 84px rgba(4, 36, 48, 0.3), 0 0 34px rgba(201, 241, 42, 0.08);
}

.tariff-glare {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at var(--glare-x) var(--glare-y), rgba(201, 241, 42, 0.16), transparent 35%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.tariff-card:hover .tariff-glare,
.tariff-card:focus-visible .tariff-glare,
.tariff-card.is-recommended .tariff-glare {
  opacity: 1;
}

.recommendation-label {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  border-radius: 0 0 9px 9px;
  padding: 0 13px;
  background: var(--lime);
  color: #183120;
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.tariff-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tariff-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid #d9e5ca;
  border-radius: 17px;
  background: #f4f8ec;
  color: #7e9d12;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 260ms ease;
}

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

.tariff-card:hover .tariff-icon,
.tariff-card:focus-visible .tariff-icon {
  border-color: #b9d360;
  box-shadow: 0 0 0 7px rgba(177, 214, 51, 0.08);
  transform: translateY(-3px) rotate(-3deg);
}

.tariff-card.is-recommended .tariff-icon {
  border-color: rgba(201, 241, 42, 0.34);
  background: rgba(201, 241, 42, 0.09);
  color: var(--lime);
}

.tariff-card.is-recommended:hover .tariff-icon,
.tariff-card.is-recommended:focus-visible .tariff-icon {
  box-shadow: 0 0 0 7px rgba(201, 241, 42, 0.06), 0 0 22px rgba(201, 241, 42, 0.15);
}

.tariff-badge {
  border: 1px solid #d7e0db;
  border-radius: 999px;
  padding: 7px 10px;
  background: #f8faf7;
  color: #71817e;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.tariff-card.is-recommended .tariff-badge {
  border-color: rgba(201, 241, 42, 0.3);
  background: rgba(201, 241, 42, 0.07);
  color: #d5ed82;
}

.tariff-eyebrow {
  position: relative;
  z-index: 1;
  margin: 27px 0 5px;
  color: #879694;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tariff-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.tariff-description {
  position: relative;
  z-index: 1;
  min-height: 55px;
  margin: 12px 0 0;
  color: #697a7e;
  font-size: 12.5px;
  line-height: 1.48;
}

.tariff-card.is-recommended .tariff-eyebrow {
  color: #91a8b0;
}

.tariff-card.is-recommended .tariff-description {
  color: #b3c0c6;
}

.tariff-speed {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 43px 1fr;
  align-items: center;
  margin-top: 21px;
  border: 1px solid #dfe6e1;
  border-radius: 13px;
  padding: 12px;
  gap: 11px;
  background: #f8faf7;
}

.tariff-speed > span {
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  border-radius: 50%;
  background: #edf4dc;
  color: #829e1d;
}

.tariff-speed svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.tariff-speed > div {
  display: flex;
  flex-direction: column;
}

.tariff-speed strong {
  font-size: 14px;
}

.tariff-speed small {
  margin-top: 4px;
  color: #899895;
  font-size: 9.5px;
}

.tariff-card.is-recommended .tariff-speed {
  border-color: rgba(199, 220, 228, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.tariff-card.is-recommended .tariff-speed > span {
  background: rgba(201, 241, 42, 0.1);
  color: var(--lime);
}

.tariff-card.is-recommended .tariff-speed small {
  color: #9eafb5;
}

.tariff-price {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  margin-top: 21px;
  gap: 7px;
}

.tariff-price > span,
.tariff-price small {
  color: #7e8e8b;
  font-size: 10px;
}

.tariff-price strong {
  color: #0f303c;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.tariff-card.is-recommended .tariff-price strong {
  color: var(--lime);
}

.tariff-card.is-recommended .tariff-price > span,
.tariff-card.is-recommended .tariff-price small {
  color: #9eafb5;
}

.tariff-features {
  position: relative;
  z-index: 1;
  display: flex;
  margin: 24px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
  flex-direction: column;
}

.tariff-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #52676c;
  font-size: 11.5px;
}

.tariff-features svg {
  width: 16px;
  height: 16px;
  flex: none;
  color: #8aaa15;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  transition: filter 180ms ease, transform 180ms ease;
}

.tariff-card:hover .tariff-features svg,
.tariff-card:focus-visible .tariff-features svg {
  filter: drop-shadow(0 0 5px rgba(151, 188, 20, 0.35));
  transform: scale(1.1);
}

.tariff-card.is-recommended .tariff-features li {
  color: #c5d0d4;
}

.tariff-card.is-recommended .tariff-features svg {
  color: var(--lime);
}

.tariff-details {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  border-top: 1px solid #e0e6e2;
  border-bottom: 1px solid #e0e6e2;
}

.tariff-details summary {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  color: #52676b;
  cursor: pointer;
  font-size: 10.5px;
  font-weight: 700;
  list-style: none;
}

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

.tariff-details summary span {
  position: relative;
  width: 16px;
  height: 16px;
}

.tariff-details summary span::before,
.tariff-details summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.tariff-details summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.tariff-details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.tariff-details p {
  margin: 0;
  padding: 0 0 13px;
  color: #788987;
  font-size: 10.5px;
  line-height: 1.5;
}

.tariff-card.is-recommended .tariff-details {
  border-color: rgba(198, 216, 224, 0.16);
}

.tariff-card.is-recommended .tariff-details summary {
  color: #b9c6cb;
}

.tariff-card.is-recommended .tariff-details p {
  color: #93a6ad;
}

.tariff-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid #d5dfd8;
  border-radius: 11px;
  padding: 0 18px;
  gap: 9px;
  background: #f5f8f3;
  color: #173743;
  font-size: 11.5px;
  font-weight: 800;
  transition: border-color 190ms ease, background 190ms ease, box-shadow 190ms ease, transform 190ms ease;
}

.tariff-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 190ms ease;
}

.tariff-button:hover,
.tariff-button:focus-visible {
  border-color: #abc933;
  background: #eef6d9;
  box-shadow: 0 11px 25px rgba(134, 168, 22, 0.12);
  outline: none;
  transform: translateY(-2px);
}

.tariff-button:hover svg,
.tariff-button:focus-visible svg {
  transform: translateX(4px);
}

.tariff-card.is-recommended .tariff-button {
  border-color: transparent;
  background: linear-gradient(135deg, #d7f83c, #b9eb1d);
  color: #142d20;
  box-shadow: 0 13px 29px rgba(166, 211, 25, 0.16);
}

.tariff-card.is-recommended .tariff-button:hover,
.tariff-card.is-recommended .tariff-button:focus-visible {
  background: linear-gradient(135deg, #e2ff55, #c8f32a);
  box-shadow: 0 16px 34px rgba(177, 222, 30, 0.24);
}

.tariffs-note {
  display: grid;
  grid-template-columns: 49px minmax(0, 1fr) auto;
  align-items: center;
  margin-top: 31px;
  border: 1px solid #d8e2db;
  border-radius: 17px;
  padding: 20px 23px;
  gap: 15px;
  background: rgba(255, 255, 255, 0.72);
}

.tariffs-note-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: #edf5db;
  color: #86a514;
}

.tariffs-note-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.tariffs-note p {
  margin: 0;
  color: #6d7e7d;
  font-size: 11px;
  line-height: 1.5;
}

.tariffs-note p strong {
  display: block;
  margin-bottom: 4px;
  color: #193743;
  font-size: 12.5px;
}

.tariffs-note > a {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  border-radius: 9px;
  padding: 0 14px;
  gap: 8px;
  background: #0a3040;
  color: #f5f8f8;
  font-size: 10.5px;
  font-weight: 800;
  white-space: nowrap;
  transition: background 180ms ease, transform 180ms ease;
}

.tariffs-note > a:hover,
.tariffs-note > a:focus-visible {
  background: #0d4053;
  outline: none;
  transform: translateY(-2px);
}

.tariffs-note > a svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

[hidden] {
  display: none !important;
}

.callback-open {
  cursor: pointer;
  font-family: inherit;
}

.mobile-callback {
  min-height: 48px;
  margin: 10px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #d6f83b, #b9eb1d);
  color: #132d21;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.works-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 108px var(--page-gutter) 110px;
  background:
    linear-gradient(rgba(133, 164, 175, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133, 164, 175, 0.045) 1px, transparent 1px),
    #031a28;
  background-size: 54px 54px;
  color: #f7fafc;
}

.works-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.works-glow-one {
  top: -340px;
  right: -240px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(201, 241, 42, 0.12), transparent 68%);
}

.works-glow-two {
  bottom: -330px;
  left: -260px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(31, 119, 151, 0.28), transparent 69%);
}

.works-container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}

.works-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(370px, 0.75fr);
  align-items: end;
  gap: clamp(45px, 8vw, 115px);
}

.works-kicker {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(201, 241, 42, 0.34);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(201, 241, 42, 0.06);
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.works-heading h2 {
  max-width: 830px;
  margin: 20px 0 0;
  font-size: clamp(42px, 4.25vw, 62px);
  line-height: 1.07;
  letter-spacing: -0.048em;
}

.works-heading h2 span {
  color: var(--lime);
}

.works-heading-copy > p {
  margin: 0;
  color: #adbbc2;
  font-size: 15px;
  line-height: 1.62;
}

.works-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 43px;
  gap: 18px;
}

.works-filters {
  display: flex;
  align-items: center;
  border: 1px solid rgba(184, 205, 218, 0.2);
  border-radius: 999px;
  padding: 5px;
  gap: 3px;
  background: rgba(7, 38, 53, 0.68);
}

.works-filters button {
  min-height: 39px;
  border: 0;
  border-radius: 999px;
  padding: 0 17px;
  background: transparent;
  color: #aebdc4;
  cursor: pointer;
  font: inherit;
  font-size: 11.5px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.works-filters button:hover,
.works-filters button:focus-visible {
  background: rgba(201, 241, 42, 0.08);
  color: #f5f8f9;
  outline: none;
  transform: translateY(-1px);
}

.works-filters button.is-active {
  background: var(--lime);
  box-shadow: 0 8px 23px rgba(176, 224, 29, 0.16);
  color: #142d20;
}

.works-counter {
  color: #80939c;
  font-size: 11px;
  white-space: nowrap;
}

.works-counter strong {
  color: var(--lime);
  font-size: 13px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 23px;
  gap: 15px;
}

.work-card {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1.33;
  min-width: 0;
  border: 1px solid rgba(190, 211, 219, 0.2);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  background: #092a3b;
  box-shadow: 0 16px 39px rgba(0, 0, 0, 0.17);
  color: #fff;
  cursor: zoom-in;
  font: inherit;
  text-align: left;
  transition: border-color 230ms ease, box-shadow 230ms ease, transform 260ms cubic-bezier(0.2, 0.75, 0.22, 1), opacity 180ms ease;
}

.work-card::after {
  position: absolute;
  z-index: 1;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(2, 16, 25, 0.88));
  content: "";
  pointer-events: none;
}

.work-card:hover,
.work-card:focus-visible {
  z-index: 2;
  border-color: rgba(201, 241, 42, 0.78);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32), 0 0 25px rgba(201, 241, 42, 0.09);
  outline: none;
  transform: translateY(-7px) scale(1.012);
}

.work-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: var(--work-image);
  background-position: var(--work-position);
  background-size: 200% 200%;
  transform: scale(1.012);
  transition: filter 380ms ease, transform 560ms cubic-bezier(0.2, 0.74, 0.25, 1);
}

.work-card:hover .work-photo,
.work-card:focus-visible .work-photo {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.095);
}

.work-card-shine {
  position: absolute;
  z-index: 2;
  top: -30%;
  left: -70%;
  width: 45%;
  height: 165%;
  background: linear-gradient(90deg, transparent, rgba(230, 255, 137, 0.21), transparent);
  pointer-events: none;
  transform: rotate(14deg);
  transition: left 650ms ease;
}

.work-card:hover .work-card-shine,
.work-card:focus-visible .work-card-shine {
  left: 130%;
}

.work-caption {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 17px;
  left: 18px;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  transform: translateY(3px);
  transition: transform 220ms ease;
}

.work-caption small {
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.work-caption strong {
  margin-top: 5px;
  padding-right: 35px;
  font-size: 13.5px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.work-card:hover .work-caption,
.work-card:focus-visible .work-caption {
  transform: translateY(0);
}

.work-zoom {
  position: absolute;
  z-index: 4;
  right: 15px;
  bottom: 15px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(3, 25, 38, 0.56);
  color: #fff;
  font-size: 15px;
  backdrop-filter: blur(8px);
  transform: rotate(0) scale(0.92);
  transition: background 220ms ease, color 220ms ease, transform 240ms ease;
}

.work-card:hover .work-zoom,
.work-card:focus-visible .work-zoom {
  background: var(--lime);
  color: #142d20;
  transform: rotate(45deg) scale(1);
}

.works-bottom {
  display: flex;
  min-height: 73px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  border: 1px solid rgba(184, 205, 218, 0.2);
  border-radius: 16px;
  padding: 15px 20px;
  gap: 24px;
  background: rgba(8, 39, 53, 0.68);
}

.works-bottom p {
  margin: 0;
  color: #9fafb6;
  font-size: 12px;
}

.works-bottom p strong {
  color: #f3f7f8;
}

.works-bottom a {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  border-radius: 9px;
  padding: 0 16px;
  gap: 10px;
  background: var(--lime);
  color: #152e20;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.works-bottom a:hover,
.works-bottom a:focus-visible {
  box-shadow: 0 12px 28px rgba(184, 231, 31, 0.2);
  outline: none;
  transform: translateY(-2px);
}

.works-bottom a span {
  transition: transform 180ms ease;
}

.works-bottom a:hover span,
.works-bottom a:focus-visible span {
  transform: translateX(4px);
}

.reviews-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 108px var(--page-gutter) 112px;
  background:
    radial-gradient(circle at 13% 15%, rgba(191, 227, 49, 0.13), transparent 25%),
    linear-gradient(180deg, #f5f7f2 0%, #eef3ed 100%);
  color: #0b2937;
}

.reviews-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(116, 147, 132, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.reviews-orbit-one {
  top: -410px;
  right: -290px;
  width: 790px;
  height: 790px;
}

.reviews-orbit-two {
  bottom: -310px;
  left: -250px;
  width: 570px;
  height: 570px;
}

.reviews-container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  align-items: end;
  gap: clamp(45px, 8vw, 115px);
}

.reviews-kicker {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(112, 145, 94, 0.22);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.68);
  color: #66804e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reviews-heading h2 {
  max-width: 840px;
  margin: 20px 0 0;
  font-size: clamp(42px, 4.25vw, 62px);
  line-height: 1.07;
  letter-spacing: -0.048em;
}

.reviews-heading h2 span {
  color: #88a916;
}

.reviews-heading-copy > p {
  margin: 0;
  color: #687a7d;
  font-size: 15px;
  line-height: 1.62;
}

.reviews-trust {
  display: flex;
  flex-wrap: wrap;
  margin-top: 17px;
  gap: 8px;
}

.reviews-trust span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid #d8e2db;
  border-radius: 999px;
  padding: 0 11px;
  gap: 7px;
  background: rgba(255, 255, 255, 0.68);
  color: #657777;
  font-size: 9.5px;
  font-weight: 700;
}

.reviews-trust svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #87a714;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reviews-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 42px;
  gap: 20px;
}

.review-filters {
  display: flex;
  align-items: center;
  border: 1px solid #d7e0d9;
  border-radius: 999px;
  padding: 5px;
  gap: 3px;
  background: rgba(255, 255, 255, 0.79);
  box-shadow: 0 11px 31px rgba(27, 60, 52, 0.06);
}

.review-filters button {
  min-height: 39px;
  border: 0;
  border-radius: 999px;
  padding: 0 17px;
  background: transparent;
  color: #647779;
  cursor: pointer;
  font: inherit;
  font-size: 11.5px;
  font-weight: 700;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.review-filters button:hover,
.review-filters button:focus-visible {
  background: #edf3e1;
  color: #193641;
  outline: none;
  transform: translateY(-1px);
}

.review-filters button.is-active {
  background: #092b3a;
  box-shadow: 0 8px 20px rgba(7, 42, 56, 0.16);
  color: #f5f8f9;
}

.review-navigation {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-position {
  margin-right: 5px;
  color: #81908f;
  font-size: 10px;
  white-space: nowrap;
}

.review-arrow {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid #d0dbd4;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: #1b3b47;
  cursor: pointer;
  font: inherit;
  font-size: 17px;
  box-shadow: 0 8px 23px rgba(27, 60, 52, 0.07);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.review-arrow:hover,
.review-arrow:focus-visible {
  border-color: #a9c62c;
  background: var(--lime);
  box-shadow: 0 11px 27px rgba(154, 195, 25, 0.17);
  color: #142d20;
  outline: none;
}

.review-prev:hover,
.review-prev:focus-visible {
  transform: translateX(-3px);
}

.review-next:hover,
.review-next:focus-visible {
  transform: translateX(3px);
}

.review-arrow:disabled {
  cursor: default;
  opacity: 0.34;
  transform: none;
}

.reviews-viewport {
  margin-top: 21px;
  overflow: hidden;
  outline: none;
  touch-action: pan-y;
}

.reviews-viewport:focus-visible {
  border-radius: 23px;
  box-shadow: 0 0 0 3px rgba(145, 177, 22, 0.23);
}

.reviews-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  transform: translate3d(0, 0, 0);
  transition: transform 480ms cubic-bezier(0.2, 0.78, 0.2, 1);
  will-change: transform;
}

.reviews-track.is-dragging {
  cursor: grabbing;
  transition: none;
}

.review-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-width: 0;
  min-height: 430px;
  flex: 0 0 calc((100% - 32px) / 3);
  border: 1px solid #dbe4de;
  border-radius: 23px;
  padding: 27px 25px 23px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 21px 55px rgba(21, 55, 48, 0.08);
  color: #173541;
  flex-direction: column;
  transition: border-color 230ms ease, box-shadow 230ms ease, transform 260ms ease;
}

.review-card::before {
  position: absolute;
  z-index: -1;
  top: -75px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 241, 42, 0.13), transparent 70%);
  content: "";
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 250ms ease, transform 350ms ease;
}

.review-card:hover,
.review-card:focus-within {
  border-color: rgba(151, 187, 28, 0.54);
  box-shadow: 0 31px 70px rgba(18, 52, 45, 0.14), 0 0 0 1px rgba(178, 220, 36, 0.1);
  transform: translateY(-8px);
}

.review-card:hover::before,
.review-card:focus-within::before {
  opacity: 1;
  transform: scale(1);
}

.review-card-featured {
  border-color: rgba(201, 241, 42, 0.63);
  background:
    radial-gradient(circle at 82% 7%, rgba(201, 241, 42, 0.15), transparent 30%),
    linear-gradient(150deg, #0a3444, #031c2a 76%);
  box-shadow: 0 28px 68px rgba(4, 36, 48, 0.22);
  color: #f7fafc;
}

.review-quote {
  position: absolute;
  top: 7px;
  right: 19px;
  color: rgba(135, 164, 153, 0.13);
  font-family: Georgia, serif;
  font-size: 92px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  transition: color 220ms ease, transform 260ms ease;
}

.review-card-featured .review-quote {
  color: rgba(201, 241, 42, 0.16);
}

.review-card:hover .review-quote,
.review-card:focus-within .review-quote {
  color: rgba(150, 185, 28, 0.2);
  transform: translateY(-4px) rotate(-4deg);
}

.review-author {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 47px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
}

.review-avatar {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(110, 139, 125, 0.18);
  color: #173541;
  font-size: 11px;
  font-weight: 900;
  transition: box-shadow 220ms ease, transform 240ms ease;
}

.review-card:hover .review-avatar,
.review-card:focus-within .review-avatar {
  box-shadow: 0 0 0 4px rgba(201, 241, 42, 0.18);
  transform: scale(1.06) rotate(-4deg);
}

.review-avatar-lime { background: #d8f35f; }
.review-avatar-blue { background: #b9dfee; }
.review-avatar-sand { background: #ead8ae; }
.review-avatar-violet { background: #d8c8ee; }
.review-avatar-rose { background: #efc6c3; }
.review-avatar-cyan { background: #bce5df; }

.review-author > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.review-author strong {
  font-size: 13px;
  line-height: 1.2;
}

.review-author small {
  margin-top: 4px;
  overflow: hidden;
  color: #7d8d8e;
  font-size: 9.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-card-featured .review-author small {
  color: #a9bbc2;
}

.review-date {
  color: #9aa6a4;
  font-size: 8.5px;
  white-space: nowrap;
}

.review-card-featured .review-date {
  color: #81969f;
}

.review-stars {
  margin-top: 22px;
  color: #a8cb20;
  font-size: 15px;
  letter-spacing: 2px;
}

.review-card-featured .review-stars {
  color: var(--lime);
}

.review-card > p {
  position: relative;
  z-index: 1;
  margin: 17px 0 0;
  color: #4e656b;
  font-size: 13px;
  line-height: 1.63;
}

.review-card-featured > p {
  color: #d0dadd;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 19px;
  gap: 6px;
}

.review-tags span {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  background: #eef3e4;
  color: #687b55;
  font-size: 8.5px;
  font-weight: 700;
}

.review-card-featured .review-tags span {
  border: 1px solid rgba(201, 241, 42, 0.2);
  background: rgba(201, 241, 42, 0.07);
  color: #cce477;
}

.review-response {
  margin-top: auto;
  border-top: 1px solid #e2e8e4;
  padding-top: 16px;
}

.review-card-featured .review-response {
  border-top-color: rgba(202, 222, 229, 0.15);
}

.review-response summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #718082;
  cursor: pointer;
  font-size: 9.5px;
  font-weight: 800;
  list-style: none;
}

.review-response summary::-webkit-details-marker {
  display: none;
}

.review-card-featured .review-response summary {
  color: #aabac0;
}

.review-response summary span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #eef3e4;
  color: #7e9917;
  font-size: 15px;
  transition: background 180ms ease, transform 220ms ease;
}

.review-card-featured .review-response summary span {
  background: rgba(201, 241, 42, 0.1);
  color: var(--lime);
}

.review-response[open] summary span {
  transform: rotate(45deg);
}

.review-response > p {
  margin: 12px 0 0;
  border-radius: 11px;
  padding: 12px;
  background: #f2f5ef;
  color: #68797b;
  font-size: 9.5px;
  line-height: 1.5;
}

.review-card-featured .review-response > p {
  background: rgba(255, 255, 255, 0.055);
  color: #b7c5ca;
}

.reviews-bottom {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  border: 1px solid #d8e2db;
  border-radius: 18px;
  padding: 18px 21px;
  gap: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 44px rgba(26, 58, 51, 0.06);
}

.reviews-bottom-copy {
  display: grid;
  grid-template-columns: 47px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
}

.reviews-bottom-copy > span {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  background: #edf5db;
  color: #86a514;
}

.reviews-bottom-copy svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reviews-bottom-copy strong {
  font-size: 13px;
}

.reviews-bottom-copy p {
  margin: 5px 0 0;
  color: #748484;
  font-size: 10px;
}

.reviews-bottom-actions {
  display: flex;
  gap: 8px;
}

.reviews-bottom-actions a,
.reviews-bottom-actions button {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  padding: 0 15px;
  cursor: pointer;
  font: inherit;
  font-size: 10.5px;
  font-weight: 800;
  white-space: nowrap;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.reviews-bottom-actions a {
  border: 0;
  background: #0a3040;
  color: #f5f8f8;
}

.reviews-bottom-actions button {
  border: 0;
  background: var(--lime);
  color: #152e20;
}

.reviews-bottom-actions a:hover,
.reviews-bottom-actions a:focus-visible,
.reviews-bottom-actions button:hover,
.reviews-bottom-actions button:focus-visible {
  box-shadow: 0 12px 28px rgba(36, 69, 61, 0.14);
  outline: none;
  transform: translateY(-2px);
}

.about-section {
  --about-tilt-x: 0deg;
  --about-tilt-y: 0deg;
  --about-shift-x: 0px;
  --about-shift-y: 0px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px var(--page-gutter) 106px;
  background:
    radial-gradient(circle at 79% 33%, rgba(46, 116, 139, 0.24), transparent 29%),
    radial-gradient(circle at 13% 79%, rgba(201, 241, 42, 0.075), transparent 26%),
    linear-gradient(142deg, #082e3d 0%, #031d2b 55%, #021723 100%);
  color: var(--white);
}

.about-section::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image:
    linear-gradient(rgba(179, 210, 220, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(179, 210, 220, 0.026) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 84%);
}

.about-section svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-grid-glow {
  position: absolute;
  z-index: -2;
  top: -160px;
  right: -120px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 93, 118, 0.28), transparent 68%);
  pointer-events: none;
}

.about-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(184, 231, 31, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.about-orbit::after {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 22px rgba(201, 241, 42, 0.78);
  content: "";
}

.about-orbit-one {
  top: 70px;
  right: -260px;
  width: 640px;
  height: 640px;
}

.about-orbit-one::after {
  top: 204px;
  left: 18px;
}

.about-orbit-two {
  right: 180px;
  bottom: -390px;
  width: 560px;
  height: 560px;
}

.about-orbit-two::after {
  top: 54px;
  right: 77px;
}

.about-container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.87fr);
  align-items: center;
  gap: clamp(55px, 7vw, 108px);
}

.about-copy {
  position: relative;
  z-index: 3;
}

.about-kicker {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(201, 241, 42, 0.25);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(201, 241, 42, 0.055);
  color: #cce96b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-copy h2 {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: clamp(42px, 4.25vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.049em;
}

.about-copy h2 span {
  display: block;
  color: var(--lime);
}

.about-lead {
  max-width: 670px;
  margin: 24px 0 0;
  color: #b8c8ce;
  font-size: 15px;
  line-height: 1.66;
}

.about-promises {
  display: grid;
  margin-top: 34px;
  gap: 8px;
}

.about-promise {
  border: 1px solid rgba(177, 204, 214, 0.14);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.about-promise:hover,
.about-promise:focus-within {
  border-color: rgba(201, 241, 42, 0.27);
  background: rgba(255, 255, 255, 0.055);
  transform: translateX(4px);
}

.about-promise[open] {
  border-color: rgba(201, 241, 42, 0.35);
  background:
    linear-gradient(90deg, rgba(201, 241, 42, 0.075), transparent 55%),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 3px 0 0 var(--lime), 0 13px 35px rgba(0, 11, 18, 0.13);
}

.about-promise summary {
  display: grid;
  min-height: 66px;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  align-items: center;
  padding: 9px 16px 9px 14px;
  gap: 13px;
  cursor: pointer;
  list-style: none;
}

.about-promise summary::-webkit-details-marker {
  display: none;
}

.about-promise summary:focus-visible {
  outline: 2px solid rgba(201, 241, 42, 0.68);
  outline-offset: -4px;
}

.about-promise-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(194, 222, 231, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: #aabcc3;
  transition: background 200ms ease, color 200ms ease, transform 220ms ease;
}

.about-promise-icon svg {
  width: 20px;
  height: 20px;
}

.about-promise[open] .about-promise-icon {
  border-color: rgba(201, 241, 42, 0.19);
  background: rgba(201, 241, 42, 0.1);
  color: var(--lime);
  transform: rotate(-4deg);
}

.about-promise-title {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.about-promise-title small {
  color: #718b95;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.about-promise-title strong {
  font-size: 12.5px;
  line-height: 1.3;
}

.about-promise-toggle {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: #aabac0;
  font-size: 17px;
  transition: background 180ms ease, color 180ms ease, transform 220ms ease;
}

.about-promise[open] .about-promise-toggle {
  background: var(--lime);
  color: #142d20;
  transform: rotate(45deg);
}

.about-promise > p {
  margin: -1px 20px 17px 69px;
  color: #9fb2b9;
  font-size: 11px;
  line-height: 1.58;
  animation: about-promise-in 230ms ease both;
}

.about-callout {
  display: grid;
  min-height: 76px;
  grid-template-columns: 47px minmax(0, 1fr) auto;
  align-items: center;
  margin-top: 20px;
  border: 1px solid rgba(178, 209, 219, 0.15);
  border-radius: 17px;
  padding: 14px 15px;
  gap: 13px;
  background: rgba(1, 18, 28, 0.34);
}

.about-callout-icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 241, 42, 0.1);
  color: var(--lime);
}

.about-callout-icon svg {
  width: 22px;
  height: 22px;
}

.about-callout strong {
  font-size: 12px;
}

.about-callout p {
  margin: 5px 0 0;
  color: #859ca5;
  font-size: 9.5px;
  line-height: 1.4;
}

.about-callout button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  padding: 0 15px;
  gap: 10px;
  background: var(--lime);
  color: #142d20;
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
  transition: box-shadow 190ms ease, transform 190ms ease;
}

.about-callout button span {
  transition: transform 190ms ease;
}

.about-callout button:hover,
.about-callout button:focus-visible {
  box-shadow: 0 14px 30px rgba(183, 228, 31, 0.2);
  outline: none;
  transform: translateY(-2px);
}

.about-callout button:hover span,
.about-callout button:focus-visible span {
  transform: translateX(4px);
}

.about-visual {
  position: relative;
  isolation: isolate;
  min-height: 690px;
  perspective: 1100px;
}

.about-visual::before {
  position: absolute;
  z-index: -3;
  inset: 44px 6px 0;
  border: 1px solid rgba(167, 202, 215, 0.14);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(20, 68, 85, 0.27), rgba(1, 18, 27, 0.5)),
    radial-gradient(circle at 50% 28%, rgba(59, 133, 158, 0.2), transparent 48%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 38px 85px rgba(0, 10, 17, 0.25);
  content: "";
}

.about-aura {
  position: absolute;
  z-index: -2;
  top: 88px;
  left: 50%;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(201, 241, 42, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(70, 140, 162, 0.2), rgba(19, 66, 81, 0.06) 48%, transparent 69%);
  box-shadow: 0 0 0 42px rgba(201, 241, 42, 0.025), 0 0 0 82px rgba(201, 241, 42, 0.018);
  transform: translate(calc(-50% + var(--about-shift-x)), var(--about-shift-y));
  transition: transform 260ms ease;
}

.about-aura::before,
.about-aura::after {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(201, 241, 42, 0.13);
  border-radius: inherit;
  content: "";
}

.about-aura::after {
  inset: 25%;
  border-color: rgba(201, 241, 42, 0.18);
}

.about-scan-line {
  position: absolute;
  z-index: 1;
  top: 132px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 241, 42, 0.7), transparent);
  box-shadow: 0 0 16px rgba(201, 241, 42, 0.48);
  opacity: 0.38;
  animation: about-scan 5.8s ease-in-out infinite;
  pointer-events: none;
}

.about-portrait {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 50%;
  display: block;
  width: min(96%, 570px);
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 28px rgba(0, 8, 14, 0.33));
  transform: translate3d(-50%, 0, 0) rotateX(var(--about-tilt-x)) rotateY(var(--about-tilt-y));
  transform-origin: 50% 70%;
  transition: filter 260ms ease, transform 240ms ease;
}

.about-visual:hover .about-portrait {
  filter: drop-shadow(0 35px 34px rgba(0, 8, 14, 0.43));
}

.about-badge {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 146px;
  grid-template-columns: 38px 1fr;
  align-items: center;
  border: 1px solid rgba(201, 224, 231, 0.18);
  border-radius: 14px;
  padding: 10px 12px;
  gap: 9px;
  background: rgba(3, 29, 42, 0.82);
  box-shadow: 0 18px 45px rgba(0, 10, 18, 0.27);
  backdrop-filter: blur(14px);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 250ms ease;
}

.about-badge:hover {
  border-color: rgba(201, 241, 42, 0.38);
  box-shadow: 0 22px 52px rgba(0, 10, 18, 0.36), 0 0 26px rgba(201, 241, 42, 0.06);
}

.about-badge > svg {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201, 241, 42, 0.19);
  border-radius: 10px;
  padding: 7px;
  color: var(--lime);
}

.about-badge > span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.about-badge small {
  color: #7f98a1;
  font-size: 8px;
}

.about-badge strong {
  font-size: 10.5px;
  white-space: nowrap;
}

.about-badge-measure {
  top: 102px;
  left: -22px;
  transform: translate3d(calc(0px - var(--about-shift-x)), calc(0px - var(--about-shift-y)), 0);
}

.about-badge-warranty {
  top: 220px;
  right: -18px;
  transform: translate3d(var(--about-shift-x), var(--about-shift-y), 0);
}

.about-badge-measure:hover {
  transform: translate3d(calc(0px - var(--about-shift-x)), calc(0px - var(--about-shift-y) - 4px), 0);
}

.about-badge-warranty:hover {
  transform: translate3d(var(--about-shift-x), calc(var(--about-shift-y) - 4px), 0);
}

.about-person-card {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 22px;
  left: 28px;
  display: grid;
  min-height: 78px;
  grid-template-columns: 9px minmax(0, 1fr) 37px;
  align-items: center;
  border: 1px solid rgba(196, 220, 228, 0.2);
  border-radius: 16px;
  padding: 13px 15px;
  gap: 12px;
  background: rgba(2, 26, 38, 0.84);
  box-shadow: 0 22px 50px rgba(0, 9, 15, 0.3);
  backdrop-filter: blur(16px);
}

.about-person-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(201, 241, 42, 0.09), 0 0 15px rgba(201, 241, 42, 0.55);
}

.about-person-card > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-person-card strong {
  font-size: 12.5px;
}

.about-person-card small {
  color: #8da2aa;
  font-size: 9px;
}

.about-person-mark {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: #17301f;
}

.about-person-mark svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
  border: 1px solid rgba(181, 208, 218, 0.13);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.026);
}

.about-principles article {
  position: relative;
  display: grid;
  min-height: 104px;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  padding: 20px 25px;
  gap: 16px;
  transition: background 220ms ease, transform 220ms ease;
}

.about-principles article:not(:last-child)::after {
  position: absolute;
  top: 22px;
  right: 0;
  bottom: 22px;
  width: 1px;
  background: rgba(183, 210, 219, 0.13);
  content: "";
}

.about-principles article:hover {
  background: rgba(201, 241, 42, 0.045);
  transform: translateY(-3px);
}

.about-principles article > span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.about-principles article > div {
  display: flex;
  flex-direction: column;
}

.about-principles strong {
  font-size: 12.5px;
}

.about-principles p {
  max-width: 270px;
  margin: 6px 0 0;
  color: #829aa3;
  font-size: 9.5px;
  line-height: 1.45;
}

@keyframes about-promise-in {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes about-scan {
  0%,
  100% {
    opacity: 0.16;
    transform: translateY(0);
  }

  50% {
    opacity: 0.5;
    transform: translateY(380px);
  }
}

.faq-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 110px var(--page-gutter) 112px;
  background:
    radial-gradient(circle at 92% 8%, rgba(190, 226, 48, 0.13), transparent 25%),
    radial-gradient(circle at 4% 78%, rgba(51, 105, 115, 0.08), transparent 27%),
    linear-gradient(180deg, #f5f7f2 0%, #edf2ec 100%);
  color: #0d2c39;
}

.faq-section::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.48;
  background-image: radial-gradient(rgba(76, 106, 95, 0.13) 0.55px, transparent 0.55px);
  background-size: 5px 5px;
  content: "";
  mask-image: linear-gradient(135deg, black, transparent 64%);
  pointer-events: none;
}

.faq-section svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(120, 153, 138, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.faq-orbit-one {
  top: -380px;
  right: -240px;
  width: 720px;
  height: 720px;
}

.faq-orbit-two {
  bottom: -330px;
  left: -260px;
  width: 580px;
  height: 580px;
}

.faq-container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}

.faq-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.74fr);
  align-items: end;
  gap: clamp(45px, 8vw, 115px);
}

.faq-kicker {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(112, 145, 94, 0.22);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.68);
  color: #66804e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq-heading h2 {
  max-width: 820px;
  margin: 20px 0 0;
  font-size: clamp(42px, 4.25vw, 62px);
  line-height: 1.07;
  letter-spacing: -0.048em;
}

.faq-heading h2 span {
  color: #88a916;
}

.faq-heading > p {
  margin: 0;
  color: #687a7d;
  font-size: 15px;
  line-height: 1.62;
}

.faq-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 42px;
  gap: 18px;
}

.faq-filters {
  display: flex;
  align-items: center;
  border: 1px solid #d7e0d9;
  border-radius: 999px;
  padding: 5px;
  gap: 3px;
  background: rgba(255, 255, 255, 0.79);
  box-shadow: 0 11px 31px rgba(27, 60, 52, 0.06);
}

.faq-filters button {
  min-height: 39px;
  border: 0;
  border-radius: 999px;
  padding: 0 17px;
  background: transparent;
  color: #647779;
  cursor: pointer;
  font: inherit;
  font-size: 11.5px;
  font-weight: 700;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.faq-filters button:hover,
.faq-filters button:focus-visible {
  background: #edf3e1;
  color: #193641;
  outline: none;
  transform: translateY(-1px);
}

.faq-filters button.is-active {
  background: #092b3a;
  box-shadow: 0 8px 20px rgba(7, 42, 56, 0.16);
  color: #f5f8f9;
}

.faq-search {
  position: relative;
  display: block;
  width: min(290px, 100%);
  flex: none;
}

.faq-search > svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 15px;
  width: 18px;
  height: 18px;
  color: #819491;
  pointer-events: none;
  transform: translateY(-50%);
}

.faq-search input {
  width: 100%;
  height: 49px;
  border: 1px solid #d5dfd8;
  border-radius: 13px;
  padding: 0 43px 0 44px;
  background: rgba(255, 255, 255, 0.84);
  color: #15343f;
  font: inherit;
  font-size: 12px;
  outline: none;
  box-shadow: 0 11px 30px rgba(26, 58, 50, 0.055);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-search input::-webkit-search-cancel-button {
  display: none;
}

.faq-search input:focus {
  border-color: #a9c52e;
  box-shadow: 0 0 0 4px rgba(174, 210, 40, 0.13), 0 13px 31px rgba(26, 58, 50, 0.07);
}

.faq-search button {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 9px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #edf2eb;
  color: #667b78;
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  transform: translateY(-50%);
}

.faq-search button:hover,
.faq-search button:focus-visible {
  background: var(--lime);
  color: #17301f;
  outline: none;
}

.faq-search button[hidden] {
  display: none;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1.54fr);
  align-items: start;
  margin-top: 25px;
  gap: 18px;
}

.faq-contact-card {
  position: sticky;
  top: 24px;
  isolation: isolate;
  min-height: 484px;
  border: 1px solid rgba(163, 199, 211, 0.17);
  border-radius: 24px;
  padding: 31px 29px 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 8%, rgba(201, 241, 42, 0.15), transparent 32%),
    linear-gradient(148deg, #0a3444, #031c2a 76%);
  box-shadow: 0 26px 65px rgba(13, 46, 42, 0.17);
  color: #f7fafc;
}

.faq-card-ring {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(201, 241, 42, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.faq-card-ring-one {
  top: -100px;
  right: -105px;
  width: 280px;
  height: 280px;
}

.faq-card-ring-two {
  top: -56px;
  right: -61px;
  width: 190px;
  height: 190px;
}

.faq-contact-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(201, 241, 42, 0.31);
  border-radius: 16px;
  background: rgba(201, 241, 42, 0.08);
  color: var(--lime);
  box-shadow: 0 13px 34px rgba(0, 12, 20, 0.2);
  transition: background 220ms ease, transform 240ms ease;
}

.faq-contact-card:hover .faq-contact-icon {
  background: rgba(201, 241, 42, 0.14);
  transform: translateY(-3px) rotate(-4deg);
}

.faq-contact-icon svg {
  width: 25px;
  height: 25px;
}

.faq-contact-kicker {
  display: block;
  margin-top: 26px;
  color: #cbe773;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq-contact-card h3 {
  max-width: 270px;
  margin: 12px 0 0;
  font-size: clamp(27px, 2.5vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.038em;
}

.faq-contact-card > p {
  max-width: 310px;
  margin: 17px 0 0;
  color: #afc0c6;
  font-size: 11.5px;
  line-height: 1.55;
}

.faq-contact-card > button {
  display: flex;
  width: 100%;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  border: 0;
  border-radius: 11px;
  padding: 0 15px;
  gap: 11px;
  background: var(--lime);
  color: #152e20;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  transition: box-shadow 190ms ease, transform 190ms ease;
}

.faq-contact-card > button span {
  transition: transform 190ms ease;
}

.faq-contact-card > button:hover,
.faq-contact-card > button:focus-visible {
  box-shadow: 0 15px 32px rgba(184, 229, 32, 0.2);
  outline: none;
  transform: translateY(-2px);
}

.faq-contact-card > button:hover span,
.faq-contact-card > button:focus-visible span {
  transform: translateX(4px);
}

.faq-phone {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  margin-top: 18px;
  border-top: 1px solid rgba(188, 212, 221, 0.14);
  padding-top: 17px;
  gap: 10px;
}

.faq-phone > svg {
  width: 31px;
  height: 31px;
  border: 1px solid rgba(201, 241, 42, 0.19);
  border-radius: 10px;
  padding: 7px;
  color: var(--lime);
}

.faq-phone > span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-phone small {
  color: #849ba4;
  font-size: 8px;
}

.faq-phone strong {
  font-size: 13px;
}

.faq-contact-facts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  border-top: 1px solid rgba(188, 212, 221, 0.14);
  padding-top: 18px;
  gap: 13px;
}

.faq-contact-facts > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.faq-contact-facts strong {
  font-size: 10.5px;
}

.faq-contact-facts small {
  color: #8298a1;
  font-size: 8px;
}

.faq-contact-facts i {
  width: 1px;
  height: 31px;
  background: rgba(186, 211, 220, 0.14);
}

.faq-content {
  min-width: 0;
}

.faq-content-head {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 10px;
  gap: 16px;
}

.faq-content-head span {
  color: #758785;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.faq-content-head small {
  color: #98a6a4;
  font-size: 9px;
}

.faq-list {
  display: grid;
  gap: 9px;
}

.faq-item {
  border: 1px solid #d9e2dc;
  border-radius: 17px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 33px rgba(28, 60, 53, 0.045);
  transition: border-color 210ms ease, box-shadow 210ms ease, transform 220ms ease;
}

.faq-item[hidden] {
  display: none;
}

.faq-item:hover,
.faq-item:focus-within {
  border-color: rgba(151, 187, 28, 0.5);
  box-shadow: 0 18px 42px rgba(24, 57, 49, 0.09);
  transform: translateX(4px);
}

.faq-item[open] {
  border-color: rgba(145, 178, 31, 0.48);
  background:
    linear-gradient(90deg, rgba(201, 241, 42, 0.07), transparent 57%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 48px rgba(26, 58, 51, 0.095), inset 3px 0 0 #aaca24;
}

.faq-item summary {
  display: grid;
  min-height: 76px;
  grid-template-columns: 42px minmax(0, 1fr) 34px;
  align-items: center;
  padding: 13px 18px 13px 16px;
  gap: 14px;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary:focus-visible {
  outline: 2px solid rgba(151, 187, 28, 0.6);
  outline-offset: -4px;
}

.faq-number {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #dce5df;
  border-radius: 12px;
  background: #f6f8f4;
  color: #8c9a98;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  transition: background 190ms ease, border-color 190ms ease, color 190ms ease, transform 220ms ease;
}

.faq-item[open] .faq-number {
  border-color: rgba(170, 202, 48, 0.35);
  background: #eff6d9;
  color: #7e9c12;
  transform: rotate(-4deg);
}

.faq-item summary strong {
  color: #1b3944;
  font-size: 13.5px;
  line-height: 1.38;
}

.faq-toggle {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #eef2ed;
  color: #6f8280;
  font-size: 19px;
  transition: background 180ms ease, color 180ms ease, transform 220ms ease;
}

.faq-item[open] .faq-toggle {
  background: var(--lime);
  color: #142d20;
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 69px 21px 72px;
  animation: faq-answer-in 230ms ease both;
}

.faq-answer p {
  max-width: 750px;
  margin: 0;
  color: #687c7f;
  font-size: 12px;
  line-height: 1.62;
}

.faq-empty {
  min-height: 344px;
  align-items: center;
  justify-content: center;
  border: 1px dashed #cedbd2;
  border-radius: 20px;
  padding: 35px;
  background: rgba(255, 255, 255, 0.52);
  flex-direction: column;
  text-align: center;
}

.faq-empty:not([hidden]) {
  display: flex;
}

.faq-empty > span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: #edf3e1;
  color: #8aa715;
}

.faq-empty svg {
  width: 24px;
  height: 24px;
}

.faq-empty strong {
  margin-top: 17px;
  font-size: 16px;
}

.faq-empty p {
  margin: 8px 0 0;
  color: #7e908e;
  font-size: 11px;
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contacts-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px var(--page-gutter) 64px;
  background:
    radial-gradient(circle at 82% 12%, rgba(45, 116, 139, 0.2), transparent 28%),
    radial-gradient(circle at 8% 82%, rgba(201, 241, 42, 0.065), transparent 27%),
    linear-gradient(145deg, #082c3b 0%, #031c2a 58%, #021721 100%);
  color: var(--white);
}

.contacts-section svg,
.site-footer svg,
.privacy-dialog svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contacts-grid-bg {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(155, 191, 204, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 191, 204, 0.14) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(135deg, black, transparent 82%);
}

.contacts-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.contacts-glow-one {
  top: -260px;
  right: -210px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(201, 241, 42, 0.11);
  box-shadow: 0 0 0 70px rgba(201, 241, 42, 0.018), 0 0 0 140px rgba(201, 241, 42, 0.012);
}

.contacts-glow-two {
  bottom: -310px;
  left: -270px;
  width: 590px;
  height: 590px;
  background: radial-gradient(circle, rgba(26, 91, 112, 0.22), transparent 68%);
}

.contacts-container,
.footer-container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}

.contacts-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.72fr);
  align-items: end;
  gap: clamp(45px, 8vw, 115px);
}

.contacts-kicker {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(201, 241, 42, 0.25);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(201, 241, 42, 0.055);
  color: #cce96b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contacts-heading h2 {
  max-width: 850px;
  margin: 20px 0 0;
  font-size: clamp(42px, 4.25vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.049em;
}

.contacts-heading h2 span {
  color: var(--lime);
}

.contacts-heading > p {
  margin: 0;
  color: #afc0c6;
  font-size: 15px;
  line-height: 1.62;
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: stretch;
  margin-top: 44px;
  gap: 18px;
}

.contacts-info-card,
.contacts-form-card {
  min-height: 590px;
  border-radius: 26px;
}

.contacts-info-card {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(185, 212, 221, 0.16);
  padding: clamp(29px, 3vw, 42px);
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 9%, rgba(201, 241, 42, 0.15), transparent 29%),
    linear-gradient(150deg, rgba(14, 59, 74, 0.92), rgba(3, 28, 41, 0.94));
  box-shadow: 0 30px 75px rgba(0, 10, 18, 0.22);
  transition: border-color 240ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.contacts-info-card:hover {
  border-color: rgba(201, 241, 42, 0.3);
  box-shadow: 0 40px 90px rgba(0, 9, 16, 0.32), 0 0 36px rgba(201, 241, 42, 0.045);
  transform: translateY(-5px);
}

.contacts-info-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(201, 241, 42, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.contacts-info-orbit-one {
  top: -155px;
  right: -145px;
  width: 390px;
  height: 390px;
}

.contacts-info-orbit-two {
  top: -89px;
  right: -78px;
  width: 255px;
  height: 255px;
}

.contacts-info-top {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
}

.contacts-phone-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(201, 241, 42, 0.3);
  border-radius: 14px;
  background: rgba(201, 241, 42, 0.09);
  color: var(--lime);
  transition: background 210ms ease, transform 230ms ease;
}

.contacts-info-card:hover .contacts-phone-icon {
  background: rgba(201, 241, 42, 0.14);
  transform: rotate(-5deg) scale(1.05);
}

.contacts-phone-icon svg {
  width: 22px;
  height: 22px;
}

.contacts-info-top > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contacts-info-top small {
  color: #8fa6ae;
  font-size: 8.5px;
}

.contacts-info-top strong {
  font-size: 11.5px;
}

.contacts-phone-label {
  margin: 45px 0 8px;
  color: #829aa3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contacts-phone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.contacts-phone span {
  font-size: clamp(28px, 3.15vw, 47px);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.contacts-phone svg {
  width: 28px;
  height: 28px;
  color: var(--lime);
  transition: transform 190ms ease;
}

.contacts-phone:hover svg,
.contacts-phone:focus-visible svg {
  transform: translateX(5px);
}

.contacts-info-copy {
  max-width: 490px;
  margin: 16px 0 0;
  color: #aabdc4;
  font-size: 12px;
  line-height: 1.55;
}

.contacts-callback {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  margin-top: 23px;
  border: 0;
  border-radius: 11px;
  padding: 0 18px;
  gap: 11px;
  background: var(--lime);
  color: #152e20;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  transition: box-shadow 190ms ease, transform 190ms ease;
}

.contacts-callback:hover,
.contacts-callback:focus-visible {
  box-shadow: 0 15px 33px rgba(184, 229, 32, 0.2);
  outline: none;
  transform: translateY(-2px);
}

.contacts-callback span {
  transition: transform 190ms ease;
}

.contacts-callback:hover span,
.contacts-callback:focus-visible span {
  transform: translateX(4px);
}

.contacts-coverage {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  margin-top: 37px;
  border-top: 1px solid rgba(185, 211, 220, 0.14);
  padding-top: 27px;
  gap: 20px;
}

.coverage-visual {
  position: relative;
  height: 116px;
  border: 1px solid rgba(183, 211, 220, 0.14);
  border-radius: 17px;
  overflow: hidden;
  background:
    linear-gradient(rgba(182, 211, 220, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(182, 211, 220, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.025);
  background-size: 22px 22px;
}

.coverage-visual > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  color: rgba(159, 192, 202, 0.24);
  transform: translate(-50%, -50%);
}

.coverage-node {
  position: absolute;
  z-index: 2;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(201, 241, 42, 0.08), 0 0 15px rgba(201, 241, 42, 0.45);
  animation: coverage-node-pulse 2s ease-in-out infinite;
}

.coverage-node-main { top: 53px; left: 67px; width: 9px; height: 9px; }
.coverage-node-one { top: 27px; left: 31px; animation-delay: 260ms; }
.coverage-node-two { top: 25px; right: 25px; animation-delay: 520ms; }
.coverage-node-three { right: 34px; bottom: 22px; animation-delay: 820ms; }

.coverage-route {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 241, 42, 0.66), rgba(201, 241, 42, 0.08));
  transform-origin: left center;
}

.coverage-route-one { top: 56px; left: 39px; width: 34px; transform: rotate(33deg); }
.coverage-route-two { top: 57px; left: 73px; width: 56px; transform: rotate(-31deg); }
.coverage-route-three { top: 60px; left: 73px; width: 58px; transform: rotate(28deg); }

.contacts-coverage > div:last-child {
  display: flex;
  flex-direction: column;
}

.contacts-coverage small {
  color: #829aa3;
  font-size: 8.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contacts-coverage strong {
  margin-top: 7px;
  font-size: 12.5px;
}

.contacts-coverage p {
  max-width: 330px;
  margin: 8px 0 0;
  color: #91a7af;
  font-size: 9.5px;
  line-height: 1.48;
}

.contacts-form-card {
  position: relative;
  border: 1px solid rgba(223, 231, 225, 0.95);
  padding: clamp(29px, 3.2vw, 45px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 31px 78px rgba(0, 11, 18, 0.22);
  color: #173541;
  transition: border-color 240ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.contacts-form-card:hover,
.contacts-form-card:focus-within {
  border-color: rgba(171, 206, 42, 0.54);
  box-shadow: 0 40px 90px rgba(0, 11, 18, 0.28), 0 0 0 1px rgba(201, 241, 42, 0.08);
  transform: translateY(-5px);
}

.contacts-form-kicker {
  color: #86a316;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contacts-form-card h3 {
  margin: 12px 0 0;
  font-size: clamp(29px, 2.8vw, 39px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.contacts-form-lead {
  max-width: 520px;
  margin: 14px 0 0;
  color: #728285;
  font-size: 11.5px;
  line-height: 1.55;
}

.contacts-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 29px;
  gap: 16px 12px;
}

.contacts-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.contacts-field-wide {
  grid-column: 1 / -1;
}

.contacts-field > span {
  color: #38515a;
  font-size: 10px;
  font-weight: 800;
}

.contacts-field input {
  width: 100%;
  height: 53px;
  border: 1px solid #d8e1dc;
  border-radius: 11px;
  padding: 0 15px;
  background: #fafcf9;
  color: #173541;
  font: inherit;
  font-size: 12px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contacts-field input:focus {
  border-color: #a3c12a;
  box-shadow: 0 0 0 4px rgba(180, 216, 39, 0.13);
  transform: translateY(-1px);
}

.contacts-field input[aria-invalid="true"] {
  border-color: #d97064;
}

.contacts-form-error {
  margin: 11px 0 0;
  border-radius: 9px;
  padding: 10px 12px;
  background: #fff0ee;
  color: #b44e43;
  font-size: 10px;
}

.contacts-consent {
  display: flex;
  align-items: flex-start;
  margin-top: 18px;
  gap: 9px;
  color: #758684;
  cursor: pointer;
  font-size: 9.5px;
  line-height: 1.4;
}

.contacts-consent input {
  width: 16px;
  height: 16px;
  flex: none;
  margin: -1px 0 0;
  accent-color: var(--lime-soft);
}

.contacts-submit {
  display: flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  border: 0;
  border-radius: 11px;
  padding: 0 17px;
  gap: 11px;
  background: linear-gradient(135deg, #d6f83b, #b9eb1d);
  color: #132d21;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 13px 30px rgba(154, 195, 25, 0.18);
  transition: box-shadow 190ms ease, transform 190ms ease;
}

.contacts-submit svg {
  width: 19px;
  height: 19px;
  transition: transform 190ms ease;
}

.contacts-submit:hover,
.contacts-submit:focus-visible {
  box-shadow: 0 17px 35px rgba(154, 195, 25, 0.25);
  outline: none;
  transform: translateY(-2px);
}

.contacts-submit:hover svg,
.contacts-submit:focus-visible svg {
  transform: translateX(4px);
}

.contacts-submit:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.contacts-form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  gap: 10px;
  color: #8b9997;
  font-size: 8.5px;
}

.contacts-form-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.contacts-form-trust svg {
  width: 13px;
  height: 13px;
  color: #8aa815;
}

.contacts-form-trust i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #afbbb6;
}

.contacts-success {
  display: flex;
  min-height: 500px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.contacts-success[hidden],
#contacts-form[hidden] {
  display: none;
}

.contacts-success-icon {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid #bdd65d;
  border-radius: 50%;
  background: #f3f9dc;
  color: #7d9e0c;
}

.contacts-success-icon svg {
  width: 33px;
  height: 33px;
}

.contacts-success > p {
  margin: 20px 0 7px;
  color: #88a014;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contacts-success h3 {
  margin: 0;
  font-size: 31px;
}

.contacts-success > div {
  max-width: 390px;
  margin-top: 13px;
  color: #728186;
  font-size: 12px;
  line-height: 1.55;
}

.contacts-success button {
  min-height: 42px;
  margin-top: 21px;
  border: 1px solid #d7e0da;
  border-radius: 9px;
  padding: 0 14px;
  background: #f5f8f3;
  color: #607472;
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  font-weight: 700;
}

.contacts-success button:hover {
  border-color: #adca3b;
  background: #eff5df;
}

.contacts-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  gap: 10px;
}

.contacts-facts article {
  display: grid;
  min-height: 94px;
  grid-template-columns: 45px minmax(0, 1fr);
  align-items: center;
  border: 1px solid rgba(184, 211, 220, 0.13);
  border-radius: 16px;
  padding: 17px 19px;
  gap: 12px;
  background: rgba(255, 255, 255, 0.028);
  transition: background 210ms ease, border-color 210ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.contacts-facts article:hover,
.contacts-facts article:focus-visible {
  border-color: rgba(201, 241, 42, 0.28);
  background: rgba(201, 241, 42, 0.05);
  box-shadow: 0 17px 38px rgba(0, 9, 16, 0.16);
  outline: none;
  transform: translateY(-4px);
}

.contacts-facts article > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(201, 241, 42, 0.18);
  border-radius: 13px;
  background: rgba(201, 241, 42, 0.06);
  color: var(--lime);
  transition: background 200ms ease, transform 220ms ease;
}

.contacts-facts article:hover > span,
.contacts-facts article:focus-visible > span {
  background: rgba(201, 241, 42, 0.12);
  transform: rotate(-4deg) scale(1.05);
}

.contacts-facts svg {
  width: 21px;
  height: 21px;
}

.contacts-facts strong {
  font-size: 11.5px;
}

.contacts-facts p {
  margin: 5px 0 0;
  color: #8fa5ad;
  font-size: 9px;
  line-height: 1.42;
}

.connection-price-details {
  margin-top: 16px;
  border: 1px solid rgba(179, 207, 216, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 13, 21, 0.18);
  transition: border-color 210ms ease, background 210ms ease;
}

.connection-price-details:hover,
.connection-price-details:focus-within,
.connection-price-details[open] {
  border-color: rgba(201, 241, 42, 0.22);
  background: rgba(0, 13, 21, 0.26);
}

.connection-price-details summary {
  display: grid;
  min-height: 76px;
  grid-template-columns: 43px minmax(0, 1fr) auto;
  align-items: center;
  padding: 12px 18px;
  gap: 13px;
  cursor: pointer;
  list-style: none;
}

.connection-price-details summary::-webkit-details-marker {
  display: none;
}

.connection-price-details summary:focus-visible {
  outline: 2px solid rgba(201, 241, 42, 0.55);
  outline-offset: -4px;
}

.price-details-icon {
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  border-radius: 12px;
  background: rgba(201, 241, 42, 0.07);
  color: #badb46;
}

.price-details-icon svg {
  width: 20px;
  height: 20px;
}

.price-details-title {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.price-details-title strong {
  color: #c3d0d5;
  font-size: 11px;
}

.price-details-title small {
  color: #718892;
  font-size: 8.5px;
}

.price-details-action {
  display: flex;
  align-items: center;
  gap: 9px;
}

.price-details-action small {
  color: #789099;
  font-size: 8.5px;
}

.price-details-action i {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: #a5b6bc;
  font-size: 17px;
  font-style: normal;
  transition: background 180ms ease, color 180ms ease, transform 220ms ease;
}

.connection-price-details[open] .price-details-action i {
  background: var(--lime);
  color: #152e20;
  transform: rotate(45deg);
}

.connection-price-details[open] .price-details-action small {
  font-size: 0;
}

.connection-price-details[open] .price-details-action small::after {
  font-size: 8.5px;
  content: "Скрыть таблицу";
}

.price-table-area {
  border-top: 1px solid rgba(181, 209, 218, 0.12);
  padding: 17px;
  animation: faq-answer-in 230ms ease both;
}

.price-table-scroll {
  overflow-x: auto;
  border-radius: 12px;
  background: #fff;
}

.price-table-scroll table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: #333;
  font-size: 11px;
}

.price-table-scroll th,
.price-table-scroll td {
  border-bottom: 1px solid #e0e0e0;
  padding: 13px 16px;
}

.price-table-scroll th {
  background: #e9e9e9;
  color: #333;
  font-weight: 800;
  text-align: left;
}

.price-table-scroll tbody tr:nth-child(even) {
  background: #f9f9f9;
}

.price-table-scroll tbody tr {
  transition: background 170ms ease;
}

.price-table-scroll tbody tr:hover {
  background: #f0f6df;
}

.price-table-scroll td:first-child {
  font-weight: 700;
  text-align: left;
}

.price-table-scroll th:last-child,
.price-table-scroll td:last-child {
  color: #607710;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.price-table-note {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  padding: 17px 4px 2px;
  gap: 11px;
}

.price-table-note > svg {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201, 241, 42, 0.17);
  border-radius: 10px;
  padding: 7px;
  color: var(--lime);
}

.price-table-note p {
  margin: 0;
  color: #80969e;
  font-size: 9px;
  line-height: 1.5;
}

.price-table-note p strong {
  color: #afbec3;
}

.price-table-note a {
  color: #c5df67;
  font-size: 9.5px;
  font-weight: 800;
  white-space: nowrap;
}

.price-table-note a span {
  display: inline-block;
  transition: transform 180ms ease;
}

.price-table-note a:hover span,
.price-table-note a:focus-visible span {
  transform: translateX(4px);
}

.site-footer {
  border-top: 1px solid rgba(178, 207, 217, 0.1);
  padding: 62px var(--page-gutter) 24px;
  background: #01131d;
  color: #f4f8fa;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(360px, 1fr) minmax(240px, 0.66fr);
  align-items: start;
  gap: clamp(40px, 7vw, 100px);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.footer-brand-symbol {
  position: relative;
  display: block;
  width: 43px;
  height: 47px;
  color: var(--lime);
}

.footer-brand-symbol svg:first-child {
  position: absolute;
  top: 0;
  left: 4px;
  width: 36px;
  height: 25px;
}

.footer-brand-symbol svg:last-child {
  position: absolute;
  right: 7px;
  bottom: 0;
  width: 28px;
  height: 28px;
}

.footer-brand > span:last-child {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-size: 21px;
  line-height: 1;
}

.footer-brand small {
  margin-top: 5px;
  color: #9cafb7;
  font-size: 9.5px;
}

.footer-about > p {
  max-width: 310px;
  margin: 20px 0 0;
  color: #8198a1;
  font-size: 10px;
  line-height: 1.55;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  gap: 8px;
  color: #9dafb6;
  font-size: 9px;
}

.footer-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(201, 241, 42, 0.07), 0 0 13px rgba(201, 241, 42, 0.45);
}

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

.footer-nav > div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-nav strong,
.footer-contact > span {
  margin-bottom: 5px;
  color: #b9c9ce;
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-nav a {
  width: fit-content;
  color: #8198a1;
  font-size: 10px;
  transition: color 170ms ease, transform 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--lime);
  outline: none;
  transform: translateX(3px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-phone {
  margin-top: 4px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.footer-contact > small {
  margin-top: 7px;
  color: #718991;
  font-size: 8.5px;
}

.footer-contact > button {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  margin-top: 17px;
  border: 1px solid rgba(201, 241, 42, 0.24);
  border-radius: 9px;
  padding: 0 14px;
  gap: 9px;
  background: rgba(201, 241, 42, 0.07);
  color: #cbe66f;
  cursor: pointer;
  font: inherit;
  font-size: 9.5px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-contact > button:hover,
.footer-contact > button:focus-visible {
  background: var(--lime);
  color: #152e20;
  outline: none;
  transform: translateY(-2px);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  margin-top: 50px;
  border-top: 1px solid rgba(176, 205, 215, 0.1);
  padding-top: 22px;
  gap: 28px;
  color: #627b84;
  font-size: 8.5px;
}

.footer-bottom > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-bottom button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #718b94;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom button:hover,
.footer-bottom button:focus-visible,
.footer-bottom > a:hover,
.footer-bottom > a:focus-visible {
  color: var(--lime);
  outline: none;
}

.footer-bottom > a span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 180ms ease;
}

.footer-bottom > a:hover span {
  transform: translateY(-3px);
}

.footer-requisites {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 16px;
  border-top: 1px solid rgba(176, 205, 215, 0.06);
  padding-top: 14px;
  color: #526b74;
  font-size: 8.5px;
  line-height: 1.55;
}

.footer-requisites span:not(:last-child)::after {
  content: "·";
  margin-left: 18px;
  color: #38515a;
}

.privacy-dialog {
  width: min(760px, calc(100% - 40px));
  max-width: none;
  max-height: none;
  margin: auto;
  border: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  color: inherit;
}

.privacy-dialog::backdrop {
  background: rgba(0, 12, 20, 0.82);
  backdrop-filter: blur(9px);
}

.privacy-shell {
  position: relative;
  max-height: calc(100svh - 50px);
  border: 1px solid rgba(190, 215, 224, 0.16);
  border-radius: 23px;
  padding: 37px 40px 32px;
  overflow-y: auto;
  background: #f7f9f5;
  box-shadow: 0 35px 100px rgba(0, 9, 16, 0.4);
  color: #173541;
}

.privacy-shell .dialog-close {
  background: #0b3040;
}

.privacy-shell .dialog-close:hover,
.privacy-shell .dialog-close:focus-visible {
  background: var(--lime);
}

.privacy-kicker {
  color: #86a316;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.privacy-shell h2 {
  max-width: 560px;
  margin: 11px 52px 0 0;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.privacy-updated {
  margin: 10px 0 0;
  color: #849391;
  font-size: 9.5px;
}

.privacy-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 27px;
  gap: 10px;
}

.privacy-content section {
  border: 1px solid #dce5df;
  border-radius: 13px;
  padding: 17px;
  background: #fff;
}

.privacy-content h3 {
  margin: 0;
  font-size: 11.5px;
}

.privacy-content p {
  margin: 8px 0 0;
  color: #71827f;
  font-size: 9.5px;
  line-height: 1.55;
}

.privacy-content a {
  color: #718e13;
  font-weight: 800;
}

.privacy-notice {
  margin: 14px 0 0;
  border-left: 3px solid #a8c62a;
  padding: 10px 13px;
  background: #eef4df;
  color: #697b71;
  font-size: 9.5px;
  line-height: 1.5;
}

.privacy-accept {
  min-height: 43px;
  margin-top: 18px;
  border: 0;
  border-radius: 9px;
  padding: 0 18px;
  background: #0a3040;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  font-weight: 800;
}

.privacy-accept:hover,
.privacy-accept:focus-visible {
  background: var(--lime);
  color: #152e20;
  outline: none;
}

@keyframes coverage-node-pulse {
  0%,
  100% {
    opacity: 0.46;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

body.has-open-dialog {
  overflow: hidden;
}

.works-lightbox,
.callback-dialog {
  max-width: none;
  max-height: none;
  margin: auto;
  border: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  color: inherit;
}

.works-lightbox::backdrop,
.callback-dialog::backdrop {
  background: rgba(0, 12, 20, 0.82);
  backdrop-filter: blur(9px);
}

.dialog-close {
  position: absolute;
  z-index: 10;
  top: 16px;
  right: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(195, 214, 222, 0.26);
  border-radius: 50%;
  background: rgba(3, 23, 35, 0.74);
  color: #f7fafc;
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.dialog-close:hover,
.dialog-close:focus-visible {
  background: var(--lime);
  color: #152e20;
  outline: none;
  transform: rotate(8deg);
}

.works-lightbox {
  width: min(1120px, calc(100% - 50px));
}

.lightbox-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(197, 216, 224, 0.24);
  border-radius: 24px;
  background: #031a28;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.5);
}

.lightbox-photo-wrap {
  position: relative;
  aspect-ratio: 1.82;
  overflow: hidden;
  background: #092a3b;
}

.lightbox-photo {
  position: absolute;
  inset: 0;
  background-position: 0% 0%;
  background-size: 200% 200%;
  transition: opacity 170ms ease, transform 360ms ease;
}

.lightbox-photo.is-changing {
  opacity: 0.35;
  transform: scale(1.02);
}

.lightbox-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(3, 24, 36, 0.6);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 20px;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.lightbox-arrow:hover,
.lightbox-arrow:focus-visible {
  background: var(--lime);
  color: #152e20;
  outline: none;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.lightbox-prev:hover,
.lightbox-prev:focus-visible {
  transform: translate(-3px, -50%);
}

.lightbox-next:hover,
.lightbox-next:focus-visible {
  transform: translate(3px, -50%);
}

.lightbox-copy {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  align-items: center;
  min-height: 126px;
  padding: 23px 28px;
  gap: 45px;
}

.lightbox-copy span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox-copy h3 {
  margin: 7px 0 0;
  font-size: 23px;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.lightbox-copy > p {
  margin: 0;
  color: #aab9c0;
  font-size: 13px;
  line-height: 1.55;
}

.callback-dialog {
  width: min(890px, calc(100% - 42px));
}

.callback-shell {
  position: relative;
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(275px, 0.82fr) minmax(430px, 1.18fr);
  overflow: hidden;
  border: 1px solid rgba(192, 213, 221, 0.25);
  border-radius: 26px;
  background: #f6f8f3;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48);
  color: #102f3b;
}

.callback-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 35px;
  background:
    radial-gradient(circle at 75% 16%, rgba(201, 241, 42, 0.15), transparent 29%),
    linear-gradient(150deg, #0a3444, #031a28 76%);
  color: #fff;
  flex-direction: column;
}

.callback-visual::after {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(201, 241, 42, 0.18);
  border-radius: 50%;
  content: "";
}

.callback-visual-ring {
  position: absolute;
  top: 43%;
  left: 50%;
  border: 1px solid rgba(201, 241, 42, 0.38);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: callback-ring-pulse 3s ease-in-out infinite;
}

.callback-ring-one {
  width: 116px;
  height: 116px;
}

.callback-ring-two {
  width: 190px;
  height: 190px;
  animation-delay: 0.25s;
}

.callback-ring-three {
  width: 270px;
  height: 270px;
  animation-delay: 0.5s;
}

.callback-phone-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 35px rgba(201, 241, 42, 0.3);
  color: #143022;
  animation: callback-phone-float 2.2s ease-in-out infinite;
}

.callback-phone-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.5;
}

.callback-visual p {
  position: relative;
  z-index: 2;
  margin: 130px 0 0;
  color: #aebdc4;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

.callback-visual p strong {
  color: #fff;
  font-size: 15px;
}

.callback-content {
  display: flex;
  min-width: 0;
  align-items: center;
  padding: 48px clamp(34px, 4vw, 54px);
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 241, 42, 0.12), transparent 31%),
    #f6f8f3;
}

.callback-content form {
  width: 100%;
}

.callback-kicker {
  color: #83a413;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.callback-content h2 {
  margin: 10px 0 0;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.callback-lead {
  margin: 13px 0 25px;
  color: #6e7e80;
  font-size: 13px;
  line-height: 1.55;
}

.callback-field {
  display: flex;
  margin-top: 14px;
  flex-direction: column;
}

.callback-field > span {
  margin-bottom: 7px;
  color: #314b54;
  font-size: 11px;
  font-weight: 800;
}

.callback-field input,
.callback-field select {
  width: 100%;
  height: 50px;
  border: 1px solid #d7e1da;
  border-radius: 10px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.88);
  color: #183642;
  font: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.callback-field input:focus-visible,
.callback-field select:focus-visible {
  border-color: #9fbd26;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(184, 231, 31, 0.16);
}

.callback-field input[aria-invalid="true"] {
  border-color: #c75b50;
  box-shadow: 0 0 0 4px rgba(199, 91, 80, 0.1);
}

.callback-error {
  margin: 9px 0 0;
  color: #b4473e;
  font-size: 10.5px;
}

.callback-consent {
  display: flex;
  align-items: flex-start;
  margin-top: 16px;
  gap: 9px;
  color: #718081;
  cursor: pointer;
  font-size: 10.5px;
  line-height: 1.4;
}

.callback-consent input {
  width: 16px;
  height: 16px;
  flex: none;
  margin: -1px 0 0;
  accent-color: var(--lime-soft);
}

.callback-submit,
.callback-success-close {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 0;
  border-radius: 10px;
  padding: 0 18px;
  gap: 11px;
  background: linear-gradient(135deg, #d6f83b, #b9eb1d);
  box-shadow: 0 13px 29px rgba(166, 211, 25, 0.17);
  color: #142d20;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.callback-submit:hover,
.callback-submit:focus-visible,
.callback-success-close:hover,
.callback-success-close:focus-visible {
  background: linear-gradient(135deg, #e2ff55, #c8f32a);
  box-shadow: 0 16px 34px rgba(177, 222, 30, 0.24);
  outline: none;
  transform: translateY(-2px);
}

.callback-submit span {
  font-size: 17px;
  transition: transform 180ms ease;
}

.callback-submit:hover span,
.callback-submit:focus-visible span {
  transform: translateX(4px);
}

.callback-note {
  margin: 10px 0 0;
  color: #9aa5a2;
  font-size: 9px;
  line-height: 1.4;
  text-align: center;
}

.callback-success {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.callback-success > span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: #eaf4ce;
  color: #82a213;
}

.callback-success svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.callback-success > p {
  margin: 20px 0 0;
  color: #83a413;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.callback-success h2 {
  margin-top: 8px;
}

.callback-success > div {
  max-width: 380px;
  margin-top: 14px;
  color: #6e7e80;
  font-size: 12.5px;
  line-height: 1.55;
}

.callback-success-close {
  max-width: 230px;
  margin-top: 24px;
}

@keyframes callback-ring-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: translate(-50%, -50%) scale(0.98);
  }

  50% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes callback-phone-float {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-8px) rotate(3deg);
  }
}

@media (max-width: 1280px) {
  .site-header {
    gap: 28px;
  }

  .desktop-nav {
    gap: 17px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .header-phone small {
    display: none;
  }

  .button-header {
    display: none;
  }

  .hero-copy {
    width: min(650px, 57vw);
  }

  .advantage {
    grid-template-columns: 37px 1fr;
    padding-inline: 22px;
    gap: 11px;
  }

  .advantage > svg {
    width: 33px;
    height: 33px;
  }

  .connection-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.82fr);
  }

  .connection-form-card {
    padding: 34px;
  }

  .process-card {
    min-height: 300px;
    padding-inline: 21px;
  }

  .process-card-copy strong {
    font-size: 16px;
  }

  .process-summary {
    gap: 24px;
  }

  .process-summary-copy p {
    display: none;
  }

  .tariff-card {
    min-height: 600px;
    padding-inline: 25px;
  }

  .tariff-price strong {
    font-size: 25px;
  }

  .usage-switcher button {
    padding-inline: 12px;
  }

  .about-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.8fr);
    gap: 44px;
  }

  .about-visual {
    min-height: 650px;
  }

  .about-badge-measure {
    left: 0;
  }

  .about-badge-warranty {
    right: 0;
  }

  .faq-layout {
    grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.48fr);
  }

  .faq-contact-card {
    padding-inline: 25px;
  }

  .faq-filters button {
    padding-inline: 13px;
  }

  .contacts-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .contacts-phone span {
    font-size: clamp(27px, 3vw, 40px);
  }

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

  .footer-main {
    grid-template-columns: minmax(220px, 0.75fr) minmax(330px, 1fr) minmax(210px, 0.62fr);
    gap: 40px;
  }
}

@media (max-width: 980px) {
  .site-hero {
    min-height: 0;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-top: 20px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu {
    display: block;
    grid-column: 3;
  }

  .hero-media {
    background-position: 61% center;
  }

  .hero-wash {
    background:
      linear-gradient(90deg, rgba(2, 19, 31, 0.98) 0%, rgba(2, 19, 31, 0.86) 54%, rgba(2, 19, 31, 0.28) 100%),
      linear-gradient(180deg, rgba(2, 15, 25, 0.38), rgba(2, 19, 31, 0.91));
  }

  .hero-content {
    padding-top: 64px;
  }

  .hero-copy {
    width: min(650px, 80vw);
  }

  .interactive-signal {
    display: none;
  }

  .advantages-panel {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }

  .advantage:nth-child(2)::after {
    display: none;
  }

  .advantage:nth-child(-n + 2)::before {
    position: absolute;
    right: 20px;
    bottom: 0;
    left: 20px;
    height: 1px;
    background: rgba(207, 224, 231, 0.16);
    content: "";
  }

  .connection-section {
    padding-top: 88px;
    padding-bottom: 96px;
  }

  .connection-heading {
    margin-bottom: 38px;
  }

  .connection-grid {
    grid-template-columns: 1fr;
    max-width: 730px;
    margin: 0 auto;
  }

  .connection-form-card,
  .connection-explainer {
    min-height: 0;
  }

  .connection-explainer {
    padding: 42px;
  }

  .connection-explainer > h3 {
    max-width: 430px;
  }

  .explainer-list {
    max-width: 540px;
  }

  .process-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

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

  .process-heading > p {
    max-width: 670px;
  }

  .process-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 47px;
  }

  .process-line {
    display: none;
  }

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

  .process-summary {
    grid-template-columns: 1fr auto;
  }

  .process-facts {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    padding-top: 19px;
    border-top: 1px solid rgba(196, 215, 223, 0.14);
  }

  .tariffs-section {
    padding-top: 90px;
    padding-bottom: 92px;
  }

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

  .tariffs-heading > p {
    max-width: 680px;
  }

  .usage-switcher {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    border-radius: 20px;
  }

  .tariff-grid {
    max-width: 700px;
    grid-template-columns: 1fr;
    margin-right: auto;
    margin-left: auto;
    gap: 15px;
  }

  .tariff-card,
  .tariff-card.is-recommended {
    min-height: 0;
    transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  }

  .tariff-description {
    min-height: 0;
  }

  .tariffs-note {
    max-width: 700px;
    grid-template-columns: 49px 1fr;
    margin-right: auto;
    margin-left: auto;
  }

  .tariffs-note > a {
    grid-column: 1 / -1;
  }

  .works-section {
    padding-top: 90px;
    padding-bottom: 92px;
  }

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

  .works-heading-copy > p {
    max-width: 680px;
  }

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

  .reviews-section {
    padding-top: 90px;
    padding-bottom: 92px;
  }

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

  .reviews-heading-copy > p {
    max-width: 680px;
  }

  .review-card {
    flex-basis: calc((100% - 16px) / 2);
  }

  .reviews-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-section {
    padding-top: 90px;
    padding-bottom: 92px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-copy {
    max-width: 760px;
    margin: 0 auto;
  }

  .about-visual {
    width: min(100%, 680px);
    min-height: 650px;
    margin: 0 auto;
  }

  .about-principles article {
    padding-inline: 18px;
  }

  .faq-section {
    padding-top: 90px;
    padding-bottom: 92px;
  }

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

  .faq-heading > p {
    max-width: 680px;
  }

  .faq-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .faq-filters {
    align-self: flex-start;
  }

  .faq-search {
    width: min(100%, 680px);
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .faq-content {
    order: 1;
  }

  .faq-contact-card {
    position: relative;
    top: auto;
    min-height: 430px;
    order: 2;
  }

  .faq-contact-card h3,
  .faq-contact-card > p {
    max-width: 540px;
  }

  .faq-contact-card > button {
    max-width: 330px;
  }

  .faq-phone,
  .faq-contact-facts {
    max-width: 430px;
  }

  .contacts-section {
    padding-top: 90px;
    padding-bottom: 55px;
  }

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

  .contacts-heading > p {
    max-width: 680px;
  }

  .contacts-layout,
  .contacts-facts,
  .connection-price-details {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
  }

  .contacts-layout {
    grid-template-columns: 1fr;
  }

  .contacts-info-card,
  .contacts-form-card {
    min-height: 0;
  }

  .contacts-success {
    min-height: 480px;
  }

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

  .footer-contact {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(176, 205, 215, 0.1);
    padding-top: 26px;
  }

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

  .footer-bottom > div {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .callback-shell {
    grid-template-columns: minmax(240px, 0.75fr) minmax(390px, 1.25fr);
  }

  .callback-content {
    padding-inline: 34px;
  }
}

@media (max-width: 700px) {
  :root {
    --page-gutter: 20px;
  }

  .site-header {
    padding-top: 16px;
  }

  .brand {
    gap: 8px;
  }

  .brand-symbol {
    width: 39px;
    height: 42px;
  }

  .brand-wifi {
    width: 34px;
    height: 26px;
  }

  .brand-house {
    width: 29px;
    height: 29px;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .brand-copy small {
    margin-top: 4px;
    font-size: 10px;
  }

  .hero-media {
    bottom: auto;
    height: 47%;
    min-height: 420px;
    background-position: 68% center;
  }

  .hero-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 19, 31, 0.12) 20%, var(--navy-950) 100%);
    content: "";
  }

  .hero-wash {
    background: linear-gradient(180deg, rgba(2, 19, 31, 0.18) 0%, rgba(2, 19, 31, 0.58) 31%, var(--navy-950) 52%, var(--navy-950) 100%);
  }

  .hero-content {
    padding-top: 225px;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow-pill {
    min-height: 38px;
    padding-inline: 15px;
    font-size: 12px;
  }

  .hero-copy h1 {
    margin-top: 22px;
    font-size: clamp(38px, 11.2vw, 52px);
    line-height: 1.04;
  }

  .hero-copy h1 br {
    display: none;
  }

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

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 26px;
    gap: 18px 10px;
  }

  .stat-icon {
    width: 41px;
    height: 41px;
  }

  .stat-icon svg {
    width: 21px;
    height: 21px;
  }

  .stat strong {
    font-size: 12px;
  }

  .stat small {
    font-size: 10.5px;
  }

  .hero-cta-row {
    flex-direction: column;
    margin-top: 29px;
  }

  .button-primary,
  .button-outline {
    width: 100%;
    min-width: 0;
  }

  .micro-trust {
    flex-wrap: wrap;
    gap: 9px 11px;
  }

  .micro-trust i {
    display: none;
  }

  .advantages-panel {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    margin-top: 32px;
    margin-bottom: 20px;
  }

  .advantage {
    grid-template-columns: 42px 1fr;
    padding: 21px 19px;
  }

  .advantage:not(:last-child)::after {
    top: auto;
    right: 18px;
    bottom: 0;
    left: 18px;
    width: auto;
    height: 1px;
  }

  .advantage:nth-child(-n + 2)::before {
    display: none;
  }

  .advantage p {
    max-width: none;
  }

  .connection-section {
    padding-top: 72px;
    padding-bottom: 74px;
  }

  .connection-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .section-kicker {
    min-height: 34px;
    padding-inline: 13px;
    font-size: 10px;
  }

  .connection-heading h2 {
    margin-top: 17px;
    font-size: clamp(35px, 10vw, 46px);
  }

  .connection-heading h2 br {
    display: none;
  }

  .connection-heading p {
    font-size: 14px;
  }

  .connection-grid {
    gap: 15px;
  }

  .connection-form-card,
  .connection-explainer {
    border-radius: 20px;
  }

  .connection-form-card:hover,
  .connection-form-card:focus-within,
  .connection-explainer:hover,
  .connection-explainer:focus-within {
    transform: translateY(-3px);
  }

  .connection-form-card {
    padding: 22px 18px;
  }

  .form-step-row {
    margin-bottom: 25px;
  }

  .form-step-row strong {
    font-size: 17px;
  }

  .step-dots i {
    width: 19px;
  }

  .step-dots i.active {
    width: 30px;
  }

  .object-options {
    gap: 6px;
  }

  .object-option {
    min-height: 88px;
    padding: 14px 5px;
  }

  .object-option > span {
    font-size: 11px;
    text-align: center;
  }

  .object-option > .object-radio {
    top: 7px;
    right: 7px;
  }

  .address-input-wrap input {
    height: 55px;
    padding-right: 12px;
    font-size: 13px;
  }

  .connection-submit {
    height: 57px;
    padding-inline: 14px;
    white-space: normal;
  }

  .connection-explainer {
    padding: 31px 23px;
  }

  .explainer-signal {
    top: -88px;
    right: -80px;
  }

  .connection-explainer > h3 {
    max-width: 285px;
    margin-bottom: 24px;
    font-size: 27px;
  }

  .explainer-item:hover,
  .explainer-item:focus-within {
    padding-right: 6px;
    padding-left: 6px;
    transform: translateX(2px);
  }

  .explainer-footer {
    flex-wrap: wrap;
  }

  .connection-result {
    min-height: 430px;
  }

  .connection-result h3 {
    font-size: 24px;
  }

  .connection-checking {
    min-height: 430px;
  }

  .checking-radar {
    width: 132px;
    height: 132px;
  }

  .checking-ring-one {
    width: 44px;
    height: 44px;
  }

  .checking-ring-two {
    width: 80px;
    height: 80px;
  }

  .checking-ring-three {
    width: 116px;
    height: 116px;
  }

  .connection-checking h3 {
    font-size: 22px;
  }

  .checking-steps {
    gap: 4px;
  }

  .checking-steps > span {
    align-items: flex-start;
    flex-direction: column;
    font-size: 8px;
    text-align: center;
  }

  .result-call {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .process-section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .process-kicker {
    min-height: 33px;
    padding-inline: 13px;
    font-size: 10px;
  }

  .process-heading h2 {
    margin-top: 17px;
    font-size: clamp(36px, 10.5vw, 47px);
  }

  .process-heading > p {
    font-size: 14px;
  }

  .process-track {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-card {
    display: grid;
    min-height: 0;
    grid-template-columns: 54px minmax(0, 1fr) 20px;
    align-items: center;
    border-radius: 16px;
    padding: 20px 18px;
    gap: 13px;
  }

  .process-card:hover,
  .process-card:focus-visible,
  .process-card.is-active {
    transform: translateY(-3px);
  }

  .process-number {
    top: 9px;
    right: 12px;
    font-size: 10px;
  }

  .process-icon {
    width: 52px;
    height: 52px;
  }

  .process-icon svg {
    width: 23px;
    height: 23px;
  }

  .process-card-copy {
    margin-top: 0;
  }

  .process-card-copy strong {
    font-size: 15px;
  }

  .process-card-copy > span {
    margin-top: 6px;
    font-size: 11.5px;
  }

  .process-arrow {
    margin-top: 0;
  }

  .process-summary {
    grid-template-columns: 1fr;
    margin-top: 25px;
    padding: 21px 18px;
  }

  .process-summary-copy {
    grid-template-columns: 39px 1fr;
  }

  .summary-icon {
    width: 38px;
    height: 38px;
  }

  .process-summary-copy p {
    display: block;
  }

  .process-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column: auto;
    grid-row: auto;
    justify-content: stretch;
    padding-top: 17px;
    gap: 8px;
  }

  .process-facts > span {
    white-space: normal;
  }

  .process-facts strong {
    font-size: 12px;
  }

  .process-facts small {
    font-size: 9px;
    line-height: 1.25;
  }

  .process-facts i {
    display: none;
  }

  .process-cta {
    width: 100%;
  }

  .tariffs-section {
    padding-top: 74px;
    padding-bottom: 76px;
  }

  .tariffs-kicker {
    min-height: 33px;
    padding-inline: 13px;
    font-size: 10px;
  }

  .tariffs-heading h2 {
    margin-top: 17px;
    font-size: clamp(36px, 10.5vw, 47px);
  }

  .tariffs-heading > p {
    font-size: 14px;
  }

  .usage-switcher {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 31px;
    padding: 7px;
    gap: 5px;
  }

  .usage-switcher > span {
    grid-column: 1 / -1;
    padding: 5px 8px 3px;
    text-align: center;
  }

  .usage-switcher button {
    min-height: 43px;
    padding: 5px 8px;
    font-size: 10.5px;
    white-space: normal;
  }

  .tariff-grid {
    margin-top: 27px;
  }

  .tariff-card {
    border-radius: 20px;
    padding: 25px 21px 22px;
  }

  .recommendation-label {
    min-height: 25px;
    font-size: 8.5px;
  }

  .tariff-icon {
    width: 52px;
    height: 52px;
  }

  .tariff-card h3 {
    font-size: 29px;
  }

  .tariff-price strong {
    font-size: 25px;
  }

  .tariffs-note {
    grid-template-columns: 42px 1fr;
    padding: 18px;
  }

  .tariffs-note-icon {
    width: 40px;
    height: 40px;
  }

  .tariffs-note > a {
    width: 100%;
    justify-content: center;
  }

  .works-section {
    padding-top: 74px;
    padding-bottom: 76px;
  }

  .works-kicker {
    min-height: 33px;
    padding-inline: 13px;
    font-size: 10px;
  }

  .works-heading h2 {
    margin-top: 17px;
    font-size: clamp(36px, 10.5vw, 47px);
  }

  .works-heading-copy > p {
    font-size: 14px;
  }

  .works-toolbar {
    align-items: stretch;
    margin-top: 30px;
    flex-direction: column;
  }

  .works-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 16px;
    padding: 6px;
  }

  .works-filters button {
    min-height: 42px;
    padding-inline: 8px;
    font-size: 10.5px;
  }

  .works-counter {
    align-self: flex-end;
  }

  .works-grid {
    grid-template-columns: 1fr;
    margin-top: 17px;
    gap: 11px;
  }

  .work-card {
    aspect-ratio: 1.5;
    border-radius: 15px;
  }

  .work-card:hover,
  .work-card:focus-visible {
    transform: translateY(-3px);
  }

  .works-bottom {
    align-items: stretch;
    padding: 18px;
    flex-direction: column;
  }

  .works-bottom p {
    line-height: 1.5;
  }

  .works-bottom a {
    justify-content: center;
  }

  .reviews-section {
    padding-top: 74px;
    padding-bottom: 76px;
  }

  .reviews-kicker {
    min-height: 33px;
    padding-inline: 13px;
    font-size: 10px;
  }

  .reviews-heading h2 {
    margin-top: 17px;
    font-size: clamp(36px, 10.5vw, 47px);
  }

  .reviews-heading-copy > p {
    font-size: 14px;
  }

  .reviews-trust {
    align-items: stretch;
    flex-direction: column;
  }

  .reviews-trust span {
    width: fit-content;
  }

  .reviews-toolbar {
    align-items: stretch;
    margin-top: 30px;
    flex-direction: column;
  }

  .review-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 16px;
    padding: 6px;
  }

  .review-filters button {
    min-height: 42px;
    border-radius: 11px;
    padding-inline: 8px;
    font-size: 10.5px;
  }

  .review-navigation {
    align-self: flex-end;
  }

  .reviews-viewport {
    margin-top: 17px;
  }

  .review-card {
    min-height: 410px;
    flex-basis: 100%;
    border-radius: 20px;
    padding: 24px 21px 21px;
  }

  .review-card:hover,
  .review-card:focus-within {
    transform: translateY(-3px);
  }

  .review-author {
    grid-template-columns: 45px minmax(0, 1fr);
  }

  .review-date {
    grid-column: 2;
    margin-top: -7px;
  }

  .reviews-bottom {
    padding: 18px;
    gap: 20px;
  }

  .reviews-bottom-copy {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .reviews-bottom-copy > span {
    width: 40px;
    height: 40px;
  }

  .reviews-bottom-actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-bottom-actions a,
  .reviews-bottom-actions button {
    padding-inline: 10px;
    white-space: normal;
    text-align: center;
  }

  .about-section {
    padding-top: 74px;
    padding-bottom: 76px;
  }

  .about-kicker {
    min-height: 33px;
    padding-inline: 13px;
    font-size: 10px;
  }

  .about-copy h2 {
    margin-top: 17px;
    font-size: clamp(36px, 10.5vw, 47px);
  }

  .about-lead {
    margin-top: 19px;
    font-size: 14px;
  }

  .about-promises {
    margin-top: 28px;
  }

  .about-promise summary {
    min-height: 64px;
    grid-template-columns: 39px minmax(0, 1fr) 26px;
    padding-inline: 11px;
    gap: 10px;
  }

  .about-promise-icon {
    width: 38px;
    height: 38px;
  }

  .about-promise-title strong {
    font-size: 11.5px;
  }

  .about-promise > p {
    margin: 0 15px 16px 60px;
    font-size: 10.5px;
  }

  .about-promise:hover,
  .about-promise:focus-within {
    transform: translateX(2px);
  }

  .about-callout {
    grid-template-columns: 43px minmax(0, 1fr);
    padding: 15px;
  }

  .about-callout-icon {
    width: 41px;
    height: 41px;
  }

  .about-callout button {
    width: 100%;
    grid-column: 1 / -1;
    margin-top: 2px;
  }

  .about-visual {
    min-height: 520px;
    margin-top: -7px;
  }

  .about-visual::before {
    inset: 30px 0 0;
    border-radius: 24px;
  }

  .about-aura {
    top: 74px;
    width: 330px;
    height: 330px;
  }

  .about-portrait {
    width: min(112%, 470px);
  }

  .about-scan-line {
    top: 100px;
  }

  .about-badge {
    min-width: 126px;
    grid-template-columns: 31px 1fr;
    border-radius: 12px;
    padding: 8px 9px;
    gap: 7px;
  }

  .about-badge > svg {
    width: 29px;
    height: 29px;
    padding: 6px;
  }

  .about-badge strong {
    font-size: 9.5px;
  }

  .about-badge-measure {
    top: 63px;
    left: -5px;
  }

  .about-badge-warranty {
    top: 151px;
    right: -5px;
  }

  .about-person-card {
    right: 9px;
    bottom: 10px;
    left: 9px;
    min-height: 70px;
    grid-template-columns: 8px minmax(0, 1fr) 34px;
    padding: 11px 12px;
    gap: 10px;
  }

  .about-person-card strong {
    font-size: 11.5px;
  }

  .about-person-mark {
    width: 32px;
    height: 32px;
  }

  .about-principles {
    grid-template-columns: 1fr;
    margin-top: 28px;
    border-radius: 17px;
  }

  .about-principles article {
    min-height: 88px;
    padding: 17px 18px;
  }

  .about-principles article:not(:last-child)::after {
    top: auto;
    right: 18px;
    bottom: 0;
    left: 18px;
    width: auto;
    height: 1px;
  }

  .faq-section {
    padding-top: 74px;
    padding-bottom: 76px;
  }

  .faq-kicker {
    min-height: 33px;
    padding-inline: 13px;
    font-size: 10px;
  }

  .faq-heading h2 {
    margin-top: 17px;
    font-size: clamp(36px, 10.5vw, 47px);
  }

  .faq-heading > p {
    font-size: 14px;
  }

  .faq-toolbar {
    margin-top: 30px;
  }

  .faq-filters {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 16px;
    padding: 6px;
  }

  .faq-filters button {
    min-height: 42px;
    border-radius: 11px;
    padding: 5px 8px;
    font-size: 10.5px;
    white-space: normal;
  }

  .faq-search {
    width: 100%;
  }

  .faq-layout {
    margin-top: 17px;
  }

  .faq-content-head {
    min-height: 38px;
    padding-bottom: 8px;
  }

  .faq-content-head small {
    display: none;
  }

  .faq-list {
    gap: 8px;
  }

  .faq-item {
    border-radius: 15px;
  }

  .faq-item:hover,
  .faq-item:focus-within {
    transform: translateX(2px);
  }

  .faq-item summary {
    min-height: 70px;
    grid-template-columns: 37px minmax(0, 1fr) 30px;
    padding: 11px 12px 11px 11px;
    gap: 10px;
  }

  .faq-number {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .faq-item summary strong {
    font-size: 11.5px;
  }

  .faq-toggle {
    width: 29px;
    height: 29px;
    font-size: 17px;
  }

  .faq-answer {
    padding: 0 14px 18px 58px;
  }

  .faq-answer p {
    font-size: 11px;
  }

  .faq-contact-card {
    min-height: 0;
    border-radius: 20px;
    padding: 25px 21px 22px;
  }

  .faq-contact-icon {
    width: 49px;
    height: 49px;
  }

  .faq-contact-kicker {
    margin-top: 22px;
  }

  .faq-contact-card h3 {
    font-size: 29px;
  }

  .faq-contact-card > button {
    max-width: none;
  }

  .faq-phone strong {
    font-size: 12.5px;
  }

  .contacts-section {
    padding-top: 74px;
    padding-bottom: 44px;
  }

  .contacts-kicker {
    min-height: 33px;
    padding-inline: 13px;
    font-size: 10px;
  }

  .contacts-heading h2 {
    margin-top: 17px;
    font-size: clamp(36px, 10.5vw, 47px);
  }

  .contacts-heading > p {
    font-size: 14px;
  }

  .contacts-layout {
    margin-top: 30px;
    gap: 12px;
  }

  .contacts-info-card,
  .contacts-form-card {
    border-radius: 20px;
    padding: 24px 20px;
  }

  .contacts-info-card:hover,
  .contacts-form-card:hover,
  .contacts-form-card:focus-within {
    transform: translateY(-3px);
  }

  .contacts-phone-label {
    margin-top: 31px;
  }

  .contacts-phone span {
    font-size: clamp(26px, 8vw, 34px);
  }

  .contacts-phone svg {
    width: 23px;
    height: 23px;
  }

  .contacts-coverage {
    grid-template-columns: 1fr;
    margin-top: 29px;
    padding-top: 22px;
  }

  .coverage-visual {
    width: 100%;
    height: 104px;
  }

  .contacts-form-card h3 {
    font-size: 30px;
  }

  .contacts-form-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .contacts-field-wide {
    grid-column: auto;
  }

  .contacts-form-trust {
    flex-wrap: wrap;
  }

  .contacts-success {
    min-height: 400px;
  }

  .contacts-facts {
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .contacts-facts article:hover,
  .contacts-facts article:focus-visible {
    transform: translateY(-2px);
  }

  .connection-price-details {
    margin-top: 12px;
    border-radius: 14px;
  }

  .connection-price-details summary {
    min-height: 70px;
    grid-template-columns: 39px minmax(0, 1fr) 29px;
    padding: 10px 12px;
    gap: 10px;
  }

  .price-details-icon {
    width: 38px;
    height: 38px;
  }

  .price-details-title strong {
    font-size: 10.5px;
  }

  .price-details-title small {
    font-size: 8px;
    line-height: 1.35;
  }

  .price-details-action small {
    display: none;
  }

  .price-table-area {
    padding: 10px;
  }

  .price-table-scroll table {
    min-width: 680px;
  }

  .price-table-note {
    grid-template-columns: 34px minmax(0, 1fr);
    padding-top: 14px;
  }

  .price-table-note > svg {
    width: 32px;
    height: 32px;
  }

  .price-table-note a {
    grid-column: 1 / -1;
    margin-top: 3px;
  }

  .site-footer {
    padding-top: 48px;
    padding-bottom: 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-nav {
    gap: 22px;
  }

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

  .footer-bottom {
    grid-template-columns: 1fr;
    align-items: start;
    margin-top: 39px;
    gap: 13px;
  }

  .footer-bottom > div {
    grid-column: auto;
    grid-row: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .privacy-dialog {
    width: calc(100% - 20px);
  }

  .privacy-shell {
    max-height: calc(100svh - 20px);
    border-radius: 18px;
    padding: 30px 20px 24px;
  }

  .privacy-shell h2 {
    margin-right: 40px;
    font-size: 28px;
  }

  .privacy-content {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .works-lightbox {
    width: calc(100% - 20px);
  }

  .lightbox-shell {
    border-radius: 17px;
  }

  .lightbox-photo-wrap {
    aspect-ratio: 1.5;
  }

  .lightbox-arrow {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-copy {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 19px 20px 22px;
    gap: 12px;
  }

  .lightbox-copy h3 {
    padding-right: 32px;
    font-size: 19px;
  }

  .lightbox-copy > p {
    font-size: 12px;
  }

  .callback-dialog {
    width: calc(100% - 20px);
  }

  .callback-shell {
    display: block;
    min-height: 0;
    max-height: calc(100svh - 20px);
    overflow-y: auto;
    border-radius: 18px;
  }

  .callback-visual {
    display: none;
  }

  .callback-content {
    min-height: 0;
    padding: 31px 20px 24px;
  }

  .callback-content h2 {
    padding-right: 42px;
    font-size: 31px;
  }

  .callback-lead {
    padding-right: 15px;
  }

  .callback-field input,
  .callback-field select {
    height: 49px;
  }

  .callback-success {
    min-height: 440px;
  }

  .dialog-close {
    top: 12px;
    right: 12px;
    width: 37px;
    height: 37px;
  }
}

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

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

/* Stage 2: expanded service price list */
.price-table-scroll tbody .price-group td {
  padding: 11px 16px;
  background: #102f3d;
  color: #eef5f6;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
}

.price-table-scroll tbody .price-group:hover {
  background: transparent;
}

.price-table-scroll tbody .price-group + tr td {
  border-top: 0;
}

@media (max-width: 720px) {
  .price-table-scroll table {
    min-width: 650px;
  }

  .price-table-scroll tbody .price-group td {
    padding: 10px 13px;
    font-size: 9px;
  }
}


/* Coverage map */
.coverage-section {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  background:
    radial-gradient(circle at 9% 22%, rgba(216, 243, 95, 0.14), transparent 28%),
    radial-gradient(circle at 92% 76%, rgba(66, 117, 255, 0.13), transparent 30%),
    #f5f7f2;
}

.coverage-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  pointer-events: none;
  opacity: 0.55;
}

.coverage-glow-one { width: 320px; height: 320px; left: -180px; top: 70px; background: rgba(216, 243, 95, 0.22); }
.coverage-glow-two { width: 380px; height: 380px; right: -220px; bottom: -80px; background: rgba(43, 91, 219, 0.15); }

.coverage-container {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.coverage-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 38px;
}

.coverage-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: #2b48b8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coverage-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: #d8f35f;
  box-shadow: 0 0 0 4px rgba(216, 243, 95, 0.2);
}

.coverage-heading h2 {
  margin: 0;
  max-width: 760px;
  color: #172033;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.coverage-heading h2 span { color: #d8f35f; text-shadow: 0 1px 0 rgba(23, 32, 51, 0.04); }

.coverage-heading-copy p {
  margin: 0;
  color: #667085;
  font-size: 17px;
  line-height: 1.72;
}

.coverage-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.coverage-panel,
.coverage-map-card {
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(24, 36, 66, 0.09);
}

.coverage-panel {
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: #172033;
  color: #fff;
}

.coverage-panel-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 4px 18px;
}

.coverage-panel-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 44px;
  border-radius: 15px;
  color: #172033;
  background: #d8f35f;
}

.coverage-panel-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.coverage-panel-top div { display: grid; gap: 2px; }
.coverage-panel-top small { color: #97a0b6; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.coverage-panel-top strong { font-size: 17px; }

.coverage-city-list { display: grid; gap: 8px; }
.coverage-city {
  display: grid;
  grid-template-columns: 13px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  text-align: left;
  cursor: pointer;
  transition: 180ms ease;
}
.coverage-city:hover,
.coverage-city:focus-visible { border-color: rgba(216, 243, 95, 0.48); transform: translateX(2px); outline: none; }
.coverage-city.is-active { color: #172033; border-color: #d8f35f; background: #d8f35f; box-shadow: 0 12px 28px rgba(216, 243, 95, 0.18); }
.coverage-city-dot { width: 10px; height: 10px; border: 2px solid currentColor; border-radius: 50%; box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06); }
.coverage-city.is-active .coverage-city-dot { background: #172033; box-shadow: 0 0 0 4px rgba(23, 32, 51, 0.11); }
.coverage-city > span:nth-child(2) { display: grid; gap: 2px; }
.coverage-city strong { font-size: 15px; }
.coverage-city small { color: #9aa4b9; font-size: 12px; }
.coverage-city.is-active small { color: rgba(23, 32, 51, 0.64); }
.coverage-city i { font-style: normal; font-size: 18px; transition: transform 180ms ease; }
.coverage-city:hover i,
.coverage-city:focus-visible i { transform: translateX(3px); }

.coverage-panel-note {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  margin-top: auto;
  padding: 18px 4px 15px;
  color: #aeb6c7;
}
.coverage-panel-note svg { width: 25px; height: 25px; color: #d8f35f; fill: none; stroke: currentColor; stroke-width: 1.7; }
.coverage-panel-note p { margin: 0; font-size: 12px; line-height: 1.55; }
.coverage-panel-note strong { display: block; margin-bottom: 3px; color: #fff; }
.coverage-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 17px;
  border-radius: 15px;
  color: #172033;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: 180ms ease;
}
.coverage-cta:hover,
.coverage-cta:focus-visible { background: #d8f35f; outline: none; }
.coverage-cta span { font-size: 19px; }

.coverage-map-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
}

.coverage-map-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 17px 20px;
  border-bottom: 1px solid #edf0f4;
}
.coverage-map-toolbar > div { display: grid; grid-template-columns: auto 1fr; column-gap: 9px; align-items: center; }
.coverage-live-dot { grid-row: 1 / 3; width: 9px; height: 9px; border-radius: 50%; background: #7aaa1a; box-shadow: 0 0 0 5px rgba(122, 170, 26, 0.12); }
.coverage-map-toolbar strong { color: #172033; font-size: 14px; }
.coverage-map-toolbar small { grid-column: 2; color: #8a93a6; font-size: 11px; }
.coverage-map-toolbar button {
  border: 1px solid #dfe4eb;
  border-radius: 12px;
  padding: 10px 13px;
  color: #344054;
  background: #f8fafb;
  font-weight: 750;
  cursor: pointer;
  transition: 160ms ease;
}
.coverage-map-toolbar button:hover,
.coverage-map-toolbar button:focus-visible { border-color: #b7cb54; background: #f1f8d4; outline: none; }

.coverage-map { height: 530px; background: #e9edf2; }
.coverage-map .leaflet-control-zoom { border: 0; box-shadow: 0 8px 22px rgba(17, 24, 39, 0.14); }
.coverage-map .leaflet-control-zoom a { color: #172033; border: 0; background: #fff; }
.coverage-map .leaflet-control-attribution { font-size: 9px; }
.coverage-map .leaflet-popup-content-wrapper { border-radius: 16px; box-shadow: 0 15px 40px rgba(17, 24, 39, 0.18); }
.coverage-map .leaflet-popup-content { margin: 13px 15px; font-family: inherit; }
.coverage-popup { display: grid; gap: 4px; min-width: 150px; }
.coverage-popup strong { color: #172033; font-size: 15px; }
.coverage-popup span { color: #7a8498; font-size: 12px; }
.coverage-popup b { color: #2b48b8; font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; }

.coverage-map-marker {
  position: relative;
  width: 30px;
  height: 30px;
  border: 5px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: #2b48b8;
  box-shadow: 0 7px 22px rgba(43, 72, 184, 0.38);
  transform: rotate(-45deg);
}
.coverage-map-marker::after { content: ""; position: absolute; inset: 6px; border-radius: 50%; background: #d8f35f; }
.coverage-marker-shell { background: transparent; border: 0; }

.coverage-map-fallback {
  min-height: 360px;
  padding: 60px 30px;
  place-content: center;
  text-align: center;
  background: linear-gradient(135deg, #edf1f5, #f8faf7);
}
.coverage-map-fallback:not([hidden]) { display: grid; gap: 8px; }
.coverage-map-fallback strong { color: #172033; font-size: 20px; }
.coverage-map-fallback span { max-width: 540px; margin: auto; color: #697386; line-height: 1.6; }

.coverage-map-caption {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 13px 20px 15px;
  color: #7b8495;
  font-size: 11px;
  border-top: 1px solid #edf0f4;
}
.coverage-map-caption span { display: inline-flex; align-items: center; gap: 7px; }
.coverage-legend-dot { width: 9px; height: 9px; border-radius: 50%; background: #2b48b8; box-shadow: 0 0 0 3px rgba(43,72,184,.1); }
.coverage-legend-line { width: 22px; border-top: 2px dashed #7180a8; }

@media (max-width: 980px) {
  .coverage-section { padding: 86px 0; }
  .coverage-heading { grid-template-columns: 1fr; gap: 22px; }
  .coverage-layout { grid-template-columns: 1fr; }
  .coverage-panel { order: 2; }
  .coverage-city-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .coverage-panel-note { margin-top: 8px; }
  .coverage-map { height: 480px; }
}

@media (max-width: 640px) {
  .coverage-section { padding: 68px 0; }
  .coverage-container { width: min(100% - 28px, 1180px); }
  .coverage-heading h2 { font-size: clamp(36px, 12vw, 52px); }
  .coverage-heading-copy p { font-size: 15px; }
  .coverage-panel,
  .coverage-map-card { border-radius: 22px; }
  .coverage-panel { padding: 15px; }
  .coverage-city-list { grid-template-columns: 1fr; }
  .coverage-map-toolbar { align-items: flex-start; padding: 14px; }
  .coverage-map-toolbar small { display: none; }
  .coverage-map-toolbar button { padding: 9px 10px; font-size: 11px; }
  .coverage-map { height: 390px; }
  .coverage-map-caption { flex-wrap: wrap; gap: 9px 18px; padding: 11px 14px 13px; }
}

/* Stage 4: 9 package catalog + matched scenario */
.tariff-series {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
  gap: 9px;
}

.tariff-series span {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  border: 1px solid #dbe4dc;
  border-radius: 999px;
  padding: 0 12px;
  gap: 7px;
  background: rgba(255,255,255,.68);
  color: #647779;
  font-size: 10px;
  font-weight: 700;
}

.tariff-series i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9fbd25;
  box-shadow: 0 0 0 3px rgba(159,189,37,.12);
}

.tariff-card.is-matched {
  border-color: #9fbd25;
  box-shadow: 0 0 0 3px rgba(166, 203, 31, .16), 0 34px 78px rgba(18, 52, 45, .16);
}

.tariff-card.is-recommended.is-matched {
  border-color: #d5ff39;
  box-shadow: 0 0 0 3px rgba(201,241,42,.2), 0 38px 88px rgba(4,36,48,.32), 0 0 38px rgba(201,241,42,.1);
}

/* Coverage area based on the client-supplied orange contour */
.coverage-legend-area {
  width: 22px;
  height: 10px;
  border: 2px solid #ff7a00;
  border-radius: 3px;
  background: rgba(255, 155, 56, .16);
}

.coverage-map .leaflet-interactive {
  transition: fill-opacity 160ms ease, stroke-width 160ms ease;
}

@media (max-width: 980px) {
  .tariff-series {
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .tariff-series {
    display: grid;
    grid-template-columns: 1fr;
  }
  .tariff-series span {
    justify-content: center;
  }
}

/* CCTV option in the address checker */
.connection-cctv-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  gap: 8px;
  color: #789516;
  font-size: 12px;
  font-weight: 800;
}

.connection-cctv-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.connection-cctv-option {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  margin: 17px 0 4px;
  border: 1px solid #dce5dc;
  border-radius: 13px;
  padding: 13px 14px;
  gap: 12px;
  background: #f7faf3;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.connection-cctv-option:hover {
  border-color: #b8cd66;
  background: #f3f9df;
  box-shadow: 0 9px 24px rgba(134, 168, 22, .08);
}

.connection-cctv-option > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.connection-cctv-check {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #cfdccc;
  border-radius: 10px;
  background: #fff;
  color: transparent;
}

.connection-cctv-check svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
}

.connection-cctv-option input:checked + .connection-cctv-check {
  border-color: #9ebc28;
  background: #c9f12a;
  color: #173022;
}

.connection-cctv-option strong,
.connection-cctv-option small {
  display: block;
}

.connection-cctv-option strong {
  color: #193842;
  font-size: 12px;
}

.connection-cctv-option small {
  margin-top: 4px;
  color: #84928f;
  font-size: 10px;
  line-height: 1.4;
}

/* Hero review + review submission */
.hero-review-card {
  width: min(590px, 100%);
  margin-top: 18px;
  border: 1px solid rgba(218, 235, 241, .14);
  border-radius: 15px;
  padding: 14px 16px;
  background: rgba(5, 31, 45, .58);
  box-shadow: 0 16px 42px rgba(0,0,0,.14);
  backdrop-filter: blur(12px);
}

.hero-review-stars {
  color: #d7f83c;
  font-size: 12px;
  letter-spacing: .08em;
}

.hero-review-card p {
  margin: 7px 0 5px;
  color: #f3f7f7;
  font-size: 12.5px;
  line-height: 1.48;
}

.hero-review-card > span {
  color: #9fb0b5;
  font-size: 10px;
}

.hero-review-card > span strong {
  color: #c7d1d5;
}

.hero-review-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 11px;
  gap: 8px;
}

.hero-review-actions a,
.hero-review-actions button {
  min-height: 31px;
  border: 1px solid rgba(214, 232, 238, .18);
  border-radius: 999px;
  padding: 0 11px;
  background: rgba(255,255,255,.045);
  color: #dbe6e8;
  cursor: pointer;
  font: inherit;
  font-size: 9.5px;
  font-weight: 800;
}

.hero-review-actions button {
  border-color: rgba(201,241,42,.28);
  color: #dff46d;
}

.review-dialog {
  width: min(680px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  border: 0;
  border-radius: 22px;
  padding: 0;
  overflow: auto;
  background: transparent;
}

.review-dialog::backdrop {
  background: rgba(3, 18, 27, .72);
  backdrop-filter: blur(5px);
}

.review-dialog-shell {
  position: relative;
  border: 1px solid #dfe7e2;
  border-radius: 22px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 35px 90px rgba(4, 28, 38, .25);
}

.review-dialog-head > span {
  color: #8daa18;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.review-dialog-head h2 {
  margin: 8px 0 7px;
  color: #163540;
  font-size: 31px;
  letter-spacing: -.035em;
}

.review-dialog-head p {
  margin: 0 0 22px;
  color: #718285;
  font-size: 12px;
  line-height: 1.55;
}

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

.review-dialog .callback-field textarea,
.review-dialog .callback-field select {
  width: 100%;
  border: 1px solid #dce5df;
  border-radius: 10px;
  padding: 12px 13px;
  background: #fbfcfa;
  color: #24434c;
  font: inherit;
  font-size: 12px;
  outline: none;
}

.review-dialog .callback-field textarea:focus,
.review-dialog .callback-field select:focus {
  border-color: #a7c538;
  box-shadow: 0 0 0 3px rgba(184,231,31,.12);
}

.review-consent {
  display: flex;
  align-items: flex-start;
  margin: 15px 0 4px;
  gap: 8px;
  color: #6f7e80;
  font-size: 10px;
  line-height: 1.45;
}

.review-consent input {
  margin-top: 2px;
}

.review-form-success {
  min-height: 340px;
  place-items: center;
  align-content: center;
  text-align: center;
}

.review-form-success:not([hidden]) {
  display: grid;
}

.review-form-success > span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: #eff7d9;
  color: #8ba817;
}

.review-form-success svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.review-form-success h2 {
  margin: 15px 0 5px;
  color: #173642;
}

.review-form-success p {
  margin: 0;
  color: #748487;
}

.review-success-close {
  margin-top: 20px;
  border: 0;
  border-radius: 10px;
  padding: 12px 20px;
  background: #0a3140;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

@media (max-width: 640px) {
  .review-dialog-shell { padding: 24px 18px; }
  .review-form-grid { grid-template-columns: 1fr; }
  .hero-review-card { margin-top: 15px; }
}


/* Static coverage map: replaces tiled map to avoid broken external tiles */
.coverage-map-static {
  position: relative;
  overflow: hidden;
  height: 530px;
  background: #eef2f6;
}

.coverage-map-static img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.coverage-point {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: #172033;
}

.coverage-point i {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2b48b8;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.72), 0 6px 18px rgba(23, 32, 51, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.coverage-point i::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #d8f35f;
}

.coverage-point span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 18px rgba(23, 32, 51, 0.1);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.coverage-point:hover i,
.coverage-point:focus-visible i,
.coverage-point.is-active i {
  transform: scale(1.08);
  box-shadow: 0 0 0 5px rgba(255,255,255,0.86), 0 10px 22px rgba(43, 72, 184, 0.32);
}

.coverage-point:hover span,
.coverage-point:focus-visible span,
.coverage-point.is-active span {
  border-color: rgba(216, 243, 95, 0.7);
  background: #ffffff;
}

.coverage-point:focus-visible {
  outline: none;
}

.coverage-point-ramenskoye { left: 28%; top: 40%; }
.coverage-point-ryazan { left: 70%; top: 84%; }

.coverage-point-ramenskoye span,
.coverage-point-ryazan span { order: -1; }

.coverage-map-static::after {
  content: "Ориентировочная зона выезда";
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #6d778a;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(23,32,51,.08);
}

@media (max-width: 980px) {
  .coverage-map-static { height: 480px; }
}

@media (max-width: 640px) {
  .coverage-map-static { height: 390px; }
  .coverage-point i { width: 15px; height: 15px; }
  .coverage-point i::after { inset: 3px; }
  .coverage-point span {
    min-height: 28px;
    padding: 0 9px;
    font-size: 11px;
  }
  .coverage-point-ramenskoye { left: 27%; top: 39%; }
  .coverage-point-ryazan { left: 68%; top: 82%; }
}


/* Coverage block polish and admin-driven map options */
.coverage-panel,
.coverage-map-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.coverage-panel:hover,
.coverage-map-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(24, 36, 66, 0.14);
  border-color: rgba(43, 72, 184, 0.12);
}

.coverage-city > span:nth-child(2) {
  display: grid;
  gap: 2px;
}

.coverage-city em {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.76);
  font-style: normal;
  font-size: 11px;
  line-height: 1.45;
}

.coverage-city.is-active em {
  color: rgba(23, 32, 51, 0.72);
}

.coverage-map-toolbar button {
  position: relative;
  overflow: hidden;
}

.coverage-map-toolbar button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.6) 45%, transparent 100%);
  transform: translateX(-130%);
  transition: transform 420ms ease;
}

.coverage-map-card:hover .coverage-map-toolbar button::after,
.coverage-map-toolbar button:hover::after {
  transform: translateX(130%);
}

.coverage-map-static {
  transition: background 220ms ease;
}

.coverage-map-static img {
  transition: transform 320ms ease, filter 320ms ease;
}

.coverage-map-card:hover .coverage-map-static img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.01);
}

.coverage-map-embed {
  position: relative;
  height: 530px;
  background: #eef2f6;
}

.coverage-map-embed iframe,
.coverage-map-embed ymaps,
.coverage-map-embed > div,
.coverage-map-embed > section,
.coverage-map-embed script + div {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
}

.coverage-map-embed iframe {
  display: block;
}

.coverage-point i {
  animation: coverage-point-pulse 2.4s ease-in-out infinite;
}

.coverage-point:hover i,
.coverage-point.is-active i {
  animation-duration: 1.4s;
}

@keyframes coverage-point-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,255,255,0.72), 0 6px 18px rgba(23, 32, 51, 0.24); }
  50% { box-shadow: 0 0 0 7px rgba(255,255,255,0.86), 0 10px 22px rgba(43, 72, 184, 0.24); }
}

@media (max-width: 980px) {
  .coverage-map-embed { height: 480px; }
}

@media (max-width: 640px) {
  .coverage-panel:hover,
  .coverage-map-card:hover {
    transform: none;
  }
  .coverage-map-embed { height: 390px; }
  .coverage-city em { font-size: 10px; }
}

@media (max-width: 480px) {
  .coverage-point span { display: none; }
  .coverage-point.is-active span { display: inline-flex; }
}


/* Office-only markers: Ramenskoye and Ryazan */
.coverage-office-list { gap: 12px; }
.coverage-office { min-height: 92px; }
.coverage-office-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 20px;
  align-items: center;
  margin-bottom: 2px;
  border-radius: 999px;
  padding: 0 8px;
  background: rgba(216, 243, 95, 0.14);
  color: #d8f35f;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.coverage-office.is-active .coverage-office-badge { background: #172033; color: #d8f35f; }
.coverage-point span { display: grid; gap: 1px; justify-items: start; }
.coverage-point span b { color: #75813c; font-size: 9px; line-height: 1; letter-spacing: .08em; text-transform: uppercase; }
.coverage-point-ramenskoye { left: 39%; top: 49%; }
.coverage-point-ryazan { left: 69%; top: 79%; }
@media (max-width: 640px) {
  .coverage-point-ramenskoye { left: 36%; top: 47%; }
  .coverage-point-ryazan { left: 64%; top: 76%; }
}

/* Stage 13: restore the visual density of the original layout */
@media (min-width: 761px) {
  .hero-review-card {
    display: grid;
    width: min(590px, 100%);
    grid-template-columns: 92px minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-items: center;
    margin-top: 12px;
    padding: 9px 11px;
    gap: 2px 12px;
    border-radius: 13px;
  }

  .hero-review-stars {
    grid-column: 1;
    grid-row: 1;
    font-size: 10.5px;
  }

  .hero-review-card > span {
    grid-column: 1;
    grid-row: 2;
    overflow: hidden;
    font-size: 8.5px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-review-card p {
    display: -webkit-box;
    grid-column: 2;
    grid-row: 1 / 3;
    margin: 0;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .hero-review-actions {
    grid-column: 3;
    grid-row: 1 / 3;
    flex-wrap: nowrap;
    margin-top: 0;
    gap: 6px;
  }

  .hero-review-actions a,
  .hero-review-actions button {
    min-height: 28px;
    padding: 0 9px;
    font-size: 8.5px;
    white-space: nowrap;
  }

  .micro-trust {
    margin-top: 13px;
  }
}

/* New coverage screen uses the same visual scale as the original sections. */
.coverage-section {
  padding: 96px 0;
}

.coverage-heading {
  gap: 52px;
  margin-bottom: 32px;
}

.coverage-heading h2 {
  max-width: 830px;
  font-size: clamp(42px, 4.25vw, 62px);
  line-height: 1.07;
  letter-spacing: -0.048em;
}

.coverage-heading-copy p {
  font-size: 16px;
  line-height: 1.62;
}

.coverage-panel,
.coverage-map-card {
  border-radius: 24px;
}

.coverage-panel {
  padding: 19px;
}

.coverage-map-static,
.coverage-map-embed {
  height: 460px;
}

@media (max-width: 980px) {
  .coverage-section { padding: 84px 0; }
  .coverage-map-static,
  .coverage-map-embed { height: 420px; }
}

@media (max-width: 640px) {
  .coverage-section { padding: 66px 0; }
  .coverage-map-static,
  .coverage-map-embed { height: 350px; }
}
