:root {
  --bg: #05070f;
  --bg-1: #070b16;
  --bg-2: #0b1226;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-soft: rgba(255, 255, 255, 0.06);
  --accent: #4f8dff;
  --accent-2: #8ab6ff;
  --accent-deep: #2451c7;
  --text: #eef2ff;
  --text-dim: #a7b0c8;
  --text-dimmer: #6d7796;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* ---------- background fx ---------- */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, #14224d 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg) 40%, var(--bg-2) 100%);
}
#starfield { position: absolute; inset: 0; width: 100%; height: 100%; }
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
  will-change: transform;
}
.bg-glow-1 { top: 8%; right: -10%; width: 500px; height: 500px; background: #2a58e0; }
.bg-glow-2 { top: 60%; left: -12%; width: 460px; height: 460px; background: #1c3a8f; }

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  transition-delay: calc(var(--i, 0) * 60ms);
}
.stagger.in-view > * { opacity: 1; transform: translateY(0); }

/* ---------- icons ---------- */
.icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--accent-2); }
.icon-lg { width: 30px; height: 30px; margin-bottom: 16px; color: var(--accent-2); }
.icon-round {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(79, 141, 255, 0.14); flex-shrink: 0;
}
.icon-round .icon { width: 20px; height: 20px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #3d76f2, #2451c7);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(64, 116, 240, 0.65);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(64, 116, 240, 0.8); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); background: rgba(79, 141, 255, 0.08); transform: translateY(-2px); }
.btn-small { padding: 10px 20px; font-size: 0.85rem; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(5, 7, 15, 0.75);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  border-color: var(--border-soft);
}
.navbar { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.logo-mark { height: 22px; width: auto; }
.logo-text .dot { color: var(--accent-2); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a:not(.btn) {
  font-size: 0.92rem;
  color: var(--text-dim);
  position: relative;
  transition: color 0.2s;
}
.nav-links a:not(.btn):hover { color: var(--text); }
.nav-links a:not(.btn).active { color: var(--accent-2); }
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--text); transition: transform 0.3s var(--ease), opacity 0.3s; }

/* ---------- hero ---------- */
.hero { padding: 160px 0 100px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.accent-italic {
  font-style: italic;
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.15em;
  margin-right: -0.15em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero-copy > p { color: var(--text-dim); font-size: 1.08rem; max-width: 480px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 42px; }
.stat strong { display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--text); }
.stat span { color: var(--text-dimmer); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; }

.hero-visual { position: relative; height: 520px; display: flex; align-items: center; justify-content: center; will-change: transform; }
.hero-ring { position: absolute; border-radius: 50%; border: 1px solid var(--border); }
.hero-ring-1 { width: 440px; height: 440px; animation: spin 40s linear infinite; }
.hero-ring-2 { width: 340px; height: 340px; border-style: dashed; border-color: rgba(79,141,255,0.25); animation: spin 30s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-bot { position: absolute; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.55)); animation: float 6s ease-in-out infinite; }
.hero-bot-main { height: 420px; left: 6%; z-index: 2; }
.hero-bot-a2lite { height: 360px; right: 2%; bottom: 30px; z-index: 1; animation-name: floatMirrored; animation-delay: -1.5s; }
.hero-bot-dog { height: 145px; right: 8%; bottom: 10px; z-index: 3; animation-delay: -3s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes floatMirrored { 0%, 100% { transform: scaleX(-1) translateY(0); } 50% { transform: scaleX(-1) translateY(-16px); } }

.scroll-cue { display: flex; justify-content: center; margin-top: 40px; }
.scroll-cue span { width: 1px; height: 40px; background: linear-gradient(var(--accent), transparent); position: relative; overflow: hidden; display: block; }
.scroll-cue span::after {
  content: ""; position: absolute; left: 0; top: -40px; width: 100%; height: 40px;
  background: linear-gradient(var(--text), transparent);
  animation: scrollcue 2s ease-in-out infinite;
}
@keyframes scrollcue { to { top: 40px; } }

/* ---------- teaser video ---------- */
.teaser { padding-top: 90px; padding-bottom: 90px; }
.teaser .section-sub { margin-bottom: 32px; }
.video-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--panel);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.6);
  max-width: 860px;
  margin: 0 auto;
}
.video-frame video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #000; }

