:root {
  --ink: #f2f7fa;
  --ink-mid: #c2d4de;
  --ice: #6eb8cb;
  --ice-bright: #c8e4ec;
  --ice-deep: #3d8fa3;
  --ice-hot: #8fd0e0;
  --frost: #0b1218;
  --frost-glass: rgba(10, 16, 22, 0.88);
  --text: #d7e2e8;
  --muted: #8a9aa5;
  --bg: #090e13;
  --surface: #10161c;
  --surface-2: #161e26;
  --white: #ffffff;
  --line: rgba(110, 184, 203, 0.18);
  --radius: 6px;
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(ellipse 70% 45% at 100% -10%, rgba(61, 143, 163, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 30%, rgba(110, 184, 203, 0.06), transparent 50%),
    linear-gradient(180deg, #0b1218 0%, #090e13 45%, #0c141b 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-top: calc(40px + env(safe-area-inset-top, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, a, input, textarea { cursor: pointer; }
button, input, textarea { font: inherit; }
button, .btn, .nav-toggle, .carousel-btn, .carousel-dot {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Call bar */

.call-bar {
  position: fixed;
  inset: 0 0 auto;
  top: env(safe-area-inset-top, 0px);
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 40px;
  padding: 0.35rem 0.75rem;
  background: #121a22;
  color: #b7c9d2;
  font-size: 0.86rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(110, 184, 203, 0.2);
}

.call-bar strong {
  color: #d7eef4;
  text-shadow: none;
}

/* Header */

.header {
  position: fixed;
  top: calc(40px + env(safe-area-inset-top, 0px));
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 18, 28, 0.88);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid rgba(110, 184, 203, 0.12);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

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

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

.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(61, 232, 255, 0.28)) brightness(1.08);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-mid);
  transition: color 0.2s ease;
}

.nav a:hover { color: var(--ice-hot); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(18, 36, 51, 0.9);
  border-radius: var(--radius);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ice-bright);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--ice); outline-offset: 2px; }

.btn-primary {
  background: linear-gradient(180deg, #7ec4d4 0%, #4fa0b4 55%, #3a8799 100%);
  color: #071117;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #93d2e0 0%, #5aadc0 55%, #4494a6 100%);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
  color: #071117;
}

.btn-outline {
  border-color: rgba(110, 184, 203, 0.55);
  color: #e7fbff;
  background: rgba(0, 60, 85, 0.35);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(110, 184, 203, 0.12);
}

.btn-outline:hover {
  background: rgba(110, 184, 203, 0.14);
  border-color: #e7fbff;
  color: #ffffff;
}

.btn-lg {
  padding: 0.95rem 1.4rem;
  font-size: 1rem;
}

/* Hero */

.hero {
  position: relative;
  min-height: calc(100dvh - 114px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: #012a3d;
}

.hero-fallback-logo,
.hero-anim {
  display: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: #012a3d;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
  transform: scale(1.06);
  animation: heroDrift 18s ease-in-out infinite alternate;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-photo.is-visible,
.hero-media.is-photo .hero-photo {
  opacity: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #012a3d;
  opacity: 1;
  transition: opacity 0.85s ease;
  -webkit-mask-image: none;
  mask-image: none;
  pointer-events: none;
}

.hero-media.is-photo .hero-video {
  opacity: 0;
  pointer-events: none;
}

.hero-visual {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 78% 22%, rgba(110, 184, 203, 0.28), transparent 58%),
    radial-gradient(ellipse 40% 35% at 18% 70%, rgba(0, 160, 210, 0.28), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(230, 250, 255, 0.18), transparent 42%),
    linear-gradient(145deg, #013247 0%, #025873 38%, #0382a8 68%, #012a3d 100%);
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(185, 239, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 239, 255, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 60% at 60% 40%, #000 10%, transparent 72%);
  animation: crystalShift 16s linear infinite;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: -10% -5% 0;
  background:
    repeating-linear-gradient(
      -24deg,
      transparent 0 18px,
      rgba(180, 240, 255, 0.045) 18px 19px
    );
  opacity: 0.8;
  animation: frostSweep 10s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 30, 45, 0.08) 0%, rgba(1, 28, 42, 0.18) 38%, rgba(1, 20, 32, 0.72) 68%, rgba(1, 18, 30, 0.92) 100%);
  pointer-events: none;
}

.hero-frost {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.22), transparent 18%),
    radial-gradient(circle at 78% 28%, rgba(110, 184, 203, 0.22), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(110, 184, 203, 0.16), transparent 26%);
  animation: frostPulse 6.5s ease-in-out infinite;
}

