/* ============================================================
   AQUEOS CORPORATION — LANDING PAGE
   Tipografía: Rajdhani (headings técnicos) + Inter (body)
   Paleta: Naranja #F58220 · Azul marino #002D62 · Blanco #fff
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --orange:      #F58220;
  --orange-dk:   #D4660A;
  --orange-lt:   #FFA04D;
  --navy:        #002D62;
  --navy-mid:    #0a4d99;
  --navy-lt:     #1a6abf;
  --slate:       #0a1628;
  --slate-mid:   #111f38;
  --white:       #ffffff;
  --off-white:   #F5F7FA;
  --gray-100:    #EEF1F6;
  --gray-200:    #D8DDE8;
  --gray-400:    #8A95A8;
  --gray-600:    #4A5568;
  --gray-800:    #1A202C;
  --font-head:   'Rajdhani', 'Barlow Condensed', sans-serif;
  --font-body:   'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: #fff;
  color: var(--gray-800);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Utility ── */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 6rem 1.5rem; }
.section--dark  { background: var(--slate); }
.section--gray  { background: var(--off-white); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.section-head--center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 22px; height: 2px;
  background: var(--orange);
}

.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--gray-800);
  letter-spacing: .02em;
}
.section-title span { color: var(--orange); }
.section-title--white { color: #fff; }

.section-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-600);
  max-width: 560px;
}
.section-desc--light { color: rgba(255,255,255,.65); max-width: 560px; }

/* Scroll fade-up */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-right { opacity: 0; transform: translateX(28px); transition: opacity .55s ease, transform .55s ease; }
.fade-right.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 160px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: var(--slate);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}

.nav-logo-wrap {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 140px;
  width: auto;
  display: block;
}
.logo-img--dark {
  /* El PNG tiene fondo blanco — lo hacemos visible sobre oscuro con padding */
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 4px 8px;
}

.navbar-nav {
  display: flex; align-items: center; gap: 2.2rem; list-style: none;
}
.navbar-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  position: relative;
  transition: color .2s;
  padding-bottom: 2px;
}
.navbar-nav a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .3s;
}
.navbar-nav a:hover { color: #fff; }
.navbar-nav a:hover::after { width: 100%; }

/* Botón de contacto en navbar */
.nav-contact-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body); font-weight: 700; font-size: .76rem;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  padding: .5rem 1.3rem; border-radius: 4px;
  transition: background .2s, transform .2s, box-shadow .2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-contact-btn:hover {
  background: var(--orange-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(245,130,32,.4);
}

.mobile-nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; color: rgba(255,255,255,.8); font-size: 1.3rem; padding: .4rem;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 160px;
  display: flex; align-items: center;
  overflow: hidden;
  /* FONDO AZUL MARINO COMPLETO */
  background: linear-gradient(135deg, var(--slate) 0%, #04234f 55%, var(--navy) 100%);
}

/* Contenedor de capas de fondo */
.hero-bg { position: absolute; inset: 0; z-index: 0; }

/* Cuadrícula técnica sobre todo el fondo */
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Brillo radial central */
.hero-radial {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 55% at 65% 50%, rgba(0,60,140,.4) 0%, transparent 70%);
}

/* Ola blanca en la parte inferior */
.hero-wave-bottom {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 5;
  line-height: 0;
}
.hero-wave-bottom svg { display: block; width: 100%; }

.hero-content {
  position: relative; z-index: 10;
  display: grid; grid-template-columns: 55% 45%;
  gap: 0; align-items: center;
  max-width: 1280px; margin: 0 auto;
  padding: 2rem 2rem 8rem;
  width: 100%;
  min-height: calc(100vh - 72px);
}

/* Text side */
.hero-text { color: #fff; }

.hero-eyebrow {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--font-body);
  font-weight: 600; font-size: .72rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.4rem;
}
.eyebrow-line { display: block; width: 28px; height: 2px; background: var(--orange); flex-shrink: 0; }

.hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 1.4rem;
  color: #fff;
}
.hero-title em { color: var(--orange); font-style: normal; display: inline; }

.hero-subtitle {
  font-size: 1.05rem; font-weight: 400; line-height: 1.7;
  color: rgba(255,255,255,.78); max-width: 460px; margin-bottom: 2.2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.8rem; }

.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--orange); color: #fff;
  font-family: var(--font-body); font-weight: 700; font-size: .85rem;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  padding: .85rem 1.8rem; border-radius: 4px; border: 2px solid var(--orange);
  transition: all .3s; cursor: pointer;
}
.btn-primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,130,32,.35); }

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: #fff;
  font-family: var(--font-body); font-weight: 600; font-size: .85rem;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  padding: .85rem 1.8rem; border-radius: 4px; border: 2px solid rgba(255,255,255,.35);
  transition: all .3s; cursor: pointer;
}
.btn-outline:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.08); }

