/**
 * HIGHBIKES.ONLINE — Styles
 */
:root {
  --hb-bg: #0a0a0b;
  --hb-surface: #141416;
  --hb-gunmetal: #2a2d34;
  --hb-red: #e10600;
  --hb-blue: #00a3ff;
  --hb-text: #f5f5f7;
  --hb-muted: #9a9aa0;
  --hb-border: rgba(255, 255, 255, 0.08);
  --hb-radius: 14px;
  --hb-font: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --hb-display: "Shippori Mincho", "Noto Serif JP", serif;
  --hb-header: 72px;
  --hb-ease: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--hb-header) + 12px); }
body {
  margin: 0;
  font-family: var(--hb-font);
  background: var(--hb-bg);
  color: var(--hb-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--hb-ease); }
a:hover { color: var(--hb-blue); }
:focus-visible { outline: 2px solid var(--hb-blue); outline-offset: 3px; }

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--hb-red);
  color: #fff;
  padding: 0.6rem 1rem;
}

h1, h2, .display {
  font-family: var(--hb-display);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--hb-red);
  margin-bottom: 0.6rem;
  font-family: var(--hb-font);
}
.section { padding: 4.5rem 0; }
.section-sm { padding: 3.25rem 0; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 0.75rem; }
.section-lead { color: var(--hb-muted); max-width: 34rem; margin-bottom: 0; }
.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2rem;
}
.muted { color: var(--hb-muted); }
.surface { background: var(--hb-surface); }

/* Buttons */
.btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.65rem 1.35rem;
  transition: transform var(--hb-ease), background var(--hb-ease), border-color var(--hb-ease);
}
.btn-accent {
  background: var(--hb-red);
  border: none;
  color: #fff !important;
}
.btn-accent:hover {
  background: #c00500;
  color: #fff !important;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff !important;
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1030;
  transition: background var(--hb-ease), border-color var(--hb-ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--hb-border);
}
.navbar { min-height: var(--hb-header); }
.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff !important;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--hb-red), #ff4d00);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.8rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 0.92rem; letter-spacing: 0.06em; }
.brand-text small { font-size: 0.62rem; color: var(--hb-muted); letter-spacing: 0.1em; }
.nav-link {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem !important;
}
.nav-link:hover,
.nav-link.active { color: #fff !important; }
.nav-link.active { position: relative; }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.1rem;
  height: 2px;
  background: var(--hb-red);
  border-radius: 2px;
}
.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.25);
  filter: invert(1);
}
.navbar-toggler:focus,
.navbar-toggler:focus-visible {
  outline: 2px solid var(--hb-blue);
  outline-offset: 3px;
  box-shadow: 0 0 0 0.2rem rgba(0, 163, 255, 0.35);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(10, 10, 11, 0.98);
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius);
    margin-top: 0.5rem;
    padding: 0.75rem;
  }
  .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-link.active::after { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: calc(var(--hb-header) + 2.5rem) 0 4.5rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 10, 11, 0.94) 0%, rgba(10, 10, 11, 0.72) 48%, rgba(10, 10, 11, 0.45) 100%),
    linear-gradient(to top, rgba(10, 10, 11, 0.95), transparent 42%),
    var(--hero-img, none) center/cover no-repeat;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}
