:root {
  --ink: #0a101b;
  --ink-soft: #111a29;
  --ink-muted: #1b2638;
  --gold: #d6a649;
  --gold-light: #f2cf7a;
  --cream: #f8f5ee;
  --paper: #ffffff;
  --line: #e8e6df;
  --text: #151922;
  --muted: #626a76;
  --green: #1f9d61;
  --radius: 18px;
  --shadow: 0 22px 60px rgba(7, 14, 27, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--gold-light);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
}

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

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 82px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, height 180ms ease;
}

.site-header.is-scrolled {
  height: 74px;
  background: rgba(10, 16, 27, 0.96);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(214, 166, 73, 0.72);
  border-radius: 50%;
  color: var(--gold-light);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  right: -3px;
  top: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--ink);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  font-family: "Manrope", sans-serif;
  line-height: 1;
}

.brand-copy strong {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.15em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.42em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.79);
  font-size: 0.93rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--gold);
  transition: right 160ms ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-phone svg {
  color: var(--gold-light);
}

.header-phone span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.header-phone small {
  color: rgba(255, 255, 255, 0.6);
  font: 600 0.64rem/1.25 "DM Sans", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(10, 16, 27, 1) 0%, rgba(10, 16, 27, 0.98) 45%, rgba(10, 16, 27, 0.85) 100%),
    var(--ink);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 40px);
  width: 1px;
  background: linear-gradient(transparent, rgba(214, 166, 73, 0.38), transparent);
  transform: rotate(12deg);
  transform-origin: center;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  background: linear-gradient(transparent, rgba(10, 16, 27, 0.78));
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  left: -230px;
  top: 100px;
  border-radius: 50%;
  background: rgba(214, 166, 73, 0.15);
  filter: blur(110px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 46px;
  min-height: 760px;
  padding-top: 108px;
  padding-bottom: 66px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 655px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  margin: 22px 0 22px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.15rem, 5vw, 5.55rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  max-width: 700px;
}

.hero h1 em {
  display: block;
  color: var(--gold-light);
  font-style: normal;
}

.hero-copy > p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.78;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 13px 21px;
  font-family: "Manrope", sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  box-shadow: 0 16px 36px rgba(214, 166, 73, 0.2);
}

.button-whatsapp {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.button-whatsapp svg {
  color: #5fd39a;
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.button-outline {
  border-color: #d7d9dd;
  background: #fff;
  color: var(--ink);
}

.hero-metrics {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 40px;
}

.hero-metrics div {
  min-width: 120px;
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-metrics div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-metrics span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 560px;
  border-radius: 2px 2px 90px 2px;
  overflow: hidden;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.34);
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(214, 166, 73, 0.24);
  border-radius: inherit;
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 16, 27, 0.52), transparent 36%), linear-gradient(0deg, rgba(10, 16, 27, 0.32), transparent 45%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
}

.availability-card {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 270px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  background: rgba(10, 16, 27, 0.88);
  padding: 15px 17px;
  backdrop-filter: blur(12px);
}

.availability-card strong,
.availability-card small {
  display: block;
  line-height: 1.35;
}

.availability-card strong {
  font-size: 0.87rem;
}

.availability-card small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.pulse-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #59d98d;
  box-shadow: 0 0 0 7px rgba(89, 217, 141, 0.13);
}

.trust-strip {
  position: relative;
  z-index: 4;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 118px;
}

.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 25px;
  border-left: 1px solid #ddd9cf;
}

.trust-grid > div:last-child {
  border-right: 1px solid #ddd9cf;
}

.trust-grid svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  color: #a97922;
}

.trust-grid strong,
.trust-grid small {
  display: block;
}

.trust-grid strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.93rem;
}

.trust-grid small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.3;
}

.section {
  padding: 112px 0;
}

.section-heading,
.coverage-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}

.section-kicker {
  color: #9a6f24;
}

