:root {
  /* Paleta corporativa tomada del logotipo Sea Land: azul marino, cian de marca y blanco */
  --navy-950: #04081b;
  --navy-900: #070d24;
  --navy-850: #0a1330;
  --navy-800: #101a41;
  --navy-700: #1a2358;
  --indigo: #261f64;

  --cyan: #00acd8;
  --cyan-strong: #00728f;
  --cyan-mid: #0092b8;
  --cyan-soft: #7de6ff;

  --ink: #04081b;
  --ink-2: #101a41;
  --ink-3: #1a2358;
  --paper: #f4f7fb;
  --paper-2: #e9eff7;
  --white: #ffffff;
  --muted: #9aa8c4;
  --text-soft: #4b5975;
  --text-softer: #5c6a86;

  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(125, 230, 255, 0.28);
  --line-dark: rgba(8, 14, 40, 0.13);
  --shadow: 0 28px 80px rgba(5, 9, 28, 0.22);
  --shadow-soft: 0 18px 48px rgba(8, 14, 40, 0.1);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: min(1180px, calc(100% - 40px));
  --font-display: "Space Grotesk", "Bahnschrift", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button,
summary,
a[href] {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.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;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 999;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--cyan-soft);
  border-radius: 8px;
  font-weight: 700;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 18px;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-soft));
  box-shadow: 0 0 18px rgba(0, 172, 216, 0.8);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 12, 34, 0.88);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1320px, calc(100% - 36px));
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.brand img {
  width: auto;
  height: 66px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switch {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.language-switch button {
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.language-switch button.is-active {
  color: var(--ink);
  background: var(--cyan-soft);
}

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  background: var(--cyan-soft);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 930px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(120% 90% at 12% 12%, rgba(38, 31, 100, 0.55), transparent 62%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 290px;
  background: linear-gradient(transparent, var(--navy-950) 80%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 8, 27, 0.98) 0%, rgba(4, 8, 27, 0.8) 44%, rgba(4, 8, 27, 0.28) 78%, rgba(4, 8, 27, 0.55) 100%),
    linear-gradient(0deg, rgba(4, 8, 27, 0.75), transparent 50%),
    url("site-assets/images/hero-vessel.jpg") center / cover no-repeat;
  transform: scale(1.04);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  align-items: center;
  gap: 80px;
  padding-top: 130px;
  padding-bottom: 180px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--cyan-strong);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  flex: none;
  width: 28px;
  height: 2px;
  background: var(--cyan);
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cyan-soft);
}

.hero .eyebrow::before {
  display: none;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 7px rgba(0, 172, 216, 0.14);
}

.hero h1,
.section-heading h2,
.contact-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.032em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 770px;
  font-size: clamp(2.75rem, 4.9vw, 5rem);
  font-weight: 600;
}

.hero h1 em {
  display: block;
  color: var(--cyan);
  font-style: normal;
}

.hero-lead {
  max-width: 660px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.03rem, 1.5vw, 1.24rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--ink);
  background: var(--cyan);
}

.button-primary:hover {
  background: var(--cyan-soft);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  border-color: var(--cyan);
  background: rgba(0, 172, 216, 0.1);
}

.hero-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(8, 14, 40, 0.56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability {
  padding: 5px 9px;
  color: var(--cyan-soft);
  border: 1px solid rgba(0, 172, 216, 0.36);
  border-radius: 999px;
}

.route-visual {
  position: relative;
  height: 105px;
  margin: 8px 0;
}

.route-line {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 52px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), rgba(255, 255, 255, 0.25), var(--cyan));
}

.route-node {
  position: absolute;
  top: 46px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--ink-2);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(0, 172, 216, 0.14), 0 0 24px rgba(0, 172, 216, 0.5);
}

.route-node-a { left: 14px; }
.route-node-b { left: calc(50% - 7px); }
.route-node-c { right: 14px; }

.capability-row {
  display: grid;
  grid-template-columns: 34px 82px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.capability-row > span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
}