.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(225, 6, 0, 0.18), transparent 45%),
    radial-gradient(ellipse at 85% 30%, rgba(0, 163, 255, 0.12), transparent 40%);
  pointer-events: none;
  z-index: 0;
}
.hero__lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    repeating-linear-gradient(
      100deg,
      transparent 0,
      transparent 48px,
      rgba(255, 255, 255, 0.015) 48px,
      rgba(255, 255, 255, 0.015) 49px
    );
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
  animation: heroLines 8s linear infinite;
}
.hero__content { position: relative; z-index: 1; }
.hero-brand {
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  margin: 0 0 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.05;
}
.hero-brand__text {
  display: inline-block;
  background: linear-gradient(105deg, #fff 20%, #fff 45%, var(--hb-blue) 55%, #fff 70%, #fff 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: brandShimmer 4.5s ease-in-out infinite;
}
.hero-line {
  font-family: var(--hb-font);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.hero-line__text {
  display: inline-block;
  position: relative;
  padding-bottom: 0.2rem;
}
.hero-line__text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--hb-red), transparent);
  transform-origin: left;
  animation: lineDraw 1.1s 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-lead {
  color: var(--hb-muted);
  margin-bottom: 1.75rem;
  max-width: 32rem;
  font-size: 1.02rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 440px;
}
.hero-stat {
  background: rgba(20, 20, 24, 0.72);
  border: 1px solid var(--hb-border);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 0.9rem 0.65rem;
  text-align: center;
  transition: border-color var(--hb-ease), transform var(--hb-ease);
}
.hero-stat:hover {
  border-color: rgba(0, 163, 255, 0.35);
  transform: translateY(-2px);
}
.hero-stat strong {
  display: block;
  font-family: var(--hb-display);
  font-size: 1.4rem;
  line-height: 1.1;
  color: #fff;
}
.hero-stat span { font-size: 0.68rem; color: var(--hb-muted); }

