:root {
  --ink: #101317;
  --muted: #5b6472;
  --line: #dfe7e5;
  --paper: #ffffff;
  --soft: #f4f8f7;
  --teal: #0da79b;
  --teal-dark: #08766f;
  --lime: #c9ef62;
  --coral: #ff6b4a;
  --amber: #f4b942;
  --shadow: 0 24px 70px rgba(16, 19, 23, 0.16);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 50;
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(205px, auto) minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem clamp(1rem, 4vw, 3.5rem);
  color: var(--ink);
  border-bottom: 1px solid rgba(16, 19, 23, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(16, 19, 23, 0.08);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(16, 19, 23, 0.11);
}

.site-header,
.site-header a,
.site-header button,
.site-header .brand strong,
.site-header .brand small,
.site-header .brand-mark {
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 205px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  max-width: 170px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 0.15rem;
  color: currentColor;
  opacity: 0.72;
  font-size: 0.78rem;
}

.site-nav-priority {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.15rem;
  min-width: 0;
  overflow: hidden;
}

.site-nav-priority a,
.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0.5rem 0.58rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.83rem;
  white-space: nowrap;
}

.site-nav-priority a:hover,
.site-nav-priority a:focus-visible,
.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(13, 167, 155, 0.13);
  outline: none;
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: clamp(1rem, 4vw, 3.5rem);
  width: min(780px, calc(100vw - 2rem));
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 60px rgba(16, 19, 23, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.is-open .site-nav {
  display: grid;
}

.site-nav a {
  justify-content: flex-start;
  white-space: normal;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(16, 19, 23, 0.14);
  border-radius: 6px;
  color: inherit;
  background: rgba(255, 255, 255, 0.74);
  padding: 0.55rem 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-phone {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(16, 19, 23, 0.12);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 0.55rem 0.75rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.header-phone:hover,
.header-phone:focus-visible {
  border-color: rgba(13, 167, 155, 0.42);
  background: rgba(13, 167, 155, 0.1);
  outline: none;
}

.header-quote {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 6px;
  background: var(--ink);
  color: #fff !important;
  padding: 0.55rem 0.78rem;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 900;
  white-space: nowrap;
}

.header-quote:hover,
.header-quote:focus-visible {
  background: var(--teal-dark);
  outline: none;
}

.hero {
  min-height: 94vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 19, 23, 0.86) 0%, rgba(16, 19, 23, 0.62) 44%, rgba(16, 19, 23, 0.16) 100%),
    linear-gradient(0deg, rgba(16, 19, 23, 0.7) 0%, rgba(16, 19, 23, 0.04) 44%);
}

.hero-content {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 9rem 0 3.75rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.7rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
  font-weight: 900;
}

.hero .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.55rem, 6vw, 5.9rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.32rem;
}

.hero-copy {
  max-width: 760px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0.8rem 1.1rem;
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 30px rgba(13, 167, 155, 0.28);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--teal-dark);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.button.full {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(980px, 100%);
  margin: 3rem 0 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border-radius: 8px;
  overflow: hidden;
}

.hero-metrics div {
  padding: 1rem;
  background: rgba(16, 19, 23, 0.22);
}

.hero-metrics dt {
  font-size: 1.15rem;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  padding: 1.25rem clamp(1rem, 4vw, 3.5rem);
  background: var(--paper);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 1.02rem;
}

.trust-item span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.section {
  padding: clamp(4.2rem, 8vw, 7rem) clamp(1rem, 4vw, 3.5rem);
}

.section-heading {
  max-width: 930px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading p:not(.section-kicker) {
  max-width: 760px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  background: var(--soft);
}

.intro-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-copy p {
  margin: 0;
}

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

.service-section {
  background: var(--paper);
}

.service-map {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  width: min(1040px, 100%);
  margin: 0 auto 1.5rem;
}

.service-map a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--teal-dark);
  padding: 0.48rem 0.78rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 900;
}

.service-map a:hover,
.service-map a:focus-visible {
  border-color: var(--teal);
  background: rgba(13, 167, 155, 0.1);
  outline: none;
}

.service-groups {
  display: grid;
  gap: 1.1rem;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.service-cluster {
  scroll-margin-top: 94px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.cluster-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(13, 167, 155, 0.1), rgba(201, 239, 98, 0.16)),
    var(--soft);
  padding: 1.1rem;
}