/* KPIs */
.hero-kpis {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
}
.kpi-item { display: flex; flex-direction: column; gap: .15rem; }
.kpi-value {
  font-family: var(--font-head); font-weight: 700;
  font-size: 2rem; color: var(--orange); line-height: 1;
}
.zero-trir { font-size: 1.5rem; }
.kpi-label { font-size: .72rem; font-weight: 500; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .07em; line-height: 1.4; }
.kpi-sep { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

/* ─ Columna visual derecha hero ─ */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

.hero-dsv-svg {
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,.55));
}

/* Badge técnico flotante */
.hero-badge {
  position: absolute;
  top: 12px; right: 0;
  display: flex; align-items: center; gap: .7rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: .7rem 1rem;
  color: #fff;
}
.hero-badge-icon {
  width: 36px; height: 36px;
  background: var(--orange); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.hero-badge-val {
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  color: var(--orange); line-height: 1;
}
.hero-badge-lbl {
  font-size: .68rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}

/* Ping GPS animado */
.hero-ping {
  position: absolute;
  bottom: 28px; left: 12px;
  display: flex; align-items: center; gap: .6rem;
}
.ping-dot {
  position: relative;
  width: 10px; height: 10px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
}
.ping-ring {
  position: absolute;
  top: -4px; left: -4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid #4ade80;
  animation: ping 1.8s ease-out infinite;
  opacity: 0;
}
@keyframes ping {
  0%   { transform: scale(.6); opacity: .8; }
  100% { transform: scale(2.2); opacity: 0; }
}
.ping-label {
  font-size: .7rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}

/* ─ Wave Divider ─ */
.wave-divider { line-height: 0; display: block; }
.wave-divider svg { display: block; width: 100%; }

/* ═══════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════ */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200);
  padding: 1.6rem 1.5rem;
}
.trust-bar .container {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.trust-label {
  font-family: var(--font-body); font-weight: 700; font-size: .7rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gray-400);
  white-space: nowrap;
}
.trust-logos { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; flex: 1; }
.trust-client {
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  letter-spacing: .06em; color: var(--gray-400); text-transform: uppercase;
}
.trust-sep { color: var(--gray-200); font-size: 1.2rem; }
.trust-certs { display: flex; gap: .5rem; flex-wrap: wrap; }
.cert-pill {
  display: flex; align-items: center; gap: .3rem;
  font-size: .72rem; font-weight: 600; color: var(--gray-600);
  background: #fff; border: 1.5px solid var(--gray-200);
  padding: .3rem .7rem; border-radius: 20px;
}
.cert-pill i { color: var(--orange); font-size: .65rem; }

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem;
}

.svc-card {
  position: relative; overflow: hidden;
  background: #fff; border-radius: 10px;
  padding: 2rem 1.8rem;
  border: 1.5px solid var(--gray-200);
  transition: transform .32s ease, box-shadow .32s ease,
              background .32s ease, border-color .32s ease;
  cursor: default;
}

/* Barra naranja lateral — crece en hover */
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--orange);
  transition: height .35s ease;
}
.svc-card:hover::after { height: 100%; }

/* Hover: fondo oscuro + elevación */
.svc-card:hover {
  background: var(--slate);
  border-color: var(--navy-mid);
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(0,0,0,.22);
}

/* Textos adaptativos al hover oscuro */
.svc-card:hover .svc-title { color: #fff; }
.svc-card:hover .svc-desc  { color: rgba(255,255,255,.68); }
.svc-card:hover .svc-num   { color: var(--orange); }
.svc-card:hover .svc-tags span {
  background: rgba(245,130,32,.18);
  color: var(--orange);
  border-color: rgba(245,130,32,.3);
}

.svc-num {
  font-family: var(--font-head); font-weight: 700; font-size: .75rem;
  letter-spacing: .15em; color: var(--orange); margin-bottom: 1rem;
  transition: color .32s;
}
.svc-icon-wrap {
  color: var(--navy); margin-bottom: 1rem;
  transition: color .32s;
}
.svc-card:hover .svc-icon-wrap { color: var(--orange); }

.svc-title {
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--gray-800); margin-bottom: .65rem;
  transition: color .32s;
}
.svc-desc { font-size: .88rem; color: var(--gray-600); line-height: 1.65; transition: color .32s; }

