:root {
  --font-geist: "Segoe UI", Arial, sans-serif;
  --ink: #071c2d;
  --ink-soft: #102a40;
  --blue: #2463eb;
  --blue-light: #4e7fff;
  --cyan: #2de0c2;
  --paper: #f5f7f8;
  --white: #ffffff;
  --line: #d8e0e4;
  --muted: #5e7180;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist), "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  align-items: center;
  background: rgba(7, 28, 45, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  height: 78px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(24px, 5vw, 76px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 50;
}

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

.brand-mark {
  align-items: center;
  background: var(--cyan);
  clip-path: polygon(50% 0, 100% 100%, 72% 100%, 50% 48%, 28% 100%, 0 100%);
  color: var(--ink);
  display: inline-flex;
  height: 32px;
  justify-content: center;
  width: 35px;
}

.brand-mark span {
  font-size: 0;
}

.brand-name {
  font-size: 15px;
  font-weight: 730;
  letter-spacing: 0.04em;
}

.brand-name b {
  color: var(--cyan);
  font-weight: 730;
}

.main-nav {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 620;
  gap: clamp(22px, 3vw, 42px);
}

.main-nav > a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.main-nav > a:hover {
  color: white;
}

.nav-cta {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  gap: 30px;
  padding: 11px 14px 11px 18px;
}

.nav-cta span {
  color: var(--cyan);
  font-size: 18px;
}

.menu-button {
  background: transparent;
  border: 0;
  display: none;
  height: 40px;
  padding: 8px;
  width: 40px;
}

.menu-button span {
  background: white;
  display: block;
  height: 1px;
  margin: 7px 0;
  width: 24px;
}

.hero {
  align-items: center;
  background:
    radial-gradient(circle at 78% 42%, rgba(36, 99, 235, 0.3), transparent 32%),
    linear-gradient(112deg, #061827 0%, #09233a 56%, #0a2e4c 100%);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.8fr);
  min-height: 790px;
  overflow: hidden;
  padding: 126px clamp(24px, 7.1vw, 110px) 70px;
  position: relative;
}

.hero-grid-bg {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  height: 100%;
  inset: 0 0 0 55%;
  mask-image: linear-gradient(90deg, transparent, black);
  position: absolute;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  color: var(--cyan);
  display: flex;
  font-size: 11px;
  font-weight: 760;
  gap: 9px;
  letter-spacing: 0.18em;
  margin: 0 0 24px;
}

.eyebrow > span {
  background: var(--cyan);
  height: 2px;
  width: 20px;
}

.eyebrow-dark {
  color: var(--blue);
}

.eyebrow-dark > span {
  background: var(--blue);
}

.hero h1 {
  font-size: clamp(50px, 6.15vw, 88px);
  font-weight: 650;
  letter-spacing: -0.062em;
  line-height: 0.98;
  margin: 0;
  max-width: 760px;
}

.hero h1 em,
.coverage h2 em {
  color: var(--cyan);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.65;
  margin: 32px 0 0;
  max-width: 590px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 32px;
  margin-top: 38px;
}

.button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 740;
  gap: 42px;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 18px 0 22px;
  transition: transform 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--blue);
  color: white;
}

.button-primary:hover {
  background: #3673f4;
}

.button span {
  color: var(--cyan);
  font-size: 19px;
}

.text-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 650;
  padding: 12px 0;
}

.text-link span {
  color: var(--cyan);
  margin-left: 9px;
}

