:root {
  --bg: #08111c;
  --surface: #0d1724;
  --surface-2: #122132;
  --surface-3: rgba(255,255,255,0.06);
  --text: #e9f2fb;
  --muted: #adc0d4;
  --primary: #17385d;
  --primary-2: #214f85;
  --line: rgba(255,255,255,0.1);
  --white: #ffffff;
  --max: 1220px;
  --radius: 24px;
  --shadow: 0 30px 60px rgba(0,0,0,0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(33,79,133,0.18), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(255,255,255,0.06), transparent 20%),
    linear-gradient(180deg, #060c14 0%, #09121d 40%, #07111c 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.section { padding: 110px 0; }
.section-sm { padding: 56px 0; }
.alt-bg {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.center { text-align: center; }
.narrow { max-width: 760px; margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #88acd2;
  margin-bottom: 14px;
}
h1, h2, h3 {
  line-height: 1.06;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}
h1 {
  font-size: clamp(2.9rem, 5.5vw, 2rem);
  max-width: 12ch;
  text-wrap: balance;
}
h2 { font-size: clamp(2rem, 3vw, 3.4rem); }
h3 { font-size: 1.28rem; }
p { margin: 0 0 14px; color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: linear-gradient(180deg, rgba(5, 10, 17, 0.86), rgba(5, 10, 17, 0.68));
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.16);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.brand img { width: 42px; height: 42px; object-fit: contain; }
.main-nav {
  display: flex;
  gap: 28px;
  color: #d3e1ef;
}
.main-nav a { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #95b6da;
  transition: width 0.3s ease;
}
.main-nav a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
  transition: 0.25s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #244e80, #17385d 70%);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(23, 56, 93, 0.45);
}
.btn-secondary, .btn-outline {
  border-color: rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.03);
  color: var(--white);
}
.btn.full { width: 100%; }

/* =========================
   HERO
========================= */
.hero {
  padding-top: 64px;
  position: relative;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  right: -120px;
  top: -80px;
  background: radial-gradient(circle, rgba(46, 104, 173, 0.25), transparent 60%);
  filter: blur(10px);
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  left: -120px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 65%);
}

/* =========================
   HERO LAYOUT
========================= */
.hero-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-areas:
    "copy visual"
    "info visual";
  gap: 28px 42px;
  align-items: start;
}

.hero-copy {
  grid-area: copy;
}

.hero-visual {
  grid-area: visual;
  align-self: start;
}

.hero-info {
  grid-area: info;
  max-width: 760px;
}

/* =========================
   HERO COPY
========================= */
.hero-copy h1 {
  margin-bottom: 0;
  max-width: 13ch;
}

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

.hero-description {
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  text-wrap: pretty;
}

/* =========================
   HERO ACTIONS
========================= */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 0;
}

/* =========================
   HERO VISUAL
========================= */
.hero-card {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  border-radius: 28px;
  padding: 18px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at 80% 10%, rgba(35, 86, 142, 0.28), transparent 24%),
    linear-gradient(180deg, #17385d 0%, #10243b 65%, #0c1827 100%);
  box-shadow: var(--shadow);
}

/* logo de fondo eliminado */
.hero-logo-mark {
  display: none;
}

.hero-illustration {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 20px;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.22));
}

