:root {
  --red: #E11D2A;
  --red-dark: #B5101B;
  --black: #0A0A0A;
  --ink: #111111;
  --panel: #161616;
  --panel-2: #1F1F1F;
  --line: #262626;
  --line-2: #333333;
  --muted: #8A8A8A;
  --text: #E8E8E8;
  --text-dim: #B5B5B5;
  --white: #FFFFFF;
  --max: 1200px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 2px;
}

* { box-sizing: border-box; }
*::selection { background: var(--red); color: var(--white); }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--black);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}

.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--red);
  margin: 0 0 1.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.btn-ghost {
  border-color: var(--line-2);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
}
.btn-lg {
  padding: 1rem 1.6rem;
  font-size: 0.95rem;
}
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem var(--pad);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-right: auto;
}
.brand-logo {
  height: 36px;
  width: auto;
}
.brand-fallback {
  display: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--red);
}
.nav-links {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.lang-toggle {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.lang-toggle:hover { border-color: var(--red); color: var(--white); }
.lang-toggle .lang-active { color: var(--red); font-weight: 700; }
.lang-toggle .lang-inactive { color: var(--muted); }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) 0 clamp(4rem, 9vw, 7rem);
  overflow: hidden;
  background: radial-gradient(ellipse at 25% 20%, rgba(225, 29, 42, 0.12), transparent 60%), var(--black);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.hero-mark {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  width: 62%;
  max-width: 760px;
  opacity: 0.18;
  pointer-events: none;
  filter: drop-shadow(0 0 80px rgba(225, 29, 42, 0.4));
  will-change: transform;
  animation: bullBreathe 6s ease-in-out infinite;
}
.hero-mark img { width: 100%; height: auto; }
@keyframes bullBreathe {
  0%, 100% { opacity: 0.18; filter: drop-shadow(0 0 80px rgba(225, 29, 42, 0.35)); }
  50%      { opacity: 0.24; filter: drop-shadow(0 0 110px rgba(225, 29, 42, 0.55)); }
}

/* Hero cross-section SVG (animated bore) */
.hero-xsection {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 55%;
  pointer-events: none;
  opacity: 0.55;
  mask-image: linear-gradient(to top, black 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 65%, transparent 100%);
}
.hero-inner {
  position: relative;
  max-width: 900px;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 1.5rem;
  color: var(--white);
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 0 2.25rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ---------- Stats ---------- */
.stats {
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 2rem var(--pad) 2rem 0;
  border-left: 1px solid var(--line);
  padding-left: 1.5rem;
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.4;
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(4rem, 9vw, 7rem) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.section-dark { background: var(--ink); }
.section-head {
  max-width: 800px;
  margin: 0 0 3.5rem;
}
.section-num { display: none; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0;
}

/* ---------- Capabilities ---------- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cap {
  background: var(--ink);
  padding: 2.25rem;
  transition: background 0.2s ease;
}
.cap:hover { background: var(--panel); }
.cap-icon {
  width: 48px;
  height: 48px;
  color: var(--red);
  margin-bottom: 1.5rem;
}
.cap-icon svg { width: 100%; height: 100%; }
.cap h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cap p {
  color: var(--text-dim);
  margin: 0;
  font-size: 0.97rem;
}

/* ---------- Fleet ---------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.fleet {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.fleet:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}
.fleet-tag {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 0.25rem 0.55rem;
  margin-bottom: 1.25rem;
}
.fleet h3 {
  font-size: 1.85rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.fleet-model {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin: 0 0 1.25rem;
  text-transform: none;
  letter-spacing: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}
.fleet-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.fleet-specs li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text-dim);
  font-size: 0.92rem;
}
.fleet-specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 2px;
  background: var(--red);
}

/* ---------- Why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}
.why {
  padding-left: 1.5rem;
  border-left: 2px solid var(--red);
}
.why h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.why p {
  color: var(--text-dim);
  margin: 0;
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process {
  padding: 2rem 1.5rem 2rem 0;
  border-left: 1px solid var(--line);
  padding-left: 1.5rem;
  position: relative;
}
.process:first-child {
  border-left: none;
  padding-left: 0;
}
.process-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 1rem;
}
.process h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.process p {
  color: var(--text-dim);
  margin: 0;
  font-size: 0.95rem;
}

/* ---------- Contact ---------- */
.section-contact {
  background: linear-gradient(180deg, var(--black), var(--ink));
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-copy .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
.contact-direct {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-line {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  transition: color 0.2s ease;
}
.contact-line:last-child { border-bottom: 1px solid var(--line); }
.contact-line:hover { color: var(--white); }
.contact-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 90px;
}
.contact-val {
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
}

.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.field label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.field input,
.field textarea {
  font: inherit;
  background: var(--black);
  border: 1px solid var(--line-2);
  color: var(--white);
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius);
  transition: border-color 0.15s ease;
  width: 100%;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-status {
  margin: 0;
  font-size: 0.9rem;
  min-height: 1.25rem;
  color: var(--red);
}
.form-status.ok { color: #4ade80; }

/* ---------- Motion: reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-children > * {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal-children.in > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.reveal-children.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-children.in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-children.in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-children.in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-children.in > *:nth-child(5) { transition-delay: 320ms; }

/* Stats counter — soft pulse when finished */
.stat-num.counted {
  animation: countPop 0.5s cubic-bezier(0.2, 0.9, 0.2, 1.2);
}
@keyframes countPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* ---------- Process timeline animated line ---------- */
.process-grid { position: relative; }
.process-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
  z-index: 1;
  opacity: 1 !important;
  transform: none !important;
}
.process-line line {
  transition: stroke-dashoffset 1.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.process-grid.in .process-line line {
  stroke-dashoffset: 0 !important;
}
.process { position: relative; z-index: 2; }
.process-num {
  display: inline-block;
  position: relative;
}
.process-num::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  transform: translate3d(-50%, -50%, 0) scale(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.2, 1.2);
}
.process-grid.in .process:nth-child(2) .process-num::before { transition-delay: 250ms; transform: translate3d(-50%, -50%, 0) scale(1); }
.process-grid.in .process:nth-child(3) .process-num::before { transition-delay: 600ms; transform: translate3d(-50%, -50%, 0) scale(1); }
.process-grid.in .process:nth-child(4) .process-num::before { transition-delay: 950ms; transform: translate3d(-50%, -50%, 0) scale(1); }
.process-grid.in .process:nth-child(5) .process-num::before { transition-delay: 1300ms; transform: translate3d(-50%, -50%, 0) scale(1); }

/* ---------- Floating Cotizar CTA ---------- */
.float-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.2rem;
  background: var(--red);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(225, 29, 42, 0.5);
  transform: translate3d(0, 80px, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.2s ease;
}
.float-cta svg {
  width: 18px;
  height: 18px;
}
.float-cta.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}
.float-cta:hover {
  background: var(--red-dark);
  transform: translate3d(0, -3px, 0);
}

/* Cap icons subtle motion on hover */
.cap { transition: background 0.2s ease, transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1); }
.cap:hover { transform: translate3d(0, -3px, 0); }
.cap-icon { transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1); }
.cap:hover .cap-icon { transform: translate3d(0, -2px, 0) scale(1.08); color: var(--red); }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-children > * { opacity: 1 !important; transform: none !important; }
  .process-grid.in .process .process-num::before { transform: translate3d(-50%, -50%, 0) scale(1) !important; }
  .hero-xsection circle { display: none; }
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red), #ff4b58);
  z-index: 200;
  transition: width 0.08s linear;
  box-shadow: 0 0 12px rgba(225, 29, 42, 0.6);
}