.hero-proof {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: clamp(28px, 4vw, 64px);
  margin-top: 58px;
  max-width: 600px;
  padding-top: 24px;
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-proof strong {
  font-size: 22px;
  font-weight: 650;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-visual {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 560px;
}

.visual-glow {
  background: var(--blue);
  border-radius: 50%;
  filter: blur(95px);
  height: 280px;
  opacity: 0.27;
  position: absolute;
  width: 280px;
}

.ops-card {
  backdrop-filter: blur(20px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.35);
  max-width: 430px;
  padding: 22px;
  position: relative;
  transform: perspective(1000px) rotateY(-7deg) rotateX(2deg);
  width: 88%;
}

.ops-card::before {
  border-left: 2px solid var(--cyan);
  border-top: 2px solid var(--cyan);
  content: "";
  height: 36px;
  left: -1px;
  position: absolute;
  top: -1px;
  width: 36px;
}

.ops-card-head,
.map-topline {
  align-items: center;
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: 0.14em;
}

.ops-card-head > span {
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  gap: 8px;
}

.ops-card-head i,
.floating-chip i,
.map-availability i {
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(45, 224, 194, 0.14);
  display: inline-block;
  height: 6px;
  width: 6px;
}

.ops-card-head b {
  color: var(--cyan);
  font-weight: 720;
}

.ops-map {
  background:
    radial-gradient(circle at 50% 50%, rgba(36, 99, 235, 0.28), transparent 55%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 280px;
  margin: 20px 0;
  padding: 54px 25px 24px;
  position: relative;
}

.mini-route {
  height: 108px;
  margin: 0 auto 30px;
  position: relative;
  width: 58%;
}

.mini-route::before {
  background: linear-gradient(100deg, var(--cyan), var(--blue-light));
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 53px;
  transform: rotate(24deg);
  transform-origin: center;
}

.mini-route i {
  background: #0b2840;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  height: 11px;
  position: absolute;
  width: 11px;
}

.mini-route i:nth-child(1) { left: 0; top: 26px; }
.mini-route i:nth-child(2) { left: 27%; top: 40px; }
.mini-route i:nth-child(3) { left: 50%; top: 58px; }
.mini-route i:nth-child(4) { left: 75%; top: 72px; }
.mini-route i:nth-child(5) { right: 0; top: 85px; }

.ops-destination {
  align-items: center;
  display: flex;
  font-size: 10px;
  font-weight: 750;
  justify-content: space-between;
  letter-spacing: 0.11em;
}

.ops-destination b {
  color: var(--cyan);
  font-size: 18px;
}

.ops-map p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.5;
  margin: 14px 0 0;
  text-align: center;
}

.ops-status {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 16px;
}

.ops-status div {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 12px;
}

.ops-status span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  letter-spacing: 0.15em;
}

.ops-status strong {
  font-size: 11px;
  font-weight: 650;
}

.ops-status .status-active {
  color: var(--cyan);
}

.floating-chip {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(9, 36, 58, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  font-size: 10px;
  font-weight: 680;
  gap: 9px;
  padding: 12px 15px;
  position: absolute;
}

.floating-chip > span {
  align-items: center;
  background: var(--cyan);
  border-radius: 50%;
  color: var(--ink);
  display: inline-flex;
  font-size: 9px;
  height: 17px;
  justify-content: center;
  width: 17px;
}

.chip-top { right: -2%; top: 12%; }
.chip-bottom { bottom: 12%; left: 0; }

.hero-scroll {
  align-items: center;
  bottom: 30px;
  color: rgba(255, 255, 255, 0.32);
  display: flex;
  font-size: 8px;
  gap: 10px;
  left: clamp(24px, 7.1vw, 110px);
  letter-spacing: 0.18em;
  position: absolute;
}

.hero-scroll span {
  background: var(--cyan);
  height: 24px;
  width: 1px;
}

.section {
  padding: 110px clamp(24px, 7.1vw, 110px);
}

.section-intro {
  align-items: end;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.6fr);
  margin-bottom: 58px;
}

.section-intro h2,
.coverage h2,
.contact h2 {
  font-size: clamp(40px, 4.5vw, 68px);
  font-weight: 640;
  letter-spacing: -0.052em;
  line-height: 1.04;
  margin: 0;
  max-width: 760px;
}

.section-intro > p,
.coverage-heading > p:last-child,
.contact-copy > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 4px;
}

.service-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: white;
  min-height: 330px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  transition: background 220ms ease, transform 220ms ease;
}

.service-card:hover {
  background: #edf3ff;
  transform: translateY(-4px);
  z-index: 2;
}

.service-featured {
  background: var(--blue);
  color: white;
  grid-column: span 2;
}

.service-featured:hover {
  background: #1c57d9;
}

.service-wide {
  grid-column: span 2;
}

.service-national {
  background: var(--ink);
  color: white;
}

.service-national:hover {
  background: #0d2a42;
}

.service-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.service-number {
  color: #8ca0ae;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.1em;
}

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