.hero-frost::before,
.hero-frost::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-frost::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(185, 239, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 239, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 55% at 70% 35%, #000 20%, transparent 70%);
  animation: crystalShift 14s linear infinite;
}

.hero-frost::after {
  right: -8%;
  top: -10%;
  width: 55%;
  height: 70%;
  background:
    linear-gradient(145deg, transparent 30%, rgba(185, 239, 255, 0.08) 48%, transparent 62%),
    repeating-linear-gradient(
      -22deg,
      transparent 0 14px,
      rgba(185, 239, 255, 0.045) 14px 15px
    );
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  animation: frostSweep 9s ease-in-out infinite;
}

.hero-ice-edge {
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background:
    linear-gradient(180deg, transparent, rgba(7, 15, 22, 0.45) 40%, rgba(7, 15, 22, 0.98));
  pointer-events: none;
  z-index: 2;
}

.hero-ice-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-ice-particles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(230, 248, 255, 0.85);
  box-shadow: 0 0 14px rgba(110, 184, 203, 0.35);
  animation: iceDrift 12s linear infinite;
  opacity: 0;
}

.hero-ice-particles span:nth-child(1) { left: 12%; bottom: 4%; width: 4px; height: 4px; animation-delay: 0s; }
.hero-ice-particles span:nth-child(2) { left: 28%; bottom: 0%; width: 6px; height: 6px; animation-delay: 1.4s; }
.hero-ice-particles span:nth-child(3) { left: 46%; bottom: 8%; width: 3px; height: 3px; animation-delay: 2.8s; }
.hero-ice-particles span:nth-child(4) { left: 62%; bottom: 2%; width: 5px; height: 5px; animation-delay: 0.6s; }
.hero-ice-particles span:nth-child(5) { left: 74%; bottom: 10%; width: 7px; height: 7px; animation-delay: 3.5s; }
.hero-ice-particles span:nth-child(6) { left: 84%; bottom: 1%; width: 4px; height: 4px; animation-delay: 5.1s; }
.hero-ice-particles span:nth-child(7) { left: 18%; bottom: 12%; width: 5px; height: 5px; animation-delay: 6.2s; }
.hero-ice-particles span:nth-child(8) { left: 55%; bottom: 6%; width: 3px; height: 3px; animation-delay: 7.4s; }
.hero-ice-particles span:nth-child(9) { left: 91%; bottom: 14%; width: 6px; height: 6px; animation-delay: 4.2s; }
.hero-ice-particles span:nth-child(10) { left: 37%; bottom: 3%; width: 4px; height: 4px; animation-delay: 8.6s; }

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, 100% - 2.5rem);
  margin: 0 auto;
  padding: 6.5rem 0 3.5rem;
  animation: riseIn 0.9s ease both;
}

.hero-logo {
  position: relative;
  display: inline-block;
  width: min(100%, 380px);
  margin-bottom: 1rem;
}

.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 24px rgba(122, 215, 240, 0.2));
}

.hero-logo-live {
  width: min(100%, 520px);
}

.hero-logo-live .logo-live-fallback {
  display: block;
  width: 100%;
}

.hero-logo-live .logo-live-fallback img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-logo-live .logo-live-canvas {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 24px rgba(122, 215, 240, 0.22));
}

.hero-logo-live:has(.logo-live-canvas) .logo-live-fallback,
.logo-live-fallback[hidden] {
  display: none !important;
}


.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(185, 239, 255, 0.35);
  background: rgba(8, 36, 52, 0.45);
  backdrop-filter: blur(10px);
  color: var(--ice-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 10px var(--ice);
  animation: frostPulse 2.4s ease-in-out infinite;
}

.hero-brand {
  display: none;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.3vw, 2.45rem);
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 16ch;
  color: #f4fcff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  margin-bottom: 1rem;
}

