/* ============================================================
   FaeBikes — Modern Design System
   Clean, minimal, brand-aligned. Reuses existing image assets.
   ============================================================ */

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

:root {
  --red: #D13A36;
  --red-dark: #B51816;
  --red-soft: #FBE7E6;
  --yellow: #FFD24D;
  --yellow-soft: #FFF3D1;
  --ink: #17110F;
  --body: #4A403D;
  --muted: #877A76;
  --line: #ECE4E2;
  --bg: #FFFFFF;
  --bg-alt: #FBF7F6;
  --bg-cream: #FFF8F7;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(23, 17, 15, 0.04);
  --shadow-sm: 0 6px 18px rgba(23, 17, 15, 0.05);
  --shadow-md: 0 16px 40px rgba(23, 17, 15, 0.07);
  --shadow-lg: 0 30px 64px rgba(23, 17, 15, 0.10);
  --shadow-red: 0 8px 20px rgba(209, 58, 54, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1120px;
  --nav-h: 76px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--body);
  background-color: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
.d-none { display: none !important; }

::selection { background: var(--red); color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: "Sora", "Poppins", sans-serif;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  margin: 14px 0 16px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: clamp(64px, 9vw, 112px) 0; }
.section.tight { padding: clamp(48px, 6vw, 72px) 0; }
.bg-alt { background: var(--bg-alt); }
.bg-cream { background: var(--bg-cream); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(209, 58, 54, 0.36);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 18px; font-size: 0.875rem; }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 30px; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  position: relative;
  padding: 9px 14px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--body);
  border-radius: 10px;
  transition: color 0.2s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--red); }
.nav-cta { margin-left: 10px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), top 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
body.menu-open .nav-toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(40px, 7vw, 90px));
  padding-bottom: clamp(60px, 8vw, 110px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -220px; right: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(circle at 50% 50%, var(--yellow-soft) 0%, transparent 68%);
  opacity: 0.7;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 48px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  margin: 20px 0;
}
.hero h1 .accent { color: var(--red); }
.hero-sub {
  font-size: 1.12rem;
  color: var(--body);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stats .num {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--ink);
  line-height: 1;
}
.hero-stats .lbl { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-visual .blob {
  position: absolute;
  inset: 8% 8%;
  background: var(--bg-cream);
  border-radius: 50%;
  z-index: 0;
}
.hero-visual img {
  position: relative;
  z-index: 1;
  width: 88%;
  filter: drop-shadow(0 24px 36px rgba(23, 17, 15, 0.14));
}

/* ---------- Marquee logos ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); }
.trust .container { padding-top: 28px; padding-bottom: 28px; }
.trust-label { text-align: center; color: var(--muted); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 22px; }
.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 44px;
}
.logo-row img {
  height: 30px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.logo-row img:hover { filter: grayscale(0); opacity: 1; transform: translateY(-3px); }

/* ---------- Stats band ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-card .big {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  color: var(--red);
  line-height: 1;
}
.stat-card .cap { color: var(--muted); margin-top: 10px; font-weight: 500; }

/* ---------- Fleet ---------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.bike-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.bike-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #E0D6D3;
}
.bike-media {
  position: relative;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  margin-bottom: 22px;
}
.bike-media img { max-height: 180px; width: auto; transition: transform 0.45s var(--ease); }
.bike-card:hover .bike-media img { transform: scale(1.05); }
.badge-swap {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.bike-card h3 { font-size: 1.4rem; margin-bottom: 18px; }
.spec-row {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.spec {
  flex: 1;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
}
.spec .v { font-weight: 700; color: var(--ink); font-size: 0.95rem; font-family: "Sora", sans-serif; }
.spec .k { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }
.bike-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow-soft);
  color: #6b5400;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
  align-self: flex-start;
}
.bike-meta svg { width: 16px; height: 16px; }
.bike-card .price-line { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.bike-card .price { font-family: "Sora", sans-serif; font-weight: 700; color: var(--ink); }
.bike-card .price small { display: block; font-family: "Poppins"; font-weight: 400; font-size: 0.72rem; color: var(--muted); }

/* ---------- Split feature sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split.reverse .split-media { order: -1; }
.split h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 18px; }
.split .lead { color: var(--muted); font-size: 1.05rem; margin-bottom: 28px; }
.split-media img { width: 100%; }

.feature-list { display: grid; gap: 14px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  transition: transform 0.3s var(--ease);
}
.feature-item:last-child { border-bottom: none; }
.feature-item:hover { transform: translateX(4px); }
.feature-icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--red);
  display: grid;
  place-items: center;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-item span { font-weight: 500; color: var(--ink); }

/* ---------- Locations ---------- */
.loc-card {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--red-soft) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
}