/* ---------- logos strip ---------- */
.logos { padding: 44px 0; }
.logos p { text-align: center; color: var(--text-dimmer); font-size: 0.82rem; margin-bottom: 22px; text-transform: uppercase; letter-spacing: 0.08em; }
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 34px; }
.logo-row span { color: var(--text-dimmer); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.05em; opacity: 0.65; }

/* ---------- section basics ---------- */
section { padding: 130px 0; position: relative; }
.section-tint::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(60, 96, 200, 0.07), transparent 70%);
  pointer-events: none;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.section-sub { color: var(--text-dim); font-size: 1.02rem; max-width: 640px; margin-bottom: 40px; }

/* ---------- who we are ---------- */
.who-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; margin-top: 30px; align-items: start; }
.who-copy > p { color: var(--text-dim); font-size: 1.05rem; margin-bottom: 40px; max-width: 560px; }
.who-copy > p strong { color: var(--text); }

.feature-rows { display: grid; }
.feature-row {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 0; border-top: 1px solid var(--border-soft);
}
.feature-rows .feature-row:last-child { border-bottom: 1px solid var(--border-soft); }
.feature-row .icon { margin-top: 2px; }
.feature-row h4 { font-size: 1rem; margin-bottom: 4px; font-weight: 600; }
.feature-row p { color: var(--text-dim); font-size: 0.9rem; }

.who-side { display: grid; gap: 40px; }
.side-label {
  display: block; color: var(--accent-2); font-weight: 600; margin-bottom: 14px;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em;
}
.quote-block { border-left: 2px solid var(--accent); padding-left: 22px; }
.quote-block p {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  color: var(--text); font-size: 1.18rem; line-height: 1.55;
}
.mission-block .check-list li { font-size: 0.95rem; }

/* ---------- shared checklist (svg check, no emoji) ---------- */
.check-list { display: grid; gap: 14px; }
.check-list li {
  position: relative; padding-left: 30px; color: var(--text-dim); font-size: 0.94rem;
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 3px; width: 18px; height: 18px;
  background-color: var(--accent-2);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.stat-strip {
  margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border-soft);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.stat-strip strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--accent-2); font-weight: 700; }
.stat-strip span { color: var(--text-dimmer); font-size: 0.82rem; }