.hero-lead {
  max-width: 38rem;
  color: rgba(230, 244, 250, 0.9);
  font-size: 1.06rem;
  margin-bottom: 1.85rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Trust strip */

.trust-strip {
  position: relative;
  background:
    linear-gradient(180deg, #0d1a24, #0a1520);
  border-bottom: 1px solid rgba(110, 184, 203, 0.12);
  overflow: hidden;
}

.trust-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(122, 215, 240, 0.08), transparent);
  animation: frostSweep 8s ease-in-out infinite;
  pointer-events: none;
}

.trust-strip-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.45rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--ink-mid);
}

.trust-item svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 50%;
  background: linear-gradient(145deg, #163041, #0f2433);
  color: #6eb8cb;
  border: 1px solid rgba(61, 232, 255, 0.4);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
}

/* Sections */

.section { padding: 5.75rem 0; }

.section-alt {
  position: relative;
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 180, 230, 0.14), transparent 38%),
    radial-gradient(circle at 10% 80%, rgba(110, 184, 203, 0.06), transparent 32%),
    linear-gradient(180deg, #0b1722, #0a1520);
  overflow: hidden;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 159, 200, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 159, 200, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
  pointer-events: none;
}

.section-dark {
  position: relative;
  background:
    radial-gradient(circle at 15% 0%, rgba(0, 200, 240, 0.22), transparent 34%),
    radial-gradient(circle at 90% 80%, rgba(0, 140, 190, 0.16), transparent 30%),
    linear-gradient(160deg, #061018, #040a10 65%);
  color: var(--white);
  overflow: hidden;
}

.section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -28deg,
      transparent 0 22px,
      rgba(185, 239, 255, 0.025) 22px 23px
    );
  pointer-events: none;
}