.capability-row strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.capability-row small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  line-height: 1.4;
}

.hero-proof {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.6fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(8, 15, 42, 0.82);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.hero-proof > div {
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 26px;
  border-right: 1px solid var(--line);
}

.hero-proof > div:last-child {
  border-right: 0;
}

.hero-proof strong {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.hero-proof span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.74rem;
  line-height: 1.4;
}

.hero-proof .proof-statement {
  color: var(--white);
  background: linear-gradient(135deg, rgba(0, 172, 216, 0.14), transparent);
}

.hero-proof .proof-statement span {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 600;
}

.section {
  padding: 120px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 62px;
}

.section-heading h2,
.contact-intro h2 {
  font-size: clamp(2.05rem, 3.6vw, 3.5rem);
  font-weight: 600;
}

.section-heading > p:last-child,
.contact-intro > p:last-child {
  max-width: 670px;
  margin: 26px 0 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.experience-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 172, 216, 0.12), transparent 25%),
    var(--paper);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mission-card,
.image-card {
  min-height: 410px;
  padding: 34px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: var(--white);
}

.mission-card {
  display: flex;
  flex-direction: column;
}

.card-index {
  color: var(--text-softer);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.mission-card h3,
.image-card h3 {
  margin: auto 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.9vw, 2.9rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.mission-card p,
.image-card p {
  margin: 0;
  color: var(--text-soft);
}

.accent-card {
  color: var(--white);
  border-color: var(--ink-2);
  background: var(--ink-2);
}

.accent-card .card-index,
.accent-card p {
  color: rgba(255, 255, 255, 0.66);
}

.accent-card h3 {
  color: var(--cyan);
}

.image-card {
  position: relative;
  grid-column: 1 / -1;
  min-height: 520px;
  padding: 0;
  color: var(--white);
  overflow: hidden;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 8, 27, 0.9), rgba(4, 8, 27, 0.18));
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
}

.image-card > div {
  position: absolute;
  z-index: 1;
  inset: auto auto 48px 48px;
  max-width: 500px;
}

.image-card .card-index,
.image-card p {
  color: rgba(255, 255, 255, 0.72);
}

.manifesto {
  position: relative;
  max-width: 940px;
  margin: 90px auto 0;
  padding: 0 0 0 92px;
  border: 0;
}

.manifesto > span {
  position: absolute;
  left: 0;
  top: -35px;
  color: var(--cyan);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

.manifesto p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 2.05rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.manifesto cite {
  display: block;
  margin-top: 24px;
  color: var(--text-softer);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-section {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 15%, rgba(0, 172, 216, 0.12), transparent 25%),
    var(--ink);
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(135deg, transparent 20%, black, transparent 85%);
}

.services-section .container {
  position: relative;
}

.heading-light h2,
.heading-light > p:last-child {
  color: var(--white);
}

.heading-light > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.heading-light .eyebrow,
.contact-intro .eyebrow,
.contact-section .eyebrow {
  color: var(--cyan-soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.service-card:hover {
  border-color: rgba(0, 172, 216, 0.44);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.service-card[open] {
  border-color: rgba(0, 172, 216, 0.5);
  background: rgba(0, 172, 216, 0.075);
}

.service-card summary {
  min-height: 122px;
  display: grid;
  grid-template-columns: 50px 1fr 38px;
  align-items: center;
  gap: 18px;
  padding: 24px;
  list-style: none;
}

.service-card summary::-webkit-details-marker {
  display: none;
}

.service-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 172, 216, 0.38);
  border-radius: 50%;
  color: var(--cyan-soft);
  font-size: 0.72rem;
  font-weight: 800;
}

.service-card summary strong,
.service-card summary small {
  display: block;
}

.service-card summary strong {
  font-family: var(--font-display);
  font-size: 1.22rem;
  letter-spacing: -0.025em;
}

.service-card summary small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.expand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.expand-mark::before,
.expand-mark::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 15px;
  width: 12px;
  height: 2px;
  background: var(--cyan);
  transition: transform 180ms ease;
}

.expand-mark::after {
  transform: rotate(90deg);
}

.service-card[open] .expand-mark::after {
  transform: rotate(0);
}

.service-card ul {
  margin: -5px 24px 28px 92px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.service-card li {
  margin: 10px 0;
  padding-left: 5px;
}

.service-card li::marker {
  color: var(--cyan);
}

.service-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 54px;
}

.service-pillars span {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.75rem;
  font-weight: 700;
}

.coverage-section {
  background: var(--paper-2);
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: 80px;
  align-items: center;
}

.coverage-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.coverage-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--text-soft);
}