/* =========================
   FLOATING BADGES
========================= */
.floating-badge {
  position: absolute;
  padding: 12px 18px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  background: #122132b3;
  border: 1px solid #07111c5c;
  font-weight: 700;
  font-size: 0.92rem;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

.floating-card {
  animation: floatCard 8s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* =========================
   HERO META
========================= */
.hero-meta {
  margin: 44px auto 0;
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.hero-meta div {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 18px;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero-meta strong {
  display: block;
  font-size: 1.12rem;
  margin-bottom: 6px;
}

.hero-meta span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* =========================
   TABLET (PRO CLEAN VERSION)
========================= */
@media (max-width: 1100px) {

  /* Layout general */
  .hero-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "info";
    gap: 26px;
    justify-items: center;
  }

  /* Contenedores centrados */
  .hero-copy,
  .hero-visual,
  .hero-info {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }

  /* Copy centrado */
  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow {
    text-align: center;
  }

  /* Título optimizado */
  .hero-copy h1 {
    max-width: 11.5ch;
    margin: 0 auto;
    font-size: clamp(2.6rem, 6vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
  }

  /* Descripción */
  .hero-description {
    max-width: 58ch;
    margin: 0 auto;
    text-align: center;
  }

  /* Botones */
  .hero-actions {
    justify-content: center;
    gap: 12px;
  }

  /* Imagen centrada */
  .hero-visual {
    justify-self: center;
  }

.hero-card {
    min-height: unset; /* 🔥 clave */
    height: auto;
    padding: 14px;
    margin: 0 auto;
    width: fit-content;
    line-height: 0;
  }

  .hero-illustration {
    display: block;
    width: 100%;
    height: auto;
  }

  /* Badges reposicionados */
  .floating-badge {
    font-size: 0.85rem;
    padding: 10px 14px;
  }

  .badge-1 {
    top: 16px;
    left: 14px;
  }

  .badge-2 {
    top: auto;
    right: 14px;
    bottom: 80px;
    transform: none;
  }

  .badge-3 {
    bottom: 14px;
    left: 14px;
  }

  /* Bullets centrados */
  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
    margin: 32px auto 0;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {
  .hero {
    padding-top: 40px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "info";
    gap: 20px;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-card {
    width: 100%;
    padding: 12px;
    border-radius: 22px;
  }

  .hero-illustration {
    max-width: 100%;
    border-radius: 16px;
  }

  .floating-badge {
    font-size: 0.82rem;
    padding: 10px 14px;
  }


  .hero-description {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-meta {
    margin-top: 28px;
    grid-template-columns: 1fr;
  }

  .hero-meta div {
    min-height: auto;
  }
}
/* =========================
   HERO END
========================= */
.section-intro { margin-bottom: 34px; }
.section-intro p { max-width: 62ch; }

.brand-marquee .marquee {
  margin-top: 28px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 26s linear infinite;
  padding: 18px;
}

.brand-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 72px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 999px;
  flex-shrink: 0;
}

.brand-item img {
  display: block;
  max-width: 140px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.quick-card {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  font-weight: 700;
  transition: 0.25s ease;
}
.quick-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.16); }
.quick-card span { font-size: 1.25rem; }
.quick-card-btn { color: inherit; }

.about-grid, .supplies-grid, .coverage-grid, .contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}
.about-image img, .supplies-visual img, .map-card img {
  width: 100%;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  box-shadow: var(--shadow);
}
.bullet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.bullet-card, .adv-card, .timeline-item, .service-card, .coverage-card, .map-card, .contact-form, .contact-copy {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.16);
}
.bullet-card {
  padding: 18px;
}
.bullet-card strong, .adv-card strong { display: block; margin-bottom: 5px; }

.services-grid, .adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(154,190,226,0.26);
  background: linear-gradient(180deg, rgba(33,79,133,0.16), rgba(255,255,255,0.04));
  box-shadow: 0 28px 46px rgba(0,0,0,0.22);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -50% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(33,79,133,0.2), transparent 70%);
}
.service-card.highlight {
  background: linear-gradient(180deg, rgba(33,79,133,0.24), rgba(255,255,255,0.04));
}
.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 30px;
}
.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #d6e4f2;
}
.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8bb0d7, #214f85);
  position: absolute;
  left: 0;
  top: 9px;
}

.adv-card {
  padding: 24px;
  min-height: 150px;
  transition: transform .28s ease, border-color .28s ease;
}
.adv-card:hover { transform: translateY(-6px); border-color: rgba(154,190,226,0.24); }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.timeline-item { padding: 24px; position: relative; }
.timeline-number {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  font-size: 0.85rem;
  font-weight: 800;
  color: #8fb4da;
}
.coverage-card, .map-card, .contact-form, .contact-copy { padding: 28px; }
.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.coverage-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 600;
}

