:root {
  --blue: #0b4cff;
  --blue-dark: #073bd1;
  --ink: #080a0d;
  --ink-soft: #11151b;
  --text: #15181d;
  --muted: #646b78;
  --muted-light: #a7adb8;
  --line: #e4e7ed;
  --line-dark: #272d37;
  --soft: #f5f7fa;
  --white: #ffffff;
  --success: #087d4e;
  --radius: 14px;
  --container: 1536px;
  --gutter: clamp(22px, 4vw, 60px);
  --section: clamp(88px, 10vw, 156px);
  --shadow: 0 18px 50px rgba(11, 25, 55, 0.1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Inter, "Segoe UI Variable", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

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

:target {
  scroll-margin-top: 88px;
}

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

button,
select {
  cursor: pointer;
}

::selection {
  background: var(--blue);
  color: var(--white);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 14px;
  z-index: 200;
  padding: 11px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section);
  scroll-margin-top: 72px;
}

.section--soft {
  background: var(--soft);
}

.section--dark {
  background: var(--ink);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 88px;
  background: rgba(255, 255, 255, 0.96);
  transition: height 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  box-shadow: 0 1px 0 var(--line), 0 10px 35px rgba(15, 26, 48, 0.05);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(max-content, 1fr) auto minmax(max-content, 1fr);
  align-items: center;
  height: 100%;
}

.brand {
  justify-self: start;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 34px);
}

.main-nav a {
  position: relative;
  padding-block: 10px;
  color: #2a2d33;
  font-size: 15px;
  font-weight: 520;
}

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

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.nav-utilities {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 2px;
}

.main-nav .nav-selfcare,
.main-nav .nav-paybill {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.main-nav .nav-selfcare {
  border-radius: 10px;
  background: var(--blue);
  color: var(--white);
}

.main-nav .nav-selfcare::after {
  display: none;
}

.main-nav .nav-selfcare:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.main-nav .nav-paybill {
  border: 1px solid #cfd5e0;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.main-nav .nav-paybill:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.menu-toggle svg {
  width: 26px;
  height: 26px;
  margin: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button--secondary {
  border-color: #cfd5e0;
  background: var(--white);
  color: var(--ink);
}

.button--secondary:hover {
  border-color: var(--blue);
  background: var(--white);
  color: var(--blue);
}

.button--dark-outline {
  border-color: #4f5c72;
  background: transparent;
  color: var(--white);
}

.button--dark-outline:hover {
  border-color: var(--blue);
  background: rgba(11, 76, 255, 0.12);
}

.button--small {
  min-height: 46px;
  padding-inline: 19px;
}

.button .icon,
.text-link .icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.button:hover .icon,
.text-link:hover .icon {
  transform: translateX(3px);
}

.button:focus-visible,
.main-nav a:focus-visible,
.main-nav button:focus-visible,
.brand:focus-visible,
.text-link:focus-visible,
.menu-toggle:focus-visible,
.plan-action:focus-visible,
.dialog-close:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(11, 76, 255, 0.32);
  outline-offset: 3px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  color: var(--blue);
  font-weight: 650;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.display,
.page-title,
.section-title {
  margin: 0;
  color: var(--ink);
  font-weight: 720;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.display {
  max-width: 730px;
  font-size: clamp(58px, 7.1vw, 112px);
}

.page-title {
  max-width: 900px;
  font-size: clamp(54px, 6.2vw, 94px);
}

.section-title {
  max-width: 800px;
  font-size: clamp(44px, 5.4vw, 78px);
}

.section-title--small {
  font-size: clamp(38px, 4.2vw, 62px);
}

.section-intro {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.5;
}

.section--dark .section-title,
.section--dark .page-title,
.dark-surface .section-title,
.dark-surface .page-title {
  color: var(--white);
}

.section--dark .section-intro,
.dark-surface .section-intro {
  color: #b9bfca;
}

.home-hero {
  position: relative;
  min-height: min(780px, calc(100vh - 20px));
  overflow: hidden;
  background: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0 0 0 38%;
  width: 62%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  pointer-events: none;
  animation: fiber-drift 10s ease-in-out infinite alternate;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, #fff 33%, rgba(255,255,255,.94) 40%, rgba(255,255,255,.2) 56%, transparent 66%);
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(690px, calc(100vh - 110px));
  align-items: center;
  padding-block: 80px 100px;
}

.hero-copy {
  width: min(58%, 760px);
}

.hero-copy > p {
  max-width: 590px;
  margin: 30px 0 0;
  color: #3e434d;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 36px;
}

.local-strip {
  position: relative;
  z-index: 3;
  margin-top: -84px;
}

.local-strip-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  min-height: 168px;
  padding: 35px clamp(30px, 4vw, 64px);
  border-radius: 18px 18px 0 0;
  background: var(--soft);
}

.local-strip h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 48px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.local-strip p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .7fr);
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(52px, 7vw, 96px);
}