/* ---------- Testimonials ---------- */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tcard .quote { color: var(--red); font-family: "Sora"; font-size: 2.6rem; line-height: 1; margin-bottom: 8px; }
.tcard p { color: var(--body); margin-bottom: 24px; flex: 1; }
.tcard .who { display: flex; align-items: center; gap: 14px; }
.tcard .who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.tcard .who .name { font-weight: 600; color: var(--ink); font-family: "Sora"; font-size: 0.95rem; }
.tcard .who .role { font-size: 0.82rem; color: var(--muted); }

/* ---------- App download ---------- */
.app-band {
  background: linear-gradient(135deg, var(--yellow-soft) 0%, #FFE9A8 100%);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 72px);
  overflow: hidden;
}
.app-band .split { align-items: center; }
.app-band h2 { color: #4a3b00; }
.app-band .lead { color: #7a6420; }
.app-band .app-badge { transition: transform 0.3s var(--ease); }
.app-band .app-badge:hover { transform: translateY(-4px) scale(1.03); }
.app-band .split-media img { max-width: 300px; margin: 0 auto; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: var(--bg);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--red-soft); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 24px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-q .chev {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  display: grid; place-items: center;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.faq-item.open .faq-q .chev { transform: rotate(180deg); background: var(--red); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a-inner { padding: 0 24px 24px; color: var(--body); }

/* ---------- Footer ---------- */
.footer { background: #17110F; color: #C9BEBB; padding: 72px 0 0; }
.footer h5 { color: #fff; font-size: 0.95rem; margin-bottom: 18px; letter-spacing: 0.02em; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-logo { height: 30px; width: auto; display: block; margin-bottom: 18px; }
.footer p { font-size: 0.92rem; color: #A89F9C; margin-bottom: 18px; }
.footer-links a { display: block; padding: 6px 0; font-size: 0.93rem; color: #C9BEBB; transition: color 0.2s var(--ease); }
.footer-links a:hover { color: #fff; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.footer-socials a svg { width: 18px; height: 18px; fill: #fff; }
.footer-socials a:hover { background: var(--red); transform: translateY(-4px); }
.footer-app img { height: 46px; }
.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer-bottom p { margin: 0; font-size: 0.85rem; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Mobile ---------- */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto 12px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .tcards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 24px 28px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  body.menu-open .nav-menu { transform: none; opacity: 1; pointer-events: auto; }
  .nav-link { padding: 12px 8px; font-size: 1rem; }
  .nav-link::after { display: none; }
  .nav-cta { margin: 8px 0 0; }
  .nav-toggle { display: block; }
  .stats-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .btn { padding: 13px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   INNER PAGE COMPONENTS
   ============================================================ */

/* ---------- Page header ---------- */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(40px, 6vw, 72px));
  padding-bottom: clamp(28px, 4vw, 48px);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -240px; right: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--yellow-soft) 0%, transparent 68%);
  opacity: 0.7;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); margin-bottom: 16px; max-width: 18ch; }
.page-hero .lead { color: var(--muted); font-size: 1.1rem; max-width: 60ch; }
.page-hero.center { text-align: center; }
.page-hero.center h1, .page-hero.center .lead { margin-left: auto; margin-right: auto; }

.crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 0.85rem; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--muted); transition: color 0.2s var(--ease); }
.crumbs a:hover { color: var(--red); }
.crumbs .sep { opacity: 0.5; }
.crumbs .here { color: var(--ink); font-weight: 500; }

/* ---------- Prose / legal ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.prose h3, .prose h5 { font-size: 1.1rem; margin: 26px 0 10px; color: var(--ink); }
.prose p { color: var(--body); margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 8px; color: var(--body); }
.prose a { color: var(--red); font-weight: 500; }

/* ---------- Detail (bike) ---------- */
.detail-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.detail-media {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.detail-media img { max-height: 360px; width: auto; }
.detail-title { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 8px; }
.detail-title h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.detail-sub { color: var(--muted); font-weight: 500; margin-bottom: 18px; }
.assist-box {
  background: var(--yellow-soft);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin: 28px 0;
}
.assist-box .assist-head { display: flex; align-items: center; gap: 10px; font-family: "Sora"; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.assist-box ul { margin: 12px 0 0 20px; }
.assist-box li { margin-bottom: 6px; }
.spec-table { width: 100%; border-collapse: collapse; margin-top: 14px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spec-table td { padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table td:first-child { color: var(--muted); width: 42%; }
.spec-table td:last-child { color: var(--ink); font-weight: 500; }

.price-aside { position: sticky; top: calc(var(--nav-h) + 16px); }
.price-aside h3 { font-size: 1.2rem; margin-bottom: 16px; }
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 16px;
  background: var(--bg);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.price-card:hover { border-color: var(--red-soft); box-shadow: var(--shadow-sm); }
.price-card .plan { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); font-family: "Sora"; }
.price-card .note { font-size: 0.82rem; color: var(--muted); margin: 8px 0 14px; }
.price-card .amount { font-family: "Sora"; font-weight: 700; font-size: 1.3rem; color: var(--red); }

/* ---------- Fleet list (horizontal cards) ---------- */
.fleet-rows { display: grid; gap: 24px; }
.fleet-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.fleet-row:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #E0D6D3; }
.fleet-row .fr-media { background: var(--bg-alt); border-radius: var(--radius); padding: 20px; display: grid; place-items: center; min-height: 180px; }
.fleet-row .fr-media img { max-height: 160px; width: auto; }
.fleet-row h3 { font-size: 1.4rem; }
.fleet-row .price-line { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 6px; }
.fleet-row .price { font-family: "Sora", sans-serif; font-weight: 700; color: var(--ink); font-size: 1.2rem; }
.fleet-row .price small { display: block; font-family: "Poppins"; font-weight: 400; font-size: 0.72rem; color: var(--muted); }
.fleet-row .spec-row { margin-top: 8px; }
.fleet-row .bike-meta { margin-top: 4px; }

/* ---------- Contact ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 760px; }
.contact-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.contact-card .c-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--yellow-soft); color: var(--red); display: grid; place-items: center; margin: 0 auto 14px; }
.contact-card .c-icon svg { width: 26px; height: 26px; }
.contact-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.contact-card a.phone { color: var(--red); font-weight: 600; }
.c-socials { display: flex; gap: 10px; justify-content: center; margin-top: 6px; }
.c-socials a { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-alt); display: grid; place-items: center; color: var(--ink); transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease); }
.c-socials a:hover { background: var(--red); color: #fff; transform: translateY(-3px); }
.c-socials a svg { width: 18px; height: 18px; }

.place-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.place-card { display: flex; gap: 16px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; transition: box-shadow 0.3s var(--ease); }
.place-card:hover { box-shadow: var(--shadow-sm); }
.place-card img { width: 96px; height: 96px; object-fit: cover; border-radius: var(--radius-sm); flex: none; }
.place-card .ovl { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); font-weight: 600; }
.place-card h4 { font-size: 1.05rem; margin: 2px 0 6px; }
.place-card p { font-size: 0.85rem; color: var(--muted); margin-bottom: 10px; }
.place-card .dir { font-size: 0.82rem; font-weight: 600; color: var(--red); }

.form-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 40px); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 500; color: var(--ink); }
.field input, .field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #fff; }
.spinner { width: 36px; height: 36px; border: 3px solid var(--red-soft); border-top-color: var(--red); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 16px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- About gallery ---------- */
.about-gallery { display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px; }
.about-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.about-gallery .stack { display: grid; gap: 20px; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 0; }
.step { display: flex; gap: 20px; padding-bottom: 28px; position: relative; }
.step:not(:last-child)::before { content: ""; position: absolute; left: 19px; top: 44px; bottom: 0; width: 2px; background: var(--line); }
.step .num { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; font-family: "Sora"; font-weight: 700; }
.step h4 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Service cards (business) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.svc-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc-card .svc-icon { width: 50px; height: 50px; border-radius: 14px; background: var(--red-soft); color: var(--red); display: grid; place-items: center; margin-bottom: 16px; }
.svc-card .svc-icon svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: 0.93rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); border-radius: var(--radius-lg); padding: clamp(40px, 5vw, 72px); text-align: center; color: #fff; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.9); margin-bottom: 26px; max-width: 52ch; margin-left: auto; margin-right: auto; }
.cta-band .btn-light { background: #fff; color: var(--red); }
.cta-band .btn-light:hover { background: var(--bg-cream); transform: translateY(-2px); }

@media (max-width: 992px) {
  .detail-grid { grid-template-columns: 1fr; }
  .price-aside { position: static; }
  .about-gallery { grid-template-columns: 1fr; }
  .fleet-row { grid-template-columns: 1fr; text-align: left; }
  .fleet-row .fr-media { max-width: 320px; }
}
@media (max-width: 768px) {
  .contact-cards, .place-grid, .svc-grid, .form-grid { grid-template-columns: 1fr; }
}
