/* Student Bus — Premium site theme */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Exact app colors — mobile/src/utils/colors.js */
  --primary: #F5A623;
  --primary-light: #FFD966;
  --primary-dark: #E09000;
  --secondary: #FF9800;
  --primary-glow: rgba(245, 166, 35, 0.4);
  --success: #4CAF50;
  --ink: #212121;
  --ink-soft: #212121;
  --muted: #757575;
  --muted-light: #9E9E9E;
  --bg: #FFF8E1;
  --bg-warm: #FFF8E1;
  --card: #FFFFFF;
  --border: #E0E0E0;
  --shadow-sm: 0 2px 12px rgba(245, 166, 35, 0.12);
  --shadow-md: 0 12px 40px rgba(245, 166, 35, 0.18);
  --shadow-lg: 0 20px 50px rgba(224, 144, 0, 0.22);
  --radius: 16px;
  --radius-lg: 20px;
  --max: 1120px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary); }

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 248, 225, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.brand:hover { color: var(--ink); opacity: 0.9; }

.brand-logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: block;
  border-radius: 11px;
}

.brand-logo-sm { width: 36px; height: 36px; border-radius: 10px; }

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.nav a:hover {
  background: var(--bg-warm);
  color: var(--primary-dark);
  text-decoration: none;
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px var(--primary-glow);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* ─── Hero (home) ─── */
.hero-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: 3.5rem 1.5rem 4.5rem;
}

.hero-wrap::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 90%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 68%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content { text-align: left; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--card);
  color: var(--primary-dark);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--primary-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #4caf50;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff !important;
  padding: 0.9rem 1.5rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none !important;
  box-shadow: 0 8px 24px var(--primary-glow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--primary-glow);
  color: #fff !important;
}

.btn-outline {
  background: #fff;
  color: var(--ink) !important;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary-dark) !important;
  box-shadow: var(--shadow-md);
}

.hero-note {
  font-size: 0.875rem;
  color: var(--muted);
}

.hero-note strong { color: var(--ink-soft); }

/* Animated bus route — app concept visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.track-scene {
  width: 100%;
  max-width: 420px;
  background: var(--card);
  border: 2px solid var(--primary-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem;
  position: relative;
}

.track-scene-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.track-scene-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #E8F5E9;
  color: var(--success);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  animation: livePulse 2s ease-in-out infinite;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: liveBlink 1.2s ease infinite;
}

@keyframes liveBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.35); }
  50% { box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
}

.track-map {
  position: relative;
  height: 260px;
  background: linear-gradient(180deg, #FFFDE7 0%, var(--bg) 100%);
  border-radius: 14px;
  border: 1px dashed var(--primary-light);
  overflow: hidden;
}

.track-map svg.route-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-path-shadow {
  fill: none;
  stroke: #4A0072;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.22;
}

.route-path {
  fill: none;
  stroke: #6A0DAD;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 14 10;
  animation: routeFlow 1.6s linear infinite;
}

@keyframes routeFlow {
  to { stroke-dashoffset: -36; }
}

.stop-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
  z-index: 2;
}

.stop-pin .pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--primary);
  margin-bottom: 4px;
}

.stop-pin.active .pin-dot {
  background: var(--primary);
  border-color: var(--primary-dark);
  animation: stopPulse 2s ease infinite;
}

@keyframes stopPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--primary-glow); }
  50% { box-shadow: 0 0 0 10px rgba(245, 166, 35, 0); }
}

.stop-start { left: 5%; bottom: 18%; }
.stop-1 { left: 18%; bottom: 34%; }
.stop-2 { left: 32%; top: 50%; }
.stop-home { left: 48%; top: 28%; }
.stop-campus { right: 8%; top: 10%; }

.stop-pin.active { color: var(--primary-dark); }

.bus-marker {
  position: absolute;
  width: 38px;
  height: 38px;
  z-index: 5;
  offset-path: path('M 36 208 Q 130 175, 190 118 T 348 48');
  offset-rotate: auto;
  animation: busFollowRoute 6s ease-in-out infinite;
}

.bus-marker-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 11px;
  border: 1px solid rgba(245, 166, 35, 0.2);
  box-shadow: 0 6px 18px rgba(106, 13, 173, 0.25), 0 2px 8px rgba(0,0,0,0.1);
}

@keyframes busFollowRoute {
  0%   { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}

/* Fallback for browsers without offset-path */
@supports not (offset-path: path('M 0 0')) {
  .bus-marker {
    offset-path: unset;
    animation: busAlongRoute 6s ease-in-out infinite;
  }
}

.bus-icon {
  display: none;
}

@keyframes busAlongRoute {
  0%   { left: 6%;  bottom: 14%; transform: rotate(-8deg); }
  25%  { left: 28%; bottom: 42%; transform: rotate(12deg); }
  50%  { left: 48%; top: 32%;    transform: rotate(-5deg); }
  75%  { left: 68%; top: 22%;    transform: rotate(18deg); }
  100% { left: 82%; top: 14%;    transform: rotate(5deg); }
}

.toast-stack {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 92%;
  z-index: 6;
}

.trip-toast {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid #6A0DAD;
  border-radius: 10px;
  padding: 0.5rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  animation: toastCycle 16s ease-in-out infinite;
}

.trip-toast strong { color: var(--primary-dark); }

.toast-1 { animation-delay: 0s; }
.toast-2 { animation-delay: 4s; }
.toast-3 { animation-delay: 8s; }
.toast-4 { animation-delay: 12s; }

@keyframes toastCycle {
  0%, 3% { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  6%, 22% { opacity: 1; transform: translateX(-50%) translateY(0); }
  26%, 100% { opacity: 0; transform: translateX(-50%) translateY(-4px); }
}

.track-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 1rem;
}