.cluster-head span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.cluster-head p {
  max-width: 820px;
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.service-grid.detailed {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  padding: 1rem;
}

.service-card,
.plan-card,
.local-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-card {
  min-height: 100%;
  border-top: 4px solid var(--teal);
  padding: 1.2rem;
}

.service-card:nth-child(2) {
  border-top-color: var(--amber);
}

.service-card:nth-child(3) {
  border-top-color: var(--coral);
}

.service-card:nth-child(4) {
  border-top-color: var(--lime);
}

.service-card:nth-child(5) {
  border-top-color: var(--teal);
}

.service-card:nth-child(6) {
  border-top-color: var(--amber);
}

.service-card.compact {
  background: #fff;
  padding: 1rem;
}

.service-index {
  display: inline-flex;
  margin-bottom: 1.5rem;
  color: var(--teal-dark);
  font-weight: 900;
}

.service-card h4 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.15;
}

.service-card.compact p {
  margin: 0.55rem 0 0;
}

.service-card p,
.service-card li,
.plan-card p,
.plan-card li,
.local-grid p,
.timeline p,
.faq-list p,
.contact-copy p,
.estimator-copy p {
  color: var(--muted);
}

.service-card ul,
.plan-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.ai-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  background: #101317;
  color: #fff;
}

.ai-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.ai-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
}

.ai-checks span,
.district-cloud span {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.45rem 0.72rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.ai-checks span {
  color: rgba(255, 255, 255, 0.82);
}

.ai-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
}

.ai-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.signal-board {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.signal-board div {
  padding: 1rem;
  background: rgba(16, 19, 23, 0.58);
}

.signal-board span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.signal-board strong {
  display: block;
  margin-top: 0.2rem;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1;
}

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

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.timeline article {
  position: relative;
  border-top: 3px solid var(--teal);
  padding-top: 1.1rem;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0.8rem;
  border-radius: 8px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
}

.maintenance-section {
  background: #fff;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(1120px, 100%);
  margin: 0 auto;
  align-items: stretch;
}

.plan-card {
  position: relative;
  padding: 1.35rem;
}

.plan-card.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(201, 239, 98, 0.55);
  color: var(--ink);
  padding: 0.38rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.plan-fit {
  min-height: 3.1rem;
}

.text-link {
  display: inline-flex;
  margin-top: 1.2rem;
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration-thickness: 0.14em;
  text-underline-offset: 0.22em;
}

.estimator-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  background: #f8faf9;
}

.estimator {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0 20px 60px rgba(16, 19, 23, 0.08);
}

.estimator label,
.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 850;
}

.estimator input[type="range"] {
  width: 100%;
  accent-color: var(--teal);
}

.estimator output {
  justify-self: start;
  min-width: 3.5rem;
  border-radius: 6px;
  background: var(--soft);
  color: var(--teal-dark);
  padding: 0.25rem 0.45rem;
  font-weight: 900;
}

fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  width: 100%;
  margin-bottom: 0.25rem;
  font-weight: 900;
}

.radio-line {
  display: inline-flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.72rem;
  color: var(--muted);
  cursor: pointer;
}

.radio-line:has(input:checked) {
  color: var(--ink);
  border-color: var(--teal);
  background: rgba(13, 167, 155, 0.08);
}

.estimate-result {
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 1rem;
}

.estimate-result span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.estimate-result strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.45rem;
}

.estimate-result p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.local-section {
  background: #fff;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.local-grid article {
  padding: 1.2rem;
}

.district-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  width: min(980px, 100%);
  margin: 1.35rem auto 0;
  color: var(--teal-dark);
}

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

.faq-list {
  display: grid;
  gap: 0.75rem;
  width: min(920px, 100%);
  margin: 0 auto;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0.9rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin-bottom: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  background: #101317;
  color: #fff;
}

.contact-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.74);
}

.contact-methods {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.4rem;
}

.contact-methods a {
  color: var(--lime);
  font-weight: 900;
}

.contact-methods span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 0.8rem;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer a {
  color: var(--teal-dark);
  font-weight: 900;
}

.mobile-cta {
  display: none;
}

.inner-page {
  background: #fff;
}

.inner-page .site-header {
  position: sticky;
}

