/* CLEEN — shared site styles (homepage + future pages) */

:root {
  --color-bg: #f4f6f9;
  --color-surface: #ffffff;
  --color-text: #161d2c;
  --color-text-muted: #5a6578;
  --color-border: #dfe4eb;
  --color-brand: #7392b3;
  --color-brand-hover: #5e7a96;
  --color-brand-muted: rgba(115, 146, 179, 0.14);
  --color-brand-subtle: rgba(115, 146, 179, 0.1);
  --color-accent: #7392b3;
  --color-accent-hover: #5e7a96;
  --color-ink: #0c1222;
  --font-sans: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --shadow-xs: 0 1px 2px rgba(12, 18, 34, 0.05);
  --shadow-sm: 0 1px 3px rgba(12, 18, 34, 0.06);
  --shadow-md: 0 4px 12px rgba(12, 18, 34, 0.08);
  --shadow-btn: 0 1px 2px rgba(12, 18, 34, 0.08);
  --shadow-btn-accent: 0 1px 2px rgba(12, 18, 34, 0.08), 0 4px 14px rgba(115, 146, 179, 0.28);
  --radius: 8px;
  --radius-lg: 10px;
  --radius-btn: 6px;
  --container: 1140px;
  --header-h: 76px;
  --section-y: clamp(3.5rem, 7vw, 5.75rem);
  --section-header-space: clamp(2.25rem, 5vw, 3rem);
  --leading-body: 1.65;
  --leading-tight: 1.16;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: var(--leading-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, .nav, .btn {
  font-family: var(--font-heading);
  font-weight: 600;
}

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

a {
  color: var(--color-accent);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-accent-hover);
}

:focus:not(:focus-visible) {
  outline: none;
}

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

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-ink);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.container {
  width: min(100% - clamp(1.25rem, 4vw, 2rem), var(--container));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 0 0 rgba(115, 146, 179, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.028em;
}

.brand img {
  width: 44px;
  height: auto;
  object-fit: contain;
}

.brand span {
  line-height: 1.2;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-desktop a {
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-btn);
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav-desktop a:hover {
  background: var(--color-brand-subtle);
  color: var(--color-ink);
}

.nav-desktop .nav-cta {
  background: var(--color-accent);
  color: #fff;
  margin-left: 0.5rem;
  padding: 0.5rem 1.05rem;
  box-shadow: var(--shadow-btn-accent);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-desktop .nav-cta:hover {
  background: var(--color-accent-hover);
  color: #fff;
  box-shadow: 0 2px 6px rgba(12, 18, 34, 0.1), 0 6px 18px rgba(115, 146, 179, 0.35);
}

.nav-desktop .nav-cta:focus-visible {
  outline-color: #fff;
  outline-offset: 3px;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-btn);
  background: var(--color-surface);
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-ink);
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--color-ink);
  transition: transform 0.2s ease;
}

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}

.site-header[data-menu-open="true"] .nav-toggle-bar {
  background: transparent;
}

.site-header[data-menu-open="true"] .nav-toggle-bar::before {
  transform: translateY(6px) rotate(45deg);
}

.site-header[data-menu-open="true"] .nav-toggle-bar::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 0 1.25rem;
  border-top: 1px solid var(--color-border);
  margin-top: 0;
}

.site-header[data-menu-open="true"] .nav-mobile {
  display: flex;
  background: #f8f9fb;
  padding-top: 0.5rem;
  margin-top: 0;
}

.nav-mobile a {
  padding: 0.75rem 0.65rem;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--radius-btn);
}

.nav-mobile a:hover {
  background: var(--color-brand-subtle);
}

.nav-mobile .nav-cta {
  margin-top: 0.5rem;
  text-align: center;
  background: var(--color-accent);
  color: #fff;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-btn-accent);
}