.section-heading h2,
.coverage-heading h2,
.why-copy h2,
.faq-intro h2 {
  max-width: 760px;
  margin: 12px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.section-heading > p,
.coverage-heading > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.services {
  background: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 315px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 30px 27px 28px;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card.service-featured {
  background: var(--ink);
  color: #fff;
}

.service-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #c7cad0;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.service-featured .service-number {
  color: rgba(255, 255, 255, 0.35);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #f6eedf;
  color: #9a6f24;
}

.service-featured .service-icon {
  background: rgba(214, 166, 73, 0.13);
  color: var(--gold-light);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  margin: 24px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  line-height: 1.35;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.7;
}

.service-featured p {
  color: rgba(255, 255, 255, 0.62);
}

.service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--gold-light);
  font-size: 0.86rem;
  font-weight: 800;
}

.service-card > a svg {
  width: 17px;
  height: 17px;
}

.why-us {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.why-us::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -310px;
  top: -180px;
  border: 1px solid rgba(154, 111, 36, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(154, 111, 36, 0.04), 0 0 0 140px rgba(154, 111, 36, 0.025);
}

.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: 100px;
}

.why-copy > p,
.faq-intro > p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.check-list svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ead7ac;
  color: #765319;
  padding: 4px;
  stroke-width: 2.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #7d5718;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.text-link svg {
  width: 18px;
  height: 18px;
}

.process-card {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: 38px;
  box-shadow: var(--shadow);
}

.process-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 4px;
  background: var(--gold);
}

.process-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.process-title span {
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process-title strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
}

.process-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-card li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.process-card li > span {
  color: var(--gold-light);
  font-family: "Manrope", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-card li strong,
.process-card li small {
  display: block;
}

.process-card li strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
}

.process-card li small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.79rem;
  line-height: 1.5;
}

.team-demo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.team-demo > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
}

.team-demo small,
.team-demo strong {
  display: block;
}

.team-demo small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
}

.team-demo strong {
  margin-top: 2px;
  font-size: 0.85rem;
}

.coverage {
  background: #fff;
}

.map-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
  min-height: 590px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(15, 24, 38, 0.09);
}

.map-frame {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #e4e6e9;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 590px;
  border: 0;
  filter: saturate(0.64) contrast(1.06);
}

.map-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  background: rgba(10, 16, 27, 0.93);
  color: #fff;
  padding: 14px 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.map-badge svg {
  color: var(--gold-light);
}

.map-badge strong,
.map-badge small {
  display: block;
}

.map-badge strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
}

.map-badge small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
}

.district-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  background: var(--cream);
  padding: 38px;
}

.district-panel > div + div {
  padding-top: 28px;
  border-top: 1px solid #ddd8cb;
}

.district-panel h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
}

.district-panel h3 span {
  border-radius: 100px;
  background: #e9d7ae;
  color: #735219;
  padding: 4px 9px;
  font: 800 0.66rem/1.2 "DM Sans", sans-serif;
}

.district-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.74;
}

.district-panel .button {
  align-self: stretch;
}

.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  align-items: start;
  gap: 90px;
}

.faq-intro .button {
  margin-top: 28px;
}

.accordion {
  border-top: 1px solid #d7d3c8;
}

