:root {
  --navy: #0b1c3f;
  --navy-soft: #556084;
  --cream: #f6f4ee;
  --orange: #f7941d;
  --border-light: #e7e2d5;
  --white: #ffffff;
  --whatsapp: #25d366;
  --select-bg: #f3f4f6;
  --select-border: #e6e7ea;
  --font-display: 'Archivo', sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

ul { list-style: none; }

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: 1.35rem; }

.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.lead { color: var(--navy-soft); font-size: 1.02rem; font-weight: 500; max-width: 46em; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 15px 26px;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); opacity: 0.95; }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-outline-navy { background: var(--white); color: var(--navy); border: 1px solid var(--navy); }
.btn-outline-white { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }
.btn-whatsapp { background: var(--whatsapp); color: var(--navy); }
.btn-sm { padding: 11px 18px; font-size: 0.8rem; }
.btn-block { width: 100%; }

.quote-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.quote-actions .btn { flex: 1 1 0; min-width: 160px; }
.indicative-result {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.5;
}
.indicative-result strong { font-size: 1.15rem; }
.indicative-result small { display: block; margin-top: 6px; opacity: 0.75; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 244, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { height: 40px; width: auto; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.1;
  color: var(--navy);
  display: flex;
  flex-direction: column;
}
.brand-name small {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  color: var(--navy-soft);
}
.main-nav {
  display: none;
  gap: 28px;
  font-weight: 700;
  font-size: 0.92rem;
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
}

@media (max-width: 899px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--border-light); }
  .main-nav a:last-child { border-bottom: 0; }
}

@media (min-width: 900px) {
  .main-nav { display: flex; }
  .main-nav a:hover { color: var(--orange); }
  .menu-toggle { display: none; }
}