.service-arrow {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  display: flex;
  font-size: 17px;
  height: 37px;
  justify-content: center;
  transition: transform 180ms ease;
  width: 37px;
}

.service-card:hover .service-arrow {
  transform: rotate(45deg);
}

.service-featured .service-arrow,
.service-national .service-arrow {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--cyan);
}

.service-content {
  bottom: 32px;
  left: 28px;
  max-width: 560px;
  position: absolute;
  right: 28px;
  z-index: 2;
}

.service-meta {
  color: var(--blue);
  display: block;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.14em;
  margin-bottom: 13px;
}

.service-featured .service-meta,
.service-national .service-meta {
  color: var(--cyan);
}

.service-content h3 {
  font-size: clamp(23px, 2.2vw, 34px);
  font-weight: 630;
  letter-spacing: -0.035em;
  line-height: 1.06;
  margin: 0 0 12px;
}

.service-content p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  max-width: 460px;
}

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

.national-lines {
  inset: 0;
  opacity: 0.34;
  position: absolute;
}

.national-lines::before,
.national-lines::after,
.national-lines i {
  border: 1px solid var(--cyan);
  border-radius: 50%;
  content: "";
  height: 280px;
  position: absolute;
  right: -110px;
  top: -120px;
  width: 280px;
}

.national-lines::after { height: 220px; right: -80px; top: -90px; width: 220px; }
.national-lines i:nth-child(1) { height: 160px; right: -50px; top: -60px; width: 160px; }
.national-lines i:nth-child(2) { height: 100px; right: -20px; top: -30px; width: 100px; }

/* Photographic service cards */
.service-card,
.service-card:hover,
.service-featured,
.service-featured:hover,
.service-national,
.service-national:hover {
  background: var(--ink);
  color: white;
}

.service-card {
  min-height: 360px;
}