.nav-mobile .nav-cta:hover {
  background: var(--color-accent-hover);
  color: #fff;
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .nav-desktop {
    display: flex;
  }

  .nav-mobile {
    display: none !important;
  }
}

/* Sections (shared layout) */
.section {
  padding: var(--section-y) 0;
}

.section-header {
  max-width: 42rem;
  margin-bottom: var(--section-header-space);
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin: 0 0 0.625rem;
}

.section-title {
  font-size: clamp(1.875rem, 4.2vw, 2.375rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  color: var(--color-ink);
  margin: 0 0 0.875rem;
  line-height: var(--leading-tight);
}

.section-lead {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.125rem;
  line-height: 1.58;
  max-width: 36em;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 9vw, 5.5rem) 0 clamp(3.25rem, 8vw, 5rem);
  background: linear-gradient(168deg, #0a1018 0%, #152a3d 40%, #2a3f55 78%, #344c63 100%);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 92% 58% at 96% -8%, rgba(255, 255, 255, 0.09), transparent 52%),
    radial-gradient(ellipse 52% 42% at 0% 102%, rgba(115, 146, 179, 0.22), transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  gap: clamp(2.25rem, 5vw, 3.25rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero-copy h1 {
  font-size: clamp(2.35rem, 5.8vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 1.125rem;
}

.hero-copy p {
  margin: 0 0 1.875rem;
  font-size: 1.125rem;
  line-height: 1.62;
  opacity: 0.9;
  max-width: 34rem;
}

.hero-copy a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-copy a:hover {
  color: #fff;
  opacity: 0.88;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9375rem 1.5rem;
  min-height: 2.875rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.015em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hero .btn:focus-visible,
.cta-band .btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: 3px;
}

.btn-primary {
  background: #fff;
  color: var(--color-ink);
  box-shadow: var(--shadow-btn), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.btn-primary:hover {
  background: #f8fafc;
  color: var(--color-ink);
  box-shadow: 0 2px 8px rgba(12, 18, 34, 0.1);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.52);
  color: #fff;
}

/* Hero primary CTA: high contrast + brand accent */
.hero .btn-primary {
  background: #ffffff;
  color: var(--color-ink);
  border: 2px solid var(--color-brand);
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
}

.hero .btn-primary:hover {
  background: #f3f6fa;
  color: var(--color-ink);
  border-color: var(--color-brand-hover);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.26);
  transform: translateY(-1px);
}

.hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.42);
}

.hero .btn-secondary:hover {
  border-color: rgba(115, 146, 179, 0.65);
  background: rgba(115, 146, 179, 0.12);
}

.hero-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 3px solid rgba(115, 146, 179, 0.85);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-card h2 {
  margin: 0 0 1.125rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.88;
}

.hero-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.125rem;
}

.hero-stats li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.hero-stat-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-btn);
  background: rgba(115, 146, 179, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: #fff;
}

.hero-stat-icon .icon-svg {
  width: 22px;
  height: 22px;
  display: block;
}

.hero-stat-text strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 0.25rem;
}

.hero-stat-text span {
  font-size: 0.875rem;
  line-height: 1.5;
  opacity: 0.86;
}

/* Intro */
.intro {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.intro-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: start;
}

@media (min-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.intro h2 {
  font-size: clamp(1.5rem, 3.2vw, 1.9375rem);
  margin: 0 0 1.125rem;
  color: var(--color-ink);
  letter-spacing: -0.025em;
  line-height: var(--leading-tight);
}

.intro p {
  margin: 0 0 1.0625rem;
  color: var(--color-text-muted);
  line-height: var(--leading-body);
}

.intro p:last-child {
  margin-bottom: 0;
}

.intro-highlight {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-brand);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.35rem;
  box-shadow: none;
}

.intro-highlight h3 {
  margin: 0 0 0.875rem;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--color-ink);
}

.intro-highlight ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
}

.intro-highlight li {
  margin-bottom: 0.35rem;
}