body.inner-page .site-header,
body.inner-page .site-header a,
body.inner-page .site-header button,
body.inner-page .site-header .brand strong,
body.inner-page .site-header .brand small,
body.inner-page .site-header .brand-mark,
body.inner-page .site-header .site-nav-priority a,
body.inner-page .site-header .site-nav a,
body.inner-page .site-header .header-phone {
  color: var(--ink) !important;
}

body.inner-page .site-header .header-quote {
  color: #fff !important;
}

body.inner-page .site-header {
  background: rgba(255, 255, 255, 0.9) !important;
  border-bottom: 1px solid rgba(16, 19, 23, 0.08);
  box-shadow: 0 16px 42px rgba(16, 19, 23, 0.11);
}

.page-hero {
  padding: clamp(4rem, 7vw, 6.5rem) clamp(1rem, 4vw, 3.5rem) clamp(3rem, 6vw, 5rem);
  background:
    linear-gradient(90deg, rgba(16, 19, 23, 0.92), rgba(16, 19, 23, 0.74)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=82") center/cover;
  color: #fff;
}

.page-hero > * {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.breadcrumb a,
.breadcrumb strong,
.breadcrumb span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.breadcrumb strong {
  color: #fff;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.4rem, 5.2vw, 5rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
}

.button.secondary.dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.1);
}

.page-section {
  padding: clamp(3.4rem, 7vw, 5.8rem) clamp(1rem, 4vw, 3.5rem);
}

.page-section > * {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.split-content > * {
  width: auto;
  margin: 0;
}

.split-content p {
  color: var(--muted);
  font-size: 1.04rem;
}

.competitor-note {
  border-left: 4px solid var(--teal);
  padding-left: 1rem;
}

.proof-panel {
  border: 1px solid var(--line);
  border-top: 4px solid var(--lime);
  border-radius: 8px;
  background: var(--soft);
  padding: 1.15rem;
  box-shadow: 0 20px 58px rgba(16, 19, 23, 0.08);
}

.proof-panel span {
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-panel strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.32rem;
  line-height: 1.15;
}

.positioning-section {
  background: #fff;
}

.positioning-section .section-heading {
  margin-bottom: 1.1rem;
}

.positioning-section .section-heading p:not(.section-kicker) {
  color: var(--muted);
}

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

.positioning-grid article {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 0.65rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 8px;
  background: var(--soft);
  padding: 1.05rem;
  box-shadow: 0 18px 48px rgba(16, 19, 23, 0.06);
}

.positioning-grid article:nth-child(2) {
  border-top-color: var(--amber);
}

.positioning-grid article:nth-child(3) {
  border-top-color: var(--coral);
}

.positioning-grid span {
  color: var(--teal-dark);
  font-size: 0.84rem;
  font-weight: 900;
}

.positioning-grid h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.18;
}

.positioning-grid p {
  margin: 0;
  color: var(--muted);
}

.feature-grid,
.link-grid,
.mini-page-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.blog-card {
  display: grid;
  gap: 0.65rem;
  min-height: 220px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 8px;
  background: #fff;
  padding: 1.05rem;
  text-decoration: none;
}

.blog-card:nth-child(2n) {
  border-top-color: var(--amber);
}

.blog-card:nth-child(3n) {
  border-top-color: var(--coral);
}

.blog-card span {
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.blog-card strong {
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.18;
}

.blog-card p {
  color: var(--muted);
  margin: 0;
}

.article-check-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-check-list li {
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: #fff;
  padding: 0.85rem 1rem;
  color: var(--ink);
  font-weight: 800;
}

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

.feature-grid article,
.link-card,
.mini-page-list a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 1.05rem;
  text-decoration: none;
}

.feature-grid article {
  border-top: 4px solid var(--teal);
}

.feature-grid article:nth-child(2) {
  border-top-color: var(--amber);
}

.feature-grid article:nth-child(3) {
  border-top-color: var(--coral);
}

.feature-grid span,
.link-card span {
  color: var(--teal-dark);
  font-weight: 900;
}

.feature-grid p,
.link-card small,
.mini-page-list span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
}

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

.deliverable-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.deliverable-grid span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--teal-dark);
  padding: 0.52rem 0.78rem;
  font-weight: 900;
}

.mini-page-list a {
  display: grid;
  gap: 0.25rem;
}

