:root {
  --black: #050607;
  --near: #080a0c;
  --panel: #0d1013;
  --panel-2: #12161a;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f4f6f7;
  --muted: #9aa2aa;
  --dim: #687078;
  --amber: #dda64b;
  --amber-2: #f0b85a;
  --blue: #168eff;
  --max: 1280px;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--black);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.45;
}

body.menu-locked {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: #020304;
  background: var(--amber);
  border-radius: var(--radius);
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 0 42px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(4, 5, 7, 0.86);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-left-width: 8px;
  border-radius: 4px 10px 10px 4px;
  color: transparent;
  font-size: 1px;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
  line-height: 1;
}

.brand strong {
  font-family: Inter, Arial, sans-serif;
  font-size: 19px;
  font-weight: 900;
}

.brand small {
  margin-top: 5px;
  color: #e1e4e6;
  font-size: 10px;
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex: 1;
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 86px;
  color: rgba(255, 255, 255, 0.82);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue);
  transition: transform 160ms ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta,
.button,
.help-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(221, 166, 75, 0.62);
  border-radius: 2px;
  background: rgba(221, 166, 75, 0.04);
  cursor: pointer;
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.nav-cta {
  min-width: 206px;
}

.button.primary {
  color: #08090a;
  background: linear-gradient(90deg, var(--amber), var(--amber-2));
  border-color: transparent;
}

.button.outline,
.help-button {
  color: var(--text);
  background: rgba(0, 0, 0, 0.22);
}

.button:hover,
.nav-cta:hover,
.help-button:hover {
  transform: translateY(-1px);
  border-color: var(--amber);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.site-header.menu-open .menu-button span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.menu-open .menu-button span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 620px;
  padding-top: 86px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: var(--black);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 86px 0 0;
}

.hero-image {
  width: 100%;
  height: calc(100% - 86px);
  object-fit: cover;
  object-position: center right;
  opacity: 0.9;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.95) 0%, rgba(5, 6, 7, 0.72) 30%, rgba(5, 6, 7, 0.22) 68%, rgba(5, 6, 7, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.1), rgba(5, 6, 7, 0.82) 94%);
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100% - 86px, var(--max));
  min-height: 534px;
  margin: 0 auto;
}

.hero-copy {
  width: 520px;
  padding-top: 8px;
}

.section-label {
  margin: 0 0 13px;
  color: var(--amber);
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 500px;
  font-size: 76px;
  line-height: 0.88;
}

h2 {
  font-size: 42px;
  line-height: 0.98;
}

h3 {
  font-size: 22px;
  line-height: 1;
}

.hero-lead {
  max-width: 425px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.benefit-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(7, 9, 11, 0.98);
}

.benefit-bar article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 92px;
  padding: 18px;
}

.benefit-bar i {
  color: var(--amber);
  font-size: 28px;
}

.benefit-bar strong,
.benefit-bar span {
  display: block;
}

.benefit-bar strong {
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.benefit-bar span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 56px 42px;
}

.section-head,
.service-card-grid,
.service-steps,
.service-flow-panel,
.packs-section,
.method-content,
.zone-section,
.contact-section {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.services-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(25, 74, 110, 0.22), transparent 28%),
    linear-gradient(180deg, #0d1114, #080a0c);
}

.section-head {
  margin-bottom: 34px;
}

.section-head p:not(.section-label),
.pack-intro p,
.zone-copy p {
  margin: 8px 0 0;
  color: var(--muted);
}

.action-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.help-button {
  min-width: 176px;
}

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

.service-tile {
  position: relative;
  display: grid;
  grid-template-rows: 44px 54px minmax(84px, 1fr) 28px;
  align-content: end;
  gap: 10px;
  min-height: 414px;
  overflow: hidden;
  padding: 196px 20px 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--panel);
  cursor: pointer;
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.72) 48%, rgba(0, 0, 0, 0.9));
  pointer-events: none;
}

.service-tile.is-selected {
  border-color: rgba(22, 142, 255, 0.8);
  box-shadow: inset 0 0 0 1px rgba(22, 142, 255, 0.28);
}