.split-head .section-intro {
  margin: 0;
}

.signal-list {
  border-top: 1px solid var(--line);
}

.signal-item {
  display: grid;
  grid-template-columns: 72px minmax(220px, .85fr) minmax(260px, 1fr);
  gap: 24px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.signal-number {
  color: var(--blue);
  font-size: 14px;
  font-weight: 750;
}

.signal-item h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 36px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.signal-item p {
  max-width: 540px;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.plans-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 54px;
}

.plans-header .section-intro {
  max-width: 520px;
}

.plan-list {
  border-top: 1px solid var(--line);
}

.plan-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, .75fr) minmax(200px, .75fr) minmax(190px, .8fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 88px;
  padding: 16px 12px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, color 180ms ease;
}

.plan-row:hover,
.plan-row.is-featured {
  background: #f2f6ff;
}

.plan-row.is-featured::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--blue);
  content: "";
}

.plan-speed {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 650;
  letter-spacing: -0.04em;
}

.plan-price {
  color: var(--ink);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 720;
  letter-spacing: -0.04em;
}

.plan-price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.plan-note {
  color: var(--muted);
  font-size: 14px;
}

.plan-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 166px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #9fb3ff;
  border-radius: 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 650;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.plan-row:hover .plan-action,
.plan-row.is-featured .plan-action {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.plan-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
}

.plan-footer p {
  max-width: 630px;
  margin: 0;
  color: var(--muted);
}

.feature-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  border-top: 1px solid var(--line);
}

.feature-rail-item {
  position: relative;
  padding: 26px 28px 26px 18px;
  border-bottom: 1px solid var(--line);
  color: #242830;
  font-size: 16px;
}

.feature-rail-item::before {
  position: absolute;
  top: 29px;
  left: 0;
  width: 3px;
  height: 20px;
  background: var(--blue);
  border-radius: 3px;
  content: "";
}

.business-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.business-band .section-title {
  color: var(--white);
}

.business-band .section-intro {
  color: #b9bfca;
}

.business-band-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 54%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: .72;
  pointer-events: none;
}

.business-band-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .7fr);
  gap: clamp(56px, 9vw, 140px);
}

.business-plans {
  margin-top: 60px;
  border-top: 1px solid #31519e;
}

.business-plan {
  display: grid;
  grid-template-columns: 80px 1fr .75fr .75fr;
  gap: 22px;
  align-items: end;
  padding: 24px 0 27px;
  border-bottom: 1px solid #31519e;
}

.business-plan .number {
  align-self: start;
  color: #4c7cff;
  font-size: 14px;
  font-weight: 700;
}

.business-plan h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.business-plan .meta span {
  display: block;
  margin-bottom: 4px;
  color: #aab2bf;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.business-plan .meta strong {
  font-size: clamp(20px, 2.2vw, 31px);
  font-weight: 560;
}

.business-cta {
  margin-top: 38px;
}

.check-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.check-list li {
  position: relative;
  padding: 17px 0 17px 34px;
  border-bottom: 1px solid var(--line-dark);
  color: #e7e9ee;
}

.check-list li::before {
  position: absolute;
  left: 1px;
  top: 22px;
  width: 13px;
  height: 7px;
  border-left: 2px solid #3370ff;
  border-bottom: 2px solid #3370ff;
  content: "";
  transform: rotate(-45deg);
}

.check-list--light {
  border-top-color: var(--line);
}

.check-list--light li {
  border-bottom-color: var(--line);
  color: var(--text);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 10vw, 150px) 0 clamp(88px, 11vw, 170px);
  background: var(--white);
}

.page-hero .section-intro {
  max-width: 720px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.page-hero--dark {
  min-height: 650px;
  background: var(--ink);
  color: var(--white);
}

.page-hero--dark .page-title {
  max-width: 950px;
  color: var(--white);
}

.page-hero--dark .section-intro {
  color: #bec4cf;
}

.page-hero-fiber {
  position: absolute;
  inset: 0 0 0 auto;
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: .62;
}

.page-hero--dark .container {
  position: relative;
  z-index: 2;
}

.page-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
}

.page-kicker::before {
  width: 42px;
  height: 2px;
  background: var(--blue);
  content: "";
}

