:root {
  --page: #fff;
  --paper: #fff;
  --paper-blue: #f3f9fd;
  --ink: #0b1631;
  --navy: #1b2d5b;
  --blue: #0274be;
  --blue-soft: #d6edf8;
  --sky: #5bb8e6;
  --green: #25d366;
  --green-dark: #128c7e;
  --slate: #334155;
  --muted: #64748b;
  --soft: #eaf5fb;
  --line: #cfe3ee;
  --accent: #0274be;
  --radius: 0;
  --container: min(100% - 2rem, 74rem);
  background: var(--page);
  color: var(--ink);
  font-family:
    Inter, Aptos, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgb(214 237 248 / 0.75), transparent 23rem),
    radial-gradient(circle at 93% 6%, rgb(91 184 230 / 0.16), transparent 24rem),
    linear-gradient(rgb(2 116 190 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgb(2 116 190 / 0.027) 1px, transparent 1px),
    #fff;
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #07111f;
  box-shadow: none;
}

.hero-shell::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgb(4 10 20 / 0.68), rgb(4 10 20 / 0.84)),
    linear-gradient(90deg, rgb(4 10 20 / 0.86) 0 18%, rgb(4 10 20 / 0.5) 50%, rgb(4 10 20 / 0.84) 100%);
  pointer-events: none;
}

.hero-shell::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 20% 82%, rgb(0 128 188 / 0.24), transparent 20rem),
    radial-gradient(circle at 86% 18%, rgb(29 197 107 / 0.16), transparent 18rem),
    linear-gradient(180deg, transparent 0 72%, rgb(4 10 20 / 0.64) 100%);
  pointer-events: none;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  contain: paint;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-image: var(--bg, none);
  background-position: var(--pos, center);
  background-size: cover;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-bg-slide.is-active {
  opacity: 1;
}

.hero-shell .site-nav a,
.hero-shell .site-nav button {
  color: rgb(255 255 255 / 0.74);
}

.hero-shell .site-nav a:hover,
.hero-shell .site-nav a:focus-visible,
.hero-shell .site-nav button:hover,
.hero-shell .site-nav button:focus-visible {
  color: #fff;
}

.hero-shell .mega-column a {
  color: var(--slate);
}

.hero-shell .mega-column a:hover,
.hero-shell .mega-column a:focus-visible {
  color: var(--blue);
}

.hero-shell .mega-intro a {
  color: #fff;
}

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 2rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  font-weight: 800;
}

.brand-logo {
  width: auto;
  height: 2.4rem;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  font-size: 0.82rem;
  font-weight: 750;
}