.service-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-tile > i,
.service-tile h3,
.service-tile p,
.service-tile button {
  position: relative;
  z-index: 1;
}

.service-tile > i {
  display: inline-grid;
  align-self: end;
  width: 38px;
  height: 38px;
  place-items: center;
  margin: 0;
  color: var(--text);
  font-size: 34px;
  line-height: 1;
}

.service-tile h3 {
  align-self: end;
  max-width: 120px;
  color: var(--text);
}

.service-tile p {
  align-self: start;
  min-height: 0;
  margin: 0;
  color: #c4c9ce;
  font-size: 12px;
}

.service-tile button {
  display: inline-grid;
  place-items: center;
  align-self: end;
  width: 28px;
  height: 28px;
  margin: 0;
  border: 0;
  color: var(--amber);
  background: transparent;
  cursor: pointer;
  font-size: 19px;
}

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

.service-steps button {
  position: relative;
  min-height: 70px;
  border: 0;
  background: transparent;
  color: var(--dim);
  cursor: pointer;
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.service-steps button::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue);
}

.service-steps button.is-active {
  color: var(--blue);
}

.service-steps button.is-active::before {
  transform: scaleX(1);
}

.service-flow-panel,
.pack-summary {
  display: grid;
  grid-template-columns: 0.45fr 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 10px;
  padding: 18px 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.service-flow-panel span,
.pack-summary span {
  display: block;
  color: var(--dim);
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-flow-panel strong,
.pack-summary strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-flow-panel p,
.pack-summary p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.mini-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(221, 166, 75, 0.55);
  border-radius: 2px;
  color: var(--text);
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.packs-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 58px;
  padding-top: 58px;
  padding-bottom: 58px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%) 0 0 / 12px 12px,
    #07090b;
}

.pack-intro {
  align-self: center;
}

.pack-intro .button {
  margin-top: 32px;
}

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

.pack-card {
  position: relative;
  min-height: 390px;
  padding: 22px 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  cursor: pointer;
}

.pack-card.is-selected {
  border-color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(22, 142, 255, 0.22);
}

.pack-card img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  margin-bottom: 24px;
  border-radius: 3px;
}

.pack-card .tag {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 26px;
  border-radius: 0 0 4px 4px;
  background: var(--blue);
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.pack-card ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 34px;
  padding: 0;
  list-style: none;
}

.pack-card li {
  color: #cbd0d5;
  font-size: 13px;
}

.pack-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--amber);
}

.pack-card small,
.pack-card strong {
  display: block;
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  text-transform: uppercase;
}

.pack-card small {
  color: var(--dim);
  font-size: 12px;
}

.pack-card strong {
  margin-top: 3px;
  font-size: 16px;
}

.pack-summary {
  grid-column: 1 / -1;
  display: none;
  margin-top: 18px;
}

.packs-section.is-comparing .pack-summary,
.pack-summary.is-visible {
  display: grid;
}

.method-section {
  position: relative;
  overflow: hidden;
  min-height: 352px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: #07090b;
}

.method-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.method-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 6, 7, 0.94), rgba(5, 6, 7, 0.62) 52%, rgba(5, 6, 7, 0.9));
}

.method-content {
  position: relative;
  z-index: 1;
  padding: 48px 42px 38px;
  text-align: center;
}

.method-content h2 {
  max-width: 520px;
  margin-inline: auto;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  position: relative;
  min-height: 150px;
  padding-top: 46px;
  text-align: center;
}

.method-steps li::before {
  content: "";
  position: absolute;
  top: 27px;
  left: calc(50% + 24px);
  right: calc(-50% + 24px);
  height: 3px;
  background: var(--blue);
}

.method-steps li:last-child::before {
  display: none;
}

.method-steps span {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.07);
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: 86px;
  line-height: 1;
}

.method-steps i {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.34);
  color: var(--text);
  font-size: 22px;
}

.method-steps strong {
  display: block;
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.method-steps p {
  max-width: 220px;
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 12px;
}

.zone-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1fr);
  gap: 48px;
  align-items: center;
  background: var(--near);
}

.zone-copy .button {
  margin-top: 28px;
}

.zone-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px 34px;
  margin-top: 28px;
  color: #d5dae0;
  font-size: 14px;
}

