:root {
  --royal: #122a7a;
  --royal-deep: #07143d;
  --royal-mid: #1a3ea8;
  --royal-bright: #2b55d4;
  --gold: #c9a227;
  --gold-deep: #a4841a;
  --gold-soft: #f4e7b5;
  --ink: #101828;
  --ink-soft: #344054;
  --muted: #667085;
  --paper: #ffffff;
  --mist: #f5f7fb;
  --line: rgba(18, 42, 122, 0.12);
  --line-strong: rgba(18, 42, 122, 0.22);
  --green: #1f9d4c;
  --green-deep: #147a3a;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --nav-h: 72px;
  --top-h: 36px;
  --pad: clamp(1.1rem, 3.2vw, 2.4rem);
  --shadow: 0 22px 60px rgba(7, 20, 61, 0.14);
  --radius: 28px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.015em;
  -webkit-font-smoothing: antialiased;
  padding-top: calc(var(--top-h) + var(--nav-h));
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: #dbe4ff; color: var(--royal-deep); }

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

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--royal);
  color: #fff;
  padding: 0.6rem 0.9rem;
  z-index: 90;
  border-radius: 10px;
}
.skip:focus { top: calc(var(--top-h) + 0.6rem); }

.wrap { width: min(1180px, calc(100% - var(--pad) * 2)); margin-inline: auto; }
.wrap-wide { width: min(1240px, calc(100% - var(--pad) * 2)); margin-inline: auto; }
.wrap.narrow { width: min(820px, calc(100% - var(--pad) * 2)); }