.cta-band-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 36px;
  border-radius: 30px;
  border: 1px solid rgba(154,190,226,0.18);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent 24%),
    linear-gradient(135deg, rgba(33,79,133,0.34), rgba(255,255,255,0.05));
  box-shadow: 0 26px 50px rgba(0,0,0,0.18);
}
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 38px;
}
.faq-list { display: grid; gap: 16px; }
details {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  padding: 0 22px;
}
summary {
  list-style: none;
  padding: 20px 0;
  font-weight: 700;
  cursor: pointer;
}
summary::-webkit-details-marker { display: none; }
details p { padding-bottom: 20px; }

.contact-list { display: grid; gap: 12px; margin-top: 20px; }
.contact-list a, .contact-list span {
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #dfeaf6;
}
.form-row input, .form-row textarea, .form-row select, .quote-form input, .quote-form textarea, .quote-form select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border-radius: 16px;
  padding: 15px 16px;
  outline: none;
}
.form-row input::placeholder, .form-row textarea::placeholder, .quote-form input::placeholder, .quote-form textarea::placeholder { color: #95abc1; }
.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand img { width: 42px; }
.footer-brand strong { display: block; }
.footer-brand span { color: var(--muted); font-size: 0.92rem; }
.footer-links { display: flex; gap: 18px; color: #c9d9e8; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 35;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(135deg, #17385d, #3267a5);
  color: white;
  box-shadow: 0 22px 40px rgba(0,0,0,0.28);
  display: grid;
  place-items: center;
  font-size: 1.45rem;
}
.whatsapp-float::after {
  content: 'Cotizar';
  position: absolute;
  right: 78px;
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8,17,28,0.88);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dceaf7;
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0;
  transform: translateX(8px);
  transition: .25s ease;
}
.whatsapp-float:hover::after { opacity: 1; transform: translateX(0); }

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}
.modal.active { opacity: 1; pointer-events: auto; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 14, 0.72);
  backdrop-filter: blur(8px);
}
.modal-dialog {
  position: relative;
  width: min(760px, calc(100% - 24px));
  max-height: 90vh;
  overflow: auto;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, #0c1827, #0a1420);
  box-shadow: var(--shadow);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: white;
  font-size: 1.4rem;
}
.modal-header { margin-bottom: 20px; }
.quote-form { display: grid; gap: 0; }

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38,95,160,0.18), transparent 65%);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  opacity: 0.75;
}

