:root {
  --page-section-gap: clamp(3.5rem, 6vw, 5.5rem);
}

.page-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-main {
  flex: 1 0 auto;
}

.page-hero {
  padding: clamp(5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 4rem);
}

.page-hero__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.page-hero__title {
  font-size: clamp(2.6rem, 7vw, 3.6rem);
  margin-bottom: 1rem;
}

.page-hero__summary {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.page-hero__highlights {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  list-style: none;
}

.page-hero__highlights li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 500;
  color: var(--text);
}

.page-hero__highlights li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(120deg, rgba(0, 230, 255, 0.85), rgba(180, 99, 255, 0.85));
  box-shadow: 0 0 0 4px rgba(0, 230, 255, 0.18);
}

.page-hero--article {
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}

.page-hero--article .page-hero__summary {
  max-width: 820px;
}

.page-section {
  padding: var(--page-section-gap) 0;
}

.page-section--alt {
  background: var(--nrx-public-surface);
  border-top: 1px solid var(--nrx-public-border);
  border-bottom: 1px solid var(--nrx-public-border);
}

.page-section__header {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.page-section__header p {
  margin: 0 0 1rem;
}

.page-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.page-card {
  background: var(--nrx-public-surface-raised);
  border: 1px solid var(--nrx-public-border);
  border-radius: var(--radius-md);
  padding: clamp(1.75rem, 4vw, 2.25rem);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.page-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

.page-card p {
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.page-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.page-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--text-dim);
}

.page-card ul li::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.9), rgba(37, 99, 235, 0.9));
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.page-section--article {
  padding: clamp(2.5rem, 6vw, 3.5rem) 0 clamp(4rem, 7vw, 5.5rem);
}

.page-article {
  max-width: 900px;
  margin: 0 auto;
  background: var(--nrx-public-surface, #060914);
  border: 1px solid var(--nrx-public-border, rgba(148, 163, 184, 0.16));
  border-radius: var(--radius-md);
  padding: clamp(1.75rem, 4vw, 2.6rem);
  box-shadow: var(--shadow);
  line-height: 1.7;
  display: grid;
  gap: 0.5rem;
}

.page-article h2,
.page-article h3,
.page-article h4 {
  margin-top: 1.35rem;
}

.page-article p {
  color: var(--text-dim);
}

.page-article ul,
.page-article ol {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1.35rem;
  display: block;
}

.page-article ol {
  list-style: decimal;
}

.page-article li {
  margin-bottom: 0.55rem;
}

.page-article li strong {
  color: var(--text);
}

.stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin-top: 1.75rem;
}

.stat-card {
  background: var(--nrx-public-surface-raised, #0b1020);
  border-radius: 16px;
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--nrx-public-border, rgba(148, 163, 184, 0.18));
  text-align: left;
}

.stat-card strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.stat-card span {
  color: var(--text-dim);
  font-size: 0.95rem;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--text);
}

.checklist li::before {
  content: "\2713";
  font-size: 1rem;
  color: var(--accent);
}

.page-breadcrumbs {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: rgba(235, 236, 245, 0.65);
}

.page-breadcrumbs a {
  color: var(--accent);
  text-decoration: none;
}

.page-breadcrumbs span {
  opacity: 0.65;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 230, 255, 0.4), rgba(180, 99, 255, 0.2));
  margin: clamp(3rem, 8vw, 5rem) 0;
}

.service-level-nav {
  position: sticky;
  top: calc(var(--header-height, 72px) + 0.5rem);
  z-index: 12;
  padding: 0.5rem 0 1rem;
}

.service-level-nav__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  background: rgba(5, 10, 26, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 999px;
  padding: 0.55rem;
  width: fit-content;
  box-shadow: 0 18px 30px rgba(2, 6, 23, 0.35);
  backdrop-filter: blur(6px);
}

.service-level-chip {
  border-radius: 999px;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.service-level-chip.is-active {
  border-color: rgba(0, 230, 255, 0.6);
  background: linear-gradient(120deg, rgba(0, 230, 255, 0.24), rgba(180, 99, 255, 0.24));
  color: #fff;
}

.page-section.is-active-anchor {
  scroll-margin-top: calc(var(--header-height, 72px) + 96px);
}

.page-faq {
  display: grid;
  gap: 1.5rem;
}

.page-faq details {
  background: var(--nrx-public-surface, #060914);
  border-radius: var(--radius-md);
  border: 1px solid var(--nrx-public-border, rgba(148, 163, 184, 0.16));
  padding: 1.2rem 1.4rem;
}

.page-faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
}

.page-faq p {
  margin: 1rem 0 0;
}

.city-layout {
  display: grid;
  gap: clamp(2rem, 6vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.city-card {
  background: var(--nrx-public-surface, #060914);
  border-radius: var(--radius-md);
  border: 1px solid var(--nrx-public-border, rgba(148, 163, 184, 0.16));
  padding: clamp(1.75rem, 4vw, 2.25rem);
  box-shadow: var(--shadow);
}

.city-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.city-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.city-card ul li {
  color: var(--text-dim);
  display: flex;
  gap: 0.55rem;
}

.city-card ul li::before {
  content: "\2022";
  color: rgba(0, 230, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1;
}

.city-cta {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}

.seo-hub {
  padding: var(--page-section-gap) 0;
  background: var(--nrx-public-surface);
}

.seo-hub .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.seo-hub__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.seo-hub__card {
  display: block;
  padding: 1rem 1.2rem;
  background: var(--nrx-public-surface-raised, #0b1020);
  color: #e9f6ff;
  border: 1px solid rgba(0, 230, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.seo-hub__card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.seo-hub__card p {
  margin: 0;
  color: rgba(233, 246, 255, 0.86);
  font-size: 0.95rem;
}

.seo-hub__card:hover,
.seo-hub__card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(0, 230, 255, 0.5);
  outline: none;
}

@media (max-width: 820px) {
  .page-hero__title {
    font-size: clamp(2.2rem, 8vw, 2.8rem);
  }

  .page-hero__summary {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .page-hero {
    text-align: center;
  }

  .service-level-nav__chips {
    width: 100%;
    border-radius: 20px;
    justify-content: center;
  }

  .page-hero__highlights li {
    justify-content: center;
  }

  .page-breadcrumbs {
    justify-content: center;
  }
}