.section-intro {
  position: relative;
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-intro-light .label { color: #b7dce6; }
.section-intro-light h2 { color: var(--white); }

.label {
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6eb8cb;
  margin-bottom: 0.7rem;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  color: var(--ink);
}

.section-intro p:last-child,
.about-copy > p {
  color: var(--muted);
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service {
  position: relative;
  padding: 1.55rem 1.4rem;
  background:
    linear-gradient(180deg, #122433, #0d1a24);
  border: 1px solid rgba(110, 184, 203, 0.12);
  border-top: 3px solid var(--ice-hot);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  background: linear-gradient(115deg, transparent 40%, rgba(185, 239, 255, 0.35) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.service:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 184, 203, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.service:hover::before { transform: translateX(120%); }

.service h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin-bottom: 0.55rem;
  color: var(--ink);
}

.service p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* About */

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.about-copy p + p { margin-top: 1rem; }

.checklist {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.checklist li {
  position: relative;
  padding: 0.7rem 0.85rem 0.7rem 2rem;
  font-weight: 650;
  background: rgba(18, 36, 51, 0.75);
  border: 1px solid rgba(110, 184, 203, 0.12);
  color: var(--ink-mid);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--ice-deep);
  box-shadow: 0 0 0 4px rgba(110, 184, 203, 0.14);
}

.about-panel {
  position: relative;
  background:
    radial-gradient(circle at 80% 0%, rgba(0, 220, 255, 0.4), transparent 42%),
    linear-gradient(160deg, #03607f, #013246);
  color: var(--white);
  padding: 1.9rem;
  border: 1px solid rgba(110, 184, 203, 0.28);
  box-shadow: 0 20px 50px rgba(0, 120, 160, 0.28);
  overflow: hidden;
}

.about-panel::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(115deg, transparent 45%, rgba(185, 239, 255, 0.12) 50%, transparent 55%);
  animation: iceSheen 6s ease-in-out infinite;
  pointer-events: none;
}

.about-panel-label {
  position: relative;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ice);
  font-weight: 750;
  margin-bottom: 1rem;
}

.client-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.client-list span {
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(185, 239, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.client-list span:hover {
  background: rgba(122, 215, 240, 0.12);
  border-color: rgba(185, 239, 255, 0.55);
}

.about-panel-note {
  position: relative;
  color: rgba(220, 240, 248, 0.75);
  font-size: 0.92rem;
}

/* Coverage */

.coverage-section {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(0, 180, 230, 0.12), transparent 55%),
    linear-gradient(180deg, #0a1520 0%, #08131c 100%);
  overflow: visible;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.5rem 3rem;
  align-items: stretch;
  margin-bottom: 2.25rem;
}

.coverage-copy h2 {
  max-width: 16ch;
}

.coverage-copy > p {
  max-width: 36rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.coverage-hub {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(0, 183, 224, 0.22);
}

.coverage-hub-pin {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #00c4e8;
  box-shadow: 0 0 0 6px rgba(110, 184, 203, 0.14), 0 0 18px rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
}

.coverage-hub strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.coverage-hub span {
  color: var(--muted);
  font-size: 0.92rem;
}

.coverage-facts {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 0 0 1.75rem;
}

.coverage-facts li {
  display: grid;
  gap: 0.2rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(0, 183, 224, 0.45);
}

.coverage-facts strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink-mid);
}

.coverage-facts span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.coverage-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  border-radius: 4px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(61, 232, 255, 0.35);
  background: #e8eef3;
  min-height: 460px;
}

.coverage-map {
  width: 100%;
  height: min(560px, 72vh);
  min-height: 460px;
  background: #e8eef3;
  z-index: 0;
  filter: contrast(1.06) saturate(1.08);
}

.coverage-legend {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 500;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(2, 132, 199, 0.35);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
}

.coverage-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.coverage-legend i {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend-core {
  background: rgba(14, 165, 233, 0.45);
  box-shadow: inset 0 0 0 2px #0284c7;
}

.legend-wide {
  background: rgba(56, 189, 248, 0.2);
  box-shadow: inset 0 0 0 2px #0369a1;
}

.legend-base {
  background: #00c4e8;
  box-shadow: 0 0 0 3px rgba(110, 184, 203, 0.2);
}

.coverage-marker {
  background: transparent;
  border: none;
}

.coverage-marker-base {
  display: grid;
  place-items: center;
}

.coverage-marker-dot {
  position: relative;
  z-index: 1;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #00b4e0;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.35), 0 6px 14px rgba(0, 0, 0, 0.35);
}

.coverage-marker-pulse {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 180, 224, 0.35);
  animation: coveragePulse 2.4s ease-out infinite;
}

.coverage-tooltip {
  background: #0b1520 !important;
  color: #f0f9ff !important;
  border: 1px solid rgba(56, 189, 248, 0.45) !important;
  border-radius: 4px !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28) !important;
  padding: 0.3rem 0.5rem !important;
  white-space: nowrap !important;
}

.coverage-tooltip-base {
  background: #0284c7 !important;
  border-color: #fff !important;
  color: #fff !important;
  font-size: 0.82rem !important;
}

.coverage-tooltip::before {
  border-right-color: #0b1520 !important;
}

.coverage-tooltip-base.leaflet-tooltip-top::before {
  border-top-color: #0284c7 !important;
  border-right-color: transparent !important;
}

.leaflet-container {
  font-family: var(--font-body);
}

.leaflet-control-zoom a {
  background: #ffffff !important;
  color: #0f172a !important;
  border-bottom-color: #dbe4ea !important;
}

.leaflet-bar {
  border: 1px solid rgba(15, 23, 42, 0.15) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18) !important;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.leaflet-popup-content {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 0.7rem 0.85rem;
}

.leaflet-popup-content strong {
  font-family: var(--font-display);
  color: #0284c7;
}

.coverage-towns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.35rem;
  align-items: center;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(0, 183, 224, 0.2);
}

.coverage-towns span {
  position: relative;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-mid);
  padding: 0.35rem 0;
}

.coverage-towns span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.75rem;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0, 160, 200, 0.45);
  transform: translateY(-50%);
}

.coverage-towns-wide {
  color: #b7dce6 !important;
}

.coverage-towns-wide::after {
  display: none !important;
}

/* Gallery carousel */

.gallery-section {
  background:
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(0, 180, 230, 0.1), transparent 55%),
    linear-gradient(180deg, #08131c, #0a1520);
}

.carousel {
  position: relative;
  max-width: 920px;
  margin-inline: auto;
}