.accordion-item {
  border-bottom: 1px solid #d7d3c8;
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 22px 2px;
  text-align: left;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.accordion-item button svg {
  flex: 0 0 auto;
  color: #89611f;
  transition: transform 160ms ease;
}

.accordion-item button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.accordion-panel p {
  margin: -3px 0 24px;
  padding-right: 48px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.75;
}

.final-cta {
  background: linear-gradient(120deg, #cf9b3b, var(--gold-light));
  color: var(--ink);
  padding: 68px 0;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.final-cta span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.final-cta h2 {
  margin: 8px 0 4px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.final-cta p {
  margin: 0;
  color: rgba(10, 16, 27, 0.72);
}

.final-actions {
  flex: 0 0 auto;
  margin: 0;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.66);
  padding: 70px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  gap: 90px;
  padding-bottom: 52px;
}

.footer-brand {
  color: #fff;
}

.footer-grid > div:first-child p {
  max-width: 360px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid a,
.footer-grid span {
  font-size: 0.83rem;
}

.footer-grid a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.72rem;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 19px;
  }

  .desktop-nav a {
    font-size: 0.87rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.85fr);
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
  }

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

  .why-grid {
    gap: 60px;
  }

  .map-shell {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  }
}

@media (max-width: 920px) {
  .desktop-nav,
  .header-phone {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
  }

  .menu-button .menu-close,
  .menu-button[aria-expanded="true"] .menu-open {
    display: none;
  }

  .menu-button[aria-expanded="true"] .menu-close {
    display: block;
  }

  .mobile-menu {
    position: absolute;
    inset: 100% 0 auto;
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 16, 27, 0.98);
    padding: 10px 20px 16px;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.28);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    padding: 13px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.83);
    font-weight: 700;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
    padding-top: 142px;
    padding-bottom: 74px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 500px;
  }

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

  .trust-grid > div:nth-child(2) {
    border-right: 1px solid #ddd9cf;
  }

  .trust-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid #ddd9cf;
  }

  .section-heading,
  .coverage-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-copy {
    max-width: 720px;
  }

  .map-shell {
    grid-template-columns: 1fr;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 470px;
  }

  .district-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .district-panel > div + div {
    padding-top: 0;
    padding-left: 28px;
    border-top: 0;
    border-left: 1px solid #ddd8cb;
  }

  .district-panel .button {
    grid-column: 1 / -1;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 64px;
  }

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

  .site-header,
  .site-header.is-scrolled {
    height: 70px;
  }

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

  .brand-mark::after {
    top: 15px;
    box-shadow: 0 0 0 3px var(--ink);
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy small {
    font-size: 0.59rem;
  }

  .hero-grid {
    gap: 34px;
    padding-top: 116px;
    padding-bottom: 54px;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 0.68rem;
    line-height: 1.4;
  }

  .eyebrow span {
    margin-top: 7px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(2.75rem, 14vw, 4rem);
    line-height: 1;
  }

  .hero-copy > p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 32px;
  }

  .hero-metrics div {
    min-width: 0;
    padding: 0 12px;
  }

  .hero-metrics strong {
    font-size: 1.06rem;
  }

  .hero-metrics span {
    font-size: 0.64rem;
    line-height: 1.3;
  }

  .hero-visual {
    min-height: 350px;
    border-radius: 2px 2px 48px 2px;
  }

  .hero-visual img {
    object-position: 64% center;
  }

  .availability-card {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-width: 0;
  }

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

  .trust-grid > div,
  .trust-grid > div:nth-child(2),
  .trust-grid > div:last-child {
    border: 0;
    border-bottom: 1px solid #ddd9cf;
    padding: 19px 8px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading,
  .coverage-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .coverage-heading h2,
  .why-copy h2,
  .faq-intro h2 {
    font-size: 2.18rem;
  }

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

  .service-card {
    min-height: auto;
    padding: 26px 24px;
  }

  .why-grid,
  .faq-grid {
    gap: 42px;
  }

  .process-card {
    padding: 28px 22px;
  }

  .process-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 390px;
  }

  .map-badge {
    left: 12px;
    bottom: 12px;
  }

  .district-panel {
    display: flex;
    padding: 27px 22px;
  }

  .district-panel > div + div {
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid #ddd8cb;
    border-left: 0;
  }

  .district-panel .button {
    width: 100%;
  }

  .accordion-panel p {
    padding-right: 0;
  }

  .final-cta {
    padding: 54px 0;
  }

  .final-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 38px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 150;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--ink);
    box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.2);
  }

  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gold-light);
    font-family: "Manrope", sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
  }

  .mobile-action-bar a + a {
    background: var(--green);
    color: #fff;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