/* Ticker */
.ticker {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}
.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-set {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-right: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.ticker-set i { color: var(--orange); font-style: normal; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Hero */
.hero { padding: 48px 0 40px; }
.hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; }
}
.eyebrow-badge {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--orange);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  padding: 8px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.hero-copy h1 { margin-bottom: 18px; }
.hero-copy .lead { margin-bottom: 26px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-media { position: relative; }
.hero-image-wrap { position: relative; border-radius: 20px; overflow: hidden; }
.hero-image { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

.badge {
  position: absolute;
  border-radius: 14px;
  padding: 10px 16px;
  line-height: 1.1;
}
.badge strong { display: block; font-family: var(--font-display); font-weight: 900; font-size: 1.3rem; }
.badge span { font-size: 0.7rem; font-weight: 600; }
.badge-navy { top: 16px; left: 16px; background: var(--navy); color: var(--white); }
.badge-orange { bottom: 16px; right: 16px; background: var(--orange); color: var(--white); }

/* Track bar */
.track-bar {
  background: var(--navy);
  color: var(--white);
  border-radius: 18px;
  padding: 22px 24px;
  margin-top: 32px;
}
.track-label {
  display: block;
  color: var(--orange);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.track-controls { display: flex; gap: 10px; flex-wrap: wrap; }
.track-input-wrap {
  flex: 1;
  min-width: 180px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 4px 4px 4px 18px;
  gap: 4px;
}
.track-input-wrap span { color: var(--orange); font-weight: 800; font-size: 0.9rem; }
.track-input-wrap input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 6px;
  outline: none;
  min-width: 0;
}
.track-input-wrap input::placeholder { color: rgba(255,255,255,0.4); }
.track-result { margin-top: 12px; font-size: 0.85rem; font-weight: 600; color: var(--orange); }

/* Lanes */
.lanes { padding: 64px 0; }
.lane-grid {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}
.lane-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 28px;
}
.lane-card-dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.lane-card-dark p { color: rgba(255,255,255,0.7); }
.lane-icon { font-size: 1.8rem; display: block; margin-bottom: 16px; }
.lane-card h3 { margin-bottom: 10px; }
.lane-card p { color: var(--navy-soft); font-size: 0.92rem; margin-bottom: 18px; }
.lane-link { color: var(--orange); font-weight: 800; font-size: 0.82rem; letter-spacing: 0.03em; }

@media (min-width: 800px) {
  .lane-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Network */
.network { padding: 20px 0 64px; }
.network h2 { margin-bottom: 16px; }
.network .lead { margin-bottom: 24px; }

.city-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.pill {
  display: inline-block;
  border-radius: 100px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.78rem;
  background: var(--white);
  border: 1px solid var(--border-light);
}
.pill-active { background: var(--orange); color: var(--white); border-color: var(--orange); }

.map-box {
  position: relative;
  background: var(--navy);
  border-radius: 20px;
  min-height: 320px;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-lines line { stroke: rgba(247,148,29,0.55); stroke-width: 2; stroke-dasharray: 6 6; }
.map-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--white); display: block; }
.dot-main { width: 16px; height: 16px; background: var(--orange); box-shadow: 0 0 0 6px rgba(247,148,29,0.25); }
.node-label {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.node-label small {
  display: block;
  color: var(--orange);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
}
.map-node-main .node-label { color: var(--orange); }
.map-legend {
  position: absolute;
  bottom: 12px;
  right: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-weight: 600;
}

.feature-grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px;
}
.feature-icon { font-size: 1.6rem; display: block; margin-bottom: 12px; }
.feature h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature p { color: var(--navy-soft); font-size: 0.88rem; }

@media (min-width: 700px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Fleet */
.fleet { padding: 20px 0 64px; }
.fleet-grid { display: grid; gap: 32px; align-items: center; }
.fleet-image { border-radius: 20px; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.fleet-copy h2 { margin: 14px 0 16px; }
.fleet-copy .lead { margin-bottom: 26px; }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 28px; }
.stat-grid strong { display: block; font-family: var(--font-display); font-weight: 900; font-size: 1.6rem; color: var(--orange); }
.stat-grid div:nth-child(4) strong { color: var(--navy); }
.stat-grid span { font-size: 0.8rem; color: var(--navy-soft); font-weight: 600; }

@media (min-width: 900px) {
  .fleet-grid { grid-template-columns: 1fr 1fr; }
}

/* Quote */
.quote-section { padding: 20px 0 64px; }
.quote-card {
  background: var(--orange);
  border-radius: 24px;
  padding: 36px 28px;
  display: grid;
  gap: 32px;
}
.quote-intro h2 { color: var(--white); margin-bottom: 14px; }
.quote-intro p { color: rgba(255,255,255,0.85); font-weight: 500; margin-bottom: 22px; max-width: 34em; }

.quote-form {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.78rem; font-weight: 700; color: var(--navy-soft); }
.form-field select,
.form-field input {
  background: var(--select-bg);
  border: 1px solid var(--select-border);
  border-radius: 9px;
  padding: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
}
.form-field select:focus,
.form-field input:focus { outline: 2px solid var(--navy); outline-offset: 1px; }

@media (min-width: 900px) {
  .quote-card { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* Testimonials */
.testimonials { padding: 20px 0 64px; }
.testimonial-grid { display: grid; gap: 18px; margin-top: 24px; }
.testimonial {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px;
}
.testimonial p { font-size: 0.95rem; margin-bottom: 20px; }
.testimonial footer { display: flex; align-items: center; gap: 12px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.testimonial footer strong { display: block; font-size: 0.88rem; }
.testimonial footer small { color: var(--navy-soft); font-size: 0.78rem; }

@media (min-width: 800px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

/* CTA banner */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  padding: 48px 0;
  border-radius: 24px;
  margin: 0 24px 64px;
  max-width: 1112px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .wrap { padding: 0 28px; }
.cta-banner h2 { margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 22px; }

/* Footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.85); padding: 56px 0 0; }
.footer-grid {
  display: grid;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand p { margin: 14px 0 18px; color: rgba(255,255,255,0.6); font-size: 0.9rem; max-width: 30em; }
.brand-footer .brand-name { color: var(--white); }
.brand-footer .brand-name small { color: rgba(255,255,255,0.6); }
.social-row { display: flex; gap: 10px; }
.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}
.footer-col h4 { color: var(--orange); font-size: 0.78rem; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; font-size: 0.88rem; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