.carousel-viewport {
  overflow: hidden;
  border: 1px solid rgba(61, 232, 255, 0.22);
  background: #0d1a24;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.carousel-viewport:active { cursor: grabbing; }

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  margin: 0;
  aspect-ratio: 16 / 10;
  background: #08131c;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.1rem;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(61, 232, 255, 0.35);
  background: rgba(12, 28, 40, 0.95);
  color: #e7fbff;
  font-size: 1.6rem;
  line-height: 1;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  border-color: var(--ice-hot);
  color: #fff;
  outline: none;
}

.carousel-status {
  min-width: 4.5rem;
  text-align: center;
  color: var(--ink-mid);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  margin: 0;
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.95rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(158, 239, 255, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.is-active {
  background: #6eb8cb;
  transform: scale(1.2);
  box-shadow: 0 0 0 3px rgba(61, 232, 255, 0.2);
}

.carousel-dot:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 2px;
}

/* Testimonials */

.quotes {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  z-index: 1;
}

.quotes blockquote {
  padding: 1.55rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(110, 184, 203, 0.14);
  border-left: 2px solid var(--ice);
  backdrop-filter: blur(6px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.quotes blockquote:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 239, 255, 0.4);
}

.quotes p {
  font-size: 0.98rem;
  color: rgba(240, 250, 255, 0.92);
  margin-bottom: 1rem;
}

.quotes footer {
  font-size: 0.82rem;
  color: rgba(185, 239, 255, 0.65);
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-details a,
.contact-details div {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  background: rgba(18, 36, 51, 0.8);
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-details a:hover {
  border-color: var(--ice-deep);
  transform: translateX(3px);
}

.contact-details strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--ink);
}

.contact-details span {
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.6rem;
  background:
    linear-gradient(180deg, #122433, #0d1a24);
  border: 1px solid rgba(61, 232, 255, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-mid);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 0.9rem;
  background: rgba(7, 15, 22, 0.85);
  color: var(--text);
  font-size: 16px;
  line-height: 1.4;
  cursor: text;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ice-deep);
  box-shadow: 0 0 0 3px rgba(61, 232, 255, 0.18);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(138, 168, 184, 0.7);
}

/* Footer */

.footer {
  position: relative;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 180, 230, 0.18), transparent 38%),
    linear-gradient(180deg, #0a1824, #050c12);
  color: rgba(220, 245, 255, 0.72);
  padding: 2.2rem 0;
  border-top: 1px solid rgba(61, 232, 255, 0.22);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  flex-wrap: wrap;
}

.footer strong {
  display: block;
  color: #b7dce6;
  font-family: var(--font-display);
  margin-bottom: 0.25rem;
}

.footer-copy { font-size: 0.85rem; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 0.85rem;
}