.coverage-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 24px;
}

.coverage-filters button {
  min-height: 44px;
  padding: 0 17px;
  color: #3d4a6b;
  border: 1px solid rgba(8, 14, 40, 0.18);
  border-radius: 999px;
  background: transparent;
  font-size: 0.76rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.coverage-filters button:hover,
.coverage-filters button.is-active {
  color: var(--white);
  border-color: var(--ink-2);
  background: var(--ink-2);
}

.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.location-list span {
  padding: 7px 11px;
  border-radius: 6px;
  color: #374363;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.71rem;
  font-weight: 700;
  transition: opacity 180ms ease, transform 180ms ease;
}

.location-list span.is-hidden {
  display: none;
}

.coverage-visual {
  position: relative;
  min-height: 650px;
  margin: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.coverage-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(4, 8, 27, 0.92));
}

.coverage-visual img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.coverage-visual figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 32px 32px;
  color: var(--white);
}

.coverage-visual figcaption span,
.coverage-visual figcaption strong {
  display: block;
}

.coverage-visual figcaption span {
  color: var(--cyan-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coverage-visual figcaption strong {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.forwarding-section {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.forwarding-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 8, 27, 0.98), rgba(4, 8, 27, 0.5) 72%, rgba(4, 8, 27, 0.8)),
    url("site-assets/images/port-containers.jpg") center / cover no-repeat;
  filter: saturate(0.65);
}

.forwarding-content {
  position: relative;
}

.forwarding-content .section-heading {
  max-width: 860px;
  margin-bottom: 60px;
}

.forwarding-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.forwarding-steps li {
  position: relative;
  min-height: 130px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-right: 0;
  background: rgba(5, 17, 24, 0.6);
  backdrop-filter: blur(12px);
}

.forwarding-steps li:first-child {
  border-radius: 14px 0 0 14px;
}

.forwarding-steps li:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 14px 14px 0;
}

.forwarding-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -5px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  transform: rotate(45deg) translateY(-50%);
}

.forwarding-steps span,
.forwarding-steps strong {
  display: block;
}

.forwarding-steps span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
}

.forwarding-steps strong {
  margin-top: 25px;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.forwarding-note {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.contact-section {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 172, 216, 0.12), transparent 28%),
    #0a1330;
}

.contact-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.contact-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -48px;
}

.contact-intro > p:last-child {
  color: rgba(255, 255, 255, 0.58);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 18px;
}

.contact-form,
.contact-details {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form select option {
  color: var(--ink);
  background: var(--white);
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 172, 216, 0.7);
  background: rgba(255, 255, 255, 0.085);
}

.contact-form [aria-invalid="true"] {
  border-color: #ff7d95;
}

.submit-button {
  width: 100%;
  border: 0;
}

.form-note,
.form-status {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.7rem;
}

.form-status {
  min-height: 1.4em;
  color: var(--cyan-soft);
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-link,
.contact-details address {
  display: block;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
  font-style: normal;
}

.contact-link span,
.contact-details address span,
.contact-details address strong,
.contact-details address small {
  display: block;
}

.contact-link span,
.contact-details address span {
  color: var(--cyan-soft);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-link strong,
.contact-details address strong {
  margin-top: 7px;
  font-family: var(--font-display);
  font-size: 1.13rem;
  line-height: 1.4;
}

.contact-link {
  transition: color 180ms ease, padding-left 180ms ease;
}

.contact-link:hover {
  color: var(--cyan-soft);
  padding-left: 8px;
}

.contact-details address small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.48);
}