.svc-tags {
  display: flex; flex-wrap: wrap; gap: .35rem; margin-top: 1.1rem;
}
.svc-tags span {
  font-size: .68rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  background: rgba(0,45,98,.07); color: var(--navy-mid);
  padding: .2rem .55rem; border-radius: 3px;
  transition: background .32s, color .32s, border-color .32s;
  border: 1px solid transparent;
}

/* ═══════════════════════════════════════
   MARKETS
═══════════════════════════════════════ */
.markets-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; margin-top: 3rem;
}

.mkt-card {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 2rem 1.5rem;
  transition: all .3s; cursor: default; overflow: hidden;
}
.mkt-card:hover {
  background: rgba(245,130,32,.1);
  border-color: var(--orange);
  transform: translateY(-5px);
}
.mkt-line {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.mkt-card:hover .mkt-line { transform: scaleX(1); }
.mkt-icon { margin-bottom: 1.2rem; }
.mkt-title {
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: .05em; color: #fff; margin-bottom: .5rem;
}
.mkt-desc { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.55; }
.mkt-arrow {
  margin-top: 1.2rem; color: var(--orange); font-size: .85rem;
  opacity: 0; transform: translateX(-6px);
  transition: all .3s;
}
.mkt-card:hover .mkt-arrow { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════
   SAFETY STRIP
═══════════════════════════════════════ */
.safety-strip {
  background: var(--orange); padding: 2.8rem 1.5rem;
}
.safety-strip__inner {
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
}
.safety-icon { font-size: 2.8rem; color: rgba(255,255,255,.85); flex-shrink: 0; }
.safety-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.8rem; text-transform: uppercase; letter-spacing: .05em; color: #fff;
}
.safety-sub { font-size: .9rem; color: rgba(255,255,255,.85); max-width: 600px; line-height: 1.6; margin-top: .3rem; }
.safety-badge {
  margin-left: auto; text-align: center;
  background: rgba(0,0,0,.12); border-radius: 8px; padding: 1rem 2rem;
  flex-shrink: 0;
}
.safety-badge-num { font-family: var(--font-head); font-weight: 700; font-size: 3rem; color: #fff; line-height: 1; }
.safety-badge-lbl { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: .1em; margin-top: .2rem; }

/* ═══════════════════════════════════════
   VALUE / NOSOTROS
═══════════════════════════════════════ */
.value-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}

/* Diagram */
.value-diagram {
  position: relative; width: 100%; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  max-width: 480px; margin: 0 auto;
}

.diagram-center {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.diagram-logo-wrap {
  width: 140px; height: 56px;
  background: var(--slate); border-radius: 8px; padding: 6px 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,45,98,.3);
}
.diagram-logo-wrap svg { width: 100%; height: 100%; }
.diagram-label {
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gray-400);
}

/* Orbiting nodes */
.diagram-ring {
  position: absolute; inset: 0;
  animation: spin 28s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.diagram-ring--1 { border-radius: 50%; }

.diagram-node {
  position: absolute;
  top: 50%; left: 50%;
  transform:
    rotate(var(--angle))
    translateY(-180px)
    rotate(calc(-1 * var(--angle)));
  width: 80px; margin-left: -40px; margin-top: -40px;
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: .6rem .4rem;
  text-align: center;
  font-family: var(--font-body); font-weight: 600; font-size: .7rem;
  color: var(--navy); text-transform: uppercase; letter-spacing: .05em;
  line-height: 1.3;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: background .3s, border-color .3s;
  animation: counter-spin 28s linear infinite;
}
@keyframes counter-spin { to { transform: rotate(calc(-1 * var(--angle))) translateY(-180px) rotate(var(--angle)) rotate(-360deg); } }

/* La animación real debería ser en sentido contrario al padre */
.diagram-ring { animation: spin 28s linear infinite; }

.diagram-node:hover {
  background: var(--orange); color: #fff; border-color: var(--orange);
}

/* Floating stats */
.diag-stat {
  position: absolute; background: #fff;
  border-radius: 8px; padding: .8rem 1.2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  border-left: 3px solid var(--orange);
}
.diag-stat--tl { top: 10%; left: -2rem; }
.diag-stat--br { bottom: 10%; right: -2rem; }
.diag-stat-val { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--navy); letter-spacing: .06em; }
.diag-stat-lbl { font-size: .7rem; color: var(--gray-400); font-weight: 600; letter-spacing: .08em; margin-top: .1rem; }