.footer-links a {
  color: #9eefff;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links a:hover { color: #ffffff; }

.form-legal {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
  margin: -0.35rem 0 0.35rem;
}

.form-legal a {
  color: var(--ice-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Cookie banner */

.cookie-banner {
  position: fixed;
  left: max(1rem, env(safe-area-inset-left, 0px));
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 200;
}

.cookie-banner[hidden] { display: none !important; }

.cookie-banner-inner {
  width: min(720px, 100%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: rgba(8, 20, 32, 0.98);
  border: 1px solid rgba(110, 184, 203, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(61, 232, 255, 0.12);
  backdrop-filter: blur(12px);
}

.cookie-banner-inner p {
  margin: 0;
  color: rgba(220, 240, 248, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-banner-inner a {
  color: #b7dce6;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-inner .btn {
  flex-shrink: 0;
  min-width: 4.5rem;
}

@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-inner .btn {
    width: 100%;
  }
}

/* Legal pages */

.legal-page {
  padding: 3.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse 70% 40% at 0% 0%, rgba(0, 180, 230, 0.12), transparent 55%),
    var(--bg);
}

.legal-wrap {
  max-width: 46rem;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.legal-updated {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2rem 0 0.7rem;
}

.legal-page h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink-mid);
  margin: 1.25rem 0 0.55rem;
}

.legal-page p,
.legal-page li {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-page p { margin-bottom: 0.9rem; }

.legal-page ul {
  margin: 0 0 1rem 1.15rem;
  display: grid;
  gap: 0.45rem;
}

.legal-page a {
  color: var(--ice-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page a:hover { color: var(--ink); }

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.35rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

/* Motion */

@keyframes heroDrift {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.8%, -1.2%, 0); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes frostPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes iceFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes iceSheen {
  0%, 100% { transform: translateX(-28%) rotate(8deg); opacity: 0.2; }
  45%, 55% { opacity: 0.95; }
  50% { transform: translateX(28%) rotate(8deg); }
}

@keyframes iceDrift {
  0% { transform: translate3d(0, 0, 0) scale(0.7); opacity: 0; }
  12% { opacity: 0.95; }
  70% { opacity: 0.5; }
  100% { transform: translate3d(-50px, -75vh, 0) scale(1.2); opacity: 0; }
}

@keyframes crystalShift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 72px 36px, 36px 72px; }
}

@keyframes frostSweep {
  0%, 100% { opacity: 0.35; transform: translateX(-4%); }
  50% { opacity: 0.85; transform: translateX(3%); }
}

@keyframes coveragePulse {
  0% { transform: scale(0.7); opacity: 0.8; }
  70% { transform: scale(2.1); opacity: 0; }
  100% { transform: scale(2.1); opacity: 0; }
}

@keyframes coverageSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-visual,
  .hero-frost,
  .hero-frost::before,
  .hero-frost::after,
  .hero-logo,
  .hero-logo-sheen,
  .hero-ice-particles span,
  .hero-tag::before,
  .trust-strip::before,
  .about-panel::after,
  .hero-content,
  .btn,
  .service,
  .coverage-pulse,
  .coverage-ring,
  .coverage-ring-inner,
  .carousel-track { animation: none !important; transition: none !important; }
}

@media (max-width: 960px) {
  .trust-strip-inner,
  .services-grid,
  .quotes,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .coverage-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
  }
}


@media (min-width: 961px) {
  .hero-video {
    width: 100%;
    height: 100%;
    max-height: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1120px, 100% - 1.5rem);
  }

  .call-bar {
    font-size: 0.78rem;
    gap: 0.35rem;
    text-align: center;
    flex-wrap: wrap;
    line-height: 1.25;
  }

  .call-bar span { display: none; }

  .nav-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
  }

  .nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100dvh - 120px);
    overflow-y: auto;
    background: rgba(10, 20, 30, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.1rem 1.1rem;
  }

  .nav.is-open { display: flex; }

  .nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav .btn {
    margin-top: 0.75rem;
    border: none;
    color: var(--white);
    width: 100%;
  }

  .trust-strip-inner,
  .services-grid,
  .quotes,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: #0a1218;
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: 40svh;
    min-height: 210px;
    max-height: 300px;
    flex: 0 0 auto;
    overflow: hidden;
    background:
      radial-gradient(ellipse 70% 60% at 50% 45%, rgba(61, 143, 163, 0.35), transparent 62%),
      #012a3d;
  }

  .hero-fallback-logo {
    display: none;
  }

  .hero-anim {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }

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

  .hero-overlay {
    z-index: 3;
    background:
      linear-gradient(180deg, rgba(5, 12, 18, 0.02) 0%, rgba(5, 12, 18, 0.05) 65%, rgba(9, 14, 19, 0.55) 100%);
  }

  .hero-ice-edge {
    z-index: 4;
    height: 28px;
    background: linear-gradient(180deg, transparent, rgba(9, 14, 19, 0.98));
  }

  .hero-video {
    /* Phones often show a play button on MP4 — use always-playing WebP/GIF instead */
    display: none !important;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1.2rem 1.35rem 1.5rem;
    background: linear-gradient(180deg, #0a1218 0%, #090e13 100%);
    animation: none;
  }

  .container {
    width: min(1120px, 100% - 1.75rem);
  }

  .call-bar {
    padding-inline: 1rem;
  }

  .header-inner {
    height: 64px;
    padding-inline: 0.15rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.55rem, 7vw, 1.95rem);
    line-height: 1.18;
    margin-bottom: 0.65rem;
  }

  .hero-lead {
    font-size: 0.94rem;
    line-height: 1.5;
    margin-bottom: 1.1rem;
    max-width: none;
    color: rgba(215, 226, 232, 0.88);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.6rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 50px;
    justify-content: center;
    font-size: 1rem;
  }

  .header-inner {
    height: 64px;
  }

  .brand-logo { height: 40px; }

  .trust-strip-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 0.75rem;
    padding: 1.05rem 0;
  }

  .trust-item {
    font-size: 0.8rem;
    line-height: 1.25;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .trust-item svg {
    width: 30px;
    height: 30px;
    padding: 6px;
  }

  .section { padding: 3rem 0; }

  .section-intro {
    margin-bottom: 1.35rem;
  }

  .section-intro h2 {
    font-size: clamp(1.4rem, 6.5vw, 1.75rem);
  }

  .section-intro p {
    font-size: 0.95rem;
  }

  .service {
    padding: 1.1rem 1rem;
  }

  .coverage-copy h2 { max-width: none; }
  .coverage-visual { order: -1; width: 100%; }
  .coverage-layout { display: flex; flex-direction: column; align-items: stretch; gap: 1.35rem; }
  .coverage-map {
    height: 280px;
    min-height: 280px;
  }

  .carousel-viewport {
    border-radius: 10px;
  }

  .contact-details a,
  .contact-details div {
    padding: 0.85rem 0;
  }

  .btn-lg {
    min-height: 50px;
  }

  .quotes blockquote {
    padding: 1.1rem 1rem;
  }
  .coverage-visual { min-height: 320px; }
  .coverage-legend {
    font-size: 0.7rem;
    gap: 0.35rem 0.55rem;
    padding: 0.4rem 0.55rem;
    max-width: calc(100% - 1.25rem);
  }
  .coverage-tooltip {
    font-size: 0.68rem !important;
    padding: 0.2rem 0.35rem !important;
  }

  .carousel-slide {
    aspect-ratio: 4 / 3;
  }

  .carousel-controls {
    gap: 0.75rem;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .contact-details a,
  .contact-details div {
    min-height: 64px;
  }

  .footer-inner {
    align-items: start;
    gap: 1.25rem;
  }

  .footer-links {
    gap: 0.75rem 1rem;
  }

  .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 420px) {
  .call-bar {
    font-size: 0.74rem;
  }

  .trust-strip-inner {
    gap: 0.75rem;
  }

  .trust-item {
    font-size: 0.88rem;
  }

  .coverage-map,
  .coverage-visual {
    height: 280px;
    min-height: 280px;
  }
}


/* Upgrade / pitch comparison */
.upgrade-section {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(110, 184, 203, 0.06), transparent 55%),
    var(--surface);
}

