/* ============================================================
   TerminalRide — Design System (Manrope Font)
   ============================================================ */

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

:root {
  color-scheme: light;
  --ink: #0F1B2D;
  --ink-soft: #16263D;
  --paper: #EFF1EC;
  --paper-raised: #FFFFFF;
  --amber: #FFB020;
  --amber-dim: #B87F13;
  --teal: #167C74;
  --teal-soft: #E3F1EF;
  --text: #14202E;
  --text-muted: #5B6472;
  --text-on-ink: #F3F5F4;
  --text-on-ink-muted: #A9B4C2;
  --line: #D9DCD5;
  --line-ink: #2A3B54;
  
  /* Fonts */
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'Manrope', sans-serif;

  --max-w: 1200px;
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Split-flap digit unit ---------- */
.flap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--ink);
  color: var(--amber);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.flap::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: rgba(0,0,0,0.55);
  transform: translateY(-0.5px);
}

/* ---------- Top ticker bar ---------- */
.ticker-bar {
  background: var(--ink);
  color: var(--text-on-ink-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 7px 0;
  border-bottom: 1px solid var(--line-ink);
  overflow: hidden;
  white-space: nowrap;
}
.ticker-bar .wrap { display: flex; align-items: center; gap: 10px; }
.ticker-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(22,124,116,0.25);
  flex-shrink: 0;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.ticker-bar strong { color: var(--amber); font-weight: 600; }

/* ---------- Header / nav ---------- */
header.site-header {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--text-on-ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo-mark .flap {
  width: 34px; height: 34px;
  font-size: 15px;
  font-family: var(--font-display);
  font-weight: 800;
}
.logo-mark img.logo-icon {
  height: 100px;
  width: auto;
  border-radius: 8px;
  display: block;
  background: #FFFFFF;
  padding: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* 🔥 CHANGED: Set to 100% width to fill the hero grid column */
.hero-brand {
  display: block;
  width: 100%;
  max-width: 500px; /* Keeps it looking great on large monitors */
  height: auto;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  background: #FFFFFF;
  padding: 10px;
}

.brand-showcase {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.brand-showcase img { width: 100%; height: 100%; object-fit: cover; display: block; }
.logo-mark span.sub {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.14em;
  display: block;
  margin-top: 2px;
}
.logo-stack { display: flex; flex-direction: column; line-height: 1; }

nav.main-nav ul {
  display: flex;
  gap: 25px;
  align-items: center;
}

nav.main-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-on-ink-muted);
  transition: color 0.15s ease;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
nav.main-nav a:hover, nav.main-nav a.active {
  color: var(--text-on-ink);
  border-bottom-color: var(--amber);
}
.nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-ink);
  color: var(--text-on-ink);
  border-radius: var(--radius);
  padding: 8px 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--amber);
  color: var(--ink);
}
.btn-primary:hover { background: #FFC24E; }
.btn-ghost {
  background: transparent;
  border-color: var(--line-ink);
  color: var(--text-on-ink);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn-outline-dark {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline-dark:hover { background: var(--ink); color: var(--text-on-ink); }

.btn-whatsapp {
  background-color: #25D366;
  border-color: #25D366;
  color: #0F1B2D;
}
.btn-whatsapp:hover {
  background-color: #1ebe57;
  color: #0F1B2D;
}

.btn-block { width: 100%; }
.btn-lg { padding: 16px 30px; font-size: 15px; }

/* ---------- WhatsApp Icon Buttons ---------- */
.nav-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-right: 5px;
}
.nav-whatsapp-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #25D366;
}
.nav-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hero-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transition: transform 0.2s ease;
}
.hero-whatsapp-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.hero-whatsapp-btn:hover {
  transform: scale(1.1);
}

/* ---------- Floating WhatsApp Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
}
.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #25D366;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* ---------- Hero ---------- */
.hero {
  background: var(--ink);
  color: var(--text-on-ink);
  padding: 72px 0 96px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--amber);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber);
}
.hero p.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-on-ink-muted);
  max-width: 480px;
  margin: 0 0 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-strip {
  display: flex;
  gap: 28px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line-ink);
  flex-wrap: wrap;
}
.hero-strip-item {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-on-ink-muted);
  letter-spacing: 0.04em;
}
.hero-strip-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-on-ink);
  font-weight: 700;
  letter-spacing: 0;
}