/* Value list */
.value-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.2rem; }
.val-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.2rem; border-radius: 8px;
  border: 1.5px solid var(--gray-200); background: #fff;
  transition: border-color .3s, box-shadow .3s;
}
.val-item:hover { border-color: var(--orange); box-shadow: 0 4px 16px rgba(245,130,32,.1); }
.val-num {
  font-family: var(--font-head); font-weight: 700; font-size: 1.5rem;
  color: var(--orange); line-height: 1; flex-shrink: 0; min-width: 32px;
}
.val-title {
  font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  text-transform: uppercase; letter-spacing: .04em; color: var(--gray-800);
  margin-bottom: .3rem;
}
.val-desc { font-size: .86rem; color: var(--gray-600); line-height: 1.6; }

/* ═══════════════════════════════════════
   FLEET
═══════════════════════════════════════ */
.fleet-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem;
}

.fleet-card {
  background: #fff; border-radius: 10px; overflow: hidden;
  border: 1.5px solid var(--gray-200);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.fleet-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,.09); border-color: var(--orange); }
.fleet-card--featured { grid-column: span 2; }

.fleet-visual { line-height: 0; }
.fleet-visual svg { display: block; }

.fleet-body { padding: 1.3rem 1.5rem; }
.fleet-type {
  font-family: var(--font-body); font-weight: 700; font-size: .7rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--orange);
  margin-bottom: .35rem;
}
.fleet-name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
  text-transform: uppercase; letter-spacing: .04em; color: var(--gray-800);
  margin-bottom: .7rem;
}
.fleet-specs {
  list-style: none; display: flex; flex-direction: column; gap: .3rem;
}
.fleet-specs li {
  font-size: .82rem; color: var(--gray-600);
  padding-left: 1rem; position: relative;
}
.fleet-specs li::before { content: '▸'; position: absolute; left: 0; color: var(--orange); font-size: .7rem; top: .05rem; }

/* ═══════════════════════════════════════
   PRESENCE
═══════════════════════════════════════ */
.presence-layout {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center;
}

.region-list { display: flex; flex-direction: column; gap: .8rem; margin-top: 2rem; }
.region-item {
  display: flex; align-items: center; gap: .9rem;
  padding: .9rem 1.2rem; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08); border-radius: 8px;
  transition: border-color .3s, background .3s;
}
.region-item:hover { border-color: var(--orange); background: rgba(245,130,32,.07); }

.region-dot {
  width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0;
}
.region-dot.orange { background: var(--orange); box-shadow: 0 0 0 3px rgba(245,130,32,.2); }
.region-dot.blue { background: #4A90C4; box-shadow: 0 0 0 3px rgba(74,144,196,.2); }

.region-name {
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .05em; color: #fff;
}
.region-detail { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: .1rem; }

.map-wrap { border-radius: 12px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,.25); }
.world-map { display: block; width: 100%; }

/* ═══════════════════════════════════════
   CERTIFICATIONS
═══════════════════════════════════════ */
.certs-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 3rem;
}
.cert-item {
  background: var(--off-white); border: 1.5px solid var(--gray-200);
  border-radius: 10px; padding: 1.6rem 1.2rem; text-align: center;
  border-top: 3px solid transparent;
  transition: all .3s;
}
.cert-item:hover { border-top-color: var(--orange); box-shadow: 0 6px 20px rgba(245,130,32,.08); transform: translateY(-3px); }
.cert-name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: .04em; color: var(--navy);
}
.cert-sub { font-size: .78rem; color: var(--gray-400); margin-top: .35rem; font-weight: 500; }

/* ═══════════════════════════════════════
   TIMELINE
═══════════════════════════════════════ */
.timeline-scroll {
  display: flex; gap: 1.2rem; overflow-x: auto;
  padding-bottom: 1.5rem; scroll-snap-type: x mandatory;
  scrollbar-width: thin; scrollbar-color: var(--orange) var(--gray-200);
  cursor: grab;
}
.tl-card {
  flex: 0 0 200px; scroll-snap-align: start;
  background: #fff; border-radius: 10px; padding: 1.4rem;
  border-top: 3px solid var(--orange);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.tl-year {
  font-family: var(--font-head); font-weight: 700; font-size: 2rem;
  color: var(--orange); line-height: 1;
}
.tl-title {
  font-family: var(--font-head); font-weight: 700; font-size: .9rem;
  text-transform: uppercase; letter-spacing: .04em; color: var(--navy);
  margin: .5rem 0 .35rem;
}
.tl-desc { font-size: .8rem; color: var(--gray-600); line-height: 1.5; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start;
}
.contact-layout--single {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
}

/* ─ CTA items en columna de contacto ─ */
.contact-ctas {
  display: flex; flex-direction: column; gap: 1rem;
  margin-top: 2rem;
}
.contact-cta-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(0,45,98,.04);
  border-radius: 8px;
  border-left: 3px solid var(--orange);
}
.cta-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--orange); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .9rem;
}
.cta-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange); margin-bottom: .15rem;
}
.cta-val {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  color: var(--navy); letter-spacing: .01em;
}

