:root {
  --ink: #101833;
  --muted: #637577;
  --brand: #001a80;
  --brand-dark: #00115a;
  --accent: #f3a30d;
  --soft: #eef2ff;
  --line: #dce3f7;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(0, 26, 128, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--white);
}

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

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

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.topbar__inner,
.site-header__inner,
.hero__inner,
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar__inner {
  min-height: 42px;
}

.topbar a {
  color: var(--accent);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__logo {
  width: 218px;
  height: auto;
}

.brand__logo--footer {
  width: 238px;
  max-width: 100%;
}

.brand__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 22px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
}

.main-nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--brand-dark);
}

.nav-dropdown {
  position: relative;
  padding: 26px 0;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-caret {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transform-origin: 62% 62%;
  transition: transform 0.2s ease;
}

.nav-dropdown__menu {
  position: absolute;
  top: 72px;
  left: -20px;
  display: grid;
  width: 250px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret,
.nav-dropdown.is-open .nav-caret {
  transform: rotate(225deg) translate(-2px, -2px);
}

.nav-dropdown__menu a {
  padding: 11px 12px;
  border-radius: 6px;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a.is-active {
  color: var(--ink);
  background: var(--soft);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.header-cta,
.btn--primary {
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 10px 24px rgba(0, 26, 128, 0.24);
}

.btn--light {
  color: var(--ink);
  background: var(--white);
}

.btn--outline {
  color: var(--brand-dark);
  border-color: var(--line);
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 680px;
  color: var(--white);
  overflow: hidden;
}

.hero__media,
.service-hero__image,
.landing-hero__media {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.hero__media img,
.service-hero__image img,
.landing-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before,
.service-hero::before,
.landing-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(3, 12, 56, 0.88), rgba(3, 12, 56, 0.44), rgba(3, 12, 56, 0.14));
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 680px;
  padding: 74px 0;
}

.hero__content {
  width: min(680px, 100%);
}

.eyebrow {
  display: inline-block;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyeb {
  display: inline-block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.service-hero .eyebrow,
.landing-hero .eyebrow {
  color: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.03;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

h3 {
  font-size: 24px;
  line-height: 1.2;
}

.hero p,
.service-hero p,
.landing-hero p,
.page-hero p {
  max-width: 650px;
  font-size: 19px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__panel {
  width: min(320px, 100%);
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero__panel strong,
.hero__panel span,
.hero__panel a {
  display: block;
}

.hero__panel strong {
  font-size: 22px;
}

.hero__panel span {
  margin: 8px 0 18px;
  color: var(--muted);
}

.hero__panel a {
  color: var(--brand-dark);
  font-size: 22px;
  font-weight: 900;
}

.intro-band {
  padding: 46px 0;
  background: var(--soft);
}

.intro-band__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.intro-band p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.section {
  padding: 96px 0;
}

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

.section__heading {
  margin-bottom: 36px;
}

.section__heading h2 {
  max-width: 720px;
}

.section__lead,
.muted-text {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.section__heading .section__lead {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card,
.detail-card,
.contact-box,
.contact-form,
.mini-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 26, 128, 0.06);
}

.service-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card a {
  display: block;
  padding: 0 0 24px;
}

.service-card img {
  width: 100%;
  height: 190px;
  margin: 0 0 20px;
  object-fit: cover;
}

.service-card h3,
.service-card p,
.service-card strong {
  display: block;
  margin-left: 22px;
  margin-right: 22px;
}

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

.service-card strong {
  color: var(--brand-dark);
}

.process-system-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-system-card {
  overflow: hidden;
  padding-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 26, 128, 0.06);
}

.process-system-card img {
  width: 100%;
  height: 190px;
  margin: 0 0 20px;
  object-fit: cover;
}

.process-system-card h3,
.process-system-card p {
  display: block;
  margin-left: 22px;
  margin-right: 22px;
}

.process-system-card p {
  color: var(--muted);
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.seo-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 26, 128, 0.06);
}

.seo-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

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

.local-seo-section {
  background: var(--white);
}

.local-seo-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.local-seo-grid p {
  color: var(--muted);
  font-size: 18px;
}

.local-seo-links {
  display: grid;
  gap: 14px;
}

.local-seo-links a {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcff;
  box-shadow: 0 10px 28px rgba(0, 26, 128, 0.05);
}

.local-seo-links strong {
  color: var(--brand);
  font-size: 18px;
}

.local-seo-links span {
  color: var(--muted);
}

.expertise-section {
  background: var(--white);
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
}

.expertise-grid article {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcff;
}

.expertise-grid p {
  color: var(--muted);
}

.repair-band {
  padding: 82px 0;
  color: var(--white);
  background: linear-gradient(135deg, #101833, #001a80);
}

.repair-band__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.repair-band .eyebrow {
  color: var(--accent);
}

.repair-band h2 {
  margin-bottom: 0;
}

.repair-band__copy p {
  color: rgba(255, 255, 255, 0.82);
}

.process {
  padding: 96px 0;
  background: #f8f9ff;
}

.process__grid,
.detail-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.process__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.steps {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.steps div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
}

.steps span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
  background: var(--ink);
}

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

.workflow {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 70%);
}


.workflow__heading {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
}

.workflow__heading h2 {
  margin-bottom: 14px;
}

.workflow__heading p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.workflow__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 58px;
}

.workflow__steps::before {
  position: absolute;
  top: 72px;
  left: 11%;
  right: 11%;
  height: 3px;
  border-top: 3px dashed rgba(0, 26, 128, 0.32);
  content: "";
}

.workflow-step {
  position: relative;
  text-align: center;
}

.workflow-step__number {
  position: absolute;
  top: -4px;
  left: calc(50% - 66px);
  z-index: 3;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  background: var(--brand);
}

.workflow-step__icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 126px;
  height: 126px;
  margin: 0 auto 22px;
  place-items: center;
  border: 3px dashed rgba(0, 26, 128, 0.45);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(0, 26, 128, 0.08);
}

.workflow-step__icon svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: var(--brand);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-step h3 {
  margin-bottom: 10px;
  color: #050914;
  font-size: 25px;
}

.workflow-step p {
  max-width: 260px;
  margin: 0 auto;
  color: var(--muted);
}

.workflow__cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 46px;
}

.workflow__cta .btn {
  min-width: 280px;
}

.stats {
  padding: 52px 0;
  color: var(--white);
  background: var(--brand-dark);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-size: 44px;
  line-height: 1;
}

.stats span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.cta-strip {
  padding: 76px 0;
  background: var(--ink);
  color: var(--white);
}

.cta-strip h2 {
  margin-bottom: 0;
}

.page-hero,
.service-hero,
.landing-hero {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.page-hero {
  background: linear-gradient(135deg, var(--soft), #fff8e8);
}

.page-hero--error {
  background: linear-gradient(135deg, #fff8e8, var(--soft));
}

.missing-path {
  display: inline-block;
  max-width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 16px;
  overflow-wrap: anywhere;
  background: var(--white);
}

.page-hero__inner {
  max-width: 820px;
}

.page-hero h1,
.service-hero h1,
.landing-hero h1 {
  font-size: clamp(40px, 6vw, 66px);
}

.service-hero,
.landing-hero {
  min-height: 520px;
  color: var(--white);
}

.service-hero__inner,
.landing-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.landing-hero {
  min-height: 560px;
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.landing-intro__grid,
.landing-geo {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.landing-intro p,
.landing-geo p {
  color: var(--muted);
  font-size: 18px;
}

.landing-check-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.landing-check-card h2 {
  font-size: 28px;
}

.landing-check-card ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.landing-check-card li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.landing-check-card li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
  background: var(--brand);
  content: "✓";
}

.landing-check-card a {
  color: var(--brand-dark);
  font-weight: 900;
}

.landing-geo {
  align-items: stretch;
}

.landing-geo__image {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.landing-geo__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.landing-geo__image figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

.landing-districts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.landing-districts span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 800;
  background: var(--white);
}

.landing-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.landing-process__step {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 26, 128, 0.08);
}

.landing-process__step span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
  background: var(--brand);
}

.landing-process__step h3 {
  font-size: 22px;
}

.landing-process__step p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 28px;
}

.reference-section {
  background: #f8f9ff;
}

.reference-list {
  display: grid;
  gap: 34px;
}

.reference-card {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0, 26, 128, 0.08);
}

.reference-card__copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.comparison {
  position: relative;
  min-height: 360px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  isolation: isolate;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.comparison__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.comparison__image--before {
  z-index: 1;
}

.comparison__after {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.comparison__after .comparison__image {
  width: 100%;
}

.comparison__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 4;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  box-shadow: 0 0 18px rgba(0, 26, 128, 0.38);
}

.comparison__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--brand);
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 28px rgba(0, 26, 128, 0.28);
}

.comparison__handle::before,
.comparison__handle::after {
  position: absolute;
  width: 11px;
  height: 11px;
  border-top: 3px solid var(--white);
  border-left: 3px solid var(--white);
  content: "";
}

.comparison__handle::before {
  left: 15px;
  transform: rotate(-45deg);
}

.comparison__handle::after {
  right: 15px;
  transform: rotate(135deg);
}

.comparison__label {
  position: absolute;
  top: 18px;
  z-index: 5;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  background: rgba(16, 24, 51, 0.78);
}

.comparison__label--before {
  right: 18px;
}

.comparison__label--after {
  left: 18px;
  background: rgba(0, 26, 128, 0.88);
}

.comparison__range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.service-row {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.service-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.detail-copy p {
  color: var(--muted);
  font-size: 18px;
}

.detail-card,
.contact-box,
.contact-form {
  padding: 34px;
}

.detail-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-card li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.detail-card li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.story-section {
  padding: 86px 0;
  background: var(--white);
}

.story-section--reverse {
  background: #f8f9ff;
}

.story-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.story-section--reverse .story-section__image {
  order: 2;
}

.story-section__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-section__copy p {
  color: var(--muted);
  font-size: 18px;
}

.faq-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.faq-block > div:first-child {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 18px;
  width: 100%;
}

.faq-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary h3 {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

.faq-item summary::after {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--brand);
  content: "+";
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding-top: 14px;
  margin-bottom: 0;
  color: var(--muted);
}

.faq-block--wide {
  grid-template-columns: 1fr;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mini-card {
  padding: 24px;
}

.mini-card span,
.mini-card small {
  display: block;
}

.mini-card span {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 900;
}

.mini-card small {
  color: var(--muted);
  font-size: 15px;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.sitemap-card,
.sitemap-list a {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 26, 128, 0.06);
}

.sitemap-card strong,
.sitemap-list strong {
  color: var(--brand-dark);
  font-size: 20px;
}

.sitemap-card span,
.sitemap-list span,
.sitemap-structure p {
  color: var(--muted);
}

.district-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.district-grid span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-dark);
  font-weight: 800;
  background: var(--white);
}

.sitemap-structure {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.sitemap-list {
  display: grid;
  gap: 14px;
}

.contact-grid {
  align-items: start;
}

.contact-box a {
  display: block;
  margin-top: 14px;
  color: var(--brand-dark);
  font-weight: 900;
}

.contact-detail-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.contact-detail-list div {
  display: grid;
  gap: 4px;
}

.contact-detail-list strong {
  color: var(--ink);
  font-size: 17px;
}

.contact-detail-list span,
.contact-detail-list em {
  color: var(--muted);
  font-style: normal;
}

.contact-detail-list a {
  margin-top: 0;
}

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

.notice {
  padding: 14px 16px;
  border: 1px solid rgba(0, 26, 128, 0.28);
  border-radius: 6px;
  color: var(--brand-dark);
  font-weight: 800;
  background: var(--soft);
}

.notice--error {
  border-color: rgba(178, 39, 39, 0.28);
  color: #8f1f1f;
  background: #fff1f1;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
  background: #fbfcff;
}

.contact-form input[aria-invalid="true"],
.contact-form select[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: #b22727;
  background: #fffafa;
}

.contact-form textarea {
  resize: vertical;
}

.form-error {
  color: #8f1f1f;
  font-size: 14px;
  font-weight: 800;
}

.captcha-field {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer {
  padding: 68px 0 26px;
  color: rgba(255, 255, 255, 0.78);
  background: #0b1238;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.25fr 1fr;
  gap: 42px;
}

.brand--footer {
  color: var(--white);
}

.footer h2 {
  color: var(--white);
  font-size: 18px;
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 10px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer__legal a {
  margin-bottom: 0;
  color: var(--white);
  font-weight: 800;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 40;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 56px rgba(0, 26, 128, 0.24);
}

.cookie-banner__copy {
  max-width: 680px;
}

.cookie-banner__copy h2 {
  margin-bottom: 10px;
  font-size: 26px;
}

.cookie-banner__copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.cookie-banner__copy a {
  color: var(--brand-dark);
  font-weight: 800;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.cookie-banner__actions .btn {
  min-width: 210px;
}

.legal-section {
  background: #f8f9ff;
}

.legal-content {
  display: grid;
  gap: 20px;
  max-width: 920px;
}

.legal-content article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 26, 128, 0.05);
}

.legal-content h2 {
  margin-bottom: 10px;
  font-size: 26px;
}

.legal-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.legal-content a {
  color: var(--brand-dark);
  font-weight: 800;
}

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .nav-dropdown {
    padding: 0;
  }

  .nav-dropdown__trigger {
    justify-content: space-between;
    width: 100%;
  }

  .nav-dropdown__menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: var(--soft);
  }

  .nav-dropdown .nav-caret {
    transform: rotate(225deg) translate(-2px, -2px);
  }

  .hero__inner,
  .intro-band__grid,
  .process__grid,
  .detail-grid,
  .contact-grid,
  .story-section__grid,
  .expertise-grid,
  .repair-band__grid,
  .local-seo-grid,
  .landing-intro__grid,
  .landing-geo,
  .sitemap-structure,
  .faq-block,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .story-section--reverse .story-section__image {
    order: 0;
  }

  .hero__inner {
    display: grid;
    align-content: center;
  }

  .service-grid,
  .process-system-grid,
  .seo-card-grid,
  .stats__grid,
  .workflow__steps,
  .landing-process__grid,
  .sitemap-grid,
  .mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow__steps::before {
    display: none;
  }

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

  .reference-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .topbar__inner {
    display: grid;
    gap: 4px;
    padding: 8px 0;
  }

  .hero,
  .hero__inner {
    min-height: 620px;
  }

  .hero__panel {
    display: none;
  }

  .brand__logo {
    width: 182px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .section,
  .process,
  .page-hero,
  .service-hero,
  .landing-hero {
    padding: 64px 0;
  }

  .service-grid,
  .process-system-grid,
  .seo-card-grid,
  .stats__grid,
  .workflow__steps,
  .landing-process__grid,
  .sitemap-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .workflow {
    padding: 68px 0;
  }

  .workflow__steps {
    gap: 36px;
    margin-top: 42px;
  }

  .expertise-grid article,
  .faq-item {
    padding: 20px;
  }

  .faq-item summary {
    font-size: 18px;
  }

  .reference-card {
    padding: 18px;
  }

  .comparison {
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .cta-strip__inner,
  .landing-hero__actions,
  .footer__bottom {
    display: grid;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .cookie-banner__inner {
    display: grid;
    gap: 18px;
    padding: 20px;
  }

  .cookie-banner__copy h2 {
    font-size: 22px;
  }

  .cookie-banner__actions {
    display: grid;
    justify-content: stretch;
  }

  .cookie-banner__actions .btn {
    width: 100%;
    min-width: 0;
  }

}