/* ---------- Quote / boarding-pass widget ---------- */
.board-card {
  background: var(--ink-soft);
  border: 1px solid var(--line-ink);
  border-radius: 8px;
  padding: 26px;
}
.board-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line-ink);
}
.board-card-head h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
  color: #FFFFFF !important;
}

.status-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--teal);
  background: rgba(22,124,116,0.15);
  border: 1px solid rgba(22,124,116,0.4);
  border-radius: 999px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}
.status-pill::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
}

.field-group { margin-bottom: 16px; }
.field-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-ink-muted);
  margin-bottom: 7px;
}
.field-group input,
.field-group select {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line-ink);
  color: var(--text-on-ink);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
}
.field-group input::placeholder { color: #5E6C82; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Clear all backgrounds from normal text inputs */
.field-group input:not([type="date"]):not([type="time"]) {
  background-image: none !important;
  position: static !important;
}

/* Custom calendar/clock icons */
input[type="date"],
input[type="time"] {
  position: relative;
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 26px 26px;
  padding-right: 44px !important;
}
input[type="date"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Crect width='30' height='30' rx='6' fill='%230F1B2D'/%3E%3Cpath d='M9 6v3M21 6v3M6 12h18M8 9h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V11a2 2 0 0 1 2-2Z' stroke='white' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
input[type="time"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Crect width='30' height='30' rx='6' fill='%230F1B2D'/%3E%3Ccircle cx='15' cy='15' r='8' stroke='white' stroke-width='1.6' fill='none'/%3E%3Cpath d='M15 10v5l4 2' stroke='white' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  cursor: pointer; opacity: 0;
}

/* ---------- FARE READOUT ---------- */
.fare-readout {
  margin-top: 18px;
  padding: 16px;
  background: var(--ink);
  border: 1px solid var(--line-ink);
  border-radius: var(--radius);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.fare-readout .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF !important;
}
.fare-readout .amount {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: #FFFFFF !important;
}
.fare-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #E0E0E0 !important;
  margin-top: 10px;
}

/* ---------- Section scaffolding ---------- */
section { padding: 88px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head .eyebrow { color: var(--amber-dim); }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  color: var(--text);
  max-width: 560px;
}
.section-head p {
  color: var(--text-muted);
  max-width: 380px;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.section-dark { background: var(--ink); color: var(--text-on-ink); }
.section-dark .section-head h2 { color: var(--text-on-ink); }
.section-dark .section-head p { color: var(--text-on-ink-muted); }

/* ---------- Departure board — services ---------- */
.board {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-raised);
}
.board-row {
  display: grid;
  grid-template-columns: 90px 1.4fr 1.6fr 130px 44px;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s ease;
}
.board-row:last-child { border-bottom: none; }
.board-row:hover { background: var(--paper); }
.board-row .code {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--amber-dim);
  letter-spacing: 0.05em;
}
.board-row .service-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.board-row .service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.board-row .badge {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  padding: 5px 10px;
  border-radius: 999px;
  text-align: center;
  white-space: nowrap;
  justify-self: start;
}
.board-row .arrow {
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: 18px;
  justify-self: end;
  transition: transform 0.15s ease, color 0.15s ease;
}
.board-row:hover .arrow { transform: translateX(4px); color: var(--amber-dim); }

/* ---------- Trust / why-choose grid ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-ink);
  border: 1px solid var(--line-ink);
  border-radius: 8px;
  overflow: hidden;
}
.trust-item {
  background: var(--ink);
  padding: 32px 28px;
}
.trust-item .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--amber);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: block;
}
.trust-item h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.trust-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-on-ink-muted);
  margin: 0;
}

/* ---------- Fleet cards ---------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fleet-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.fleet-card:hover { box-shadow: 0 12px 32px rgba(15,27,45,0.1); transform: translateY(-3px); }
.fleet-img {
  height: 180px;
  background: linear-gradient(135deg, var(--ink) 0%, #223350 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.fleet-img .tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--amber);
  background: rgba(0,0,0,0.4);
  padding: 4px 9px;
  border-radius: 999px;
  text-transform: uppercase;
}
.fleet-body { padding: 22px 24px 26px; }
.fleet-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.fleet-body .cap {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--amber-dim);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.fleet-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 16px;
}
.fleet-body ul { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.fleet-body ul li {
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.fleet-body ul li::before { content: '—'; color: var(--amber-dim); }

/* ---------- Reviews ---------- */
.reviews-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}
.review-stars {
  font-family: var(--font-mono);
  color: var(--amber-dim);
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.review-card p.quote {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 16px;
}
.review-author {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.review-author strong { color: var(--text); font-weight: 600; }

.rating-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding: 20px 26px;
  background: var(--ink);
  border-radius: 8px;
  color: var(--text-on-ink);
}
.rating-banner .score {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--amber);
}
.rating-banner .score-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-on-ink-muted);
  letter-spacing: 0.04em;
}