/* Certs debajo del CTA */
.contact-certs {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.8rem;
}
.contact-certs span {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gray-600); background: #fff;
  border: 1.5px solid var(--gray-200); border-radius: 20px;
  padding: .3rem .75rem;
}
.contact-certs span i { color: var(--orange); font-size: .6rem; }

/* Form */
.contact-form-wrap {
  background: #fff; border-radius: 12px; padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,.06);
}
.form-title {
  font-family: var(--font-body); font-weight: 700; font-size: 1.35rem;
  color: var(--gray-800);
}
.form-sub { font-size: .85rem; color: var(--gray-400); margin: .3rem 0 1.6rem; }
.req { color: #e53e3e; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-row--tight { margin-bottom: 0; }
.fg { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.fg--full { grid-column: 1/-1; }
.fg label {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gray-600);
}
.fg input, .fg select, .fg textarea {
  font-family: var(--font-body); font-size: .9rem; color: var(--gray-800);
  background: var(--off-white); border: 1.5px solid var(--gray-200);
  border-radius: 6px; padding: .7rem 1rem; outline: none; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,130,32,.1); background: #fff;
}
.fg textarea { resize: vertical; min-height: 100px; }

.form-btn {
  width: 100%; margin-top: .5rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .1em;
  background: var(--navy); color: #fff; border: none; border-radius: 6px;
  padding: 1rem 2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  transition: background .3s, transform .2s, box-shadow .3s;
}
.form-btn:hover { background: var(--orange); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,130,32,.3); }

.form-success {
  display: none; margin-top: 1rem;
  background: rgba(0,45,98,.07); border: 1.5px solid var(--navy);
  border-radius: 6px; padding: .9rem 1.1rem;
  text-align: center; font-size: .88rem; font-weight: 600; color: var(--navy);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer { background: var(--slate); color: rgba(255,255,255,.6); padding: 4rem 1.5rem 2rem; }
.footer-inner { max-width: 1260px; margin: 0 auto; }

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem; margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo-wrap {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  padding: 8px 14px;
  margin-bottom: 1rem;
  width: fit-content;
}

.footer-tagline { font-size: .84rem; line-height: 1.65; color: rgba(255,255,255,.45); margin-bottom: 1.2rem; }

.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); text-decoration: none; font-size: .85rem;
  transition: all .2s;
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

.footer-h {
  font-family: var(--font-body); font-weight: 700; font-size: .72rem;
  letter-spacing: .15em; text-transform: uppercase; color: #fff;
  margin-bottom: 1rem;
}
.footer-top ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-top ul a {
  font-size: .84rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s;
}
.footer-top ul a:hover { color: var(--orange); }

.footer-offices { font-size: .82rem; color: rgba(255,255,255,.4); line-height: 1.8; margin-top: .5rem; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-badges { display: flex; gap: .5rem; flex-wrap: wrap; }
.footer-badges span {
  font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: rgba(255,255,255,.4); border: 1px solid rgba(255,255,255,.12);
  padding: .22rem .55rem; border-radius: 3px;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .fleet-grid { grid-template-columns: repeat(2,1fr); }
  .fleet-card--featured { grid-column: span 2; }
  .markets-grid { grid-template-columns: repeat(2,1fr); }
  .certs-grid { grid-template-columns: repeat(4,1fr); }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; padding-bottom: 6rem; }
  .hero-visual { display: none; }
  .hero-text { max-width: 580px; }
  .value-layout { grid-template-columns: 1fr; gap: 3rem; }
  .presence-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .section-head { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .navbar-nav { display: none; }
  .mobile-nav-toggle { display: flex; }
  .section { padding: 4rem 1.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-card--featured { grid-column: span 1; }
  .markets-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: repeat(2,1fr); }
  .hero-kpis { gap: 1rem; }
  .kpi-sep { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }

  .value-diagram { max-width: 300px; }
  .diagram-node { width: 65px; margin-left: -32px; font-size: .62rem; }
  /* Reduce orbit radius on mobile */
  .diagram-node {
    transform: rotate(var(--angle)) translateY(-140px) rotate(calc(-1 * var(--angle)));
  }
  .diag-stat--tl { top: 5%; left: 0; }
  .diag-stat--br { bottom: 5%; right: 0; }
  .safety-badge { margin: 0 auto; }
  .safety-strip__inner { flex-direction: column; text-align: center; }
}