.link-card {
  display: grid;
  gap: 0.25rem;
}

.local-seo-link-strip {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.local-seo-link-strip > span {
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.local-seo-link-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.local-seo-link-strip a {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  padding: 0.5rem 0.72rem;
  text-decoration: none;
  font-weight: 800;
}

.local-seo-link-strip a:hover,
.local-seo-link-strip a:focus-visible {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.contact-lite {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  background: #101317;
  color: #fff;
}

.contact-lite-actions {
  display: grid;
  gap: 0.7rem;
  min-width: 220px;
}

.contact-lite > * {
  width: auto;
  margin: 0;
}

.contact-lite p:not(.section-kicker) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.service-conversion-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  background: #eef8f6;
  border-top: 1px solid rgba(13, 167, 155, 0.16);
  border-bottom: 1px solid rgba(16, 19, 23, 0.08);
}

.service-conversion-strip h2 {
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
}

.service-conversion-strip p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.service-conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.quick-offer-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: end;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
}

.quick-offer-form label {
  display: grid;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
}

.quick-offer-form input,
.quick-offer-form textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 0.72rem;
  font: inherit;
}

.quick-offer-form textarea {
  min-height: 42px;
  resize: vertical;
}

.quick-offer-form button {
  min-height: 42px;
  border: 0;
  cursor: pointer;
}

.quick-offer-note {
  grid-column: 1 / -1;
  margin: -0.2rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.cta-heading {
  display: block;
  max-width: 760px;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hub-groups {
  display: grid;
  gap: 1.25rem;
}

.hub-group {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) 1fr;
  gap: 1rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
}

.hub-group h2 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.hub-group div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.hub-group a {
  display: grid;
  gap: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.78rem;
  text-decoration: none;
}

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

.service-hub-hero h1 {
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.45);
}

.service-index-section {
  background: #fff;
}

.service-index-heading {
  text-align: center;
}

.service-index-heading h2,
.service-hub-title h2 {
  color: var(--ink);
}

.service-index-heading p:not(.section-kicker) {
  max-width: 820px;
  color: var(--muted);
}

.service-index-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.service-index-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--teal-dark);
  padding: 0.5rem 0.8rem;
  text-decoration: none;
  font-weight: 900;
}

.primary-services-panel {
  background: linear-gradient(135deg, #101317 0%, #182126 62%, #0da79b 100%);
  color: #fff;
}

.primary-service-group {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 28px 80px rgba(16, 19, 23, 0.18);
}

.primary-service-grid a {
  min-height: 118px;
}

.service-hub-groups {
  display: grid;
  gap: 1.25rem;
  background: var(--soft);
}

.service-hub-group {
  scroll-margin-top: 94px;
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
}

.service-hub-title {
  border-left: 5px solid var(--teal);
  padding-left: 1rem;
}

.service-hub-title span {
  display: inline-flex;
  margin-bottom: 0.7rem;
  border-radius: 999px;
  background: rgba(201, 239, 98, 0.55);
  color: var(--ink);
  padding: 0.35rem 0.6rem;
  font-size: 0.82rem;
  font-weight: 900;
}

.service-hub-title h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.8rem);
}

.service-hub-title p {
  color: var(--muted);
}

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

.service-title-grid a {
  min-height: 94px;
  display: grid;
  align-content: start;
  gap: 0.35rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 8px;
  background: #fff;
  padding: 0.85rem;
  text-decoration: none;
}

.service-title-grid a:nth-child(3n + 2) {
  border-top-color: var(--amber);
}

.service-title-grid a:nth-child(3n) {
  border-top-color: var(--coral);
}

.service-title-grid strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.2;
}

.service-title-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.topic-cluster-section {
  background: #fff;
}

.topic-cluster-section .section-heading p:not(.section-kicker) {
  color: var(--muted);
}

.topic-cluster-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.topic-cluster-grid a {
  min-height: 128px;
  display: grid;
  align-content: start;
  gap: 0.35rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 8px;
  background: #fff;
  padding: 0.9rem;
  text-decoration: none;
}

.topic-cluster-grid a:nth-child(2n) {
  border-top-color: var(--amber);
}

.topic-cluster-grid a:nth-child(3n) {
  border-top-color: var(--coral);
}