/* ---------- App download ---------- */
.app-cta {
  background: var(--teal-soft);
  border-radius: 8px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: center;
}
.app-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--text);
}
.app-cta p { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin: 0 0 22px; max-width: 460px; }
.store-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--text-on-ink);
  padding: 11px 18px;
  border-radius: var(--radius);
  font-size: 13px;
}
.store-btn small { display: block; font-size: 9px; color: var(--text-on-ink-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.store-btn strong { font-family: var(--font-display); font-size: 15px; letter-spacing: 0.01em; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--amber);
  border-radius: 8px;
  padding: 52px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  line-height: 1.05;
}
.cta-band .btn-primary { background: var(--ink); color: var(--text-on-ink); }
.cta-band .btn-primary:hover { background: #1D2E48; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--ink);
  color: var(--text-on-ink-muted);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-ink);
}
.footer-brand .logo-mark { margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 0 20px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-ink);
  margin: 0 0 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom .legal-links { display: flex; gap: 20px; }
.footer-bottom .legal-links a:hover { color: var(--amber); }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 34px; height: 34px;
  border: 1px solid var(--line-ink);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.social-row a:hover { border-color: var(--amber); color: var(--amber); }

/* ---------- Page header (interior pages) ---------- */
.page-header {
  background: var(--ink);
  color: var(--text-on-ink);
  padding: 56px 0 44px;
}
.page-header .eyebrow { margin-bottom: 14px; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 14px;
  line-height: 1.05;
}
.page-header p {
  color: var(--text-on-ink-muted);
  font-size: 16px;
  max-width: 520px;
  margin: 0;
  line-height: 1.6;
}
.crumb {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-on-ink-muted);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.crumb a:hover { color: var(--amber); }
.crumb .sep { margin: 0 8px; color: var(--line-ink); }
.crumb .current { color: var(--amber); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .reviews-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .app-cta { grid-template-columns: 1fr; }
  .board-row { grid-template-columns: 60px 1fr 40px; }
  .board-row .service-desc, .board-row .badge { display: none; }
}

/* 🔥 MOBILE LAYOUT (MAX-WIDTH: 720PX) */
@media (max-width: 720px) {
  .wrap { padding: 0 15px; }

  nav.main-nav { display: none !important; }
  .nav-toggle { display: inline-flex !important; }

  nav.main-nav.nav-open {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--line-ink);
    z-index: 100;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  
  nav.main-nav.nav-open ul {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  nav.main-nav.nav-open a {
    padding: 12px;
    border-bottom: 1px solid var(--line-ink);
    width: 100%;
    font-size: 16px;
  }

  .nav-cta .btn-ghost, 
  .nav-cta .btn-primary { display: none !important; }

  .logo-mark {
    gap: 8px;
    font-size: 16px;
  }
  .logo-mark img.logo-icon {
    height: 45px !important;
    width: auto;
    padding: 3px;
  }
  .logo-mark span.sub {
    font-size: 8px;
  }

  .nav-whatsapp-btn {
    width: 45px !important;
    height: 45px !important;
    margin-right: 0;
  }

  .hero-brand {
    width: 180px !important;
    margin-bottom: 20px;
  }

  .hero {
    padding: 40px 0 50px;
  }
  .hero h1 {
    font-size: 28px;
    white-space: normal;
  }

  .whatsapp-float {
    width: 60px !important;
    height: 60px !important;
  }

  section { padding: 50px 0; }
  .field-row { grid-template-columns: 1fr; }
  .board-row { grid-template-columns: 60px 1fr 30px; }
  .board-row .service-desc, .board-row .badge { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}