/* ---------- service ---------- */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 22px; }
.compare-card { background: var(--panel); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 30px; transition: transform 0.3s var(--ease); }
.compare-card:hover { transform: translateY(-6px); }
.compare-card.featured { background: linear-gradient(160deg, #2454e6, #1638a8); border-color: transparent; box-shadow: 0 20px 50px -20px rgba(37, 82, 220, 0.6); }
.compare-card.featured .icon-lg { color: #fff; }
.compare-card h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 6px; }
.compare-card h3 span { color: var(--text-dimmer); font-weight: 400; font-size: 1rem; }
.compare-card.featured h3 span { color: rgba(255,255,255,0.75); }
.compare-tag { color: var(--accent-2); font-size: 0.85rem; margin-bottom: 16px; }
.compare-card.featured .compare-tag { color: #cfe0ff; }
.compare-card ul { display: grid; gap: 10px; margin-bottom: 18px; }
.compare-card ul li { position: relative; padding-left: 18px; color: var(--text-dim); font-size: 0.92rem; }
.compare-card.featured ul li { color: rgba(255,255,255,0.88); }
.compare-card ul li::before { content: "•"; position: absolute; left: 0; color: var(--accent-2); }
.compare-note { color: var(--text-dimmer); font-size: 0.82rem; font-style: italic; }
.compare-card.featured .compare-note { color: rgba(255,255,255,0.65); }
.need-both { text-align: center; color: var(--text-dimmer); font-size: 0.9rem; margin-bottom: 46px; }

.pricing-carousel { position: relative; }
.pricing-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr);
  gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px;
  scrollbar-width: none; cursor: grab;
}
.pricing-track::-webkit-scrollbar { display: none; }
.pricing-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.pricing-card {
  scroll-snap-align: start;
  background: var(--panel); border: 1px solid var(--border-soft); border-radius: var(--radius-md);
  padding: 24px; user-select: none;
}
.pricing-card.highlight { background: linear-gradient(160deg, #2454e6, #1638a8); border-color: transparent; }
.pricing-step { display: block; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dimmer); margin-bottom: 12px; }
.pricing-card.highlight .pricing-step { color: #cfe0ff; }
.pricing-card h4 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 8px; }
.pricing-card p { color: var(--text-dim); font-size: 0.88rem; margin-bottom: 18px; min-height: 40px; }
.pricing-card.highlight p { color: rgba(255,255,255,0.85); }
.pricing-badge { display: inline-block; font-size: 0.78rem; padding: 6px 14px; border-radius: 999px; border: 1px solid var(--border); color: var(--text-dim); }
.pricing-badge.solid { background: #fff; color: #1638a8; border-color: transparent; font-weight: 700; }
.addons { text-align: center; margin-top: 30px; color: var(--text-dim); font-size: 0.92rem; }
.addons strong { color: var(--accent-2); }

/* ---------- fleet ---------- */
.fleet-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-top: 36px; align-items: start; }
.fleet-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: 100%;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab;
  border-radius: var(--radius-lg);
}
.fleet-track::-webkit-scrollbar { display: none; }
.fleet-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.fleet-card {
  scroll-snap-align: start;
  background: var(--panel); border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
  padding: 28px; text-align: center; user-select: none;
}
.fleet-tag { display: block; color: var(--accent-2); font-weight: 600; font-size: 0.85rem; margin-bottom: 4px; }
.fleet-role { color: var(--text-dimmer); font-size: 0.85rem; font-style: italic; margin-bottom: 10px; }
.fleet-img { height: 240px; margin: 0 auto 14px; object-fit: contain; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5)); }
.fleet-img-dog { height: 170px; }
.fleet-specs { display: grid; gap: 8px; margin-bottom: 16px; text-align: left; max-width: 320px; margin-inline: auto; }
.fleet-specs li { position: relative; padding-left: 16px; color: var(--text-dim); font-size: 0.88rem; }
.fleet-specs li::before { content: "•"; position: absolute; left: 0; color: var(--accent); }
.fleet-plan { display: inline-block; font-size: 0.76rem; padding: 6px 14px; border-radius: 999px; background: rgba(79,141,255,0.12); color: var(--accent-2); }
.fleet-plan.plan-limited { background: rgba(255, 180, 79, 0.12); color: #ffc978; }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 18px; }
.carousel-arrow {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--panel); color: var(--text); cursor: pointer; font-size: 1rem;
  transition: background 0.2s, border-color 0.2s;
}
.carousel-arrow:hover { background: rgba(79,141,255,0.14); border-color: var(--accent); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background 0.2s, transform 0.2s; }
.carousel-dots span.active { background: var(--accent); transform: scale(1.3); }
.swipe-hint { text-align: center; color: var(--text-dimmer); font-size: 0.78rem; margin-top: 10px; }

.venues-label { display: block; color: var(--accent-2); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.venues-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.venue-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3;
  border: 1px solid var(--border-soft);
}
.venue-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s var(--ease); }
.venue-card[href="#contact"] img[alt="Exhibitions & Expos"] { object-position: 50% 32%; }
.venue-card[href="#contact"] img[alt="Shopping Malls"] { object-position: 50% 70%; }
.venue-card:hover img { transform: scale(1.08); }
.venue-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,6,14,0.9), rgba(4,6,14,0.1) 60%); }
.venue-card span { position: absolute; left: 12px; bottom: 10px; z-index: 2; font-size: 0.82rem; font-weight: 600; }
.venues-note { text-align: center; color: var(--text-dimmer); font-size: 0.82rem; font-style: italic; margin-top: 18px; }