.stat-chip {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
}

.stat-chip label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.stat-chip strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-top: 0.15rem;
}

.stat-cycle {
  position: relative;
  min-height: 2.6rem;
}

.stat-phase {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: statCycle 16s ease-in-out infinite;
}

.stat-phase-1 { animation-delay: 0s; }
.stat-phase-2 { animation-delay: 4s; }
.stat-phase-3 { animation-delay: 8s; }
.stat-phase-4 { animation-delay: 12s; }

@keyframes statCycle {
  0%, 3% { opacity: 0; transform: translateY(6px); }
  6%, 22% { opacity: 1; transform: translateY(0); }
  26%, 100% { opacity: 0; transform: translateY(-4px); }
}

.stat-chip .eta-num { color: var(--primary-dark); }

.pin-active-cycle .stop-pin { opacity: 0.55; }
.pin-active-cycle .stop-pin.active { opacity: 1; }

.stop-pin.active-1 { animation: pinHighlight 16s ease-in-out infinite; animation-delay: 0s; }
.stop-pin.active-2 { animation: pinHighlight 16s ease-in-out infinite; animation-delay: 4s; }
.stop-pin.active-3 { animation: pinHighlight 16s ease-in-out infinite; animation-delay: 8s; }
.stop-pin.active-4 { animation: pinHighlight 16s ease-in-out infinite; animation-delay: 12s; }

@keyframes pinHighlight {
  0%, 5% { opacity: 0.55; color: var(--muted); }
  8%, 24% { opacity: 1; color: var(--primary-dark); }
  28%, 100% { opacity: 0.55; color: var(--muted); }
}

/* Concept section */
.concept-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.concept-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  animation: conceptFadeUp 0.7s ease both;
  animation-delay: calc(var(--i) * 0.12s);
}

@keyframes conceptFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.concept-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }

.concept-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.concept-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

.concept-banner {
  background: linear-gradient(135deg, #6A0DAD 0%, #4A0072 100%);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(106, 13, 173, 0.28);
  position: relative;
}

.concept-banner-text { position: relative; width: 100%; min-height: 2.5rem; }

.banner-line {
  position: absolute;
  left: 0; right: 0;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  animation: bannerCycle 9s ease-in-out infinite;
  opacity: 0;
}

.banner-line-1 { animation-delay: 0s; }
.banner-line-2 { animation-delay: 3s; }
.banner-line-3 {
  animation-delay: 6s;
  color: #FFD966;
  font-weight: 800;
  font-size: clamp(1.1rem, 3vw, 1.45rem);
}

@keyframes bannerCycle {
  0%, 4% { opacity: 0; transform: translateY(10px); }
  7%, 30% { opacity: 1; transform: translateY(0); }
  34%, 100% { opacity: 0; transform: translateY(-8px); }
}

@media (max-width: 900px) {
  .concept-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .concept-grid { grid-template-columns: 1fr; }
}

/* ─── Sections ─── */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-head p { color: var(--muted); font-size: 1.05rem; }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-icon.green { background: #e8f5e9; }
.feature-icon.orange { background: #fff3e0; }
.feature-icon.purple { background: #f3e5f5; }
.feature-icon.blue { background: #e3f2fd; }

.feature h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.feature p { font-size: 0.95rem; color: var(--muted); line-height: 1.65; }

/* Pricing strip */
.pricing-strip {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1rem;
  box-shadow: var(--shadow-lg);
}

.pricing-strip h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.pricing-strip p { opacity: 0.85; font-size: 0.95rem; }

.price-tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.price-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  text-align: center;
  min-width: 120px;
}

.price-tag strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-light);
}

.price-tag span { font-size: 0.8rem; opacity: 0.8; }

.trust-band {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 1.5rem;
}

.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.trust-item span { font-size: 1.25rem; }

.card-highlight {
  border-color: rgba(245, 166, 35, 0.35);
  background: linear-gradient(135deg, #fff 0%, #fff9f0 100%);
}

/* ─── Legal / inner pages ─── */
.page-hero {
  background: var(--bg);
  padding: 3rem 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.page-hero .meta {
  color: var(--muted);
  font-size: 0.95rem;
}

main.legal-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.card h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--bg-warm);
}

.card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin: 1.25rem 0 0.5rem;
}

.card p, .card li {
  color: var(--muted);
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.card ul, .card ol { margin: 0.5rem 0 1rem 1.25rem; }

.contact-box {
  background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
}

.contact-box strong { color: var(--ink); }

.contact-box a { font-weight: 600; }

/* Support page cards */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.support-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.support-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.support-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px var(--primary-glow);
}

.support-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.support-card p { color: var(--muted); font-size: 0.95rem; }

.support-card a {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
}

/* ─── Footer ─── */
.site-footer {
  background: #212121;
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 1.5rem 2rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}


.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--primary-light); text-decoration: none; }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-bottom a { color: var(--primary-light); margin-left: 0.5rem; }

.made-in {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .btn-row { justify-content: center; }
  .hero-visual { order: -1; }
  .track-scene { max-width: 100%; }
  .features { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-tagline { margin: 0 auto; }
}

@media (max-width: 600px) {
  .nav a:not(.nav-cta) { display: none; }
  .nav-cta { font-size: 0.8rem; padding: 0.45rem 0.85rem !important; }
  .hero-wrap { padding: 2.5rem 1rem 3rem; }
  .section { padding: 2.5rem 1rem; }
  .card { padding: 1.5rem; }
  .pricing-strip { flex-direction: column; text-align: center; }
}