.page-hero--dark .page-kicker {
  color: #b1b8c4;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 8vw, 130px);
  align-items: start;
}

.coverage-map {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 18px;
  background-color: #eef2f7;
  background-image:
    linear-gradient(25deg, transparent 48%, rgba(154,166,184,.25) 49%, rgba(154,166,184,.25) 51%, transparent 52%),
    linear-gradient(115deg, transparent 48%, rgba(154,166,184,.19) 49%, rgba(154,166,184,.19) 51%, transparent 52%);
  background-size: 190px 150px, 250px 190px;
}

.coverage-map::before,
.coverage-map::after {
  position: absolute;
  border: 1px solid rgba(11, 76, 255, .24);
  border-radius: 50%;
  content: "";
}

.coverage-map::before {
  width: 300px;
  height: 300px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.coverage-map::after {
  width: 450px;
  height: 450px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.map-pin {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 47%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  background: var(--blue);
  box-shadow: 0 18px 35px rgba(11, 76, 255, .28);
  color: var(--white);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin::after {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.map-label {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: calc(47% + 52px);
  width: max-content;
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 650;
  transform: translateX(-50%);
}

.location-block {
  padding-top: 26px;
}

.location-block address {
  margin-top: 42px;
  font-size: clamp(25px, 2.5vw, 38px);
  font-style: normal;
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.28;
}

.location-detail {
  margin-top: 24px;
  color: var(--muted);
}

.steps {
  border-top: 1px solid var(--line);
}

.step {
  display: grid;
  grid-template-columns: 90px minmax(230px, .8fr) minmax(260px, 1fr);
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--blue);
  font-weight: 720;
}

.step h3 {
  margin: 0;
  font-size: clamp(24px, 2.3vw, 34px);
  letter-spacing: -0.035em;
}

.step p {
  margin: 2px 0 0;
  color: var(--muted);
}

.support-lines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
}

.support-line {
  padding: 28px 32px 28px 0;
  border-bottom: 1px solid var(--line);
}

.support-line + .support-line {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.support-line span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.support-line strong,
.support-line a {
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 620;
  letter-spacing: -0.03em;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 28px 56px 28px 0;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 620;
  letter-spacing: -0.03em;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  right: 4px;
  top: 50%;
  color: var(--blue);
  content: "+";
  font-size: 32px;
  font-weight: 350;
  transform: translateY(-50%);
}

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

.faq-list p {
  max-width: 780px;
  margin: -4px 0 28px;
  color: var(--muted);
  font-size: 17px;
}

.order-section {
  background: var(--soft);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
  gap: clamp(50px, 5vw, 80px);
}

.order-copy .section-title {
  font-size: clamp(44px, 4.4vw, 68px);
}

.order-copy .section-intro {
  max-width: 520px;
}

.contact-list {
  margin-top: 48px;
  border-top: 1px solid #d9dee7;
}

.contact-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid #d9dee7;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--blue);
}

.contact-item span,
.contact-item a {
  color: #252930;
  font-size: 16px;
  font-style: normal;
}

.contact-item a:hover {
  color: var(--blue);
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: #2d3138;
  font-size: 14px;
  font-weight: 650;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 14px 15px;
  border: 1px solid #d7dce5;
  border-radius: 12px;
  background: rgba(255, 255, 255, .88);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field input:hover,
.field textarea:hover,
.field select:hover,
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: #99adf2;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  box-shadow: 0 0 0 4px rgba(11, 76, 255, .1);
  outline: none;
}

.form-submit {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 4px;
}

.form-note {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-note svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.portal-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.portal-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 132px;
}

.portal-copy {
  display: flex;
  align-items: center;
  gap: 20px;
}

.portal-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
}

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

.portal-copy strong,
.portal-copy span {
  display: block;
}

.portal-copy strong {
  font-size: 18px;
}

.portal-copy span {
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 24px 0 22px;
  background: #0d1117;
  color: var(--white);
}

.footer-payment-surface {
  display: flex;
  min-height: 72px;
  margin-bottom: 34px;
  padding: 10px clamp(18px, 2.5vw, 32px);
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .14);
}

.footer-payment-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.shurjopay-provider {
  display: inline-flex;
  min-width: 138px;
  align-items: center;
}

.shurjopay-provider img {
  width: 138px;
  height: 34px;
  object-fit: contain;
  object-position: left center;
}

.shurjopay-provider:hover img {
  filter: saturate(1.12);
}

.footer-payment-divider {
  width: 1px;
  height: 30px;
  background: var(--line);
}