.hero-visual {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  aspect-ratio: 4 / 3;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.2s ease;
}
.hero-visual:hover img { transform: scale(1.08); }
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(225, 6, 0, 0.2) 100%);
  pointer-events: none;
}
.hero-chip {
  position: absolute;
  z-index: 2;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  background: rgba(10, 10, 11, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  min-width: 112px;
  animation: chipFloat 3.6s ease-in-out infinite;
}
.hero-chip span {
  display: block;
  font-size: 0.65rem;
  color: var(--hb-muted);
  letter-spacing: 0.06em;
}
.hero-chip strong {
  display: block;
  font-size: 1rem;
  color: var(--hb-blue);
  font-family: var(--hb-display);
}
.hero-chip--top { top: 1rem; right: 1rem; }
.hero-chip--bottom {
  left: 1rem;
  bottom: 1rem;
  animation-delay: 0.8s;
}
.hero-chip--bottom strong { color: var(--hb-red); }

/* Hero entrance animation */
.hero-anim {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s ease;
}
.hero.is-ready .hero-anim {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.hero-anim[data-delay="1"] { transition-delay: 0.08s; }
.hero-anim[data-delay="2"] { transition-delay: 0.2s; }
.hero-anim[data-delay="3"] { transition-delay: 0.32s; }
.hero-anim[data-delay="4"] { transition-delay: 0.44s; }
.hero-anim[data-delay="5"] { transition-delay: 0.56s; }
.hero-anim[data-delay="6"] { transition-delay: 0.68s; }
.hero-anim[data-delay="7"] { transition-delay: 0.35s; }

@keyframes heroZoom {
  from { transform: scale(1.1); }
  to { transform: scale(1.02); }
}
@keyframes brandShimmer {
  0%, 100% { background-position: 100% center; }
  50% { background-position: 0% center; }
}
@keyframes lineDraw {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes heroLines {
  from { transform: translateX(0); }
  to { transform: translateX(-49px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg,
  .hero__lines,
  .hero-brand__text,
  .hero-chip,
  .hero-line__text::after { animation: none !important; }
  .hero-anim {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* FAQ cards */
.faq-card {
  height: 100%;
  padding: 1.15rem 1.2rem 1.25rem;
  background: var(--hb-surface);
  border: 1px solid var(--hb-border);
  border-radius: 12px;
  transition: border-color var(--hb-ease), transform var(--hb-ease);
}
.faq-card:hover {
  border-color: rgba(0, 163, 255, 0.35);
  transform: translateY(-3px);
}
.faq-card__num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--hb-red);
  margin-bottom: 0.55rem;
}
.faq-card__q {
  font-family: var(--hb-font);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0.55rem;
}
.faq-card__a {
  margin: 0;
  color: var(--hb-muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

/* Page hero with background image */
.page-hero {
  position: relative;
  padding: calc(var(--hb-header) + 3.25rem) 0 3.25rem;
  overflow: hidden;
  border-bottom: 1px solid var(--hb-border);
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    var(--page-hero-img, none) center/cover no-repeat;
  transform: scale(1.04);
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 8, 10, 0.92) 0%, rgba(8, 8, 10, 0.72) 45%, rgba(8, 8, 10, 0.55) 100%),
    linear-gradient(to top, rgba(8, 8, 10, 0.9), transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(225, 6, 0, 0.2), transparent 40%);
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  margin-bottom: 0.65rem;
  color: #fff;
}
.page-hero .lead {
  color: rgba(245, 245, 247, 0.78);
  max-width: 40rem;
  margin-bottom: 0;
}
.page-hero .breadcrumbs,
.page-hero .breadcrumb-list { color: rgba(255, 255, 255, 0.65); }
.page-hero .lead a { color: var(--hb-blue); text-decoration: underline; }
.page-hero .lead a:hover { color: #fff; }

.compare-table th .bike-cell {
  justify-content: center;
  flex-wrap: wrap;
}
.compare-table th .bike-cell img {
  width: 52px;
  height: 32px;
}

/* Bike Swiper */
.bike-swiper-wrap {
  position: relative;
  padding: 0.25rem 0 2.5rem;
  overflow-x: clip;
}
.bike-swiper {
  overflow: hidden;
  padding-bottom: 2.5rem;
}
.bike-swiper .swiper-slide {
  height: auto;
}
.swiper-bike-card {
  background: var(--hb-surface);
  border: 1px solid var(--hb-border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: transform var(--hb-ease), border-color var(--hb-ease), box-shadow var(--hb-ease);
}
.swiper-bike-card:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 6, 0, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.swiper-bike-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #121215;
}
.swiper-bike-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.swiper-bike-card:hover .swiper-bike-card__media img { transform: scale(1.06); }
.swiper-bike-card__brand {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(10, 10, 11, 0.8);
  border: 1px solid var(--hb-border);
  font-size: 0.72rem;
  font-weight: 700;
}
.swiper-bike-card__speed {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  background: rgba(0, 163, 255, 0.15);
  border: 1px solid rgba(0, 163, 255, 0.4);
  backdrop-filter: blur(8px);
  text-align: center;
  line-height: 1.1;
}
.swiper-bike-card__speed strong {
  display: block;
  font-family: var(--hb-display);
  font-size: 1.15rem;
  color: var(--hb-blue);
}
.swiper-bike-card__speed span { font-size: 0.65rem; color: var(--hb-muted); }
.swiper-bike-card__body { padding: 1.1rem 1.2rem 1.25rem; }
.swiper-bike-card__body h3 {
  font-family: var(--hb-font);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.swiper-bike-card__body p {
  color: var(--hb-muted);
  font-size: 0.86rem;
  margin-bottom: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.swiper-bike-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
}
.swiper-bike-card__meta span:last-child { color: var(--hb-red); }

.hb-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
}
.hb-swiper .swiper-pagination-bullet-active { background: var(--hb-red); }
.hb-swiper .swiper-button-prev,
.hb-swiper .swiper-button-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(10, 10, 11, 0.75);
  border: 1px solid var(--hb-border);
  color: #fff;
  backdrop-filter: blur(8px);
}
.hb-swiper .swiper-button-prev::after,
.hb-swiper .swiper-button-next::after { font-size: 0.85rem; font-weight: 700; }
.hb-swiper .swiper-button-prev:hover,
.hb-swiper .swiper-button-next:hover {
  background: var(--hb-red);
  border-color: var(--hb-red);
}

/* Rank table with thumbnails */
.compare-table .bike-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}
.compare-table .bike-cell img {
  width: 64px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid var(--hb-border);
}
.compare-table .bike-cell strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.35;
}

/* Media strip / visual blocks */
.media-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.media-strip__main,
.media-strip__side {
  position: relative;
  border-radius: var(--hb-radius);
  overflow: hidden;
  border: 1px solid var(--hb-border);
  min-height: 220px;
}
.media-strip__main img,
.media-strip__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}
.media-strip__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
  font-size: 0.9rem;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .media-strip { grid-template-columns: 1fr; }
  .hb-swiper .swiper-button-prev,
  .hb-swiper .swiper-button-next { display: none; }
  .compare-table .bike-cell img { width: 48px; height: 32px; }
}

/* Breadcrumbs */
.breadcrumbs { margin-bottom: 1rem; }
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  color: var(--hb-muted);
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.3rem;
  opacity: 0.5;
}