/* ---------- included ---------- */
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 30px; }
.included-list h3, .why-rows h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--accent-2); margin-bottom: 22px; text-transform: uppercase; letter-spacing: 0.04em; }
.why-rows { display: grid; }
.why-row {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 0; border-top: 1px solid var(--border-soft);
}
.why-rows .why-row:last-child { border-bottom: 1px solid var(--border-soft); }
.why-row .icon { margin-top: 2px; }
.why-row h4 { font-size: 0.95rem; margin-bottom: 3px; font-weight: 600; }
.why-row p { color: var(--text-dim); font-size: 0.87rem; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; }
.contact-copy h2 { margin-top: 10px; }
.contact-copy > p { color: var(--text-dim); margin-bottom: 30px; max-width: 480px; }
.contact-email { display: flex; align-items: center; gap: 14px; margin-bottom: 40px; }
.contact-label { display: block; color: var(--text-dimmer); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-email a { font-weight: 600; font-size: 1.05rem; color: var(--text); }
.contact-email a:hover { color: var(--accent-2); }

.contact-form { display: grid; gap: 16px; max-width: 460px; }
.form-row { display: grid; gap: 6px; }
.form-row label { font-size: 0.85rem; color: var(--text-dim); }
.form-row input, .form-row textarea {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 14px; color: var(--text); font-family: inherit; font-size: 0.95rem; resize: vertical;
  transition: border-color 0.2s, background 0.2s;
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--accent); background: rgba(79,141,255,0.06); }
.contact-form .btn { justify-self: start; margin-top: 4px; }
.form-status { font-size: 0.88rem; color: var(--accent-2); min-height: 20px; }

.contact-side {
  background: var(--panel); border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
  padding: 40px 30px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.contact-logo { height: 34px; margin-bottom: 6px; }
.contact-brand { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 24px; }
.contact-brand span { color: var(--text-dimmer); font-weight: 500; font-size: 0.9rem; }
.qr-box { background: #fff; border-radius: var(--radius-md); padding: 16px; }
.qr-box img { width: 160px; height: 160px; object-fit: contain; border-radius: 8px; }
.qr-box span { display: block; margin-top: 10px; color: #0b1226; font-size: 0.78rem; font-weight: 600; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border-soft); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 2fr; gap: 40px; padding-bottom: 40px; }
.footer-grid > div:first-child p { color: var(--text-dimmer); font-size: 0.88rem; margin-top: 12px; max-width: 260px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.footer-links h5 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dimmer); margin-bottom: 14px; }
.footer-links a { display: block; color: var(--text-dim); font-size: 0.9rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-2); }
.footer-bottom { border-top: 1px solid var(--border-soft); padding: 22px 0; color: var(--text-dimmer); font-size: 0.82rem; text-align: center; }

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; order: -1; }
  .hero-bot-main { height: 300px; left: 2%; }
  .hero-bot-a2lite { height: 260px; right: -2%; bottom: 20px; }
  .hero-bot-dog { height: 110px; right: 4%; bottom: 4px; }
  .who-grid, .included-grid, .compare-grid, .contact-grid, .fleet-layout { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; width: 74%; max-width: 320px;
    background: rgba(6, 9, 18, 0.98); backdrop-filter: blur(16px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px;
    padding: 40px 36px; transform: translateX(100%); transition: transform 0.35s var(--ease);
    border-left: 1px solid var(--border-soft);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding: 130px 0 70px; }
  .hero-stats { gap: 26px; }
  section { padding: 70px 0; }
  .teaser { padding-top: 70px; padding-bottom: 70px; }
  .venues-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
}