.profile-download {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
  color: var(--cyan-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.site-footer {
  padding: 70px 0 24px;
  color: var(--white);
  border-top: 1px solid var(--line);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.9fr;
  gap: 60px;
}

.footer-brand img {
  width: auto;
  height: 88px;
}

.footer-brand p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.46);
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid > div > span {
  margin-bottom: 4px;
  color: var(--cyan-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  transition: color 180ms ease;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.68rem;
}

.back-to-top {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--white);
  background: rgba(7, 20, 28, 0.9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  color: var(--ink);
  background: var(--cyan);
}

.install-prompt {
  position: fixed;
  z-index: 110;
  left: 50%;
  bottom: 24px;
  width: min(620px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1fr auto 44px;
  gap: 16px;
  align-items: center;
  padding: 18px;
  color: var(--white);
  border: 1px solid rgba(0, 172, 216, 0.45);
  border-radius: 16px;
  background: rgba(4, 8, 27, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 24px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.install-prompt.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.install-prompt strong,
.install-prompt span {
  display: block;
}

.install-prompt strong {
  font-family: var(--font-display);
  font-size: 1rem;
}

.install-prompt span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.install-action,
.install-dismiss {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
}

.install-action {
  padding: 0 18px;
  color: #000;
  background: var(--cyan);
}

.install-dismiss {
  width: 44px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.3rem;
}

.connection-toast {
  position: fixed;
  z-index: 120;
  left: 50%;
  top: 92px;
  max-width: calc(100% - 32px);
  padding: 11px 16px;
  color: var(--white);
  border: 1px solid rgba(0, 172, 216, 0.46);
  border-radius: 999px;
  background: rgba(4, 8, 27, 0.94);
  box-shadow: var(--shadow);
  font-size: 0.75rem;
  opacity: 0;
  transform: translate(-50%, -10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.connection-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* La barra de cifras del hero se centra con translateX: conservarlo al revelarse. */
.hero-proof.reveal {
  transform: translateX(-50%) translateY(24px);
}

.hero-proof.reveal.is-visible {
  transform: translateX(-50%);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Clientes: carrusel de empresas
   ============================================================ */
.clients-section {
  --clients-per-view: 5;
  --clients-content: min(1180px, 100vw - 40px);
  position: relative;
  padding: 92px 0 84px;
  color: var(--white);
  background:
    radial-gradient(90% 120% at 8% 0%, rgba(38, 31, 100, 0.72), transparent 58%),
    linear-gradient(160deg, var(--navy-850) 0%, var(--navy-950) 100%);
  overflow: hidden;
}

.clients-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(120deg, black, transparent 72%);
  pointer-events: none;
}

.clients-head {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 40px;
}

.clients-head .eyebrow {
  color: var(--cyan-soft);
}

.clients-head h2 {
  max-width: 20ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.16;
}

.carousel-controls {
  flex: none;
  display: flex;
  gap: 10px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.05rem;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease, opacity 200ms ease;
}

.carousel-btn:hover:not(:disabled) {
  color: var(--cyan-soft);
  border-color: rgba(0, 172, 216, 0.6);
  background: rgba(0, 172, 216, 0.16);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.clients-viewport {
  position: relative;
  width: var(--clients-content);
  margin-inline: auto;
  display: flex;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.clients-viewport::-webkit-scrollbar {
  display: none;
}

.clients-track {
  display: flex;
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
}

.client-item {
  flex: 0 0 calc(var(--clients-content) / var(--clients-per-view));
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 24px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  scroll-snap-align: start;
}

.client-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.client-item img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 48px;
  opacity: 0.6;
  transition: opacity 260ms ease, transform 260ms ease;
}

.client-item:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.clients-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.clients-dots button {
  width: 26px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.22);
  transition: background 220ms ease, width 220ms ease;
}

.clients-dots button.is-active {
  width: 46px;
  background: var(--cyan);
}

/* ============================================================
   Galeria: carrusel infinito de imagenes
   ============================================================ */
.gallery-section {
  position: relative;
  padding-bottom: 92px;
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 172, 216, 0.1), transparent 30%),
    var(--paper);
  overflow: hidden;
}

.marquee {
  display: grid;
  gap: 18px;
  mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}

.marquee-row {
  overflow: hidden;
}

.marquee-lane {
  display: flex;
  width: max-content;
  animation: marquee-scroll var(--marquee-duration, 80s) linear infinite;
  will-change: transform;
}

.marquee-lane-reverse {
  animation-direction: reverse;
}

.marquee:hover .marquee-lane,
.marquee:focus-within .marquee-lane,
.marquee.is-paused .marquee-lane {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0 9px;
  list-style: none;
}

.gallery-item {
  flex: none;
}

@keyframes marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.gallery-shot {
  position: relative;
  display: block;
  width: clamp(238px, 25vw, 330px);
  aspect-ratio: 16 / 10;
  padding: 0;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--navy-900);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.gallery-shot:hover,
.gallery-shot:focus-visible {
  border-color: rgba(0, 172, 216, 0.65);
  box-shadow: 0 22px 54px rgba(8, 14, 40, 0.22);
  transform: translateY(-4px);
}

.gallery-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery-shot:hover img,
.gallery-shot:focus-visible img {
  transform: scale(1.06);
}

.gallery-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(4, 8, 27, 0.88));
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.gallery-shot:hover::after,
.gallery-shot:focus-visible::after {
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  z-index: 2;
  left: 15px;
  right: 15px;
  bottom: 13px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.gallery-shot:hover .gallery-caption,
.gallery-shot:focus-visible .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.marquee-hint {
  width: var(--container);
  margin: 30px auto 0;
  color: var(--text-softer);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

/* ============================================================
   Visor ampliado de la galeria
   ============================================================ */
body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 8, 27, 0.93);
  backdrop-filter: blur(10px);
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
}

.lightbox-panel img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.lightbox-caption {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  text-align: center;
}

.lightbox-nav,
.lightbox-close {
  position: absolute;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(8, 15, 42, 0.72);
  backdrop-filter: blur(10px);
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease;
}

.lightbox-nav:hover,
.lightbox-close:hover {
  color: var(--cyan-soft);
  border-color: rgba(0, 172, 216, 0.6);
  background: rgba(0, 172, 216, 0.2);
}

.lightbox-nav {
  top: calc(50% - 26px);
  width: 52px;
  height: 52px;
  font-size: 1.2rem;
}

.lightbox-prev {
  left: -18px;
}

.lightbox-next {
  right: -18px;
}

.lightbox-close {
  top: -18px;
  right: -18px;
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
}

@media (max-width: 1080px) {
  .clients-section {
    --clients-per-view: 4;
  }

  .main-nav {
    gap: 15px;
  }

  .nav-shell {
    gap: 18px;
  }

  .main-nav {
    gap: 17px;
  }

  .nav-cta {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr 360px;
    gap: 40px;
  }

  .hero-proof > div {
    padding-inline: 20px;
  }

  .coverage-layout {
    gap: 40px;
  }
}

@media (max-width: 860px) {
  .clients-section {
    padding: 74px 0 68px;
  }

  .clients-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .clients-section {
    --clients-per-view: 3;
    --clients-content: min(720px, 100vw - 32px);
  }

  .gallery-shot {
    width: clamp(220px, 62vw, 300px);
  }

  .lightbox-prev {
    left: 6px;
  }

  .lightbox-next {
    right: 6px;
  }

  .lightbox-close {
    top: 6px;
    right: 6px;
  }

  :root {
    --container: min(100% - 32px, 720px);
  }

  .nav-shell {
    width: min(100% - 28px, 780px);
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 78px 14px auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(6, 12, 34, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-actions {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .hero-card {
    max-width: 560px;
  }

  .hero-proof {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 30px;
  }

  .hero-proof > div:nth-child(2) {
    border-right: 0;
  }

  .hero-proof > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .experience-grid,
  .service-grid,
  .coverage-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .coverage-visual {
    min-height: 520px;
  }

  .coverage-visual img {
    height: 520px;
  }

  .forwarding-steps {
    grid-template-columns: 1fr;
  }

  .forwarding-steps li,
  .forwarding-steps li:first-child,
  .forwarding-steps li:last-child {
    min-height: 88px;
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    border: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 0;
  }

  .forwarding-steps li:first-child {
    border-radius: 14px 14px 0 0;
  }

  .forwarding-steps li:last-child {
    border-bottom: 1px solid var(--line);
    border-radius: 0 0 14px 14px;
  }

  .forwarding-steps li:not(:last-child)::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -5px;
    transform: rotate(135deg);
  }

  .forwarding-steps strong {
    margin: 0;
  }

  .contact-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-intro .eyebrow {
    grid-column: auto;
    margin-bottom: -10px;
  }
}

@media (max-width: 600px) {
  .clients-section {
    --clients-per-view: 2;
    --clients-content: calc(100vw - 28px);
  }

  .clients-dots {
    flex-wrap: wrap;
    gap: 6px;
    padding-inline: 14px;
  }

  .clients-dots button {
    width: 14px;
  }

  .clients-dots button.is-active {
    width: 28px;
  }

  .client-item {
    min-height: 100px;
    padding: 18px 16px;
  }

  .client-item img {
    max-height: 40px;
  }

  .gallery-section {
    padding-bottom: 68px;
  }

  .marquee {
    gap: 12px;
  }

  .marquee-group {
    gap: 12px;
    padding: 0 6px;
  }

  .gallery-shot {
    width: 74vw;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    top: auto;
    bottom: -58px;
  }

  .lightbox-prev {
    left: calc(50% - 52px);
  }

  .lightbox-next {
    right: calc(50% - 52px);
  }

  :root {
    --container: calc(100% - 28px);
  }

  .site-header {
    background: rgba(6, 12, 34, 0.86);
    backdrop-filter: blur(16px);
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand img {
    height: 54px;
  }

  .nav-actions {
    order: 2;
  }

  .menu-toggle {
    order: 3;
    margin-left: 0;
  }

  .language-switch button {
    min-width: 36px;
    min-height: 36px;
  }

  .hero-layout {
    padding-top: 55px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 15vw, 4.7rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-card {
    padding: 20px;
  }

  .capability-row {
    grid-template-columns: 30px 72px 1fr;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof > div {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-proof > div:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 86px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .contact-intro h2,
  .coverage-copy h2 {
    font-size: clamp(2.35rem, 13vw, 3.7rem);
  }

  .mission-card {
    min-height: 340px;
    padding: 25px;
  }

  .image-card {
    min-height: 460px;
  }

  .image-card > div {
    inset: auto 26px 30px;
  }

  .manifesto {
    margin-top: 70px;
    padding-left: 0;
    padding-top: 70px;
  }

  .manifesto > span {
    top: 0;
  }

  .service-card summary {
    grid-template-columns: 44px 1fr 34px;
    gap: 12px;
    padding: 18px;
  }

  .service-card ul {
    margin: 0 18px 24px 62px;
  }

  .coverage-visual,
  .coverage-visual img {
    min-height: 480px;
    height: 480px;
  }

  .coverage-visual {
    border-radius: var(--radius-md);
  }

  .forwarding-section {
    min-height: auto;
  }

  .contact-form,
  .contact-details {
    padding: 24px;
  }

  .field-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .install-prompt {
    grid-template-columns: 1fr 44px;
  }

  .install-action {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .install-dismiss {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-lane {
    animation: none !important;
    transform: none !important;
  }

  .marquee-row {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .clients-viewport {
    scroll-behavior: auto;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