.service-card::after {
  background: linear-gradient(180deg, rgba(3, 17, 28, 0.2) 5%, rgba(3, 17, 28, 0.6) 52%, rgba(3, 17, 28, 0.98) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.service-featured::after {
  background: linear-gradient(90deg, rgba(18, 76, 197, 0.96) 0%, rgba(18, 76, 197, 0.72) 48%, rgba(3, 17, 28, 0.42) 100%);
}

.service-electric::after {
  background: linear-gradient(180deg, rgba(3, 17, 28, 0.18) 0%, rgba(9, 47, 71, 0.8) 58%, rgba(3, 17, 28, 0.98) 100%);
}

.service-image {
  inset: 0;
  overflow: hidden;
  position: absolute;
  z-index: 0;
}

.service-image img {
  filter: saturate(0.82) contrast(1.04);
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
  width: 100%;
}

.service-featured .service-image img {
  object-position: center 52%;
}

.service-card:hover .service-image img {
  filter: saturate(1) contrast(1.06);
  transform: scale(1.045);
}

.service-top,
.service-content {
  z-index: 3;
}

.service-card .service-number {
  color: rgba(255, 255, 255, 0.68);
}

.service-card .service-arrow {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--cyan);
}

.service-card .service-meta {
  color: var(--cyan);
}

.service-card .service-content p {
  color: rgba(255, 255, 255, 0.7);
}

.national-lines {
  pointer-events: none;
  z-index: 2;
}

.coverage {
  background: var(--ink);
  color: white;
  display: grid;
  gap: 60px 8%;
  grid-template-columns: 0.68fr 1fr;
  overflow: hidden;
  position: relative;
}

.coverage::before {
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  height: 280px;
  left: -40px;
  mask-image: linear-gradient(135deg, black, transparent 70%);
  position: absolute;
  top: 0;
  width: 320px;
}

.coverage-heading {
  align-self: start;
  padding-top: 32px;
  position: sticky;
  top: 40px;
}

.coverage-heading > p:last-child {
  color: rgba(255, 255, 255, 0.55);
  margin-top: 30px;
  max-width: 470px;
}

.map-shell {
  background: linear-gradient(160deg, #0d304c, #081f33);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  min-height: 750px;
  padding: 22px;
  position: relative;
}

.map-shell::before {
  border-left: 2px solid var(--cyan);
  border-top: 2px solid var(--cyan);
  content: "";
  height: 42px;
  left: -1px;
  position: absolute;
  top: -1px;
  width: 42px;
}

.map-topline {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.34);
  padding-bottom: 18px;
}

.map-topline b {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 620;
}

.map-stage {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  height: 530px;
  margin: 12px 0;
  overflow: hidden;
  position: relative;
}

.chile-shape,
.chile-shadow {
  background: linear-gradient(180deg, #2f6ef2 0%, #1d55c9 56%, #2de0c2 105%);
  clip-path: polygon(52% 0, 66% 4%, 58% 10%, 68% 16%, 51% 23%, 61% 30%, 46% 37%, 53% 45%, 40% 52%, 48% 59%, 33% 66%, 42% 73%, 28% 80%, 38% 87%, 51% 92%, 45% 97%, 58% 100%, 31% 98%, 30% 92%, 20% 87%, 25% 80%, 18% 73%, 27% 66%, 24% 59%, 33% 52%, 30% 45%, 38% 37%, 37% 30%, 45% 23%, 47% 16%, 52% 10%, 47% 4%);
  height: 500px;
  left: 42%;
  position: absolute;
  top: 14px;
  width: 104px;
}

.chile-shadow {
  background: var(--blue);
  filter: blur(32px);
  opacity: 0.32;
  transform: scale(1.2);
}

.map-pin {
  align-items: center;
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  gap: 9px;
  padding: 6px;
  position: absolute;
  transform: translate(-4px, -50%);
  white-space: nowrap;
  z-index: 3;
}

.map-pin i {
  background: var(--ink);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.08);
  display: inline-block;
  height: 11px;
  transition: all 180ms ease;
  width: 11px;
}

.map-pin span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.map-pin.is-active,
.map-pin:hover {
  color: white;
}

.map-pin.is-active i,
.map-pin:hover i {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 0 7px rgba(45, 224, 194, 0.16), 0 0 22px rgba(45, 224, 194, 0.7);
  transform: scale(1.15);
}

.map-detail {
  align-items: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 20px;
  grid-template-columns: auto 1fr auto;
  min-height: 130px;
  padding: 20px;
}

.map-detail-index {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--cyan);
  display: flex;
  font-size: 11px;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.map-detail > div:nth-child(2) > span {
  color: var(--cyan);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.map-detail h3 {
  font-size: 25px;
  font-weight: 630;
  letter-spacing: -0.03em;
  margin: 3px 0;
}

.map-detail p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.5;
  margin: 0;
}

.map-availability {
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  font-size: 8px;
  gap: 8px;
  letter-spacing: 0.11em;
  white-space: nowrap;
}

.coverage-note {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 16px;
  grid-column: 1 / -1;
  padding-top: 24px;
}

.coverage-note > span {
  align-items: center;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  color: var(--cyan);
  display: flex;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.coverage-note p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  margin: 0;
}

.coverage-note strong {
  color: white;
  margin-right: 6px;
}

.method {
  background: #eef2f3;
}

.method-intro {
  margin-bottom: 85px;
}

.method-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.method-step {
  border-top: 1px solid #bac7cf;
  min-height: 230px;
  padding: 27px 34px 0 0;
  position: relative;
}

.method-step::after {
  background: #bac7cf;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: -1px;
}

.method-step > span {
  color: #8497a3;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.1em;
}

.method-node {
  align-items: center;
  background: #eef2f3;
  display: flex;
  height: 18px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: -9px;
  width: 18px;
  z-index: 2;
}

.method-node i {
  background: var(--blue);
  border-radius: 50%;
  display: block;
  height: 7px;
  width: 7px;
}

.method-step h3 {
  font-size: 23px;
  font-weight: 640;
  letter-spacing: -0.03em;
  margin: 38px 0 12px;
}

.method-step p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
  max-width: 240px;
}

.contact {
  background: linear-gradient(130deg, #0c2b45, #071b2c);
  color: white;
  display: grid;
  gap: 9%;
  grid-template-columns: 0.85fr 1fr;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.56);
  margin: 25px 0 38px;
  max-width: 520px;
}

.contact-promise {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 18px;
  max-width: 470px;
  padding: 16px 0;
}