.payment-channels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.payment-channel {
  display: grid;
  width: 58px;
  height: 40px;
  overflow: hidden;
  place-items: center;
  border-radius: 9px;
  background: var(--soft);
}

.payment-channel img {
  width: 56px;
  max-width: none;
  height: 56px;
  object-fit: contain;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 60px;
  align-items: start;
  padding-bottom: 30px;
  border-bottom: 1px solid #303744;
}

.footer-brand {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.footer-tagline {
  margin: 8px 0 0;
  color: #aeb5c1;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px 34px;
  padding-top: 10px;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #dfe3ea;
  font-size: 14px;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-top: 20px;
}

.payment-trust,
.copyright {
  margin: 0;
  color: #aeb5c1;
  font-size: 13px;
}

.payment-trust {
  max-width: 690px;
}

.payment-trust strong {
  color: #f2f4f7;
  font-weight: 600;
}

.payment-dialog {
  width: min(92vw, 540px);
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 30px 100px rgba(4, 11, 28, .26);
}

.payment-dialog[open] {
  animation: payment-dialog-in 260ms cubic-bezier(.2, .85, .25, 1) both;
}

.payment-dialog::backdrop {
  background: rgba(3, 8, 19, .56);
  backdrop-filter: blur(6px);
}

.payment-dialog[open]::backdrop {
  animation: payment-backdrop-in 220ms ease both;
}

.payment-dialog.is-closing {
  animation: payment-dialog-out 180ms ease forwards;
}

.payment-dialog.is-closing::backdrop {
  animation: payment-backdrop-out 180ms ease forwards;
}

.dialog-inner {
  padding: clamp(26px, 5vw, 44px);
}

.dialog-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.dialog-top h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.dialog-close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  color: var(--ink);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.dialog-close:hover {
  background: #e8ecf3;
  color: var(--blue);
  transform: rotate(4deg);
}

.dialog-close svg {
  width: 18px;
  height: 18px;
}

.dialog-copy {
  margin: 16px 0 26px;
  color: var(--muted);
}

.bill-form {
  display: grid;
  gap: 18px;
}

.bill-form .button {
  width: 100%;
}

.status-message {
  min-height: 20px;
  margin: 0;
  color: var(--success);
  font-size: 13px;
}

@keyframes payment-dialog-in {
  from { opacity: 0; transform: translateY(18px) scale(.975); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes payment-dialog-out {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(12px) scale(.985); }
}

@keyframes payment-backdrop-in {
  from { background: rgba(3, 8, 19, 0); backdrop-filter: blur(0); }
  to { background: rgba(3, 8, 19, .56); backdrop-filter: blur(6px); }
}

@keyframes payment-backdrop-out {
  from { background: rgba(3, 8, 19, .56); backdrop-filter: blur(6px); }
  to { background: rgba(3, 8, 19, 0); backdrop-filter: blur(0); }
}

@keyframes payment-sheet-in {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes payment-sheet-out {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(100%); }
}

@keyframes fiber-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(1.2%, -0.7%, 0) scale(1.018); }
}