.kicker, .eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
h1, h2, h3 { margin: 0.3rem 0 0.8rem; letter-spacing: -0.035em; line-height: 1.08; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.lede { color: #d7def5; max-width: 38rem; margin: 0 0 1.1rem; }
.muted { color: var(--muted); }
.rule { height: 1px; background: var(--line); border: 0; margin: 1.2rem 0; }

.center-head { text-align: center; max-width: 40rem; margin: 0 auto 2.4rem; }
.center-head p { color: var(--muted); margin: 0.5rem 0 0; }
.center-head.light h2, .center-head.light p { color: #e8edff; }
.center-cta { text-align: center; margin: 1.8rem 0 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 46px;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.22s var(--ease), box-shadow 0.22s, background 0.22s, color 0.22s;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { min-height: 54px; padding: 0.75rem 1.4rem; }
.btn-ink, .btn-plan {
  background: linear-gradient(180deg, var(--royal-mid), var(--royal));
  color: #fff;
  box-shadow: 0 10px 24px rgba(18, 42, 122, 0.28);
}
.btn-ink:hover, .btn-plan:hover { background: var(--royal-deep); }
.btn-gold {
  background: linear-gradient(180deg, #e0c056, var(--gold));
  color: #1a1403;
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.32);
}
.btn-gold:hover { background: var(--gold-deep); color: #fff; }
.btn-white { background: #fff; color: var(--royal); }
.btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-wa { background: var(--green); color: #fff; }
.btn-pay, .btn-call, .btn-orange { background: var(--royal-mid); color: #fff; }
.btn-line { border-color: var(--line-strong); background: #fff; color: var(--royal); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 82;
  height: var(--top-h);
  background: var(--royal-deep);
  color: #c9d4f5;
  font-size: 0.78rem;
}
.topbar-inner {
  width: min(1240px, calc(100% - var(--pad) * 2));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-tag {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}
.topbar-phones {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  white-space: nowrap;
  font-weight: 700;
}
.topbar-phones a { color: #fff; }
.topbar-phones a:hover { color: var(--gold-soft); }
.topbar-phones span { color: rgba(201, 212, 245, 0.55); font-weight: 600; }
.topbar-gst {
  padding-left: 0.85rem;
  border-left: 1px solid rgba(201, 212, 245, 0.22);
  white-space: nowrap;
  color: #c9d4f5;
}
.topbar a { font-weight: 700; color: #fff; }

.site-header {
  position: fixed;
  top: var(--top-h); left: 0; right: 0;
  z-index: 80;
  height: var(--nav-h);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(1240px, calc(100% - var(--pad) * 2));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.brand img { width: 44px; height: 44px; object-fit: contain; background: #fff; border-radius: 50%; }
.brand span { font-size: 1.2rem; font-weight: 800; color: var(--royal-deep); line-height: 1.05; }
.brand small { display: block; font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  margin-inline: auto;
  padding: 0.28rem;
  border-radius: 999px;
  background: rgba(18, 42, 122, 0.04);
  border: 1px solid rgba(18, 42, 122, 0.06);
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  white-space: nowrap;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
.nav-links a:hover {
  color: var(--royal);
  background: rgba(255, 255, 255, 0.9);
}
.nav-links a.is-active {
  color: var(--royal-deep);
  background: #fff;
  box-shadow: 0 4px 14px rgba(18, 42, 122, 0.1);
  font-weight: 700;
}
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.28rem;
  width: 18px;
  height: 2px;
  margin-left: -9px;
  background: var(--gold);
  border-radius: 2px;
}
.header-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.btn-account {
  background: #fff;
  color: var(--royal);
  border-color: var(--line-strong);
}
.btn-account:hover {
  background: var(--mist);
  border-color: var(--royal-mid);
}

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0;
  background: var(--royal);
  border-radius: 50%;
  cursor: pointer;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.menu-toggle span { display: block; width: 16px; height: 1.6px; margin: 2.4px auto; background: #fff; }
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6.4px) rotate(40deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6.4px) rotate(-40deg); }

.mobile-nav {
  position: fixed;
  top: calc(var(--top-h) + var(--nav-h));
  left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 75;
  transform: translateY(-110%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
}
body.menu-open .mobile-nav { transform: none; }
.mobile-nav nav a {
  display: block;
  padding: 1.05rem var(--pad);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}
.mobile-nav .meta { padding: 1.2rem var(--pad); color: var(--muted); }
.mobile-nav .menu-phones { display: grid; gap: 0.4rem; margin: 0.8rem 0 1rem; }
.mobile-nav .menu-phones a { font-weight: 800; color: var(--royal); font-size: 1.08rem; }
.mobile-nav .menu-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }

.hero {
  position: relative;
  background:
    radial-gradient(70% 60% at 8% 12%, rgba(78, 124, 210, 0.38), transparent 58%),
    radial-gradient(55% 70% at 92% 88%, rgba(214, 132, 72, 0.22), transparent 54%),
    linear-gradient(118deg, #050d24 0%, #0a1844 38%, #12306a 68%, #1c3f78 100%);
  color: #fff;
  overflow: hidden;
  padding: clamp(2.2rem, 6vw, 4.2rem) 0 clamp(2.6rem, 6vw, 4.6rem);
}
.hero-glow {
  position: absolute;
  width: 520px; height: 520px;
  right: -120px; top: -160px;
  background: radial-gradient(circle, rgba(120, 168, 255, 0.18), transparent 68%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}
.hero h1 { color: #fff; max-width: 18ch; }
.hero .eyebrow {
  color: #c5d2f0;
  letter-spacing: 0.12em;
}
.hero .lede { color: #d5deef; }
.hero-meta {
  margin: 0 0 1.05rem;
  color: #9eafd4;
  font-size: 0.92rem;
  font-weight: 500;
}
.hero-form-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #d7def5;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.9rem; }
.hero .hero-cta .btn { min-height: 50px; }
.hero-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  max-width: 34rem;
  background: #fff;
  padding: 0.7rem;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(4, 10, 28, 0.28);
}
.hero-lead input {
  min-height: 50px;
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 0 0.95rem;
  background: #f3f6fb;
  color: var(--ink);
}
.hero-lead .btn {
  grid-column: 1 / -1;
  min-height: 52px;
  width: 100%;
  white-space: nowrap;
  border-radius: 10px;
}
.btn-hero {
  background: linear-gradient(180deg, #f3d36a 0%, #d4a017 55%, #b8860b 100%);
  color: #2a1d00;
  box-shadow: 0 10px 22px rgba(184, 134, 11, 0.38);
  font-weight: 800;
}
.btn-hero:hover {
  background: linear-gradient(180deg, #e7c44c 0%, #c4920e 100%);
  color: #1a1403;
}
.hero-lead [data-form-status] { grid-column: 1 / -1; }
.hero-media { position: relative; }
.hero-media .hero-film {
  width: 100%;
  height: min(520px, 62vh);
  object-fit: cover;
  object-position: 50% 42%;
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
  background: #07122e;
}
.hero-media .hero-house {
  object-position: 50% 38%;
}
.hero-media .hero-about {
  object-position: 50% 32%;
}

.why { padding: clamp(3.4rem, 7vw, 5.5rem) 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  text-align: center;
}
.why-ico {
  width: 84px; height: 84px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(18, 42, 122, 0.08);
  color: var(--royal-mid);
}
.why-ico svg { width: 34px; height: 34px; }
.why-grid h3 { font-size: 1.12rem; margin-bottom: 0.35rem; }
.why-grid p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.banner-strip {
  padding: 0 var(--pad) clamp(2.4rem, 5vw, 3.8rem);
}
.banner-shell {
  overflow: hidden;
  width: 100%;
  container-type: inline-size;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.banner-shell.is-dragging { cursor: grabbing; }
.banner-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.banner-set {
  display: flex;
  flex-shrink: 0;
}
.banner-slide {
  flex: none;
  width: 100cqw;
  padding-inline: 0.4rem;
  box-sizing: border-box;
  cursor: grab;
}
.banner-shell.is-dragging .banner-slide { cursor: grabbing; }
.banner-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  pointer-events: none;
  -webkit-user-drag: none;
}
@media (min-width: 1101px) {
  .banner-slide { width: 50cqw; }
}
@media (min-width: 1600px) {
  .banner-slide { width: 33.333cqw; }
}
@media (min-width: 2100px) {
  .banner-slide { width: 25cqw; }
}

.section { padding: clamp(3.2rem, 7vw, 5.6rem) 0; }
.section-soft { background: var(--mist); }

.section.tariff {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, #f8f4e8 0%, transparent 58%),
    linear-gradient(180deg, #f6f8fc 0%, #eef2f8 100%);
}
.section.tariff .center-head p { color: var(--ink-soft); }
.plan-offer {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1rem;
  margin: 0 0 2rem;
}
.plan-offer article {
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  padding: 1.15rem 1.35rem;
  border: 1px solid rgba(18, 42, 122, 0.08);
  box-shadow: 0 10px 28px rgba(18, 42, 122, 0.05);
}
.plan-offer article:first-child {
  background: linear-gradient(180deg, #fffaf0, #fff);
  border-color: rgba(201, 162, 39, 0.28);
}
.plan-offer .kicker {
  margin: 0 0 0.4rem;
  color: var(--gold-deep);
}
.plan-offer p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}
.plan-row-label {
  margin: 1.65rem 0 0.95rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4b5c86;
}
.plan-row-label:first-of-type { margin-top: 0; }
.plan-gst {
  margin: 1.3rem 0 0;
  text-align: center;
  color: #4a5568;
  font-size: 0.9rem;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}
.plan-card {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(18, 42, 122, 0.08);
  box-shadow: 0 12px 32px rgba(18, 42, 122, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.28s var(--ease), box-shadow 0.28s, border-color 0.28s;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(18, 42, 122, 0.1);
}
.plan-card.featured {
  border-color: var(--royal-mid);
  box-shadow: 0 16px 40px rgba(26, 62, 168, 0.18);
}
.plan-head {
  position: relative;
  background: linear-gradient(180deg, #f5f8fd 0%, #e9eef8 100%);
  color: var(--royal-deep);
  padding: 1.35rem 1.25rem 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: flex-start;
  border-bottom: 1px solid rgba(18, 42, 122, 0.06);
  min-height: 118px;
}
.plan-card.plan-starter .plan-head {
  background: linear-gradient(180deg, #fffaf0 0%, #f7f2e4 100%);
}
.plan-card.plan-power .plan-head {
  background: linear-gradient(180deg, #f7f8fb 0%, #eef0f4 100%);
}
.plan-head h3 { margin: 0; font-size: 1.18rem; color: var(--royal-deep); }
.plan-head p { margin: 0.2rem 0 0; color: #5d6b8a; font-size: 0.9rem; }
.plan-head .plan-price {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  text-align: right;
  color: var(--royal);
  flex-shrink: 0;
}
.plan-head .plan-price small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 0.2rem;
  color: #5d6b8a;
}
.plan-card.featured .plan-head {
  padding-top: 2.45rem;
  background: linear-gradient(180deg, #2b55d4 0%, #1a3ea8 100%);
  color: #fff;
  border-bottom-color: transparent;
}
.plan-card.featured .plan-head h3,
.plan-card.featured .plan-head .plan-price { color: #fff; }
.plan-card.featured .plan-head p,
.plan-card.featured .plan-head .plan-price small { color: #dce6ff; }
.plan-pop {
  position: absolute;
  top: 0.85rem;
  left: 1.2rem;
  right: auto;
  background: linear-gradient(180deg, #efd36a, var(--gold));
  color: #3a2d04;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
}
.plan-body {
  background: #fff;
  padding: 1.15rem 1.25rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.plan-usage {
  margin: 0 0 0.85rem;
  padding: 0.65rem 0.8rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #f5f8fd, #eef3fb);
  color: var(--royal-deep);
  font-size: 0.92rem;
  font-weight: 600;
}
.plan-usage strong {
  color: var(--royal);
  font-size: 1.05rem;
}
.plan-card.featured .plan-usage {
  background: rgba(18, 42, 122, 0.06);
}
.plan-body ul { list-style: none; margin: 0 0 1rem; padding: 0; }
.plan-body li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  padding: 0.42rem 0;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.96rem;
}
.plan-body li.ok::before {
  content: "✓";
  color: var(--green-deep);
  font-weight: 800;
}
.plan-body .btn-plan {
  width: 100%;
  min-height: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #eef3fb;
  color: var(--royal);
  border: 1px solid rgba(18, 42, 122, 0.16);
  box-shadow: none;
  margin-top: auto;
}
.plan-body .btn-plan:hover {
  background: var(--royal-mid);
  color: #fff;
  border-color: transparent;
}
.plan-card.featured .btn-plan {
  background: linear-gradient(180deg, var(--royal-mid), var(--royal));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(18, 42, 122, 0.22);
}
.plan-card.featured .btn-plan:hover {
  background: var(--royal-deep);
  color: #fff;
}
.plan-fine { margin: 0.65rem 0 0; text-align: center; font-size: 0.78rem; color: #4a5568; }

.marquee-band { padding: 3rem 0 2.4rem; background: #fff; }
.logo-fade { position: relative; overflow: hidden; }
.logo-fade::before, .logo-fade::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 1;
  pointer-events: none;
}
.logo-fade::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.logo-fade::after { right: 0; background: linear-gradient(270deg, #fff, transparent); }
.logo-track {
  display: flex;
  gap: 0.9rem;
  width: max-content;
  animation: marquee 32s linear infinite;
  padding: 0.4rem 0 0.8rem;
}
.logo-chip {
  min-width: 118px;
  height: 86px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.08);
  display: grid;
  place-items: center;
  padding: 0.7rem 0.9rem;
}
.logo-chip img { max-height: 42px; width: auto; object-fit: contain; }
.logo-chip span { font-weight: 800; color: var(--royal); font-size: 0.82rem; text-align: center; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.roadmap {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}
.roadmap::before,
.roadmap::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  border-radius: 99px;
}
.roadmap::before { background: rgba(18, 42, 122, 0.12); }
.roadmap::after {
  right: auto;
  width: 75%;
  background: linear-gradient(90deg, var(--gold), var(--royal-mid));
  transform: scaleX(0);
  transform-origin: left;
  animation: roadmap-draw-x 5.2s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}
.roadmap li {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.85rem;
}
.roadmap-node {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--gold);
  color: var(--royal);
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 0 0 6px #f5f7fb, 0 10px 24px rgba(7, 20, 61, 0.1);
  animation: roadmap-pulse 5.2s ease-in-out infinite;
}
.roadmap li:nth-child(1) .roadmap-node { animation-delay: 0s; }
.roadmap li:nth-child(2) .roadmap-node { animation-delay: 0.85s; }
.roadmap li:nth-child(3) .roadmap-node { animation-delay: 1.7s; }
.roadmap li:nth-child(4) .roadmap-node { animation-delay: 2.55s; }
.roadmap h3 { font-size: 1.12rem; margin: 0 0 0.4rem; }
.roadmap p { margin: 0; color: var(--muted); font-size: 0.95rem; }
@keyframes roadmap-draw-x {
  0% { transform: scaleX(0); }
  55% { transform: scaleX(1); }
  78% { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}
@keyframes roadmap-draw-y {
  0% { transform: scaleY(0); }
  55% { transform: scaleY(1); }
  78% { transform: scaleY(1); }
  100% { transform: scaleY(0); }
}
@keyframes roadmap-pulse {
  0%, 8%, 28%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 6px #f5f7fb, 0 10px 24px rgba(7, 20, 61, 0.1);
  }
  14% {
    transform: scale(1.16);
    box-shadow: 0 0 0 10px rgba(239, 211, 106, 0.38), 0 12px 28px rgba(7, 20, 61, 0.14);
  }
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.4rem, 4vw, 3.2rem);
  align-items: center;
}
.intro-grid .lede, .intro-grid p { color: var(--ink-soft); }
.photo-frame img {
  width: 100%;
  height: min(460px, 62vh);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.photo-frame.photo-poster img {
  height: auto;
  max-height: min(680px, 80vh);
  object-fit: contain;
  background: #081226;
}
.photo-frame figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 0.7rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.coverage {
  background:
    radial-gradient(ellipse 70% 40% at 80% 20%, rgba(201, 162, 39, 0.08), transparent 58%),
    linear-gradient(180deg, #f7f9fd 0%, #fff 100%);
}
.coverage-bleed {
  padding-bottom: clamp(2.4rem, 5vw, 3.8rem);
  overflow: clip;
}
.coverage-bleed .center-head {
  margin-bottom: 1.6rem;
}
.coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: center;
}
.coverage-copy p { color: var(--ink-soft); }
.area-chips {
  list-style: none;
  margin: 1.35rem 0 1.4rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.area-chips li {
  background: #fff;
  border: 1px solid rgba(18, 42, 122, 0.08);
  border-radius: 16px;
  padding: 0.85rem 0.95rem;
  box-shadow: 0 8px 22px rgba(18, 42, 122, 0.04);
}
.area-chips strong {
  display: block;
  color: var(--royal-deep);
  font-size: 0.95rem;
}
.area-chips span {
  display: block;
  margin-top: 0.15rem;
  color: #5d6b8a;
  font-size: 0.82rem;
  font-weight: 500;
}
.coverage-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
}
.coverage-poster {
  position: relative;
  margin: 0;
}
.coverage-poster img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(7, 20, 61, 0.16);
  display: block;
}
.coverage-poster figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  margin: 0;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  background: rgba(7, 20, 61, 0.62);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* —— Service areas: Google embed + find card —— */
/* —— Service areas: full-bleed light map + find card —— */
.service-coverage {
  display: block;
}
.service-map-bleed {
  position: relative;
  width: 100%;
  height: clamp(440px, 60vh, 640px);
  background: #e8eef5;
}
.service-map-stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #e8eef5;
}
.service-map-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 16%),
    linear-gradient(0deg, rgba(247, 249, 253, 0.55), transparent 18%);
}
.service-map-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.service-map-canvas .leaflet-container {
  width: 100%;
  height: 100%;
  background: #e8eef5;
  font-family: var(--sans);
}
.service-map-canvas .leaflet-control-zoom {
  border: 0 !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14) !important;
  margin-left: max(1.15rem, calc((100vw - 1240px) / 2)) !important;
  margin-top: 4.6rem !important;
}
.service-map-canvas .leaflet-control-zoom a {
  width: 36px !important;
  height: 36px !important;
  line-height: 36px !important;
  color: var(--royal) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  border: 0 !important;
  font-weight: 700 !important;
}
.service-map-canvas .leaflet-control-zoom a:first-child {
  border-radius: 12px 12px 0 0 !important;
}
.service-map-canvas .leaflet-control-zoom a:last-child {
  border-radius: 0 0 12px 12px !important;
}
.service-map-overlay {
  position: absolute;
  z-index: 5;
  top: 1.15rem;
  left: max(1.15rem, calc((100vw - 1240px) / 2));
  right: max(1.15rem, calc((100vw - 1240px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.7rem;
  pointer-events: none;
}
.service-map-badge {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  color: var(--royal-deep);
  pointer-events: none;
}
.service-map-badge strong {
  font-size: 1.65rem;
  letter-spacing: -0.04em;
  color: var(--royal);
  line-height: 1;
}
.service-map-badge span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.service-map-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
  pointer-events: auto;
}
.service-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.service-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #334155;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}
.service-map-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}
.service-map-legend .is-hub i {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.28);
}
.service-map-legend .is-pin i {
  background: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}
.service-map-reset,
.service-map-open {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}
.service-map-reset {
  background: rgba(255, 255, 255, 0.96);
  color: var(--royal);
}
.service-map-reset:hover { background: #fff; }
.service-map-open {
  background: var(--royal);
  color: #fff;
}
.service-map-open:hover { background: var(--royal-deep); color: #fff; }

.service-pin {
  background: transparent !important;
  border: 0 !important;
}
.service-pin-inner {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateY(8px) scale(0.4);
  opacity: 0;
  filter: drop-shadow(0 6px 10px rgba(15, 23, 42, 0.28));
  animation: service-pin-in 0.5s var(--ease) forwards;
}
.service-pin-svg {
  display: block;
  width: 100%;
  height: 100%;
}
.service-pin.is-active .service-pin-inner {
  transform: translateY(0) scale(1.18);
  filter: drop-shadow(0 8px 14px rgba(15, 23, 42, 0.35));
}
.service-pin-pulse {
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 18px;
  height: 18px;
  margin-left: -9px;
  border-radius: 50%;
  border: 2px solid rgba(201, 162, 39, 0.55);
  animation: service-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes service-pin-in {
  to { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes service-pulse {
  0% { transform: scale(0.55); opacity: 0.9; }
  100% { transform: scale(2.1); opacity: 0; }
}
.leaflet-popup-content-wrapper {
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
  font-family: var(--sans);
}
.leaflet-popup-content {
  margin: 0.75rem 0.9rem;
  font-weight: 700;
  color: var(--royal-deep);
}
.leaflet-popup-content small {
  display: block;
  margin-top: 0.15rem;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.78rem;
}
.leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.82) !important;
  font-size: 9px !important;
}
.leaflet-maplibre-gl,
.maplibregl-map {
  width: 100%;
  height: 100%;
}
.maplibregl-ctrl-attrib {
  display: none;
}
.service-map-active {
  position: absolute;
  z-index: 5;
  left: max(1.15rem, calc((100vw - 1240px) / 2));
  bottom: 1.15rem;
  max-width: min(320px, calc(100% - 2rem));
  padding: 0.95rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  animation: service-pop 0.35s var(--ease);
}
.service-map-active .kicker { color: var(--gold-deep); margin-bottom: 0.15rem; }
.service-map-active strong {
  display: block;
  font-size: 1.2rem;
  color: var(--royal-deep);
  letter-spacing: -0.03em;
}
.service-map-active span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.86rem;
}
@keyframes service-pop {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-find-wrap {
  margin-top: -2.4rem;
  position: relative;
  z-index: 4;
}
.service-find-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(18, 42, 122, 0.1);
  box-shadow: 0 28px 70px rgba(7, 20, 61, 0.14);
  padding: clamp(1.2rem, 3vw, 1.8rem);
}
.service-find-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 55%;
  height: 90%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.08), transparent 70%);
  animation: find-glow 7s ease-in-out infinite alternate;
}
.service-find-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 35%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: find-sheen 6.5s ease-in-out infinite;
}
.service-find-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 1rem 1.4rem;
  align-items: end;
  margin-bottom: 0.85rem;
}
.service-find-head .kicker {
  margin: 0 0 0.25rem;
  color: var(--gold-deep);
  animation: find-kicker 3.2s ease-in-out infinite;
}
.service-find-head h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  color: var(--royal-deep);
  letter-spacing: -0.03em;
}
.service-find-head p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.service-search {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  border-radius: 14px;
  background: var(--mist);
  border: 1px solid rgba(18, 42, 122, 0.1);
  animation: find-search-breathe 3.6s ease-in-out infinite;
}
.service-search svg {
  width: 18px;
  height: 18px;
  color: var(--royal);
  flex-shrink: 0;
  animation: find-search-icon 2.4s ease-in-out infinite;
}
.service-search input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;
  min-height: 36px;
  font-weight: 600;
}
.service-search input::placeholder { color: #98a2b3; font-weight: 500; }
.service-search-meta {
  position: relative;
  z-index: 1;
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}
.service-area-grid {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}
.service-coverage.is-compact .service-area-grid {
  max-height: 280px;
  overflow: auto;
  padding-right: 0.15rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(18, 42, 122, 0.25) transparent;
}
.service-area-card {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  text-align: left;
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(18, 42, 122, 0.08);
  background: #f8fafd;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
  animation: find-card-float 5.5s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.12s);
}
.service-area-card:hover,
.service-area-card.is-active {
  background: #fff;
  border-color: rgba(18, 42, 122, 0.2);
  box-shadow: 0 10px 24px rgba(18, 42, 122, 0.08);
  transform: translateY(-2px);
  animation-play-state: paused;
}
.service-area-card.is-active {
  border-color: var(--royal-mid);
  background: #f0f4ff;
}
.service-area-card.is-hub {
  background: linear-gradient(135deg, #fff8e6, #fff);
  border-color: rgba(201, 162, 39, 0.35);
}
.service-area-card.is-hub .service-area-dot {
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(201, 162, 39, 0.22);
  animation-name: find-dot-pulse-gold;
}
@keyframes find-dot-pulse-gold {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.16); transform: scale(1); }
  50% { box-shadow: 0 0 0 7px rgba(201, 162, 39, 0.28); transform: scale(1.08); }
}
.service-area-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.14);
  flex-shrink: 0;
  animation: find-dot-pulse 2.8s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.09s);
}
.service-area-copy strong {
  display: block;
  font-size: 0.95rem;
  color: var(--royal-deep);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.service-area-copy small {
  display: inline-block;
  margin-top: 0.18rem;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.16);
  color: #8a6a12;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-area-card:not(.is-hub) .service-area-copy {
  display: flex;
  align-items: center;
}
.service-area-go {
  color: var(--royal-mid);
  font-weight: 800;
  opacity: 0.35;
  transition: opacity 0.2s, transform 0.2s var(--ease);
  animation: find-arrow 2.2s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.08s);
}
.service-area-card:hover .service-area-go,
.service-area-card.is-active .service-area-go {
  opacity: 1;
  transform: translateX(3px);
  animation: none;
}
.service-area-grid li[hidden] { display: none; }
.service-map-more {
  position: relative;
  z-index: 1;
  margin: 1.1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.service-map-more .btn { min-width: 160px; }

@keyframes find-glow {
  from { transform: translate(0, 0) scale(1); opacity: 0.55; }
  to { transform: translate(28%, 12%) scale(1.15); opacity: 1; }
}
@keyframes find-sheen {
  0%, 35% { transform: translateX(0); opacity: 0; }
  45% { opacity: 0.7; }
  60% { transform: translateX(380%); opacity: 0; }
  100% { transform: translateX(380%); opacity: 0; }
}
@keyframes find-kicker {
  0%, 100% { opacity: 0.75; letter-spacing: 0.06em; }
  50% { opacity: 1; letter-spacing: 0.1em; }
}
@keyframes find-search-breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); border-color: rgba(18, 42, 122, 0.1); }
  50% { box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08); border-color: rgba(37, 99, 235, 0.28); }
}
@keyframes find-search-icon {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.08); opacity: 1; }
}
@keyframes find-card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}
@keyframes find-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12); transform: scale(1); }
  50% { box-shadow: 0 0 0 7px rgba(37, 99, 235, 0.2); transform: scale(1.08); }
}
@keyframes find-arrow {
  0%, 100% { transform: translateX(0); opacity: 0.28; }
  50% { transform: translateX(3px); opacity: 0.55; }
}

.service-areas-page { padding-top: 1.2rem; }
.service-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}
.service-grid li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(18, 42, 122, 0.08);
  box-shadow: 0 8px 22px rgba(18, 42, 122, 0.04);
  transition: transform 0.22s var(--ease), border-color 0.22s, box-shadow 0.22s;
}
.service-grid li:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 42, 122, 0.18);
  box-shadow: 0 14px 28px rgba(18, 42, 122, 0.1);
}
.service-grid li.is-hub {
  background: linear-gradient(135deg, #fff8e6, #fff);
  border-color: rgba(201, 162, 39, 0.35);
}
.service-grid-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--royal-bright);
  flex-shrink: 0;
}
.service-grid li.is-hub .service-grid-dot { background: var(--gold); }
.service-grid strong {
  font-size: 0.92rem;
  color: var(--royal-deep);
  letter-spacing: -0.02em;
}
.service-grid small {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.stat-row strong { display: block; font-size: 1.6rem; color: var(--royal); }
.stat-row span { color: var(--muted); font-size: 0.86rem; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 2.2rem;
}
.about-stats div {
  text-align: center;
  background: #fff;
  border: 1px solid rgba(18, 42, 122, 0.08);
  border-radius: 20px;
  padding: 1.15rem 0.8rem 1.05rem;
  box-shadow: 0 12px 32px rgba(7, 20, 61, 0.07);
}
.about-stats strong {
  display: block;
  font-size: 1.45rem;
  color: var(--royal-deep);
}
.about-stats span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.about-board {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: center;
  background: linear-gradient(145deg, #1c45b8 0%, #122a7a 48%, #0b1d5c 100%);
  color: #fff;
  border-radius: 32px;
  padding: clamp(1.4rem, 4vw, 2.3rem);
  box-shadow: 0 22px 50px rgba(18, 42, 122, 0.22);
  overflow: hidden;
}
.about-mark {
  background: #050d24;
  border-radius: 24px;
  padding: clamp(1.3rem, 3vw, 2.1rem);
  display: grid;
  place-items: center;
  min-height: 240px;
}
.about-mark img {
  width: min(100%, 400px);
  height: auto;
  display: block;
}
.about-board .kicker { color: #efd36a; }
.about-board h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  max-width: 16ch;
  color: #fff;
  margin: 0.15rem 0 0.7rem;
}
.about-board-copy > p { color: #d7e2ff; margin: 0 0 0.75rem; }
.about-meta {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.about-meta li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(239, 211, 106, 0.18);
  border-radius: 16px;
  padding: 0.85rem 0.95rem;
}
.about-meta strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
}
.about-meta span {
  display: block;
  margin-top: 0.15rem;
  color: #c9d4f5;
  font-size: 0.8rem;
  font-weight: 500;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.85rem;
  align-items: stretch;
}
.about-gallery figure {
  position: relative;
  margin: 0;
}
.about-gallery img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(7, 20, 61, 0.14);
  display: block;
}
.about-gallery figure:first-child img { aspect-ratio: 16 / 11; }
.about-gallery figure:last-child img { aspect-ratio: 4 / 5; }
.about-gallery figcaption {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  margin: 0;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  background: rgba(7, 20, 61, 0.62);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews {
  background: linear-gradient(160deg, #07143d, #122a7a);
  color: #fff;
  overflow: hidden;
}
.review-summary { margin: 0.4rem 0 0; color: #c9d4f5; }
.review-marquee {
  position: relative;
  margin: 0.4rem 0 1.4rem;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.review-row {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  padding: 0.45rem 0;
}
.review-row.is-dragging { cursor: grabbing; }
.review-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.review-set {
  display: flex;
  flex-shrink: 0;
  gap: 1rem;
  padding-inline: 0.5rem;
}
.review {
  flex: none;
  width: min(360px, 82vw);
  background: #fff;
  color: var(--ink);
  padding: 1.2rem 1.25rem 1.1rem;
  border-radius: 22px;
  min-height: 196px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 28px rgba(7, 20, 61, 0.18);
}
.review q {
  font-size: 1.02rem;
  quotes: none;
  font-weight: 600;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.review footer {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.review footer img,
.review-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex: none;
}
.review-av {
  display: grid;
  place-items: center;
  background: #e8eefc;
  color: var(--royal);
  font-weight: 800;
  font-size: 0.92rem;
}
.stars { color: var(--gold); letter-spacing: 0.05em; margin-bottom: 0.45rem; }
.review-static {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: min(1180px, calc(100% - var(--pad) * 2));
  margin: 0 auto 1.4rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: start;
}
.faq-list { display: grid; gap: 0.7rem; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.15rem 1.1rem;
  background: #fff;
}
.faq-list summary { cursor: pointer; font-weight: 700; padding: 0.95rem 0; }
.faq-list details p { margin: 0 0 1rem; color: var(--ink-soft); }
.faq-visual {
  position: sticky;
  top: calc(var(--top-h) + var(--nav-h) + 1rem);
  background: linear-gradient(180deg, #f7f9fd, #eef2f8);
  border: 1px solid rgba(18, 42, 122, 0.08);
  border-radius: 28px;
  padding: 1.15rem 1.25rem 1.35rem;
  box-shadow: 0 16px 40px rgba(18, 42, 122, 0.08);
}
.faq-scene {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(18, 42, 122, 0.06);
}
.faq-scene svg { display: block; width: 100%; height: auto; }
.faq-scene img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.faq-fibre {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: faq-draw 4.8s ease-in-out infinite;
}
.faq-dot { animation: faq-pulse 4.8s ease-in-out infinite; }
.faq-led { animation: faq-blink 1.6s ease-in-out infinite; }
.faq-wifi {
  transform-origin: 232px 148px;
  animation: faq-wifi 2.4s ease-out infinite;
}
.faq-wifi-2 { animation-delay: 0.45s; }
.faq-visual h3 { font-size: 1.55rem; margin: 0.15rem 0 0.55rem; }
.faq-visual > p { margin: 0 0 1rem; color: var(--ink-soft); }
.faq-visual-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1rem;
}
.faq-visual-cta .btn { min-height: 46px; }
.faq-visual-meta {
  list-style: none;
  margin: 0;
  padding: 0.85rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  border-top: 1px solid var(--line);
  color: #4b5c86;
  font-size: 0.86rem;
  font-weight: 700;
}
@keyframes faq-draw {
  0% { stroke-dashoffset: 220; }
  45% { stroke-dashoffset: 0; }
  75% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 220; }
}
@keyframes faq-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}
@keyframes faq-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}
@keyframes faq-wifi {
  0% { opacity: 0; }
  30% { opacity: 1; }
  100% { opacity: 0; }
}

.book {
  background: linear-gradient(180deg, #fff 0%, #f5f7fb 18%, #eef2f8 100%);
  padding: 0 0 clamp(3rem, 6vw, 4.6rem);
  scroll-margin-top: 96px;
}
.book .pair-grid { margin-bottom: 1.15rem; }
.pair-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.pair-card {
  position: relative;
  border-radius: 26px;
  padding: 1.55rem 1.6rem 1.45rem;
  background: #fff;
  border: 1px solid rgba(18, 42, 122, 0.08);
  box-shadow: 0 12px 32px rgba(18, 42, 122, 0.06);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "ico kicker"
    "ico title"
    "copy copy"
    "btn btn";
  column-gap: 0.9rem;
  align-content: start;
}
.pair-ico {
  grid-area: ico;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #eef3fb;
  color: var(--royal);
  margin-top: 0.15rem;
}
.pair-ico svg { width: 22px; height: 22px; }
.pair-card .kicker { grid-area: kicker; margin: 0; }
.pair-card h3 {
  grid-area: title;
  font-size: 1.55rem;
  margin: 0.12rem 0 0;
}
.pair-card p {
  grid-area: copy;
  color: var(--ink-soft);
  margin: 0.7rem 0 1.05rem;
}
.pair-card > .btn { grid-area: btn; justify-self: start; }
.pair-actions {
  grid-area: btn;
  display: grid;
  gap: 0.7rem;
  justify-items: start;
}
.pair-actions .store-badges { margin: 0; }
.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin: 0.85rem 0 0;
}
.store-badges a { line-height: 0; }
.store-badges img {
  height: 40px;
  width: auto;
  display: block;
}
.store-badges-lg { margin: 0.2rem 0 0.85rem; }
.store-badges-lg img { height: 48px; }
.store-badges-xl { margin: 1.15rem 0 0.7rem; }
.store-badges-xl img { height: 54px; }
.pair-card.dark {
  background: linear-gradient(145deg, #1c45b8 0%, #122a7a 52%, #0b1d5c 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 16px 40px rgba(18, 42, 122, 0.22);
}
.pair-card.dark .pair-ico { background: rgba(255,255,255,.12); color: #efd36a; }
.pair-card.dark .kicker { color: #efd36a; }
.pair-card.dark h3 { color: #fff; }
.pair-card.dark p { color: #d7e2ff; }

.visit-board {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: stretch;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(18, 42, 122, 0.08);
  box-shadow: 0 18px 50px rgba(18, 42, 122, 0.08);
}
.visit-copy {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  padding: clamp(1.25rem, 3vw, 1.85rem);
}
.visit-head h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  max-width: 18ch;
  margin: 0.15rem 0 0.55rem;
  line-height: 1.18;
  color: var(--royal-deep);
}
.visit-copy address {
  font-style: normal;
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
}
.visit-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
}
.visit-phones a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: #eef3fb;
  color: var(--royal);
  font-weight: 800;
  font-size: 0.92rem;
}
.visit-phones a.is-wa { background: var(--green); color: #fff; }
.visit-head .coverage-cta { margin-top: 1rem; }
.about-visit .visit-copy { justify-content: center; min-height: 320px; }
.visit-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 0.8rem;
  margin: 0;
  padding: 1rem;
  background: var(--mist);
  border-radius: 20px;
  scroll-margin-top: 96px;
}
.visit-form .btn,
.visit-form .form-note,
.visit-form [data-form-status] { grid-column: 1 / -1; }
.visit-form .btn { width: 100%; }

.map-wrap { position: relative; min-height: 280px; }
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}
.visit-board .map-wrap { min-height: 100%; }
.visit-board .map-wrap iframe {
  position: absolute;
  inset: 0;
  min-height: 0;
}
.map-open {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  background: #fff;
  color: var(--royal);
  font-weight: 800;
  font-size: 0.82rem;
  min-height: 40px;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(7, 20, 61, 0.16);
}
.map-tall { min-height: 480px; margin-bottom: 2rem; }
.map-tall .map-wrap,
.map-tall iframe { min-height: 480px; }

.app-grid, .include-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.include-grid-4 { grid-template-columns: repeat(4, 1fr); }
.app-card, .include-card {
  border-radius: 22px;
  padding: 1.4rem;
  background: #fff;
  box-shadow: 0 12px 32px rgba(7,20,61,.07);
}
.app-card h2 { font-size: 1.45rem; }

.app-store { padding-top: 1.2rem; }
.app-listing {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.6rem;
  align-items: center;
  background: linear-gradient(145deg, #1c45b8 0%, #122a7a 48%, #0b1d5c 100%);
  color: #fff;
  border-radius: 32px;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: 0 22px 50px rgba(18, 42, 122, 0.22);
  overflow: hidden;
}
.app-listing .kicker { color: #efd36a; }
.app-listing h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  max-width: 16ch;
  color: #fff;
  margin: 0.15rem 0 0.7rem;
}
.app-listing-copy > p { color: #d7e2ff; margin: 0 0 1rem; }
.app-listing-copy a { color: #fff; }
.app-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
}
.app-chips li {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}
.app-listing-note { font-size: 0.92rem; margin: 0; }
.app-phone {
  justify-self: center;
  width: 210px;
  padding: 12px 12px 18px;
  border-radius: 36px;
  background: #07122e;
  box-shadow: 0 18px 40px rgba(4, 10, 28, 0.35);
}
.app-phone-screen {
  background: linear-gradient(180deg, #f7f9fd, #eef2f8);
  border-radius: 26px;
  min-height: 340px;
  padding: 2rem 1.1rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--royal-deep);
}
.app-phone-screen img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #fff;
  margin-bottom: 0.85rem;
}
.app-phone-screen strong { font-size: 1.25rem; }
.app-phone-screen span { color: #5d6b8a; font-size: 0.86rem; margin: 0.15rem 0 1.1rem; }
.app-phone-screen ul {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  width: 100%;
  display: grid;
  gap: 0.45rem;
}
.app-phone-screen li {
  background: #fff;
  border-radius: 12px;
  padding: 0.55rem 0.7rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--royal);
  box-shadow: 0 8px 18px rgba(18, 42, 122, 0.06);
}
.app-alt {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.15rem 0;
}
.app-alt-card {
  background: #fff;
  border-radius: 22px;
  padding: 1.25rem 1.3rem 1.2rem;
  border: 1px solid rgba(18, 42, 122, 0.08);
  box-shadow: 0 12px 32px rgba(18, 42, 122, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.app-alt-card h3 { font-size: 1.25rem; margin: 0.1rem 0 0.45rem; color: var(--royal-deep); }
.app-alt-card p { color: var(--ink-soft); margin: 0 0 0.9rem; flex: 1; }
.app-alt-card span { color: var(--royal); font-weight: 800; font-size: 0.92rem; }
.app-alt-card:hover span { color: var(--royal-mid); }
.app-new {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.4rem;
  background: #fff;
  border-radius: 24px;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(18, 42, 122, 0.08);
}
.app-new h3 { margin: 0.1rem 0 0.35rem; font-size: 1.3rem; color: var(--royal-deep); }
.app-new p { margin: 0; color: var(--ink-soft); max-width: 46ch; }
.include-card h3 { font-size: 1.25rem; margin: 0.2rem 0 0.55rem; color: var(--royal-deep); }
.include-card p { margin: 0; color: var(--ink-soft); }
.include-card a {
  display: inline-flex;
  margin-top: 0.75rem;
  color: var(--royal);
  font-weight: 700;
}
.include-card a:hover { color: var(--royal-mid); }

.plan-book {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.4rem;
  align-items: center;
  background: #fff;
  border-radius: 28px;
  padding: clamp(1.25rem, 3vw, 1.85rem);
  border: 1px solid rgba(18, 42, 122, 0.08);
  box-shadow: 0 18px 50px rgba(18, 42, 122, 0.08);
}
.plan-book h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  max-width: 14ch;
  color: var(--royal-deep);
}
.plan-book .visit-head p { color: var(--ink-soft); }

.page-hero {
  padding: clamp(2.6rem, 6vw, 4.4rem) 0 1.2rem;
  background:
    radial-gradient(600px 180px at 80% 0%, rgba(201,162,39,.16), transparent 60%),
    linear-gradient(180deg, #eef1fb, #fff 78%);
}
.page-hero h1 { max-width: 22ch; color: var(--royal-deep); }
.page-hero .lede { color: var(--ink-soft); }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.4rem;
  align-items: start;
}
.contact-panel {
  background: var(--mist);
  border-radius: 24px;
  padding: 1.5rem;
}
.contact-panel h2 { font-size: 1.6rem; color: var(--royal-deep); }

.form { display: grid; gap: 0.85rem; }
.field { display: grid; gap: 0.32rem; }
.field label { font-size: 0.86rem; font-weight: 700; }
.field input, .field select, .field textarea {
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 0 0.9rem;
  background: #fff;
}
.field textarea {
  min-height: 120px;
  padding: 0.8rem 0.9rem;
  resize: vertical;
}
.visit-form .field-full { grid-column: 1 / -1; }
.form-note { color: var(--muted); font-size: 0.88rem; margin: 0; }
.form-ok, .form-err { padding: 0.7rem 0.85rem; border-radius: 12px; font-weight: 700; }
.form-ok { background: #e8f6ec; color: var(--green-deep); }
.form-err { background: #fdecea; color: #b71c1c; }


.legal { width: min(820px, calc(100% - var(--pad) * 2)); margin: 0 auto 4rem; }
.legal h2 { font-size: 1.35rem; margin: 1.5rem 0 0.5rem; }
.legal p, .legal li { color: var(--ink-soft); }

.site-footer {
  background:
    radial-gradient(720px 220px at 8% 0%, rgba(201, 162, 39, 0.14), transparent 58%),
    linear-gradient(180deg, #0b1d5c 0%, var(--royal-deep) 42%);
  color: #c9d4f5;
  padding: 3.2rem 0 6.4rem;
  border-top: 1px solid rgba(201, 162, 39, 0.22);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 1.05fr;
  gap: 2.2rem 1.8rem;
  align-items: start;
}
.foot-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  color: #fff;
}
.foot-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
}
.foot-logo span { font-size: 1.2rem; font-weight: 800; line-height: 1.05; }
.foot-logo small {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9d4f5;
  font-weight: 600;
}
.site-footer .kicker { margin-bottom: 0.2rem; }
.site-footer h3 { color: #fff; margin: 0 0 0.75rem; font-size: 1.2rem; }
.site-footer p { margin: 0 0 0.7rem; }
.foot-gst { font-size: 0.88rem; color: #9aabd8; }
.foot-mail { color: #fff; font-weight: 600; word-break: break-word; }
.foot-mail:hover { color: var(--gold-soft); }
.foot-cta { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1.05rem 0 0; }
.foot-cta .btn { min-height: 42px; padding-inline: 1rem; }
.site-footer address {
  font-style: normal;
  margin: 0 0 0.9rem;
  line-height: 1.5;
}
.foot-phones { display: grid; gap: 0.2rem; margin: 0 0 0.85rem; }
.foot-phones a { color: #fff; font-weight: 800; font-size: 1.05rem; }
.foot-phones a:hover,
.foot-maps:hover,
.foot-links a:hover { color: var(--gold-soft); }
.foot-maps {
  display: inline-flex;
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 0.92rem;
}
.foot-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.foot-nav .store-badges {
  grid-column: 1 / -1;
  margin: 0.35rem 0 0;
}
.foot-links { display: grid; gap: 0.38rem; }
.foot-links a { color: #c9d4f5; }
.foot-odometer {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 2rem auto 0;
  padding: 0.55rem 0.65rem;
  gap: 0.35rem;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}
.foot-odo-digit {
  position: relative;
  width: 2.05rem;
  height: 2.45rem;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, #1a3ea8 0%, #122a7a 100%);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.18);
}
.foot-odo-digit::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 35%, transparent 65%, rgba(0,0,0,0.18));
}
.foot-odo-reel {
  display: flex;
  flex-direction: column;
  will-change: transform;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(0);
}
.foot-odo-reel span {
  display: grid;
  place-items: center;
  height: 2.45rem;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
@media (max-width: 640px) {
  .foot-odo-digit {
    width: 1.75rem;
    height: 2.15rem;
  }
  .foot-odo-reel span {
    height: 2.15rem;
    font-size: 1.15rem;
  }
}
.foot-base {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-top: 2.2rem;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 0.86rem;
}
.foot-base span:last-child { text-align: right; }
.foot-credit {
  color: var(--gold-soft);
  font-weight: 600;
  white-space: nowrap;
}
.foot-credit strong { font-weight: 800; }
.foot-credit:hover { color: #fff; }

.dock {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  grid-template-columns: 1fr 1fr 1fr;
  background: #fff;
  border-top: 1px solid var(--line);
}
.dock a { padding: 0.9rem 0.4rem 1.05rem; text-align: center; font-weight: 800; }
.dock-call { color: var(--royal); }
.dock-wa { color: var(--green-deep); }
.dock-pay { color: var(--gold-deep); }

.wa-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.2rem;
  z-index: 76;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(31,157,76,.4);
  font-size: 0;
}
.wa-fab svg { width: 28px; height: 28px; }
.wa-fab:hover { transform: scale(1.06); }

@media (max-width: 1020px) {
  .nav-links, .header-actions .btn-account { display: none; }
  .header-actions { display: flex; margin-left: auto; }
  .header-actions .btn-pay { min-height: 40px; padding-inline: 0.9rem; font-size: 0.88rem; }
  .menu-toggle { display: flex; margin-left: 0.35rem; }
  .topbar-tag { font-size: 0.72rem; }
  .topbar-right { gap: 0.55rem; }
  .topbar-gst { padding-left: 0.55rem; font-size: 0.72rem; }
  .hero-grid, .intro-grid, .visit-board, .contact-grid, .pair-grid, .foot-grid, .faq-grid, .coverage-grid, .plan-book, .app-listing, .about-board, .about-gallery {
    grid-template-columns: 1fr;
  }
  .foot-base {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .foot-base span:last-child { text-align: center; }
  .visit-board .map-wrap { min-height: 280px; }
  .visit-board .map-wrap iframe {
    position: relative;
    min-height: 280px;
  }
  .visit-head h2 { max-width: none; }
  .coverage-poster { max-width: 420px; margin-inline: auto; }
  .service-map-bleed { height: min(420px, 52vh); }
  .service-map-overlay { left: 1rem; right: 1rem; }
  .service-map-active { left: 1rem; max-width: min(280px, calc(100% - 2rem)); }
  .service-find-wrap { margin-top: -1.6rem; }
  .service-find-head { grid-template-columns: 1fr; }
  .service-area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .about-gallery { max-width: 520px; margin-inline: auto; }
  .about-gallery figure:first-child img,
  .about-gallery figure:last-child img { aspect-ratio: 16 / 10; min-height: 0; }
  .about-board h2 { max-width: none; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .coverage-cta { justify-content: center; }
  .hero {
    text-align: center;
    padding: 2.4rem 0 3rem;
  }
  .hero-grid { gap: 1.8rem; }
  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero h1 { max-width: 14ch; margin-inline: auto; }
  .hero .lede { margin-inline: auto; max-width: 32rem; }
  .hero-lead {
    width: 100%;
    max-width: 26rem;
    margin-inline: auto;
    grid-template-columns: 1fr;
    padding: 0.85rem;
    gap: 0.7rem;
  }
  .why-grid, .app-grid, .include-grid-4, .app-alt {
    grid-template-columns: 1fr 1fr;
  }
  .plan-offer { grid-template-columns: 1fr; }
  .plan-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .roadmap {
    grid-template-columns: 1fr;
    padding-left: 0.2rem;
  }
  .roadmap::before,
  .roadmap::after {
    left: 26px;
    right: auto;
    top: 27px;
    bottom: 27px;
    width: 3px;
    height: auto;
  }
  .roadmap::after {
    transform: scaleY(0);
    transform-origin: top;
    background: linear-gradient(180deg, var(--gold), var(--royal-mid));
    animation-name: roadmap-draw-y;
  }
  .roadmap li {
    display: grid;
    grid-template-columns: 54px 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    text-align: left;
    padding: 0 0 1.8rem;
  }
  .roadmap li:last-child { padding-bottom: 0; }
  .roadmap-node {
    grid-row: 1 / span 2;
    margin: 0;
  }
  .plan-card.featured { transform: none; }
  .dock { display: grid; }
  .wa-fab { bottom: 4.6rem; }
  body { padding-bottom: 4.6rem; }
}

@media (max-width: 640px) {
  .topbar { display: flex; height: auto; min-height: 32px; padding: 0.35rem 0; }
  body { padding-top: calc(32px + var(--nav-h)); }
  .site-header { top: 32px; }
  .mobile-nav { top: calc(32px + var(--nav-h)); }
  .topbar-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 0.7rem;
    text-align: center;
  }
  .topbar-tag { display: none; }
  .topbar-right {
    width: 100%;
    justify-content: center;
    gap: 0.55rem;
  }
  .topbar-gst {
    border-left: 0;
    padding-left: 0;
    color: #9eb0de;
  }
  .topbar-phones { font-size: 0.8rem; }
  .hero { padding: 1.8rem 0 2.6rem; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.35rem); }
  .hero .lede { font-size: 0.98rem; }
  .hero-meta { font-size: 0.86rem; margin-bottom: 1.1rem; }
  .hero-lead { padding: 0.95rem; gap: 0.75rem; }
  .hero-lead input, .hero-lead .btn { min-height: 50px; }
  .plan-cards, .app-grid, .include-grid, .include-grid-4, .stat-row, .app-alt {
    grid-template-columns: 1fr;
  }
  .about-meta { grid-template-columns: 1fr; }
  .review-static { grid-template-columns: 1fr; }
  .area-chips { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-area-grid { grid-template-columns: 1fr; }
  .service-map-overlay {
    flex-direction: column;
    align-items: flex-start;
    left: 0.85rem;
    right: 0.85rem;
  }
  .service-map-tools { justify-content: flex-start; }
  .service-find-card { border-radius: 22px; padding: 1.05rem; }
  .service-map-more .btn { width: 100%; }
  .visit-form { grid-template-columns: 1fr; }
  .foot-nav { grid-template-columns: 1fr 1fr; }
  .pair-card {
    grid-template-columns: auto 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 0.7rem;
  }
  .why-ico { width: 64px; height: 64px; margin-bottom: 0.7rem; }
  .why-ico svg { width: 26px; height: 26px; }
  .why-grid h3 { font-size: 0.95rem; }
  .why-grid p { font-size: 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; }
  .plan-card, .btn { transition: none; }
  .roadmap-node, .roadmap::after { animation: none; transform: none; }
  .faq-fibre, .faq-dot, .faq-led, .faq-wifi { animation: none; opacity: 1; stroke-dashoffset: 0; }
  .service-pin-inner, .service-pin-pulse, .service-map-active { animation: none; }
  .service-pin-inner { opacity: 1; transform: none; }
  .service-find-card::before,
  .service-find-card::after,
  .service-find-head .kicker,
  .service-search,
  .service-search svg,
  .service-area-card,
  .service-area-dot,
  .service-area-go { animation: none; }
  .foot-odo-reel { transition: none !important; }
}