.zone-list button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: 100%;
  border: 0;
  padding: 0;
  color: #d5dae0;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  text-align: left;
}

.zone-list i {
  color: var(--blue);
}

.zone-list button.is-selected {
  color: var(--text);
}

.zone-list button.is-selected i {
  color: var(--amber);
}

.zone-status {
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.zone-status span,
.zone-status strong {
  display: block;
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  text-transform: uppercase;
}

.zone-status span {
  color: var(--dim);
  font-size: 12px;
  font-weight: 700;
}

.zone-status strong {
  margin-top: 4px;
  font-size: 22px;
}

.zone-status p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.map-card {
  position: relative;
  align-self: center;
  height: 340px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--panel);
}

.real-map {
  width: 100%;
  height: 100%;
  background: #071018;
}

.map-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 500;
  max-width: 390px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #dce5ee;
  background: rgba(3, 5, 7, 0.72);
  backdrop-filter: blur(8px);
  font-size: 12px;
  pointer-events: none;
}

.map-card .leaflet-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: Inter, Arial, sans-serif;
  background: #071018;
}

.map-card .leaflet-pane,
.map-card .leaflet-tile,
.map-card .leaflet-marker-icon,
.map-card .leaflet-marker-shadow,
.map-card .leaflet-tile-container,
.map-card .leaflet-pane > svg,
.map-card .leaflet-pane > canvas,
.map-card .leaflet-zoom-box,
.map-card .leaflet-image-layer,
.map-card .leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

.map-card .leaflet-tile,
.map-card .leaflet-marker-icon,
.map-card .leaflet-marker-shadow {
  user-select: none;
}

.map-card .leaflet-tile {
  max-width: none;
}

.map-card .leaflet-top,
.map-card .leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.map-card .leaflet-top {
  top: 0;
}

.map-card .leaflet-bottom {
  bottom: 0;
}

.map-card .leaflet-left {
  left: 0;
}

.map-card .leaflet-right {
  right: 0;
}

.map-card .leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: auto;
  float: left;
  clear: both;
}

.map-card .leaflet-right .leaflet-control {
  float: right;
  margin-top: 14px;
  margin-right: 14px;
}

.map-card .leaflet-tile-pane {
  filter: grayscale(0.9) invert(0.92) hue-rotate(180deg) saturate(0.8) brightness(0.62) contrast(1.18);
}

.map-card .leaflet-control-zoom {
  overflow: hidden;
  border: 1px solid rgba(221, 166, 75, 0.58);
  border-radius: 4px;
  background: rgba(4, 7, 10, 0.9);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.36);
}

.map-card .leaflet-control-zoom a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
  background: rgba(8, 10, 12, 0.86);
  font: 800 24px/1 Inter, Arial, sans-serif;
}

.map-card .leaflet-control-zoom a + a {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.map-card .leaflet-control-zoom a:hover {
  color: #08090a;
  background: var(--amber);
}

.map-card .leaflet-control-attribution {
  color: #9aa2aa;
  background: rgba(3, 5, 7, 0.68);
}

.map-card .leaflet-control-attribution a {
  color: #dce5ee;
}


.anchor-target {
  display: block;
  height: 1px;
  margin-top: -1px;
}


.contact-section {
  display: grid;
  grid-template-columns: 0.82fr 1.05fr 0.72fr;
  gap: 28px;
  padding: 46px 42px 54px;
  background: var(--near);
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.faq-list details {
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 15px 44px 15px 18px;
  color: #d6dce2;
  font-size: 13px;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 10px;
  right: 18px;
  color: var(--text);
  font-size: 22px;
}

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

.faq-list p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 13px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--dim);
  font-size: 12px;
}

.choice-field {
  position: relative;
}

.lead-form .full {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.025);
  padding: 13px 14px;
  font-size: 13px;
}

.lead-form select option {
  color: #0b0e11;
}

.choice-dropdown {
  position: relative;
}

.choice-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 47px;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  padding: 13px 14px;
  font-size: 13px;
  text-align: left;
}

.choice-trigger[aria-expanded="true"] {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(22, 142, 255, 0.52);
}