/* ---------- Bull section dividers ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2.5rem var(--pad);
  background: var(--black);
}
.divider-line {
  flex: 1;
  max-width: 280px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}
.divider-mark {
  width: 56px;
  height: auto;
  opacity: 0.7;
  filter: drop-shadow(0 0 16px rgba(225, 29, 42, 0.35));
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.divider:hover .divider-mark {
  opacity: 1;
  transform: scale(1.08);
}

/* ---------- Coverage map ---------- */
.coverage-wrap {
  position: relative;
  background: linear-gradient(180deg, var(--ink), var(--black));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  overflow: hidden;
}
.coverage-map {
  width: 100%;
  height: auto;
  max-height: 540px;
  display: block;
}
.coverage-note {
  position: absolute;
  bottom: 1.25rem;
  right: 1.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.5);
}
.pulse-dot {
  transform-origin: center;
  transform-box: fill-box;
  animation: dotPulse 2.2s ease-in-out infinite;
}
.cov-cities g:nth-child(2) .pulse-dot { animation-delay: 0.3s; }
.cov-cities g:nth-child(3) .pulse-dot { animation-delay: 0.6s; }
.cov-cities g:nth-child(4) .pulse-dot { animation-delay: 0.9s; }
.cov-cities g:nth-child(5) .pulse-dot { animation-delay: 1.2s; }
.cov-cities g:nth-child(6) .pulse-dot { animation-delay: 1.5s; }
.cov-cities g:nth-child(7) .pulse-dot { animation-delay: 1.8s; }
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.35); opacity: 0.7; }
}

/* ---------- Footer ---------- */
.footer {
  padding: 2.5rem 0;
  background: var(--black);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}
.footer-logo {
  height: 180px;
  width: auto;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 50px rgba(225, 29, 42, 0.25));
}
.footer-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0;
}
.footer-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

/* ---------- Mobile ---------- */
@media (max-width: 880px) {
  .nav-links,
  .nav-actions .btn { display: none; }
  .menu-btn { display: flex; }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--pad);
    gap: 1rem;
  }
  .nav.open .nav-actions .btn {
    display: inline-flex;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 1.5rem 0; border-left: none; border-top: 1px solid var(--line); padding-left: 0; }
  .stat:nth-child(-n+2) { border-top: none; }
  .stat:nth-child(2n) { padding-left: 1.5rem; border-left: 1px solid var(--line); }

  .cap-grid,
  .fleet-grid,
  .why-grid { grid-template-columns: 1fr; }

  .process-grid { grid-template-columns: 1fr; }
  .process { border-left: none; border-top: 1px solid var(--line); padding: 1.5rem 0; }
  .process:first-child { border-top: none; padding-top: 0; }
  .process-line { display: none; }
  .process-num::before { display: none; }

  .float-cta { right: 1rem; bottom: 1rem; padding: 0.7rem 1rem; font-size: 0.82rem; }

  .footer-logo { height: 110px; }
  .divider { padding: 1.75rem var(--pad); gap: 1rem; }
  .divider-mark { width: 42px; }
  .divider-line { max-width: 120px; }
  .coverage-wrap { padding: 1rem; }
  .coverage-note { font-size: 0.65rem; padding: 0.3rem 0.55rem; bottom: 0.75rem; right: 0.75rem; }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

@media (max-width: 480px) {
  .hero-mark { opacity: 0.05; right: -20%; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.6rem); }
}
