/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0d0d1a;
  --surface:  #13131f;
  --card:     #1a1a2e;
  --border:   #2a2a44;
  --primary:  #ff3100;
  --primary2: #ff6d00;
  --accent:   #00e5ff;
  --text:     #f0f0ff;
  --muted:    #8888aa;
  --green:    #76ff03;
  --blue:     #2979ff;
  --font-h:   'Orbitron', sans-serif;
  --font-b:   'Inter', sans-serif;
  --r:        12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 60px;
}

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,13,26,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
}

.logo-icon { width: 32px; height: 24px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 32px);
  list-style: none;
  flex-wrap: nowrap;
}

.nav-links a {
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  color: var(--muted);
  transition: color 0.2s;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }

.nav-admin {
  font-size: clamp(0.72rem, 1vw, 0.82rem) !important;
  color: var(--muted) !important;
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s !important;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.nav-admin:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  font-weight: 600;
  transition: background 0.2s, transform 0.15s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: #e02800 !important; transform: translateY(-1px); }

.lang-dropdown { position: relative; }
.lang-select {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--text-muted);
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  outline: none;
  white-space: nowrap;
}
.lang-select:hover, .lang-select:focus { border-color: var(--accent); color: var(--accent); }
.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #0d0d1a;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  list-style: none;
  padding: 4px 0;
  margin: 0;
  min-width: 110px;
  z-index: 100;
}
.lang-menu.open { display: block; }
.lang-menu li {
  padding: 7px 14px;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.15s, background 0.15s;
}
.lang-menu li:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.lang-menu li.active { color: var(--accent); }
.lang-menu li.active::after { content: '✓'; color: var(--accent); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

/* animated grid background */
.hero-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,49,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,49,0,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,49,0,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 52px 24px 64px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}

h1 {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.accent { color: var(--primary); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
  animation: fadeUp 0.6s 0.2s ease both;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 rgba(255,49,0,0.4);
}
.btn-primary:hover {
  background: #e02800;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,49,0,0.4);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  animation: fadeUp 0.6s 0.4s ease both;
}

.hstat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hstat-num {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}
.hstat span:last-child {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.hstat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero car */
.hero-car-wrap {
  position: relative;
  width: 100%;
  margin-top: 64px;
  z-index: 2;
  display: flex;
  justify-content: center;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-car {
  width: 100%;
  max-width: 520px;
  animation: carFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(255,49,0,0.3));
}

.hero-car-img {
  max-width: 100%;
  height: auto;
  max-height: 65vh;
  display: block;
  filter: brightness(0.92);
}

.hero-car-glow {
  display: none;
}

@keyframes carFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how { background: var(--surface); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.step-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-h);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 16px;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}
.step-icon svg { width: 100%; height: 100%; }

.step-card h3 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.step-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; }

/* ── FLEET ────────────────────────────────────────────────── */
.fleet { background: var(--bg); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.car-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.car-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border-color: var(--primary);
}