/* Featured services */
.services-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.625rem;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: #c5ced9;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-btn);
  background: var(--color-brand-muted);
  display: grid;
  place-items: center;
  color: var(--color-brand);
  margin-bottom: 1.25rem;
}

.service-card-icon .icon-svg {
  width: 26px;
  height: 26px;
  display: block;
}

.service-card h3 {
  margin: 0 0 0.625rem;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.service-card p {
  margin: 0 0 1.375rem;
  color: var(--color-text-muted);
  line-height: var(--leading-body);
  flex: 1;
}

.service-card .link-arrow {
  font-weight: 600;
  text-decoration: none;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-card .link-arrow:hover {
  color: var(--color-accent-hover);
}

/* Banded sections (Why CLEEN + How it works share the same shell) */
.section-band {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

/* Why us */
.why-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-item {
  padding: 0;
}

@media (max-width: 639px) {
  .why-grid {
    gap: 1.25rem;
  }

  .why-item {
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
  }

  .why-item:first-child {
    padding-top: 0;
    border-top: none;
  }
}

.why-item-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 0.75rem;
  border-radius: var(--radius-btn);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--color-accent);
}

.why-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--color-ink);
}

.why-item p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.58;
  color: var(--color-text-muted);
}

/* How it works — matches Why CLEEN item treatment */
.steps {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  counter-reset: step;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.625rem 1.5rem 1.5rem;
  padding-top: 4rem;
  box-shadow: none;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-btn);
  background: var(--color-accent);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: grid;
  place-items: center;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--color-ink);
}

.step p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.58;
  color: var(--color-text-muted);
}

/* Service area */
.area {
  background: linear-gradient(185deg, #eceff4 0%, var(--color-bg) 55%, var(--color-bg) 100%);
}

.area-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: none;
  max-width: 48rem;
}

.area-box p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  line-height: var(--leading-body);
}

.area-box p:last-child {
  margin-bottom: 0;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.375rem;
}

.area-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-btn);
  color: var(--color-text);
}

/* CTA band */
.cta-band {
  padding: clamp(3.25rem, 7vw, 4.5rem) 0;
  background: linear-gradient(180deg, #0a0f1a 0%, #0c1222 100%);
  color: #fff;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-band h2 {
  margin: 0 0 0.875rem;
  font-size: clamp(1.875rem, 3.6vw, 2.25rem);
  letter-spacing: -0.028em;
  line-height: var(--leading-tight);
}

.cta-band p {
  margin: 0 auto 1.625rem;
  max-width: 32em;
  opacity: 0.88;
  font-size: 1.125rem;
  line-height: 1.58;
}

.cta-band .btn-primary {
  background: var(--color-accent);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-btn-accent);
}

.cta-band .btn-primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(12, 18, 34, 0.15), 0 8px 22px rgba(115, 146, 179, 0.35);
}

.cta-band .btn-primary:active {
  transform: translateY(0);
}

.cta-band .cta-phone {
  margin: 1rem 0 0;
  font-size: 1rem;
  opacity: 0.92;
}

.cta-band .cta-phone a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}

.cta-band .cta-phone a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: clamp(2.75rem, 6vw, 3.5rem) 0 2.25rem;
  font-size: 0.9375rem;
}

.footer-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1.75rem, 4vw, 2.25rem);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-brand img {
  width: 40px;
  height: auto;
}

.footer-col p {
  margin: 0;
  color: var(--color-text-muted);
  max-width: 28ch;
}

.footer-domain {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
}

.footer-domain a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
}

.footer-domain a:hover {
  color: var(--color-accent);
}

.footer-col h3 {
  margin: 0 0 0.875rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-ink);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.55rem;
  line-height: 1.45;
}