.hero-copy h1 {
  background: linear-gradient(180deg, #ffffff 0%, #d7e7f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  max-width: 800px;
  line-height: 1.1;
}
.hero-meta div, .bullet-card, .service-card, .adv-card, .timeline-item, .coverage-card, .map-card, .contact-form, .contact-copy {
  backdrop-filter: blur(10px);
}
.brand img { filter: drop-shadow(0 8px 20px rgba(255,255,255,0.08)); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1100px) {
  .hero-grid, .about-grid, .supplies-grid, .coverage-grid, .contact-grid, .faq-grid,
  .timeline, .services-grid, .adv-grid, .quick-grid {
    grid-template-columns: 1fr 1fr;
  }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .hero-card { min-height: 580px; }
}

@media (max-width: 820px) {
  .main-nav {
    position: fixed;
    inset: 84px 16px auto 16px;
    display: grid;
    gap: 0;
    background: rgba(7, 15, 25, 0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 10px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a { padding: 12px 14px; }
  .menu-toggle { display: inline-block; }
  .btn-outline { display: none; }
  .hero-grid, .about-grid, .supplies-grid, .coverage-grid, .contact-grid, .faq-grid,
  .services-grid, .adv-grid, .quick-grid, .two-col { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .hero-meta { grid-template-columns: 1fr; }
  .bullet-grid { grid-template-columns: 1fr; }
  .cta-band-wrap, .footer-wrap { flex-direction: column; align-items: flex-start; }
  .hero-card { min-height: auto; }
  h1 { max-width: 100%; }
  .section { padding: 86px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

@media (max-width: 820px) { .whatsapp-float::after { display:none; } }


/* =========================
   RESPONSIVE CLEANUP
   (tablet + mobile centering without changing visual style)
========================= */

/* Large tablets and small desktops */
@media (max-width: 1100px) {
  .container {
    width: min(calc(100% - 36px), var(--max));
  }

  .section {
    padding: 88px 0;
  }

  .section-sm {
    padding: 46px 0;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "info";
    gap: 24px;
    justify-items: center;
  }

  .hero-copy,
  .hero-visual,
  .hero-info {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
  }

  .hero-copy,
  .hero-info {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .section-intro.center .eyebrow,
  .cta-band-wrap .eyebrow {
    justify-content: center;
    text-align: center;
  }

  .hero-copy h1 {
    margin-inline: auto;
    max-width: 11.5ch;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
  }

  .hero-description {
    max-width: 60ch;
    margin-inline: auto;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: flex;
    justify-content: center;
  }

  .hero-card {
    display: inline-block;
    width: auto !important;
    max-width: 100%;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 auto;
    padding: 14px;
    line-height: 0;
  }

  .hero-illustration {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
  }

  .hero-meta {
    max-width: 760px;
    margin: 32px auto 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-grid,
  .services-grid,
  .adv-grid,
  .timeline,
  .about-grid,
  .supplies-grid,
  .coverage-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .section-intro,
  .section-intro.center,
  .section-intro.narrow,
  .about-copy,
  .supplies-copy,
  .coverage-card,
  .contact-copy,
  .contact-form,
  .faq-list,
  .faq-grid,
  .cta-band-wrap {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
  }

  .section-intro,
  .section-intro.center,
  .section-intro.narrow,
  .about-copy,
  .supplies-copy,
  .coverage-card,
  .contact-copy,
  .faq-grid,
  .cta-band-wrap {
    text-align: center;
  }

  .section-intro p,
  .about-copy p,
  .supplies-copy p,
  .coverage-card p,
  .contact-copy p,
  .cta-band-wrap p,
  .cta-band-wrap h2 {
    margin-inline: auto;
  }

  .feature-list {
    max-width: 620px;
    margin-inline: auto;
    text-align: left;
  }

  .about-image,
  .supplies-visual,
  .map-card {
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
  }

  .about-image img,
  .supplies-visual img,
  .map-card img {
    margin-inline: auto;
  }

  .cta-band-wrap {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .cta-band-actions {
    justify-content: center;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Mobile and small tablets */
@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav-wrap {
    min-height: 76px;
  }

  .main-nav {
    inset: 76px 14px auto 14px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-copy,
  .hero-visual,
  .hero-info,
  .hero-meta,
  .section-intro,
  .about-copy,
  .supplies-copy,
  .coverage-card,
  .contact-copy,
  .contact-form,
  .faq-list,
  .cta-band-wrap,
  .about-image,
  .supplies-visual,
  .map-card {
    max-width: 100%;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 8vw, 3.6rem);
  }

  .hero-card {
    padding: 12px;
    border-radius: 22px;
  }

  .hero-illustration {
    max-width: 100%;
    border-radius: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn,
  .cta-band-actions .btn,
  .quick-card,
  .quick-card-btn {
    width: 100%;
  }

  .hero-meta,
  .bullet-grid,
  .services-grid,
  .adv-grid,
  .timeline,
  .quick-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-meta div,
  .bullet-card,
  .service-card,
  .adv-card,
  .timeline-item,
  .coverage-card,
  .map-card,
  .contact-form,
  .contact-copy {
    min-height: auto;
  }

  .contact-list,
  .coverage-tags,
  .footer-links {
    justify-content: center;
  }

  .coverage-tags {
    text-align: center;
  }

  .site-footer {
    padding-bottom: 96px;
  }
}

/* Small phones */
@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .section {
    padding: 72px 0;
  }

  .section-sm {
    padding: 40px 0;
  }

  .btn {
    padding: 14px 18px;
  }

  .hero-copy h1 {
    font-size: clamp(2.15rem, 9vw, 3rem);
    line-height: 1.08;
  }

  .hero-description {
    font-size: 0.98rem;
  }

  .section-intro h2,
  h2 {
    font-size: clamp(1.75rem, 7vw, 2.4rem);
  }

  .marquee-track span {
    min-width: 180px;
  }

  .modal-dialog {
    padding: 22px 18px;
    border-radius: 22px;
  }
}

@media (max-width: 768px) {
  .contact-form button.btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }
}

/* =========================
   CONTACT FORM - MOBILE BUTTON CENTER
========================= */
@media (max-width: 768px) {
  .contact-form button.btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }
}