.contact-promise > span {
  color: var(--cyan);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.contact-promise p {
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

.contact-promise strong {
  color: white;
  display: block;
  font-size: 13px;
  font-weight: 630;
}

.contact-form {
  background: white;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.24);
  color: var(--ink);
  padding: clamp(26px, 4vw, 48px);
}

.field-row {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.contact-form label {
  color: #5c6f7d;
  display: block;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #f4f6f7;
  border: 1px solid transparent;
  border-radius: 0;
  color: var(--ink);
  display: block;
  font-size: 13px;
  margin-top: 8px;
  outline: 0;
  padding: 15px;
  resize: vertical;
  text-transform: none;
  transition: border 180ms ease, background 180ms ease;
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: white;
  border-color: var(--blue);
}

.form-button {
  width: 100%;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.contact-form .form-honeypot {
  height: 1px;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.form-success {
  background: #e7faf6;
  color: #087462;
  font-size: 11px;
  line-height: 1.5;
  margin: 15px 0 0;
  padding: 12px;
}

.form-error {
  background: #fff0f0;
  color: #a22828;
  font-size: 11px;
  line-height: 1.5;
  margin: 15px 0 0;
  padding: 12px;
}

footer {
  align-items: center;
  background: #04131f;
  color: rgba(255, 255, 255, 0.46);
  display: grid;
  font-size: 11px;
  gap: 28px;
  grid-template-columns: auto 1fr auto auto;
  padding: 34px clamp(24px, 7.1vw, 110px);
}

.brand-footer {
  color: white;
}

.brand-footer .brand-mark {
  height: 26px;
  width: 28px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a:hover {
  color: white;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr 0.8fr;
  }

  .hero h1 {
    font-size: clamp(48px, 6.8vw, 72px);
  }

  .ops-card {
    width: 96%;
  }

  .coverage {
    gap: 50px;
    grid-template-columns: 0.72fr 1fr;
  }

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

  .map-availability {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 68px;
  }

  .menu-button {
    display: block;
    z-index: 3;
  }

  .main-nav {
    align-items: stretch;
    background: #071c2d;
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 84px 24px 28px;
    position: absolute;
    right: 0;
    top: 0;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 17px 0;
  }

  .nav-cta {
    border: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

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

  .ops-card {
    max-width: 500px;
    transform: none;
  }

  .section-intro,
  .coverage,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-intro {
    align-items: start;
    gap: 25px;
  }

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

  .service-featured,
  .service-wide {
    grid-column: span 2;
  }

  .coverage-heading {
    position: relative;
    top: 0;
  }

  .map-shell {
    min-height: 720px;
  }

  .method-track {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

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

@media (max-width: 560px) {
  .hero {
    min-height: auto;
    padding-bottom: 80px;
  }

  .hero h1 {
    font-size: 47px;
  }

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

  .button {
    width: 100%;
  }

  .text-link {
    text-align: center;
  }

  .hero-proof {
    gap: 18px;
    justify-content: space-between;
  }

  .hero-proof strong {
    font-size: 18px;
  }

  .hero-proof span {
    font-size: 8px;
  }

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

  .ops-card {
    padding: 16px;
    width: 100%;
  }

  .chip-top {
    right: -10px;
  }

  .chip-bottom {
    left: -10px;
  }

  .section {
    padding-bottom: 78px;
    padding-top: 78px;
  }

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

  .service-featured,
  .service-wide {
    grid-column: auto;
  }

  .service-card {
    min-height: 300px;
  }

  .map-shell {
    margin-left: -12px;
    margin-right: -12px;
    padding: 14px;
  }

  .map-topline span {
    display: none;
  }

  .map-topline {
    justify-content: center;
  }

  .map-stage {
    height: 500px;
  }

  .chile-shape,
  .chile-shadow {
    left: 34%;
    transform: scaleX(0.82);
  }

  .map-pin {
    left: 48% !important;
  }

  .map-pin:nth-of-type(even) {
    left: 32% !important;
    flex-direction: row-reverse;
    transform: translate(-100%, -50%);
  }

  .map-detail {
    align-items: start;
    grid-template-columns: auto 1fr;
  }

  .method-track {
    grid-template-columns: 1fr;
  }

  .method-step {
    min-height: 180px;
  }

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

  footer {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

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

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