/* Cards */
.bike-card {
  background: var(--hb-surface);
  border: 1px solid var(--hb-border);
  border-radius: var(--hb-radius);
  overflow: hidden;
  height: 100%;
  transition: transform var(--hb-ease), border-color var(--hb-ease);
}
.bike-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 6, 0, 0.35);
}
.bike-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1e, #0f0f12);
}
.bike-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.bike-card:hover .bike-card__media img { transform: scale(1.05); }
.bike-card__brand {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  background: rgba(10, 10, 11, 0.8);
  border: 1px solid var(--hb-border);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
}
.bike-card__body { padding: 1.15rem 1.2rem 1.3rem; }
.bike-card__title {
  font-family: var(--hb-font);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.bike-card__desc {
  color: var(--hb-muted);
  font-size: 0.88rem;
  margin-bottom: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bike-card__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--hb-border);
  border-radius: 10px;
}
.bike-card__specs dt {
  font-size: 0.62rem;
  color: var(--hb-muted);
  margin: 0;
}
.bike-card__specs dd {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
}
.bike-card__price {
  margin: 0;
  color: var(--hb-red);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Tech / feature tiles */
.feature-card {
  background: var(--hb-surface);
  border: 1px solid var(--hb-border);
  border-radius: var(--hb-radius);
  padding: 1.35rem;
  height: 100%;
}
.feature-card i {
  font-size: 1.4rem;
  color: var(--hb-red);
  margin-bottom: 0.75rem;
  display: block;
}
.feature-card h3 {
  font-family: var(--hb-font);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.feature-card p {
  margin: 0;
  color: var(--hb-muted);
  font-size: 0.9rem;
}

/* Compare */
.compare-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 1.15rem;
  background: var(--hb-surface);
  border: 1px solid var(--hb-border);
  border-radius: var(--hb-radius);
  height: 100%;
  color: #fff;
  transition: border-color var(--hb-ease), transform var(--hb-ease);
}
.compare-card:hover {
  border-color: rgba(0, 163, 255, 0.35);
  transform: translateY(-3px);
  color: #fff;
}
.compare-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.55rem;
  background: #1a1a1e;
}
.compare-card h3 {
  font-family: var(--hb-font);
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0;
}
.compare-vs {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--hb-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--hb-border);
  border-radius: var(--hb-radius);
}
.compare-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  background: var(--hb-surface);
}
.compare-table th,
.compare-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--hb-border);
  text-align: center;
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  color: var(--hb-muted);
}
.compare-table thead th { background: rgba(255, 255, 255, 0.03); }
.compare-table .win { color: var(--hb-blue); font-weight: 700; }
.bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  margin-top: 0.3rem;
  overflow: hidden;
}
.bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--hb-red), var(--hb-blue));
}