.topic-cluster-grid a.is-current {
  background: var(--ink);
  border-color: var(--ink);
  border-top-color: var(--lime);
  color: #fff;
}

.topic-cluster-grid span {
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.topic-cluster-grid a.is-current span,
.topic-cluster-grid a.is-current small {
  color: rgba(255, 255, 255, 0.72);
}

.topic-cluster-grid strong {
  color: var(--ink);
  line-height: 1.18;
}

.topic-cluster-grid a.is-current strong {
  color: #fff;
}

.topic-cluster-grid small {
  color: var(--muted);
  line-height: 1.3;
}

.reference-proof-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 1.25rem;
  align-items: stretch;
  background: var(--ink);
  color: #fff;
}

.reference-proof-strip h2,
.reference-proof-strip p {
  color: inherit;
}

.reference-proof-strip p {
  color: rgba(255, 255, 255, 0.76);
}

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

.reference-metrics span {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.reference-metrics strong {
  color: var(--teal-soft);
  font-size: 2rem;
  line-height: 1;
}

.project-photo-grid,
.project-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.project-photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 19, 23, 0.1);
  border-radius: 8px;
  background: #fff;
}

.project-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  background: #e7eeee;
}

.project-photo-card figcaption {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
}

.project-photo-card strong,
.project-case-grid h3 {
  color: var(--ink);
  line-height: 1.2;
}

.project-photo-card span,
.project-case-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.project-case-grid article {
  border: 1px solid rgba(16, 19, 23, 0.1);
  border-radius: 8px;
  background: #fff;
  padding: 1.25rem;
}

.project-case-grid article > span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.project-case-grid a {
  display: inline-flex;
  margin-top: 0.5rem;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.seo-index-panel,
.partner-bridge {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(320px, 1.08fr);
  gap: 1rem;
  align-items: stretch;
}

.seo-index-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  counter-reset: indexStep;
}

.seo-index-list li {
  counter-increment: indexStep;
  border: 1px solid rgba(16, 19, 23, 0.1);
  border-radius: 8px;
  background: #fff;
  padding: 0.95rem;
  color: var(--ink);
  font-weight: 850;
}

.seo-index-list li::before {
  content: counter(indexStep, decimal-leading-zero);
  margin-right: 0.65rem;
  color: var(--teal);
  font-weight: 950;
}

.partner-bridge {
  background: #f2f7f6;
}

.partner-bridge-card {
  border: 1px solid rgba(16, 19, 23, 0.1);
  border-radius: 8px;
  background: #fff;
  padding: 1.25rem;
}

.partner-bridge-card a {
  display: inline-flex;
  margin-top: 0.75rem;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  text-decoration: none;
  font-weight: 950;
}

.sales-message-section {
  background: #f5f8f7;
}

.sales-message-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.sales-message-grid article {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  border: 1px solid rgba(16, 19, 23, 0.1);
  border-radius: 8px;
  background: #fff;
  padding: 1.35rem;
}

.sales-message-grid span {
  width: fit-content;
  border-radius: 999px;
  background: rgba(27, 179, 160, 0.12);
  color: var(--teal-dark);
  padding: 0.3rem 0.55rem;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.sales-message-grid h3 {
  color: var(--ink);
  line-height: 1.2;
}

.sales-message-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.sales-message-cta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  border: 1px solid rgba(16, 19, 23, 0.1);
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
}

.sales-message-cta strong {
  color: var(--ink);
  line-height: 1.35;
}

.topic-depth-section {
  background:
    radial-gradient(circle at top left, rgba(27, 179, 160, 0.12), transparent 28rem),
    linear-gradient(135deg, rgba(16, 19, 23, 0.04), rgba(255, 255, 255, 0.94));
}