.site-nav a,
.site-nav button {
  color: rgb(51 65 85 / 0.72);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav button:hover,
.site-nav button:focus-visible {
  color: var(--ink);
}

.nav-group {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
}

.mega-trigger {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.has-mega .nav-link::after {
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-1px);
}

.mega-menu {
  position: fixed;
  top: 3.85rem;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(74rem, calc(100vw - 2rem));
  padding: 0.6rem;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: 0 28px 70px rgb(11 22 49 / 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -0.45rem);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.mega-menu::before {
  position: absolute;
  top: -1.7rem;
  left: 0;
  width: 100%;
  height: 1.7rem;
  content: "";
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu,
.has-mega.is-mega-hovered .mega-menu,
.has-mega.is-mega-open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-intro,
.mega-column {
  display: grid;
  align-content: start;
  gap: 0.58rem;
  min-height: 13rem;
  padding: 1rem;
  background: #fff;
}

.mega-intro {
  background:
    linear-gradient(135deg, rgb(27 45 91 / 0.96), rgb(2 116 190 / 0.95)),
    var(--navy);
  color: #fff;
}

.mega-intro span,
.mega-column span {
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mega-intro strong {
  max-width: 12rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 0.98;
}

.mega-intro p {
  max-width: 16rem;
  margin: 0;
  color: rgb(255 255 255 / 0.78);
  line-height: 1.55;
}

.mega-intro a {
  align-self: end;
  justify-self: start;
  min-height: 2.3rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgb(255 255 255 / 0.38);
  border-radius: 999px;
  color: #fff;
  padding: 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 650;
}

.mega-column a {
  display: inline-flex;
  min-height: 1.9rem;
  align-items: center;
  border-bottom: 1px solid rgb(207 227 238 / 0.72);
  color: var(--slate);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.25;
}

.mega-column a:hover,
.mega-column a:focus-visible {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
}

.menu-toggle svg {
  width: 1.15rem;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.nav-pill,
.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff !important;
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1;
}

.nav-pill {
  min-height: 2.1rem;
  padding: 0.66rem 0.95rem;
  box-shadow: 0 10px 24px rgb(2 116 190 / 0.18);
}

.hero-content {
  display: grid;
  place-items: center;
  width: min(100% - 2rem, 76rem);
  min-height: 0;
  margin: 0 auto;
  padding: clamp(2rem, 6svh, 4rem) 0 clamp(1rem, 3svh, 2rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  max-width: 58rem;
  text-align: center;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--blue);
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-copy h1,
.intro-section h2,
.quick-section h2,
.section-heading h2,
.coverage-section h2,
.contact-section h2 {
  margin: 0.8rem 0 0;
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(3rem, 6.2vw, 6.1rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-copy h1 {
  color: #fff;
  max-width: 10.6em;
  font-size: clamp(3rem, 4.6vw, 4.95rem);
  text-shadow: 0 18px 46px rgb(0 0 0 / 0.42);
}

.hero-copy h1 span {
  display: block;
}

.title-line {
  display: block;
}

.hero-copy p:not(.eyebrow) {
  max-width: 43rem;
  margin: 1.25rem 0 0;
  color: rgb(236 246 255 / 0.84);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-copy .eyebrow {
  color: #64c7ff;
}

.primary-action {
  min-height: 2.65rem;
  margin-top: 1.5rem;
  padding: 0.84rem 1.25rem;
  box-shadow: 0 14px 28px rgb(2 116 190 / 0.22);
  transition:
    transform 160ms ease,
    background-color 160ms ease;
}

.primary-action:hover {
  transform: translateY(-1px);
  background: var(--navy);
}

a[href*="wa.me"].primary-action,
a[href*="wa.me"].secondary-action,
.service-whatsapp,
.footer-wa {
  gap: 0.48rem;
  border-color: var(--green);
  background: var(--green);
  color: #fff !important;
  box-shadow: 0 14px 30px rgb(37 211 102 / 0.26);
}

a[href*="wa.me"].primary-action::before,
a[href*="wa.me"].secondary-action::before,
.service-whatsapp::before,
.footer-wa::before {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  background: url("assets/whatsapp-white.svg") center / contain no-repeat;
  content: "";
}

a[href*="wa.me"].primary-action:hover,
a[href*="wa.me"].primary-action:focus-visible,
a[href*="wa.me"].secondary-action:hover,
a[href*="wa.me"].secondary-action:focus-visible,
.service-whatsapp:hover,
.service-whatsapp:focus-visible,
.footer-wa:hover,
.footer-wa:focus-visible {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgb(18 140 126 / 0.28);
}

.hero-foot {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(46rem, calc(100% - 2rem));
  margin: 0 auto 1.25rem;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.14), rgb(255 255 255 / 0.05)),
    rgb(16 32 58 / 0.58);
  color: rgb(255 255 255 / 0.86);
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.12);
}

.hero-foot span {
  display: grid;
  place-items: center;
  gap: 0.18rem;
  min-height: 5rem;
  padding: 0.82rem 0.7rem;
  text-align: center;
}

.hero-foot span + span {
  border-left: 1px solid rgb(255 255 255 / 0.16);
}

.hero-foot strong {
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  line-height: 0.98;
}

.hero-foot small {
  max-width: 8.5rem;
  color: rgb(226 239 255 / 0.7);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.intro-section,
.quick-section,
.services-section,
.method-section,
.coverage-section,
.faq-section,
.contact-section,
.site-footer {
  width: var(--container);
  margin: 0 auto;
  background: #fff;
}

.intro-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.intro-heading {
  justify-items: center;
  margin-bottom: 0;
  text-align: center;
}

.intro-section h2 {
  max-width: 12.5ch;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  line-height: 1.02;
}

.intro-heading h2,
.section-heading h2,
.contact-section h2 {
  margin-inline: auto;
  text-align: center;
}

.intro-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.intro-copy {
  display: grid;
  gap: 1.1rem;
}

.intro-proof img,
.method-image {
  width: 100%;
  object-fit: cover;
  border: 1px solid rgb(91 184 230 / 0.3);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgb(27 45 91 / 0.12);
}

.intro-proof img {
  aspect-ratio: 1.35 / 1;
  max-height: 24rem;
  filter: saturate(0.9) contrast(1.02);
}

.intro-values {
  display: grid;
  gap: 0.55rem;
}

.intro-values span {
  border-left: 3px solid var(--blue);
  background: linear-gradient(90deg, rgb(214 237 248 / 0.72), transparent);
  padding: 0.68rem 0.8rem;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.35;
}

.intro-section h2,
.quick-section h2,
.section-heading h2,
.coverage-section h2,
.contact-section h2 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 5vw, 5.1rem);
}

.intro-section h2 {
  max-width: 12.5ch;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  line-height: 1.02;
}

.intro-section p:not(.section-label),
.quick-grid a,
.coverage-lead p,
.coverage-grid p,
.contact-section p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.quick-section {
  border-block: 1px solid var(--line);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2rem;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: 0 20px 54px rgb(27 45 91 / 0.08);
}

.quick-grid a {
  display: grid;
  align-content: start;
  min-height: 12rem;
  padding: 1.15rem;
  background: #fff;
  color: var(--muted);
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.quick-grid a:hover,
.quick-grid a:focus-visible {
  background: var(--paper-blue);
  color: var(--slate);
}

.quick-grid span {
  margin-bottom: 0.9rem;
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 900;
}

.services-section,
.quick-section,
.method-section,
.coverage-section,
.faq-section,
.contact-section {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.services-section::before,
.quick-section::before,
.faq-section::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 16% 14%, rgb(214 237 248 / 0.9), transparent 22rem),
    radial-gradient(circle at 86% 80%, rgb(91 184 230 / 0.18), transparent 20rem),
    linear-gradient(rgb(2 116 190 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgb(2 116 190 / 0.026) 1px, transparent 1px),
    #fff;
  background-size: auto, auto, 48px 48px, 48px 48px, auto;
}

.method-section::before,
.coverage-section::before,
.contact-section::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  content: "";
  background:
    linear-gradient(135deg, rgb(243 249 253 / 0.86), rgb(255 255 255 / 0.92)),
    repeating-linear-gradient(90deg, transparent 0 54px, rgb(2 116 190 / 0.05) 54px 55px),
    #fff;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.services-section {
  color: var(--ink);
}

.services-section::before {
  background:
    radial-gradient(circle at 16% 14%, rgb(214 237 248 / 0.9), transparent 22rem),
    radial-gradient(circle at 86% 80%, rgb(91 184 230 / 0.18), transparent 20rem),
    linear-gradient(rgb(2 116 190 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgb(2 116 190 / 0.026) 1px, transparent 1px),
    #fff;
  background-size: auto, auto, 48px 48px, 48px 48px, auto;
}

.services-heading {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
  text-align: center;
}

.services-heading h2 {
  max-width: 15ch;
  margin: 0.45rem auto 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(2.35rem, 3.8vw, 4rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.services-section .section-label {
  color: var(--blue);
}

.services-link {
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 850;
}

.services-link::after {
  content: " →";
}

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

.services-grid article {
  display: grid;
  overflow: hidden;
  min-height: 18.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgb(27 45 91 / 0.06);
}

.services-grid article > img {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  height: auto;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  opacity: 0.9;
  transition: opacity 160ms ease;
}

.services-grid article:hover > img {
  opacity: 1;
}

.services-grid article > div {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0;
  align-content: start;
  min-height: 12.6rem;
  padding: 1.25rem;
}

.services-grid span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-number,
.method-list span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 850;
}

.service-number {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  display: inline-flex;
  min-width: 2.4rem;
  min-height: 2.4rem;
  align-items: center;
  justify-content: center;
  background: rgb(255 255 255 / 0.9);
  color: var(--navy);
  box-shadow: 0 10px 24px rgb(11 22 49 / 0.12);
}

.services-grid h3 {
  margin: 0.6rem 0 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.18;
}

.method-list h3 {
  margin: 1.25rem 0 0;
  font-size: 1.22rem;
  line-height: 1.12;
}

.services-grid p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-self: end;
  margin-top: 1rem;
}

.service-page-link,
.service-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  border-radius: 999px;
  padding: 0.72rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.service-page-link {
  border: 1px solid rgb(27 45 91 / 0.18);
  background: #fff;
  color: var(--navy);
}

.service-page-link:hover,
.service-page-link:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.method-list p,
.faq-list p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.method-section {
  border-block: 1px solid var(--line);
}

.method-section .section-heading h2 {
  max-width: 18ch;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.03;
}

.method-image {
  aspect-ratio: 2.6 / 1;
  max-height: 22rem;
  margin-bottom: 1rem;
  filter: saturate(0.92) contrast(1.03);
}

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

.method-list article {
  min-height: 13rem;
  padding: 1.1rem;
  border-top: 3px solid var(--blue);
  background: rgb(255 255 255 / 0.72);
}

.coverage-section {
  border-block: 1px solid var(--line);
}

.coverage-section .section-heading {
  justify-items: center;
  max-width: 56rem;
  margin-inline: auto;
  text-align: center;
}

.coverage-section h2 {
  max-width: 17ch;
  font-size: clamp(2.25rem, 4vw, 4.05rem);
  line-height: 1.02;
}

.coverage-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: end;
  margin-top: 1.5rem;
  padding: 1.2rem;
  border: 1px solid rgb(91 184 230 / 0.45);
  background:
    linear-gradient(135deg, rgb(247 252 255 / 0.96), rgb(234 246 252 / 0.92)),
    #fff;
}

.secondary-action {
  display: inline-flex;
  min-height: 2.65rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  padding: 0.8rem 1.05rem;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.coverage-lead .secondary-action {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 24px rgb(11 22 49 / 0.16);
}

.coverage-lead .secondary-action:hover,
.coverage-lead .secondary-action:focus-visible {
  border-color: var(--blue);
  background: var(--blue);
}

.coverage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.coverage-grid article {
  min-height: 15rem;
  padding: 1.1rem;
  background: #fff;
}

.coverage-grid span {
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: var(--blue);
  color: #fff;
  padding: 0 0.7rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.coverage-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.15;
}

.coverage-grid p {
  margin-top: 0.75rem;
  font-size: 0.96rem;
}

.city-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.city-cloud span {
  border: 1px solid rgb(91 184 230 / 0.45);
  background: #fff;
  padding: 0.5rem 0.7rem;
  color: var(--slate);
  font-size: 0.84rem;
  font-weight: 750;
}

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

.faq-list details {
  border: 1px solid rgb(91 184 230 / 0.45);
  border-radius: 2px;
  background: linear-gradient(135deg, #f7fcff, #eaf6fc);
  box-shadow: 0 16px 38px rgb(27 45 91 / 0.06);
}

.faq-list details[open] {
  border-color: rgb(2 116 190 / 0.55);
  background: #fff;
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 4rem;
  padding: 1rem;
  cursor: pointer;
  color: var(--navy);
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--blue);
  content: "+";
}

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

.faq-list p {
  margin: 0;
  padding: 0 1rem 1rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 30rem);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.contact-section > div:first-child {
  justify-self: center;
  text-align: center;
}

.contact-section p {
  max-width: 39rem;
  margin-top: 1rem;
  margin-inline: auto;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  border: 1px solid rgb(91 184 230 / 0.42);
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background: #fff;
  box-shadow: 0 30px 70px rgb(27 45 91 / 0.1);
}

.contact-form label {
  display: grid;
  gap: 0.42rem;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgb(91 184 230 / 0.45);
  border-radius: 2px;
  background: #f8fcff;
  color: var(--ink);
  padding: 0.82rem 0.9rem;
  font: inherit;
  outline: 0;
}

.contact-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgb(91 184 230 / 0.22);
}

.contact-form button {
  min-height: 3rem;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 950;
  box-shadow: 0 14px 30px rgb(34 197 94 / 0.22);
}

.contact-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.site-footer {
  width: 100%;
  margin-top: clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(circle at 12% 12%, rgb(2 116 190 / 0.32), transparent 24rem),
    radial-gradient(circle at 92% 0%, rgb(91 184 230 / 0.2), transparent 22rem),
    linear-gradient(135deg, #07111f, #0a1d39 46%, #07111f);
  color: rgb(255 255 255 / 0.78);
}

.footer-inner,
.footer-bottom {
  width: var(--container);
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(16rem, 1.25fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 1rem;
  max-width: 22rem;
}

.footer-logo {
  width: 8.5rem;
  height: auto;
  filter: drop-shadow(0 8px 18px rgb(91 184 230 / 0.2));
}

.footer-brand p,
.footer-column p {
  margin: 0;
  line-height: 1.65;
}

.footer-affiliate {
  color: rgb(255 255 255 / 0.68);
  font-size: 0.9rem;
  font-weight: 650;
}

.footer-affiliate a {
  color: #fff;
}

.footer-wa {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  justify-self: start;
  border-radius: 999px;
  padding: 0.82rem 1.05rem;
  font-size: 0.86rem;
  font-weight: 950;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.footer-column span {
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgb(255 255 255 / 0.86);
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.35;
}

.footer-inner > .footer-column:last-child a,
.footer-inner > .footer-column:last-child p {
  font-weight: 650;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgb(255 255 255 / 0.12);
  padding: 1.15rem 0 1.6rem;
  color: rgb(255 255 255 / 0.58);
  font-size: 0.82rem;
}

.floating-whatsapp {
  position: fixed;
  right: clamp(1rem, 3vw, 1.4rem);
  bottom: clamp(1rem, 3vw, 1.4rem);
  z-index: 20;
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 32px rgb(0 0 0 / 0.12);
}

.floating-whatsapp img {
  width: 2.1rem;
  height: 2.1rem;
}

.inner-page {
  background:
    radial-gradient(circle at 9% 10%, rgb(214 237 248 / 0.82), transparent 24rem),
    linear-gradient(rgb(2 116 190 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgb(2 116 190 / 0.026) 1px, transparent 1px),
    #fff;
  background-size: auto, 64px 64px, 64px 64px, auto;
}

.inner-site-header {
  width: 100%;
  border-bottom: 1px solid rgb(207 227 238 / 0.78);
  background: rgb(255 255 255 / 0.92);
}

.inner-page .brand-logo {
  filter: none;
}

.inner-hero,
.detail-section,
.cta-band {
  width: var(--container);
  margin: 0 auto;
}

.inner-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 34rem);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
}

.inner-hero h1 {
  max-width: 11ch;
  margin: 0.8rem 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.inner-hero p:not(.section-label) {
  max-width: 43rem;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.inner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-top: 1.5rem;
}

.inner-actions .primary-action {
  margin-top: 0;
}

.inner-media {
  overflow: hidden;
  border: 1px solid rgb(91 184 230 / 0.32);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 28px 62px rgb(27 45 91 / 0.16);
}

.inner-media img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  height: auto;
  object-fit: cover;
}

.detail-section {
  display: grid;
  gap: 1rem;
  padding: 0 0 clamp(4rem, 8vw, 7rem);
}

.detail-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.2rem);
  counter-reset: info-card;
}

.detail-card,
.info-card {
  position: relative;
  overflow: hidden;
  min-height: 13.5rem;
  border: 1px solid rgb(91 184 230 / 0.28);
  border-radius: 10px;
  padding: 1.35rem;
  background:
    linear-gradient(160deg, #fff 0 62%, rgb(234 246 252 / 0.74) 100%);
  box-shadow: 0 22px 50px rgb(27 45 91 / 0.08);
}

.detail-card::before,
.info-card::before {
  counter-increment: info-card;
  content: counter(info-card, decimal-leading-zero);
  position: absolute;
  top: 1.05rem;
  right: 1.05rem;
  color: rgb(2 116 190 / 0.18);
  font-size: 2.25rem;
  font-weight: 950;
  line-height: 1;
}

.detail-card::after,
.info-card::after {
  position: absolute;
  left: 1.35rem;
  bottom: 1.15rem;
  width: 2.8rem;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
}

.detail-card h2,
.info-card h2,
.detail-card h3,
.info-card h3 {
  margin: 0;
  max-width: calc(100% - 3.5rem);
  color: var(--navy);
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
  line-height: 1.12;
}

.detail-card p,
.info-card p,
.detail-card li,
.info-card li {
  color: var(--muted);
  line-height: 1.62;
}

.detail-card ul,
.info-card ul {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
}

.detail-card.is-wide {
  grid-column: span 2;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  border: 1px solid rgb(91 184 230 / 0.34);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgb(27 45 91 / 0.96), rgb(2 116 190 / 0.96)),
    var(--navy);
  padding: clamp(1.25rem, 3vw, 2rem);
  color: #fff;
}

.cta-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
}

.cta-band p {
  max-width: 45rem;
  margin: 0.7rem auto 0;
  color: rgb(255 255 255 / 0.76);
  line-height: 1.6;
  text-align: center;
}

.cta-band .primary-action {
  margin-top: 0;
  background: #fff;
  color: var(--navy) !important;
  box-shadow: none;
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
}

.city-hero {
  position: relative;
  isolation: isolate;
  min-height: 72svh;
  overflow: hidden;
  background: #fff;
}

.city-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 12% 22%, rgb(214 237 248 / 0.84), transparent 23rem),
    radial-gradient(circle at 86% 20%, rgb(34 197 94 / 0.12), transparent 22rem),
    linear-gradient(rgb(2 116 190 / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgb(2 116 190 / 0.028) 1px, transparent 1px),
    #fff;
  background-size: auto, auto, 60px 60px, 60px 60px, auto;
}

.city-hero-content,
.city-intro,
.states-directory,
.city-cta {
  width: var(--container);
  margin: 0 auto;
}

.city-hero-content {
  display: grid;
  align-content: center;
  min-height: calc(72svh - 5rem);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.city-hero-content h1,
.city-intro h2,
.city-cta h2 {
  max-width: 12ch;
  margin: 0.8rem 0 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(3rem, 6vw, 6.1rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.city-hero-content p:not(.eyebrow),
.city-intro p,
.city-cta p {
  max-width: 43rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.city-hero-content .primary-action {
  justify-self: start;
}

.city-intro {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.city-intro h2,
.city-cta h2 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.states-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: 0 24px 60px rgb(27 45 91 / 0.08);
}

.states-directory article {
  min-height: 12rem;
  padding: 1rem;
  background: #fff;
  scroll-margin-top: 6rem;
}

.states-directory h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.18;
}

.states-directory h2 a {
  color: inherit;
  text-decoration: none;
}

.states-directory h2 a:hover {
  color: var(--blue);
}

.states-directory p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.city-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: clamp(3rem, 7vw, 5rem);
  margin-bottom: clamp(4rem, 8vw, 6rem);
  padding: 1.2rem;
  background:
    linear-gradient(135deg, rgb(27 45 91 / 0.96), rgb(2 116 190 / 0.96)),
    var(--navy);
  color: #fff;
}

.city-cta .section-label {
  color: var(--sky);
}

.city-cta h2 {
  color: #fff;
}

.city-cta p {
  color: rgb(255 255 255 / 0.82);
}

.city-cta .primary-action {
  margin-top: 0;
  background: var(--green);
  color: #082213 !important;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-shell {
    width: 100%;
    min-height: 100svh;
    margin: 0;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    inset: 4rem 1rem auto;
    display: grid;
    gap: 0;
    max-height: calc(100svh - 5rem);
    overflow: auto;
    padding: 0.6rem;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 18px 36px rgb(0 0 0 / 0.08);
    transform: translateY(-0.5rem);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

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

  .site-nav a,
  .site-nav button {
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
  }

  .nav-group {
    display: grid;
  }

  .mega-trigger {
    width: 100%;
    justify-content: space-between;
    text-align: left;
  }

  .has-mega .nav-link::after {
    margin-left: auto;
    transition: transform 160ms ease;
  }

  .has-mega.is-mega-open .nav-link::after {
    transform: rotate(225deg) translate(-2px, -1px);
  }

  .hero-shell .site-nav a,
  .hero-shell .site-nav button {
    color: rgb(51 65 85 / 0.72);
  }

  .mega-menu {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    width: auto;
    margin: 0.2rem 0 0.9rem;
    padding: 0.45rem;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .has-mega.is-mega-open .mega-menu {
    display: grid;
  }

  .mega-menu::before {
    display: none;
  }

  .mega-intro,
  .mega-column {
    min-height: auto;
    padding: 0.8rem;
  }

  .mega-intro strong {
    max-width: none;
    font-size: 1.45rem;
  }

  .mega-column a {
    padding: 0;
  }

  .coverage-actions {
    justify-content: flex-start;
  }

  .hero-content,
  .intro-section,
  .inner-hero,
  .cta-band,
  .city-intro,
  .city-cta,
  .coverage-lead,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-proof {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .services-heading {
    align-items: start;
  }

  .quick-grid,
  .detail-grid,
  .info-grid,
  .states-directory,
  .coverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-card.is-wide {
    grid-column: auto;
  }

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

  .hero-foot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(34rem, calc(100% - 2rem));
  }

  .hero-foot span:nth-child(odd) {
    border-left: 0;
  }

  .hero-foot span:nth-child(n + 3) {
    border-top: 1px solid rgb(255 255 255 / 0.16);
  }
}

@media (max-width: 620px) {
  :root {
    --radius: 20px;
  }

  .site-header {
    padding: 0.9rem;
  }

  .hero-content {
    min-height: auto;
    padding: 3.2rem 0 2rem;
  }

  .hero-copy h1 {
    max-width: 10.6em;
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .hero-foot {
    width: calc(100% - 1.5rem);
  }

  .hero-foot span {
    min-height: 4.5rem;
    padding: 0.72rem 0.5rem;
  }

  .hero-foot strong {
    font-size: 1.45rem;
  }

  .hero-foot small {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  .services-grid,
  .quick-grid,
  .detail-grid,
  .info-grid,
  .states-directory,
  .coverage-grid,
  .method-list {
    grid-template-columns: 1fr;
  }

  .services-heading {
    display: grid;
    gap: 1rem;
  }

  .services-grid article,
  .quick-grid a,
  .coverage-grid article,
  .method-list article {
    min-height: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

.services-heading h2,
.intro-section h2,
.method-section .section-heading h2,
.coverage-section h2,
.faq-section .section-heading h2,
.contact-section h2,
.inner-hero h1,
.city-hero-content h1,
.city-intro h2,
.city-cta h2,
.cta-band h2 {
  max-width: 22ch;
  margin-inline: auto;
  font-size: clamp(2.45rem, 4vw, 3.2rem);
  line-height: 1.08;
  text-align: center;
}

.hero-copy h1 {
  max-width: 22ch;
  margin-inline: auto;
  font-size: clamp(3.45rem, 5.4vw, 5.35rem);
  line-height: 1;
  text-align: center;
}

.hero-copy h1 span {
  white-space: nowrap;
}

.inner-hero h1 {
  max-width: 18ch;
}

.inner-page .inner-hero > div:first-child {
  justify-self: start;
  text-align: left;
}

.inner-page .inner-hero h1,
.inner-page .inner-hero p:not(.section-label) {
  margin-inline: 0;
  text-align: left;
}

.inner-page .inner-actions {
  justify-content: flex-start;
}

@media (max-width: 620px) {
  .services-heading h2,
  .intro-section h2,
  .method-section .section-heading h2,
  .coverage-section h2,
  .faq-section .section-heading h2,
  .contact-section h2,
  .inner-hero h1,
  .city-hero-content h1,
  .city-intro h2,
  .city-cta h2,
  .cta-band h2 {
    font-size: 2.1rem;
  }

  .hero-copy h1 {
    font-size: 2.85rem;
  }

  .hero-copy h1 span {
    white-space: normal;
  }
}

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