:root {
  --blue-900: #1E3A5F;
  --blue-700: #24527F;
  --blue-500: #3B82F6;
  --green-500: #22C55E;
  --green-700: #15803D;
  --text: #111827;
  --muted: #6B7280;
  --border: #E5E7EB;
  --soft: #F8FAFC;
  --white: #FFFFFF;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
  --radius: 8px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, Roboto, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-900);
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
  backdrop-filter: blur(14px);
}

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

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--blue-900);
  border-radius: var(--radius);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.brand strong {
  color: var(--blue-900);
  font-size: 1.02rem;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.primary-nav a {
  transition: color 160ms ease, background 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--blue-500);
}

.nav-cta {
  padding: 11px 16px;
  color: var(--white) !important;
  background: var(--blue-900);
  border-radius: 6px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--blue-700);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue-900);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.hero {
  background:
    linear-gradient(90deg, rgba(30, 58, 95, 0.08), rgba(59, 130, 246, 0.04)),
    var(--soft);
  padding: 76px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--blue-900);
  line-height: 1.12;
}

h1 {
  max-width: 680px;
  font-size: clamp(2.15rem, 5vw, 4.75rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

h3 {
  font-size: 1.05rem;
}

.hero-text {
  max-width: 630px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--green-500);
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--green-700);
}

.btn-secondary {
  color: var(--blue-900);
  background: var(--white);
  border-color: var(--border);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--blue-500);
  box-shadow: 0 10px 20px rgba(30, 58, 95, 0.09);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  color: var(--blue-900);
  font-size: 0.94rem;
  font-weight: 750;
}

.hero-trust span {
  position: relative;
  padding-left: 14px;
}

.hero-trust span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  background: var(--green-500);
  border-radius: 50%;
}

.hero-media {
  position: relative;
  min-height: 320px;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section {
  padding: 82px 0;
}

.section:nth-of-type(even) {
  background: var(--soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.about-copy p:not(.eyebrow),
.zone-copy p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-card,
.choice-card,
.testimonial-card,
.contact-link {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.service-card {
  min-height: 214px;
  padding: 22px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.42);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--blue-900);
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
}

.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p,
.choice-card p,
.testimonial-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.about-grid,
.zone-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

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

.choice-card {
  padding: 22px;
}

.choice-card strong {
  display: block;
  color: var(--blue-900);
  font-size: 1.08rem;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.city-list li {
  padding: 10px 13px;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-weight: 700;
}

.map-card {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(17, 24, 39, 0.08);
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

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

.testimonial-card {
  padding: 24px;
}

.stars {
  color: #F59E0B;
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.direct-contact {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--green-500);
}

.contact-link .icon-box {
  margin: 0;
  width: 38px;
  height: 38px;
  color: var(--blue-900);
  background: #EEF6FF;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-link .icon-box svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.1;
}

.contact-link strong,
.contact-link span {
  display: block;
}

.contact-link span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 7px;
}

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

.consent-row {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  accent-color: var(--green-500);
}

.consent-row label {
  color: var(--muted);
  font-weight: 600;
}

.consent-row a,
.legal-page a {
  color: var(--blue-500);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

label {
  color: var(--blue-900);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: #132A44;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.8fr;
  gap: 34px;
  padding: 52px 0 34px;
}

.footer-brand strong,
.footer-brand small,
.site-footer h2 {
  color: var(--white);
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.site-footer p {
  margin: 16px 0 0;
}

.footer-contact,
.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
}

.legal-main {
  background: var(--soft);
  padding: 58px 0 76px;
}

.legal-page {
  max-width: 880px;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(17, 24, 39, 0.08);
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.legal-page p {
  color: var(--muted);
}

.legal-intro {
  margin: 18px 0 30px;
  font-size: 1.06rem;
}

.legal-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.legal-list dt {
  color: var(--blue-900);
  font-weight: 800;
}

.legal-list dd {
  margin: 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .primary-nav {
    gap: 14px;
    font-size: 0.9rem;
  }

  .hero-grid,
  .about-grid,
  .zone-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 52px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 10px 14px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 30px rgba(17, 24, 39, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(-100% - var(--header-height)));
    visibility: hidden;
    transition: transform 190ms ease, opacity 190ms ease, visibility 190ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .primary-nav a {
    padding: 13px 8px;
  }

  .nav-cta {
    justify-self: start;
    margin-top: 8px;
    padding: 12px 16px !important;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding: 38px 0 34px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-text {
    font-size: 1.03rem;
  }

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

  .section {
    padding: 58px 0;
  }

  .service-grid,
  .choice-grid,
  .testimonial-grid,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }

  .legal-nav {
    display: none;
  }

  .legal-page {
    padding: 28px 20px;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .map-card,
  .map-card iframe {
    min-height: 340px;
    height: 340px;
  }
}

@media (max-width: 430px) {
  .brand small {
    display: none;
  }

  .hero-trust span,
  .city-list li {
    width: 100%;
  }

  .contact-link {
    align-items: flex-start;
  }
}