.footer-col a {
  text-decoration: none;
  font-weight: 500;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.footer-bottom a {
  color: inherit;
  font-weight: 500;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* Interior pages (shared shell + includes) */
.page-main {
  padding: clamp(2.25rem, 5vw, 3.25rem) 0 clamp(4.25rem, 9vw, 5.5rem);
  min-height: 50vh;
}

.page-header {
  max-width: 42rem;
  margin-top: 0;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.page-title {
  font-size: clamp(1.875rem, 4.2vw, 2.375rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  color: var(--color-ink);
  margin: 0 0 0.875rem;
  line-height: var(--leading-tight);
}

.page-lead {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.125rem;
  line-height: 1.58;
  max-width: 38em;
}

.page-main .btn-primary {
  background: var(--color-accent);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-btn-accent);
}

.page-main .btn-primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(12, 18, 34, 0.12), 0 8px 22px rgba(115, 146, 179, 0.32);
}

.page-main .btn-primary:active {
  transform: translateY(0);
}

.page-main .btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border-color: rgba(115, 146, 179, 0.55);
}

.page-main .btn-secondary:hover {
  background: var(--color-brand-muted);
  color: var(--color-accent-hover);
  border-color: rgba(115, 146, 179, 0.7);
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 40rem;
}

.content-stack-wide {
  max-width: 48rem;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
}

.prose li {
  margin-bottom: 0.35rem;
}

.prose strong {
  color: var(--color-text);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  font-size: 0.8125rem;
  margin: 0 0 1.25rem;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.breadcrumb a {
  text-decoration: none;
  font-weight: 500;
  color: var(--color-accent);
}

.breadcrumb a:hover {
  text-decoration: underline;
  color: var(--color-accent-hover);
}

.breadcrumb-sep {
  color: #b8c2ce;
  font-weight: 400;
  user-select: none;
}

.breadcrumb-muted {
  color: var(--color-text-muted);
  font-weight: 500;
}

.breadcrumb [aria-current="page"] {
  color: var(--color-ink);
  font-weight: 600;
}

.panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.35rem;
  box-shadow: none;
}

.panel h2 {
  margin: 0 0 0.875rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--color-ink);
}

.panel > p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: var(--leading-body);
}

.embed-placeholder {
  border: 1px dashed #c5ced9;
  border-radius: var(--radius);
  min-height: 280px;
  padding: 2rem 1.5rem;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.embed-placeholder strong {
  color: var(--color-ink);
  font-size: 1rem;
}

.sms-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.35rem;
  box-shadow: none;
}

.sms-box h2 {
  margin: 0 0 0.875rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--color-ink);
}

.sms-box .sms-intro {
  margin: 0 0 0.75rem;
}

.sms-check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 0 0 1rem;
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.5;
}

.sms-check input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--color-accent);
}

.sms-disclosure {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.subservice-grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.25rem);
}

@media (min-width: 640px) {
  .subservice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .subservice-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.subservice-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem 1.4rem 1.3rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.subservice-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: #c5ced9;
}

.subservice-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--color-ink);
}

.subservice-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  flex: 1;
}

.subservice-card .link-arrow {
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-accent);
}

.service-split {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

@media (min-width: 768px) {
  .service-split {
    grid-template-columns: 1fr 1fr;
  }
}

.checklist {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--color-text-muted);
}

.checklist li {
  margin-bottom: 0.45rem;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 0.875rem;
  align-items: center;
  margin-top: 0.5rem;
}

.portal-card {
  max-width: 36rem;
  padding: 1.75rem 1.625rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: none;
}

.portal-card p {
  margin: 0 0 1.25rem;
  color: var(--color-text-muted);
}

.portal-card .portal-footnote {
  margin: 1.25rem 0 0;
}

.quote-layout {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.25rem);
  max-width: 44rem;
}

.panel .area-tags {
  margin-top: 1rem;
}

.panel-muted {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.subsection-heading {
  margin: 0 0 0.625rem;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--color-ink);
  line-height: var(--leading-tight);
}

.lead-full {
  max-width: none;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
}