.car-card--featured {
  border-color: var(--blue);
}
.car-card--featured:hover { border-color: #5599ff; }

.car-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-h);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}
.car-badge--blue  { background: var(--blue); }
.car-badge--green { background: #33aa00; }

.car-svg-wrap {
  background: #f5f5f5;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.car-svg-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.car-card:hover .car-svg-wrap img { transform: scale(1.06); }

.car-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.car-name {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.car-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

.car-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.car-specs span {
  font-size: 0.82rem;
  color: var(--muted);
}

.car-price {
  font-family: var(--font-h);
  font-size: 1.05rem;
  color: var(--text);
  margin-top: auto;
}
.car-price span { font-size: 1.6rem; color: var(--accent); }
.car-price small { font-size: 0.7rem; color: var(--muted); font-family: var(--font-b); }

.btn-buy {
  width: 100%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-buy:hover {
  background: #e02800;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,49,0,0.5);
}
.btn-buy:active { transform: scale(0.97); }

/* ── STATS SECTION ────────────────────────────────────────── */
.stats-section { background: var(--surface); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.25s;
}
.stat-box:hover { border-color: var(--accent); }

.stat-icon { font-size: 1.8rem; margin-bottom: 10px; }

.stat-val {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
  min-height: 2.6rem;
  transition: all 0.3s;
}

.stat-label { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.05em; }

/* Log panel */
.log-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 28px;
}

.log-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: rgba(0,0,0,0.3);
  font-family: var(--font-h);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border);
}

.log-live {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-size: 0.7rem;
}

.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.4s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.log-body {
  max-height: 300px;
  overflow-y: auto;
  padding: 8px 0;
}

.log-empty {
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.log-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.82rem;
  transition: background 0.2s;
  animation: rowIn 0.3s ease;
}
.log-row:hover { background: rgba(255,255,255,0.03); }
.log-row:last-child { border-bottom: none; }

@keyframes rowIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.log-row-user { color: var(--muted); font-family: monospace; }
.log-row-car  { color: var(--text); font-weight: 500; }
.log-row-time { color: var(--muted); text-align: right; }

/* Car breakdown */
.car-breakdown {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.breakdown-item {
  flex: 1;
  min-width: 160px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 20px;
}

.breakdown-name {
  font-family: var(--font-h);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 6px;
}

.breakdown-count {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.breakdown-bar-wrap {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
}
.breakdown-bar {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.6s ease;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: #080810;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 14px;
  font-size: 1rem;
}
.footer-brand p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links h4 {
  font-family: var(--font-h);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 6px;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── MODAL ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  transform: scale(0.92);
  transition: transform 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.modal-overlay.active .modal { transform: scale(1); }

.modal-icon { font-size: 3rem; }
.modal h3 {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.modal p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; }

/* ── PROMO BANNER ─────────────────────────────────────────── */
.promo-bar {
  position: relative;
  background: linear-gradient(90deg, #ff3100 0%, #ff6d00 50%, #ff3100 100%);
  background-size: 200% 100%;
  animation: promoBg 4s linear infinite;
  color: #fff;
  text-align: center;
  padding: 11px 48px 11px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  z-index: 150;
}
@keyframes promoBg {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
.promo-text { line-height: 1.4; }
.promo-cta {
  background: #fff;
  color: #ff3100;
  border: none;
  border-radius: 100px;
  padding: 6px 18px;
  font-family: var(--font-h);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s;
}
.promo-cta:hover { transform: scale(1.05); }
.promo-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.promo-close:hover { color: #fff; }

/* ── LEAD MODAL ADDITIONS ─────────────────────────────────── */
.modal--lead { max-width: 460px; padding: 40px 36px 36px; position: relative; }
.modal-discount-badge {
  background: linear-gradient(90deg, #ff3100, #ff6d00);
  color: #fff;
  font-family: var(--font-h);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  padding: 5px 16px;
  border-radius: 100px;
  font-weight: 700;
}
.lead-form { width: 100%; display: flex; flex-direction: column; gap: 10px; }
.lead-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  padding: 12px 16px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.lead-input:focus { border-color: var(--accent); }
.lead-or { text-align: center; color: var(--muted); font-size: 0.8rem; margin: 2px 0; }
.lead-error { color: #ff6d6d; font-size: 0.8rem; min-height: 1rem; text-align: center; }
.lead-submit-btn { width: 100%; margin-top: 4px; }
.lead-success { width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.lead-success-icon { font-size: 2.5rem; }
.modal-x-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.modal-x-btn:hover { color: var(--text); }

/* ── THAILAND LOCATION SECTION ───────────────────────────── */
.location { background: var(--surface); }

.location-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
  padding: 28px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
}

.location-tagline {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

.location-tagline strong { color: var(--text); }

.terrain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.terrain-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s;
}

.terrain-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.terrain-card--highlight {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--card) 60%, rgba(0,229,255,0.06));
}

.terrain-card--highlight:hover { border-color: var(--accent); }

.terrain-icon {
  width: 64px;
  height: 64px;
}

.terrain-card h3 {
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.terrain-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}

.terrain-tag {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.terrain-videos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.terrain-videos video,
.terrain-videos img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 16/9;
  background: #000;
}

/* ── Action photo strip ─────────────────────────────────── */
.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 320px;
}

.photo-strip-item {
  position: relative;
  overflow: hidden;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.photo-strip-item:hover img {
  transform: scale(1.05);
}

.photo-strip-label {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 6px;
  border-left: 3px solid var(--primary);
}

/* ── Action gallery ─────────────────────────────────────── */
.action-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 220px 180px;
  width: 100%;
  gap: 3px;
  overflow: hidden;
}

.action-gallery .gallery-wide {
  grid-column: 1 / -1;
}

.action-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.88);
}

.action-gallery img:hover {
  transform: scale(1.04);
  filter: brightness(1.05);
  z-index: 1;
  position: relative;
}

.location-info-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.loc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  background: var(--card);
  gap: 6px;
  text-align: center;
}

.loc-stat-num {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.loc-stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ── DOWNLOAD SECTION ─────────────────────────────────────── */
.download { background: var(--surface); }

.download-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.dl-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}

.dl-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.dl-icon {
  width: 52px;
  height: 52px;
  opacity: 0.55;
}

.dl-icon svg { width: 100%; height: 100%; }

.dl-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.dl-soon-badge {
  display: inline-block;
  background: rgba(255,49,0,0.15);
  color: var(--primary);
  border: 1px solid rgba(255,49,0,0.35);
  border-radius: 20px;
  font-size: 0.7rem;
  font-family: var(--font-h);
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  margin-bottom: 4px;
}

.dl-platform {
  font-family: var(--font-h);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text);
}

.dl-os {
  font-size: 0.78rem;
  color: var(--muted);
}

.download-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.download-notify {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.notify-input {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-b);
  font-size: 0.95rem;
  padding: 12px 18px;
  width: 280px;
  outline: none;
  transition: border-color 0.2s;
}

.notify-input:focus { border-color: var(--accent); }
.notify-input::placeholder { color: var(--muted); }

.notify-btn { padding: 12px 28px; }

.notify-confirm {
  text-align: center;
  color: var(--green);
  font-size: 0.95rem;
  margin-top: 16px;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-content { padding: 40px 24px 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .nav-links { gap: 16px; }
  .location-hero { flex-direction: column; text-align: center; }
  .download-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .nav-links li:not(:last-child) { display: none; }
  .log-row { grid-template-columns: 1fr 1fr; }
  .log-row-time { display: none; }
  .terrain-grid { grid-template-columns: 1fr; }
  .location-info-bar { grid-template-columns: 1fr 1fr; }
  .download-grid { grid-template-columns: repeat(2, 1fr); }
  .notify-input { width: 100%; }
  .download-notify { flex-direction: column; align-items: center; }
}