.choice-trigger i {
  color: #dce4ec;
  font-size: 18px;
  transition: transform 160ms ease;
}

.choice-trigger[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.choice-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  overflow: hidden;
  border: 1px solid rgba(22, 142, 255, 0.68);
  border-radius: 4px;
  background: #080b0e;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.48);
}

.choice-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.035);
}

.choice-tabs button {
  min-height: 39px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.choice-tabs button.is-active {
  color: #08090a;
  background: var(--amber);
}

.choice-panel {
  display: grid;
  max-height: 250px;
  overflow: auto;
  padding: 6px;
}

.choice-panel[hidden],
.choice-menu[hidden] {
  display: none;
}

.choice-panel button {
  display: flex;
  align-items: center;
  min-height: 36px;
  border: 0;
  border-radius: 2px;
  color: #e7edf2;
  background: transparent;
  cursor: pointer;
  padding: 9px 11px;
  font-size: 13px;
  text-align: left;
}

.choice-panel button:hover,
.choice-panel button:focus-visible,
.choice-panel button.is-selected {
  color: #08090a;
  background: var(--amber);
}

.lead-form textarea {
  min-height: 88px;
  resize: vertical;
}

.request-preview {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.28);
}

.request-preview > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid var(--line-soft);
}

.request-preview button {
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  padding: 8px 12px;
}

.request-preview pre {
  max-height: 210px;
  margin: 0;
  overflow: auto;
  padding: 12px;
  color: #ccd2d7;
  white-space: pre-wrap;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--amber);
  font-size: 13px;
}

.contact-cards {
  display: grid;
  align-self: start;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
}

.contact-cards article {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-bottom: 1px solid var(--line-soft);
}

.contact-cards article:last-child {
  border-bottom: 0;
}

.contact-cards i {
  color: var(--amber);
  font-size: 28px;
}

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

.contact-cards span {
  color: var(--dim);
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-cards strong {
  margin-top: 5px;
  color: #dce1e5;
  font-size: 14px;
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 24px;
  }

  .brand {
    min-width: 190px;
  }

  .nav {
    gap: 20px;
  }

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

  .packs-section,
  .zone-section,
  .service-flow-panel,
  .pack-summary,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .map-card {
    height: 330px;
  }

  .pack-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 72px;
  }

  .brand {
    min-width: 0;
  }

  .nav,
  .nav-cta {
    display: none;
  }

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

  .site-header.menu-open .nav {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 0;
    justify-content: stretch;
    padding: 10px 24px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 6, 7, 0.98);
  }

  .site-header.menu-open .nav a {
    min-height: 42px;
  }

  .site-header.menu-open .nav a::after {
    bottom: 4px;
  }

  .hero {
    min-height: 640px;
    padding-top: 72px;
  }

  .hero-image,
  .hero-overlay {
    top: 72px;
  }

  .hero-inner {
    width: min(100% - 36px, var(--max));
    min-height: 568px;
    align-items: end;
    padding-bottom: 40px;
  }

  .hero-image {
    height: calc(100% - 72px);
    object-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 6, 7, 0.22), rgba(5, 6, 7, 0.94) 60%, rgba(5, 6, 7, 0.98)),
      linear-gradient(90deg, rgba(5, 6, 7, 0.7), rgba(5, 6, 7, 0.18));
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 36px;
  }

  .benefit-bar,
  .service-card-grid,
  .pack-grid,
  .method-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .section,
  .method-content,
  .packs-section,
  .zone-section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .action-head,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .help-button,
  .button {
    width: max-content;
  }

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

  .service-flow-panel,
  .pack-summary {
    align-items: start;
  }

  .method-steps li::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand strong {
    font-size: 16px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy {
    width: 100%;
  }

  .benefit-bar,
  .service-card-grid,
  .pack-grid,
  .method-steps,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .benefit-bar article {
    justify-content: flex-start;
    min-height: 76px;
    padding-left: 24px;
  }

  .service-tile {
    min-height: 380px;
  }

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

  .zone-list {
    grid-template-columns: 1fr;
  }

  .real-map {
    height: 100%;
  }

  .map-card {
    height: 310px;
  }

  .map-card figcaption {
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}

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