.upgrade-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.upgrade-col {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.4rem 1.45rem 1.5rem;
  background: rgba(7, 15, 22, 0.55);
}

.upgrade-new {
  border-color: rgba(110, 184, 203, 0.28);
  background:
    linear-gradient(160deg, rgba(14, 48, 64, 0.95), rgba(8, 22, 32, 0.92));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.upgrade-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 750;
  color: var(--ice-deep);
  margin-bottom: 0.55rem;
}

.upgrade-col h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.9rem;
}

.upgrade-col ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

.upgrade-col li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text);
  font-size: 0.95rem;
}

.upgrade-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--ice);
}

.upgrade-old li::before {
  background: var(--muted);
}

.upgrade-link {
  color: var(--ice-bright);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.about-panel-lead {
  color: var(--text);
  margin-bottom: 0.85rem;
}

.about-panel-list {
  margin-bottom: 0.9rem;
}

.contact-primary strong {
  color: var(--ice-hot);
  font-size: 1.2rem;
}

.contact-form .honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-status {
  margin: 0 0 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  font-size: 0.92rem;
}

.form-status.is-success {
  background: rgba(46, 224, 255, 0.12);
  border: 1px solid rgba(110, 184, 203, 0.22);
  color: var(--ice-bright);
}

.form-status.is-error {
  background: rgba(255, 90, 90, 0.1);
  border: 1px solid rgba(255, 120, 120, 0.35);
  color: #ffd0d0;
}

.form-status a {
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 820px) {
  .upgrade-grid {
    grid-template-columns: 1fr;
  }

  .hero-brand {
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }
}