@media (max-width: 1180px) {
  .site-header,
  .site-header.is-scrolled {
    height: 76px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 76px 0 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 16px var(--gutter) 28px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(13, 22, 42, .1);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-utilities {
    display: grid;
    width: 100%;
    margin-top: 18px;
    margin-left: 0;
    gap: 8px;
  }

  .main-nav .nav-selfcare,
  .main-nav .nav-paybill {
    width: 100%;
    min-height: 52px;
    padding: 14px 18px;
    border-bottom: 0;
    font-size: 17px;
  }

  .home-hero {
    min-height: 720px;
  }

  .hero-image {
    left: 32%;
    width: 68%;
    opacity: .72;
  }

  .hero-copy {
    width: 68%;
  }

  .hero-copy > p {
    max-width: 510px;
  }

  .split-head,
  .business-band-inner,
  .order-layout {
    gap: 54px;
  }

  .plan-row {
    grid-template-columns: minmax(150px, .65fr) minmax(180px, .65fr) minmax(150px, .7fr) auto;
  }

  .business-plan {
    grid-template-columns: 48px 1fr 1fr;
  }

  .business-plan .meta:last-child {
    grid-column: 3;
  }

}

@media (max-width: 820px) {
  .home-hero {
    min-height: auto;
  }

  .hero-image {
    inset: auto 0 0 15%;
    width: 100%;
    height: 48%;
    object-position: right bottom;
    opacity: .86;
  }

  .home-hero::after {
    background: linear-gradient(180deg, #fff 0%, #fff 50%, rgba(255,255,255,.84) 63%, rgba(255,255,255,.15) 84%, transparent 100%);
  }

  .hero-inner {
    min-height: 760px;
    align-items: flex-start;
    padding-top: 90px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy > p {
    max-width: 550px;
  }

  .local-strip {
    margin-top: 0;
  }

  .local-strip-inner,
  .split-head,
  .two-column,
  .business-band-inner,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .local-strip-inner {
    gap: 14px;
    border-radius: 0;
  }

  .split-head {
    gap: 24px;
  }

  .signal-item,
  .step {
    grid-template-columns: 56px 1fr;
  }

  .signal-item p,
  .step p {
    grid-column: 2;
  }

  .plans-header {
    display: block;
  }

  .plan-row {
    grid-template-columns: 1fr auto;
    gap: 4px 18px;
    padding: 22px 10px;
  }

  .plan-price {
    text-align: right;
  }

  .plan-note {
    align-self: center;
  }

  .plan-action {
    min-width: 150px;
  }

  .feature-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-band-image {
    width: 85%;
    opacity: .38;
  }

  .business-band-inner {
    gap: 72px;
  }

  .page-hero-fiber {
    width: 100%;
    opacity: .35;
  }

  .support-lines {
    grid-template-columns: 1fr;
  }

  .support-line,
  .support-line + .support-line {
    padding: 24px 0;
    border-left: 0;
  }

  .order-layout {
    gap: 46px;
  }

  .footer-main,
  .footer-bottom {
    display: block;
  }

  .footer-nav {
    justify-content: flex-start;
    margin-top: 32px;
  }

  .copyright {
    margin-top: 18px;
  }
}

@media (max-width: 580px) {
  :root {
    --gutter: 20px;
    --section: 72px;
  }

  .brand {
    font-size: 18px;
  }

  .display {
    font-size: clamp(49px, 15vw, 68px);
  }

  .page-title {
    font-size: clamp(46px, 14vw, 64px);
  }

  .section-title {
    font-size: clamp(40px, 12.2vw, 58px);
  }

  .hero-inner {
    min-height: 720px;
    padding-top: 64px;
  }

  .hero-image {
    left: 6%;
    height: 45%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .local-strip-inner {
    padding-inline: 24px;
  }

  .signal-item,
  .step {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .plan-row {
    grid-template-columns: 1fr auto;
  }

  .plan-note {
    grid-column: 1 / -1;
  }

  .plan-action {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 12px;
  }

  .plan-footer,
  .portal-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-rail {
    grid-template-columns: 1fr;
  }

  .business-plan {
    grid-template-columns: 36px 1fr;
    align-items: start;
  }

  .business-plan .meta,
  .business-plan .meta:last-child {
    grid-column: 2;
  }

  .business-plan .meta strong {
    font-size: 24px;
  }

  .coverage-map {
    min-height: 420px;
  }

  .order-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .order-section {
    padding-block: 68px;
  }

  .order-layout {
    gap: 42px;
  }

  .contact-list {
    margin-top: 34px;
  }

  .field textarea {
    min-height: 106px;
  }

  .field--full,
  .form-submit,
  .form-note {
    grid-column: 1;
  }

  .portal-strip-inner {
    padding-block: 26px;
  }

  .portal-copy {
    align-items: flex-start;
  }

  .portal-strip-inner .text-link {
    margin-left: 72px;
    padding-left: 0;
  }

  .site-footer {
    padding-top: 20px;
  }

  .footer-payment-surface {
    display: grid;
    grid-template-columns: auto 1fr;
    min-height: 0;
    margin-bottom: 30px;
    padding: 12px 14px;
    gap: 8px 12px;
  }

  .shurjopay-provider {
    min-width: 0;
  }

  .shurjopay-provider img {
    width: 118px;
    height: 30px;
  }

  .footer-payment-divider {
    display: none;
  }

  .payment-channels {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
  }

  .payment-channel {
    width: 100%;
    height: 36px;
    min-width: 0;
  }

  .payment-channel img {
    width: 52px;
    height: 52px;
  }

  .footer-main {
    gap: 30px;
    padding-bottom: 30px;
  }

  .footer-nav {
    gap: 8px 24px;
  }

  .footer-bottom {
    padding-top: 22px;
  }

  .payment-dialog {
    width: 100%;
    max-width: none;
    margin: auto 0 0;
    border-radius: 20px 20px 0 0;
  }

  .payment-dialog[open] {
    animation-name: payment-sheet-in;
  }

  .payment-dialog.is-closing {
    animation-name: payment-sheet-out;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