.topic-depth-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.topic-depth-card {
  min-height: 214px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid rgba(16, 19, 23, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 1.35rem;
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(16, 19, 23, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.topic-depth-card:hover {
  transform: translateY(-3px);
  border-color: rgba(27, 179, 160, 0.45);
  box-shadow: 0 24px 68px rgba(16, 19, 23, 0.13);
}

.topic-depth-card span {
  width: fit-content;
  border-radius: 999px;
  background: rgba(27, 179, 160, 0.12);
  color: var(--teal-dark);
  padding: 0.32rem 0.58rem;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.topic-depth-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.06rem;
  line-height: 1.25;
}

.topic-depth-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.decision-depth-section {
  background:
    radial-gradient(circle at top right, rgba(191, 222, 75, 0.14), transparent 24rem),
    linear-gradient(180deg, #fff, rgba(248, 250, 252, 0.96));
}

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

.decision-grid article {
  min-height: 240px;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  border: 1px solid rgba(16, 19, 23, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 1.25rem;
  box-shadow: 0 18px 54px rgba(16, 19, 23, 0.07);
}

.decision-grid span {
  width: fit-content;
  border-radius: 999px;
  background: rgba(27, 179, 160, 0.12);
  color: var(--teal-dark);
  padding: 0.3rem 0.58rem;
  font-size: 0.74rem;
  font-weight: 950;
}

.decision-grid h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.2;
}

.decision-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
}

.decision-table-wrap {
  margin-top: 1.15rem;
  overflow-x: auto;
  border: 1px solid rgba(16, 19, 23, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(16, 19, 23, 0.08);
}

.decision-table {
  width: 100%;
  min-width: 740px;
  border-collapse: collapse;
}

.decision-table th,
.decision-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(16, 19, 23, 0.08);
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

.decision-table th {
  background: rgba(16, 19, 23, 0.04);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.decision-table td:first-child {
  width: 18%;
  color: var(--ink);
  font-weight: 900;
}

.decision-table tr:last-child td {
  border-bottom: 0;
}

.field-checklist {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 1fr) minmax(260px, 0.65fr);
  gap: 1rem;
  align-items: stretch;
}

.field-checklist > div,
.field-checklist ul {
  margin: 0;
  border: 1px solid rgba(16, 19, 23, 0.1);
  border-radius: 8px;
  background: #fff;
  padding: 1.15rem;
  box-shadow: 0 18px 50px rgba(16, 19, 23, 0.06);
}

.field-checklist h3 {
  margin: 0.25rem 0 0.55rem;
  color: var(--ink);
  line-height: 1.22;
}

.field-checklist p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.field-checklist ul {
  display: grid;
  gap: 0.65rem;
  padding-left: 2rem;
  color: var(--muted);
}

.field-checklist li::marker {
  color: var(--teal);
}

.decision-cta {
  display: grid;
  gap: 0.75rem;
  align-content: center;
}

.decision-cta strong {
  color: var(--ink);
  line-height: 1.28;
}

.sector-authority-depth {
  background:
    radial-gradient(circle at top left, rgba(27, 179, 160, 0.12), transparent 26rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 250, 0.96));
}

.sector-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.sector-plan-grid article {
  min-height: 248px;
  display: grid;
  align-content: start;
  gap: 0.72rem;
  border: 1px solid rgba(16, 19, 23, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 1.25rem;
  box-shadow: 0 20px 56px rgba(16, 19, 23, 0.07);
}

.sector-plan-grid span {
  width: fit-content;
  border-radius: 999px;
  background: rgba(191, 222, 75, 0.18);
  color: var(--teal-dark);
  padding: 0.3rem 0.58rem;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.sector-plan-grid h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.2;
}

.sector-plan-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
}

.sector-ops-panel {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 1rem;
  align-items: stretch;
}

.sector-ops-panel > div {
  border: 1px solid rgba(16, 19, 23, 0.1);
  border-radius: 8px;
  background: #fff;
  padding: 1.2rem;
  box-shadow: 0 18px 54px rgba(16, 19, 23, 0.06);
}

.sector-ops-panel h3 {
  margin: 0.28rem 0 0.62rem;
  color: var(--ink);
  line-height: 1.2;
}

.sector-ops-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.sector-mini-metrics {
  display: grid;
  gap: 0.45rem;
  align-content: center;
}

.sector-mini-metrics span {
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.sector-mini-metrics strong {
  color: var(--ink);
  line-height: 1.24;
}

.sector-checklist {
  margin-bottom: 1.15rem;
}

.sector-related-links {
  margin-top: 1.3rem;
}

.sector-authority-map .link-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.aeo-answer-section {
  background:
    radial-gradient(circle at top right, rgba(27, 179, 160, 0.12), transparent 24rem),
    linear-gradient(180deg, #fff, rgba(248, 250, 252, 0.98));
}

.aeo-updated {
  color: var(--muted);
  font-weight: 800;
}

.aeo-answer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.aeo-answer-card {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  border: 1px solid rgba(16, 19, 23, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 1.2rem;
  box-shadow: 0 20px 58px rgba(16, 19, 23, 0.07);
}

.aeo-answer-card span {
  width: fit-content;
  border-radius: 999px;
  background: rgba(27, 179, 160, 0.12);
  color: var(--teal-dark);
  padding: 0.3rem 0.58rem;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.aeo-answer-card strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.26;
}

.aeo-answer-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.aeo-evidence-panel {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 1rem;
  align-items: stretch;
}

.aeo-evidence-panel > div {
  border: 1px solid rgba(16, 19, 23, 0.1);
  border-radius: 8px;
  background: #fff;
  padding: 1.15rem;
  box-shadow: 0 18px 54px rgba(16, 19, 23, 0.06);
}

.aeo-evidence-panel h3 {
  margin: 0.25rem 0 0.6rem;
  color: var(--ink);
  line-height: 1.2;
}

.aeo-evidence-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.aeo-answer-map .link-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.topic-depth-card small {
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 900;
}

.intent-depth-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  border: 1px solid rgba(16, 19, 23, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 1.5rem;
}

.intent-depth-panel h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: 0;
}

.intent-depth-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.intent-depth-list {
  display: grid;
  gap: 0.75rem;
}

.intent-depth-list article {
  border: 1px solid rgba(16, 19, 23, 0.1);
  border-radius: 8px;
  background: rgba(245, 248, 247, 0.92);
  padding: 1rem;
}

.intent-depth-list strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.intent-depth-list p {
  font-size: 0.95rem;
}

.seo-silo-section {
  background: #fff;
}

.seo-silo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.seo-silo-grid > article {
  min-height: 360px;
  border: 1px solid rgba(16, 19, 23, 0.1);
  border-radius: 8px;
  background: #f8fbfa;
  padding: 1.2rem;
}

.seo-silo-grid > article > span,
.visual-proof-grid span {
  width: fit-content;
  display: inline-flex;
  border-radius: 999px;
  background: rgba(27, 179, 160, 0.12);
  color: var(--teal-dark);
  padding: 0.3rem 0.55rem;
  font-size: 0.74rem;
  font-weight: 950;
}

.seo-silo-grid h3 {
  margin: 0.85rem 0 0.9rem;
  color: var(--ink);
  font-size: 1.05rem;
}

.silo-link-list {
  display: grid;
  gap: 0.65rem;
}

.silo-link-list a {
  display: grid;
  gap: 0.28rem;
  border: 1px solid rgba(16, 19, 23, 0.08);
  border-radius: 8px;
  background: #fff;
  padding: 0.82rem;
  color: var(--ink);
  text-decoration: none;
}

.silo-link-list a:hover {
  border-color: rgba(27, 179, 160, 0.45);
}

.silo-link-list strong {
  font-size: 0.92rem;
}

.silo-link-list span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.authority-signal-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(27, 179, 160, 0.18), transparent 30rem),
    #101317;
  color: #fff;
}

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

.authority-metrics article {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  padding: 1rem;
}

.authority-metrics strong {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  letter-spacing: 0;
  line-height: 1;
}

.authority-metrics span,
.authority-copy p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.authority-copy h2 {
  margin: 0.4rem 0 0.8rem;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  letter-spacing: 0;
}

.authority-brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.authority-brand-row span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.55rem 0.75rem;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 850;
}

.silo-map-section,
.visual-proof-section {
  background: #f5f8f7;
}

.silo-map-grid,
.visual-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.silo-map-card,
.visual-proof-grid article {
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  border: 1px solid rgba(16, 19, 23, 0.1);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 1.15rem;
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(16, 19, 23, 0.07);
}

.silo-map-card:hover {
  border-color: rgba(27, 179, 160, 0.45);
}

.silo-map-card > span {
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.silo-map-card strong,
.visual-proof-grid h3 {
  color: var(--ink);
  font-size: 1.05rem;
}

.silo-map-card small,
.visual-proof-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.discovery-popup {
  position: fixed;
  right: 1rem;
  bottom: 6.4rem;
  z-index: 80;
  width: min(360px, calc(100vw - 2rem));
  border: 1px solid rgba(16, 19, 23, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 28px 90px rgba(16, 19, 23, 0.2);
  padding: 1rem;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.discovery-popup.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.discovery-popup button {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(16, 19, 23, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.discovery-popup span {
  display: block;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.discovery-popup strong {
  display: block;
  margin: 0.45rem 2rem 0.45rem 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.25;
}

.discovery-popup p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.discovery-popup-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.discovery-popup-actions a {
  display: inline-flex;
  justify-content: center;
  border-radius: 8px;
  padding: 0.78rem 0.7rem;
  font-weight: 900;
  text-decoration: none;
}

.discovery-popup-actions a:first-child {
  background: var(--teal);
  color: #fff;
}

.discovery-popup-actions a:last-child {
  background: #101317;
  color: #fff;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: minmax(200px, auto) minmax(0, 1fr) auto auto;
  }

  .site-nav-priority a:nth-child(n + 3),
  .header-phone {
    display: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid.detailed,
  .feature-grid,
  .blog-card-grid,
  .link-grid,
  .mini-page-list,
  .positioning-grid,
  .topic-cluster-grid,
  .project-photo-grid,
  .project-case-grid,
  .sales-message-grid,
  .topic-depth-grid,
  .decision-grid,
  .sector-plan-grid,
  .aeo-answer-grid,
  .seo-silo-grid,
  .silo-map-grid,
  .visual-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intent-depth-panel,
  .authority-signal-section,
  .field-checklist,
  .sector-ops-panel,
  .sector-authority-map .link-grid,
  .aeo-evidence-panel,
  .aeo-answer-map .link-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    min-height: 68px;
  }

  .site-nav-priority,
  .header-quote {
    display: none;
  }

  .site-nav {
    left: 1rem;
    right: 1rem;
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .site-nav a {
    justify-content: flex-start;
    white-space: normal;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding-top: 7rem;
    padding-bottom: 2.5rem;
  }

  .hero-metrics,
  .trust-band,
  .intro-grid,
  .ai-panel,
  .estimator-section,
  .contact-section,
  .split-content,
  .contact-lite,
  .service-conversion-strip,
  .reference-proof-strip,
  .seo-index-panel,
  .partner-bridge,
  .hub-group,
  .service-hub-group,
  .local-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .hub-group div,
  .quick-offer-form,
  .service-title-grid {
    grid-template-columns: 1fr;
  }

  .service-conversion-actions {
    justify-content: stretch;
  }

  .service-conversion-actions .button {
    width: 100%;
  }

  .hero-metrics {
    margin-top: 2rem;
  }

  .ai-visual,
  .ai-visual img {
    min-height: 360px;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .signal-board {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .mobile-cta {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 18;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 0.45rem;
    border: 1px solid rgba(16, 19, 23, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 42px rgba(16, 19, 23, 0.18);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    min-height: 44px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: var(--teal);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
  }

  .mobile-cta a + a {
    background: var(--ink);
  }

  .sticky-whatsapp {
    display: none;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 0.45rem;
    padding: 0.72rem 0.75rem;
  }

  .brand {
    min-width: 0;
    gap: 0.55rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand strong {
    max-width: clamp(118px, 44vw, 180px);
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    max-width: 96px;
    padding: 0.52rem 0.58rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-phone {
    display: none;
  }

  .site-nav {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  fieldset {
    display: grid;
  }

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

  .page-hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .page-hero h1 {
    font-size: clamp(2.12rem, 10vw, 3rem);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid.detailed,
  .feature-grid,
  .blog-card-grid,
  .link-grid,
  .mini-page-list,
  .positioning-grid,
  .topic-cluster-grid,
  .project-photo-grid,
  .project-case-grid,
  .reference-metrics,
  .sales-message-grid,
  .topic-depth-grid,
  .decision-grid,
  .sector-plan-grid,
  .aeo-answer-grid,
  .aeo-evidence-panel,
  .sector-ops-panel,
  .field-checklist,
  .intent-depth-panel,
  .seo-silo-grid,
  .silo-map-grid,
  .visual-proof-grid,
  .authority-metrics {
    grid-template-columns: 1fr;
  }

  .discovery-popup {
    left: 1rem;
    right: 1rem;
    bottom: 5.5rem;
    width: auto;
  }

  .section {
    padding-top: 3.4rem;
    padding-bottom: 3.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