/* FAQ */
.hb-faq .accordion-item {
  background: transparent;
  border: 1px solid var(--hb-border) !important;
  border-radius: 10px !important;
  margin-bottom: 0.65rem;
  overflow: hidden;
}
.hb-faq .accordion-button {
  background: var(--hb-surface);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: none !important;
}
.hb-faq .accordion-button:not(.collapsed) {
  background: rgba(225, 6, 0, 0.12);
  color: #fff;
}
.hb-faq .accordion-button::after { filter: invert(1); }
.hb-faq .accordion-body {
  background: rgba(255, 255, 255, 0.02);
  color: var(--hb-muted);
}

/* Contact */
.contact-card {
  background: var(--hb-surface);
  border: 1px solid var(--hb-border);
  border-radius: var(--hb-radius);
  padding: 1.5rem;
  height: 100%;
}
.contact-card dt {
  font-size: 0.72rem;
  color: var(--hb-muted);
  margin-top: 0.9rem;
}
.contact-card dd { margin: 0.2rem 0 0; }
.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hb-border);
  color: #fff;
  border-radius: 10px;
  padding: 0.75rem 0.95rem;
}
.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--hb-blue);
  box-shadow: 0 0 0 0.15rem rgba(0, 163, 255, 0.15);
  color: #fff;
}
.form-control::placeholder { color: #6b6b72; }
.form-label { font-size: 0.85rem; color: var(--hb-muted); }
.map-box {
  height: 220px;
  border-radius: var(--hb-radius);
  border: 1px solid var(--hb-border);
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.08), rgba(225, 6, 0, 0.08)), var(--hb-surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: var(--hb-muted);
  margin-top: 1rem;
}
.alert-hb {
  display: none;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--hb-border);
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 1rem;
}
.alert-hb.is-visible { display: block; }
.alert-hb.is-error {
  border-color: rgba(255, 100, 100, 0.4);
  background: rgba(255, 100, 100, 0.12);
}
.alert-hb.is-success {
  border-color: rgba(40, 200, 120, 0.4);
  background: rgba(40, 200, 120, 0.12);
}
.form-control.is-invalid,
.form-select.is-invalid,
.form-check-input.is-invalid {
  border-color: rgba(255, 100, 100, 0.65);
}
.invalid-feedback {
  display: none;
  color: #ff8f8f;
  font-size: 0.8rem;
  margin-top: 0.35rem;
}
.form-control.is-invalid ~ .invalid-feedback,
.form-select.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-feedback {
  display: block;
}

/* CTA strip */
.cta-strip {
  background: var(--hb-surface);
  border: 1px solid var(--hb-border);
  border-radius: var(--hb-radius);
  padding: 1.75rem 1.5rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--hb-border);
  background: #080809;
  margin-top: 2rem;
}
.footer-brand {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  color: #fff !important;
}
.footer-brand small {
  display: block;
  color: var(--hb-muted);
  font-size: 0.72rem;
  margin-top: 0.1rem;
}
.footer-about { color: var(--hb-muted); font-size: 0.9rem; max-width: 26rem; }
.footer-heading {
  font-family: var(--hb-font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
}
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links a,
.footer-contact li {
  display: block;
  color: var(--hb-muted);
  font-size: 0.88rem;
  padding: 0.28rem 0;
}
.footer-links a:hover { color: var(--hb-blue); }
.footer-bottom {
  border-top: 1px solid var(--hb-border);
  padding: 1rem 0 1.4rem;
  color: var(--hb-muted);
  font-size: 0.82rem;
}

.back-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--hb-border);
  background: rgba(20, 20, 24, 0.9);
  color: #fff;
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: var(--hb-ease);
}
.back-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.back-top:hover { background: var(--hb-red); border-color: var(--hb-red); }

@media (max-width: 767.98px) {
  .section { padding: 3.25rem 0; }
  .hero { min-height: auto; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; }
  .compare-card { grid-template-columns: 1fr; text-align: center; }
  .compare-vs { margin: 0 auto; }
  .bike-card__specs { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
