/* =========================
   HERO + BRAND THEME VARIABLES
========================= */
.hero {
  --hero-brand-main: #9fb8b6;
  --hero-brand-second: #203333;
  --hero-brand-soft: rgba(159, 184, 182, 0.18);
  --hero-brand-glow: rgba(159, 184, 182, 0.18);

  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(56px, 7vw, 140px);
  padding: 90px 60px;
  background:
    radial-gradient(circle at 72% 32%, var(--hero-brand-soft), transparent 22%),
    radial-gradient(circle at 82% 46%, var(--hero-brand-glow), transparent 34%),
    radial-gradient(circle at 18% 76%, rgba(159, 184, 182, 0.14), transparent 34%),
    linear-gradient(135deg, #f5f7f6 0%, #e8f0ef 100%);
}

.hero.hero-brand-exotic {
  --hero-brand-main: #d71920;
  --hero-brand-second: #111111;
  --hero-brand-soft: rgba(215, 25, 32, 0.16);
  --hero-brand-glow: rgba(215, 25, 32, 0.22);
}

.hero.hero-brand-pacific {
  --hero-brand-main: #ed1c24;
  --hero-brand-second: #111111;
  --hero-brand-soft: rgba(237, 28, 36, 0.16);
  --hero-brand-glow: rgba(237, 28, 36, 0.22);
}

.hero.hero-brand-larizz {
  --hero-brand-main: #27245f;
  --hero-brand-second: #e31b23;
  --hero-brand-soft: rgba(39, 36, 95, 0.18);
  --hero-brand-glow: rgba(39, 36, 95, 0.24);
}

.hero.hero-brand-saige {
  --hero-brand-main: #66bd45;
  --hero-brand-second: #2f6f2e;
  --hero-brand-soft: rgba(102, 189, 69, 0.16);
  --hero-brand-glow: rgba(102, 189, 69, 0.22);
}

.hero.hero-brand-uwinfly {
  --hero-brand-main: #ed1c24;
  --hero-brand-second: #b91319;
  --hero-brand-soft: rgba(237, 28, 36, 0.16);
  --hero-brand-glow: rgba(237, 28, 36, 0.22);
}

.hero.hero-brand-nuv {
  --hero-brand-main: #27bfc3;
  --hero-brand-second: #0f777b;
  --hero-brand-soft: rgba(39, 191, 195, 0.16);
  --hero-brand-glow: rgba(39, 191, 195, 0.22);
}

body.dark-theme .hero {
  --hero-brand-soft: rgba(159, 184, 182, 0.12);
  --hero-brand-glow: rgba(159, 184, 182, 0.18);

  background:
    radial-gradient(circle at 72% 32%, var(--hero-brand-soft), transparent 22%),
    radial-gradient(circle at 82% 46%, var(--hero-brand-glow), transparent 34%),
    radial-gradient(circle at 18% 76%, rgba(159, 184, 182, 0.12), transparent 34%),
    linear-gradient(135deg, #101818 0%, #203030 100%);
}

body.dark-theme .hero.hero-brand-exotic {
  --hero-brand-soft: rgba(215, 25, 32, 0.18);
  --hero-brand-glow: rgba(215, 25, 32, 0.28);
}

body.dark-theme .hero.hero-brand-pacific {
  --hero-brand-soft: rgba(237, 28, 36, 0.18);
  --hero-brand-glow: rgba(237, 28, 36, 0.28);
}

body.dark-theme .hero.hero-brand-larizz {
  --hero-brand-soft: rgba(39, 36, 95, 0.24);
  --hero-brand-glow: rgba(39, 36, 95, 0.34);
}

body.dark-theme .hero.hero-brand-saige {
  --hero-brand-soft: rgba(102, 189, 69, 0.2);
  --hero-brand-glow: rgba(102, 189, 69, 0.3);
}

body.dark-theme .hero.hero-brand-uwinfly {
  --hero-brand-soft: rgba(237, 28, 36, 0.18);
  --hero-brand-glow: rgba(237, 28, 36, 0.28);
}

body.dark-theme .hero.hero-brand-nuv {
  --hero-brand-soft: rgba(39, 191, 195, 0.2);
  --hero-brand-glow: rgba(39, 191, 195, 0.3);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 51, 51, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(32, 51, 51, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.2;
  pointer-events: none;
}

body.dark-theme .hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  opacity: 0.16;
}

.hero-text,
.hero-featured-wrap {
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 0 1 720px;
  max-width: 720px;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--hero-brand-main);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hero-text h1 {
  position: relative;
  color: #203333;
  font-size: 3.25rem;
  line-height: 1.12;
  margin-bottom: 24px;
}

.hero-text h1::after {
  content: "";
  display: block;
  width: 96px;
  height: 4px;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hero-brand-main), var(--hero-brand-second));
}

.hero-text p {
  max-width: 620px;
  color: #526363;
  font-size: 1.08rem;
  margin-bottom: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(32, 51, 51, 0.14);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.64);
  color: #203333;
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero .btn-primary {
  background: linear-gradient(135deg, var(--hero-brand-main), var(--hero-brand-second));
  color: #ffffff;
}

.hero .btn-secondary {
  border-color: var(--hero-brand-main);
  background-color: rgba(255, 255, 255, 0.45);
  color: #203333;
}

.hero .btn-secondary:hover {
  background-color: var(--hero-brand-soft);
}

body.dark-theme .hero-tag,
body.dark-theme .hero-display-label,
body.dark-theme .hero-bike-label {
  color: #9fb8b6;
}

body.dark-theme .hero-text h1 {
  color: #ffffff;
}

body.dark-theme .hero-text p {
  color: #dce5e3;
}

body.dark-theme .hero-points span {
  border-color: rgba(255, 255, 255, 0.18);
  background-color: var(--hero-brand-soft);
  color: #dce5e3;
}

body.dark-theme .hero .btn-primary {
  background: linear-gradient(135deg, #ffffff, #e8f0ef);
  color: #203333;
}

body.dark-theme .hero .btn-secondary {
  border-color: var(--hero-brand-main);
  background-color: transparent;
  color: #ffffff;
}

body.dark-theme .hero .btn-secondary:hover {
  background-color: var(--hero-brand-soft);
}

/* =========================
   HERO FEATURED DISPLAY
========================= */
.hero-featured-wrap {
  flex: 0 1 600px;
  max-width: 600px;
}

.hero-display-label {
  color: var(--hero-brand-main);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.hero-featured {
  display: flex;
  justify-content: center;
}

.hero-bike-card {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--hero-brand-main);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, var(--hero-brand-soft), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f4f7f6 100%);
  box-shadow:
    0 28px 80px rgba(32, 51, 51, 0.14),
    0 0 42px var(--hero-brand-glow);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-bike-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 34px 90px rgba(32, 51, 51, 0.2),
    0 0 50px var(--hero-brand-glow);
}

.hero-bike-card::before {
  content: "";
  display: block;
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, var(--hero-brand-main), var(--hero-brand-second));
}

.hero-bike-card::after {
  content: "Klik untuk lihat detail";
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hero-brand-main), var(--hero-brand-second));
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-bike-card img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  background-color: #ffffff;
  padding: 14px;
}

.hero-bike-info {
  padding: 24px;
  background:
    radial-gradient(circle at top right, var(--hero-brand-soft), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,0.86), rgba(255,255,255,0.7));
}

.hero-bike-label {
  color: var(--hero-brand-main);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}

.hero-bike-brand {
  color: var(--hero-brand-main);
  font-weight: 900;
  margin-bottom: 6px;
}

.hero-bike-info h3 {
  color: #203333;
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.hero-bike-info p {
  color: #526363;
  margin-bottom: 18px;
}

.hero-bike-card .bike-whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

body.dark-theme .hero-bike-card {
  background:
    radial-gradient(circle at top right, var(--hero-brand-soft), transparent 34%),
    linear-gradient(135deg, #101818 0%, #172323 100%);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    0 0 42px var(--hero-brand-glow);
}

body.dark-theme .hero-bike-info {
  background:
    radial-gradient(circle at top right, var(--hero-brand-soft), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
}

body.dark-theme .hero-bike-info h3 {
  color: #ffffff;
}

body.dark-theme .hero-bike-info p {
  color: #dce5e3;
}

/* =========================
   BRAND THEME VARIABLES
========================= */
.brand-card-exotic {
  --brand-main: #d71920;
  --brand-second: #111111;
  --brand-soft: rgba(215, 25, 32, 0.2);
  --brand-glow: rgba(215, 25, 32, 0.2);
}

.brand-card-pacific {
  --brand-main: #ed1c24;
  --brand-second: #111111;
  --brand-soft: rgba(237, 28, 36, 0.2);
  --brand-glow: rgba(237, 28, 36, 0.2);
}

.brand-card-larizz {
  --brand-main: #27245f;
  --brand-second: #e31b23;
  --brand-soft: rgba(39, 36, 95, 0.22);
  --brand-glow: rgba(39, 36, 95, 0.2);
}

.brand-card-saige {
  --brand-main: #66bd45;
  --brand-second: #2f6f2e;
  --brand-soft: rgba(102, 189, 69, 0.2);
  --brand-glow: rgba(102, 189, 69, 0.2);
}

.brand-card-uwinfly {
  --brand-main: #ed1c24;
  --brand-second: #b91319;
  --brand-soft: rgba(237, 28, 36, 0.2);
  --brand-glow: rgba(237, 28, 36, 0.2);
}

.brand-card-nuv {
  --brand-main: #27bfc3;
  --brand-second: #0f777b;
  --brand-soft: rgba(39, 191, 195, 0.22);
  --brand-glow: rgba(39, 191, 195, 0.2);
}

body.dark-theme .brand-card-exotic {
  --brand-soft: rgba(215, 25, 32, 0.32);
  --brand-glow: rgba(215, 25, 32, 0.28);
}

body.dark-theme .brand-card-pacific {
  --brand-soft: rgba(237, 28, 36, 0.32);
  --brand-glow: rgba(237, 28, 36, 0.28);
}

body.dark-theme .brand-card-larizz {
  --brand-soft: rgba(39, 36, 95, 0.42);
  --brand-glow: rgba(39, 36, 95, 0.34);
}

body.dark-theme .brand-card-saige {
  --brand-soft: rgba(102, 189, 69, 0.32);
  --brand-glow: rgba(102, 189, 69, 0.28);
}

body.dark-theme .brand-card-uwinfly {
  --brand-soft: rgba(237, 28, 36, 0.32);
  --brand-glow: rgba(237, 28, 36, 0.28);
}

body.dark-theme .brand-card-nuv {
  --brand-soft: rgba(39, 191, 195, 0.34);
  --brand-glow: rgba(39, 191, 195, 0.28);
}

/* =========================
   BRAND MARQUEE
========================= */
.brand-marquee {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(32, 51, 51, 0.1);
  border-bottom: 1px solid rgba(32, 51, 51, 0.1);
  background: linear-gradient(135deg, #f5f7f6 0%, #e8f0ef 100%);
}

.brand-marquee-track {
  display: flex;
  width: max-content;
  animation: brandMarquee 24s linear infinite;
}

.brand-marquee-group {
  display: flex;
  flex-shrink: 0;
  gap: 18px;
  padding-right: 18px;
}

.brand-marquee-item {
  --brand-main: #9fb8b6;
  --brand-second: #203333;
  --brand-soft: rgba(159, 184, 182, 0.16);

  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  padding: 11px 20px;
  border: 1px solid var(--brand-main);
  border-radius: 999px;
  background:
    radial-gradient(circle at top right, var(--brand-soft), transparent 40%),
    linear-gradient(135deg, #ffffff, #f4f7f6);
  color: #203333;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(32, 51, 51, 0.08);
}

.brand-marquee-item img {
  width: auto;
  height: 34px;
  max-width: 110px;
  object-fit: contain;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 5px 8px;
}

body.dark-theme .brand-marquee {
  background: linear-gradient(135deg, #0f1919 0%, #132020 100%);
  border-top-color: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.dark-theme .brand-marquee-item {
  background:
    radial-gradient(circle at top right, var(--brand-soft), transparent 40%),
    linear-gradient(135deg, #111818, #172323);
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

@keyframes brandMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-25%);
  }
}

/* =========================
   BRAND STRIP
========================= */
.brand-strip {
  padding: 90px 60px;
  background:
    radial-gradient(circle at top right, rgba(159, 184, 182, 0.14), transparent 30%),
    linear-gradient(135deg, #f5f7f6 0%, #e8f0ef 100%);
}

.brand-strip .section-heading h2 {
  color: #203333;
}

.brand-strip .section-heading p:last-child {
  color: #526363;
  margin-top: 14px;
  font-size: 1rem;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.brand-logo-card {
  --brand-main: #9fb8b6;
  --brand-second: #203333;
  --brand-soft: rgba(159, 184, 182, 0.16);
  --brand-glow: rgba(159, 184, 182, 0.18);

  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid rgba(32, 51, 51, 0.12);
  border-top: 5px solid var(--brand-main);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, var(--brand-soft), transparent 38%),
    linear-gradient(135deg, #ffffff 0%, #f4f7f6 100%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.brand-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, var(--brand-soft) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.brand-logo-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-main);
  border-top-color: var(--brand-main);
  box-shadow:
    0 22px 48px var(--brand-glow),
    0 0 0 1px var(--brand-main);
}

.brand-logo-card:hover::before {
  opacity: 1;
}

.brand-logo-card img,
.brand-logo-card span {
  position: relative;
  z-index: 1;
}

.brand-logo-card img {
  width: auto;
  height: 58px;
  max-width: 150px;
  object-fit: contain;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 8px 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.brand-logo-card span {
  color: #203333;
  font-size: 1.08rem;
  font-weight: 900;
}

body.dark-theme .brand-strip {
  background:
    radial-gradient(circle at top right, rgba(159, 184, 182, 0.12), transparent 30%),
    linear-gradient(135deg, #101818 0%, #132020 100%);
}

body.dark-theme .brand-strip .section-heading h2 {
  color: #ffffff;
}

body.dark-theme .brand-strip .section-heading p:last-child {
  color: #cbd8d6;
}

body.dark-theme .brand-logo-card {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, var(--brand-soft), transparent 38%),
    linear-gradient(135deg, #111818 0%, #172323 100%);
}

body.dark-theme .brand-logo-card span {
  color: #ffffff;
}

/* =========================
   AI BIKE FINDER
========================= */
.ai-finder {
  padding: 90px 60px;
  background:
    radial-gradient(circle at top left, rgba(37, 211, 102, 0.08), transparent 32%),
    linear-gradient(135deg, #f5f7f6 0%, #e8f0ef 100%);
}

.ai-finder .section-heading h2 {
  color: #203333;
}

.ai-finder .section-heading p {
  color: #526363;
}

.ai-finder-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: start;
  border: 1px solid rgba(32, 51, 51, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(159, 184, 182, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.85);
  box-shadow: 0 24px 60px rgba(32, 51, 51, 0.1);
}

.ai-finder-form {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(32, 51, 51, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(159, 184, 182, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.72);
}

.ai-form-intro h3 {
  color: #203333;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.ai-form-intro p {
  color: #526363;
  font-size: 0.95rem;
  line-height: 1.55;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  color: #203333;
  font-weight: 800;
}

.form-group select,
.form-group input {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid rgba(32, 51, 51, 0.14);
  border-radius: 10px;
  background-color: #ffffff;
  color: #203333;
  font: inherit;
  outline: none;
}

.form-group select:focus,
.form-group input:focus {
  border-color: #203333;
}

.ai-finder-form .btn-primary {
  min-height: 50px;
}

.ai-finder-result {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(32, 51, 51, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(159, 184, 182, 0.1), transparent 30%),
    #ffffff;
}

.ai-finder-result h3 {
  color: #203333;
  margin-bottom: 10px;
}

.ai-finder-result p {
  color: #526363;
}

.ai-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.ai-result-actions .btn-primary,
.ai-result-actions .btn-secondary {
  margin: 0;
}

body.dark-theme .ai-finder {
  background:
    radial-gradient(circle at top left, rgba(37, 211, 102, 0.08), transparent 32%),
    linear-gradient(135deg, #101818 0%, #172323 100%);
}

body.dark-theme .ai-finder .section-heading h2 {
  color: #ffffff;
}

body.dark-theme .ai-finder .section-heading p {
  color: #cbd8d6;
}

body.dark-theme .ai-finder-card {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(159, 184, 182, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

body.dark-theme .ai-finder-form {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(159, 184, 182, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.035);
}

body.dark-theme .ai-form-intro h3,
body.dark-theme .form-group label {
  color: #ffffff;
}

body.dark-theme .ai-form-intro p {
  color: #cbd8d6;
}

body.dark-theme .form-group select,
body.dark-theme .form-group input {
  background-color: #0f1919;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.14);
}

body.dark-theme .ai-finder-result {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(159, 184, 182, 0.08), transparent 30%),
    #0f1919;
}

body.dark-theme .ai-finder-result h3 {
  color: #ffffff;
}

body.dark-theme .ai-finder-result p {
  color: #cbd8d6;
}

/* =========================
   AI RECOMMENDATION CARD
========================= */
.ai-recommend-card {
  --brand-main: #203333;
  --brand-second: #2f4f4f;
  --brand-soft: rgba(159, 184, 182, 0.18);
  --brand-glow: rgba(32, 51, 51, 0.12);

  max-width: 620px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--brand-main);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, var(--brand-soft), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f4f7f6 100%);
  box-shadow: 0 18px 42px var(--brand-glow);
}

.ai-recommend-card.brand-card-exotic {
  --brand-main: #d71920;
  --brand-second: #111111;
  --brand-soft: rgba(215, 25, 32, 0.18);
  --brand-glow: rgba(215, 25, 32, 0.16);
}

.ai-recommend-card.brand-card-pacific {
  --brand-main: #ed1c24;
  --brand-second: #111111;
  --brand-soft: rgba(237, 28, 36, 0.18);
  --brand-glow: rgba(237, 28, 36, 0.16);
}

.ai-recommend-card.brand-card-larizz {
  --brand-main: #27245f;
  --brand-second: #e31b23;
  --brand-soft: rgba(39, 36, 95, 0.2);
  --brand-glow: rgba(39, 36, 95, 0.16);
}

.ai-recommend-card.brand-card-saige {
  --brand-main: #66bd45;
  --brand-second: #2f6f2e;
  --brand-soft: rgba(102, 189, 69, 0.18);
  --brand-glow: rgba(102, 189, 69, 0.16);
}

.ai-recommend-card.brand-card-uwinfly {
  --brand-main: #ed1c24;
  --brand-second: #b91319;
  --brand-soft: rgba(237, 28, 36, 0.18);
  --brand-glow: rgba(237, 28, 36, 0.16);
}

.ai-recommend-card.brand-card-nuv {
  --brand-main: #27bfc3;
  --brand-second: #0f777b;
  --brand-soft: rgba(39, 191, 195, 0.2);
  --brand-glow: rgba(39, 191, 195, 0.16);
}

.ai-recommend-card::before {
  content: "";
  display: block;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-main), var(--brand-second));
}

.ai-recommend-image {
  background-color: #ffffff;
}

.ai-recommend-image img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  padding: 14px;
}

.ai-recommend-info {
  padding: 20px;
  background:
    radial-gradient(circle at top right, var(--brand-soft), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,0.86), rgba(255,255,255,0.7));
}

.ai-recommend-info .hero-bike-label,
.ai-recommend-info .hero-bike-brand {
  color: var(--brand-main);
}

.ai-recommend-info h3 {
  color: #203333;
  font-size: 1.45rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.ai-recommend-reason {
  max-width: 520px;
  color: #526363;
  line-height: 1.55;
  margin-bottom: 14px;
}

.ai-recommend-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.ai-recommend-specs span {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(32, 51, 51, 0.12);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.72);
  color: #203333;
  font-size: 0.82rem;
  font-weight: 800;
}

body.dark-theme .ai-recommend-card {
  background:
    radial-gradient(circle at top right, var(--brand-soft), transparent 34%),
    linear-gradient(135deg, #101818 0%, #172323 100%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

body.dark-theme .ai-recommend-info {
  background:
    radial-gradient(circle at top right, var(--brand-soft), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
}

body.dark-theme .ai-recommend-info h3 {
  color: #ffffff;
}

body.dark-theme .ai-recommend-reason {
  color: #dce5e3;
}

body.dark-theme .ai-recommend-specs span {
  border-color: rgba(255, 255, 255, 0.16);
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

/* =========================
   FEATURES
========================= */
.features {
  padding: 90px 60px;
  background:
    radial-gradient(circle at top right, rgba(159, 184, 182, 0.08), transparent 30%),
    var(--color-bg);
}

.features .section-heading p:last-child {
  color: var(--color-muted);
  margin-top: 14px;
  font-size: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background-color: var(--color-surface);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(37, 211, 102, 0.08), transparent 34%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(159, 184, 182, 0.55);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon,
.feature-card h3,
.feature-card p {
  position: relative;
  z-index: 1;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-soft));
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 900;
}

.feature-card h3 {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--color-muted);
  font-size: 1rem;
}

body.dark-theme .features {
  background:
    radial-gradient(circle at top right, rgba(159, 184, 182, 0.08), transparent 30%),
    #101818;
}

body.dark-theme .features .section-heading p:last-child {
  color: #cbd8d6;
}

body.dark-theme .feature-card {
  background-color: #172323;
  border-color: #2f4444;
}

body.dark-theme .feature-card h3 {
  color: #ffffff;
}

body.dark-theme .feature-card p {
  color: #b8c4c2;
}

/* =========================
   SHOWROOM CTA
========================= */
.showroom-cta {
  position: relative;
  overflow: hidden;
  padding: 90px 60px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(37, 211, 102, 0.12), transparent 32%),
    radial-gradient(circle at bottom left, rgba(159, 184, 182, 0.14), transparent 36%),
    linear-gradient(135deg, #f5f7f6 0%, #e8f0ef 100%);
}

.showroom-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 51, 51, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(32, 51, 51, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.16;
  pointer-events: none;
}

.showroom-cta-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.showroom-cta .section-tag {
  color: var(--color-primary-soft);
}

.showroom-cta h2 {
  color: #203333;
  font-size: 2.55rem;
  line-height: 1.15;
  margin-bottom: 18px;
}

.showroom-cta p {
  color: #526363;
  font-size: 1.05rem;
  margin-bottom: 26px;
}

.showroom-cta-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.showroom-cta-points span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(32, 51, 51, 0.14);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.55);
  color: #203333;
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.showroom-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.showroom-cta .btn-primary {
  background: linear-gradient(135deg, #203333, #2f4f4f);
  color: #ffffff;
}

.showroom-cta .btn-primary:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.showroom-cta .btn-secondary {
  border-color: #203333;
  background-color: rgba(255, 255, 255, 0.4);
  color: #203333;
}

.showroom-cta .btn-secondary:hover {
  background-color: rgba(32, 51, 51, 0.08);
}

body.dark-theme .showroom-cta {
  background:
    radial-gradient(circle at top right, rgba(37, 211, 102, 0.12), transparent 32%),
    radial-gradient(circle at bottom left, rgba(159, 184, 182, 0.12), transparent 36%),
    linear-gradient(135deg, #101818 0%, #203030 100%);
}

body.dark-theme .showroom-cta::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

body.dark-theme .showroom-cta .section-tag {
  color: #9fb8b6;
}

body.dark-theme .showroom-cta h2 {
  color: #ffffff;
}

body.dark-theme .showroom-cta p {
  color: #dce5e3;
}

body.dark-theme .showroom-cta-points span {
  border-color: rgba(159, 184, 182, 0.38);
  background-color: rgba(255, 255, 255, 0.045);
  color: #dce5e3;
}

body.dark-theme .showroom-cta .btn-primary {
  background-color: #ffffff;
  background-image: none;
  color: #203333;
}

body.dark-theme .showroom-cta .btn-secondary {
  border-color: #ffffff;
  background-color: transparent;
  color: #ffffff;
}

body.dark-theme .showroom-cta .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .hero,
  .brand-strip,
  .ai-finder,
  .features,
  .showroom-cta {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero {
    flex-direction: column;
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text h1::after {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-points,
  .hero-buttons {
    justify-content: center;
  }

  .hero-featured-wrap {
    width: 100%;
    max-width: 560px;
  }

  .hero-display-label {
    text-align: center;
  }

  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ai-finder-card {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero,
  .brand-strip,
  .ai-finder,
  .features,
  .showroom-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    gap: 36px;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .hero-text h1 {
    font-size: 2.35rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-points {
    gap: 8px;
    margin-bottom: 26px;
  }

  .hero-points span {
    font-size: 0.82rem;
    padding: 6px 10px;
  }

  .hero-bike-card {
    border-radius: 18px;
  }

  .hero-bike-card img {
    height: 230px;
  }

  .hero-bike-card::after {
    top: 10px;
    right: 10px;
    font-size: 0.7rem;
  }

  .hero-bike-info {
    padding: 18px;
  }

  .hero-bike-info h3 {
    font-size: 1.25rem;
  }

  .brand-marquee {
    padding: 12px 0;
  }

  .brand-marquee-track {
    animation-duration: 30s;
  }

  .brand-marquee-item {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .brand-marquee-item img {
    height: 22px;
  }

  .brand-strip {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-logo-card {
    min-height: 100px;
    padding: 16px;
  }

  .brand-logo-card img {
    max-height: 38px;
  }

  .brand-logo-card span {
    font-size: 0.85rem;
  }

  .ai-finder {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .ai-finder-card {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 22px;
    border-radius: 18px;
  }

  .ai-finder-form {
    width: 100%;
    padding: 20px;
  }

  .ai-finder-result {
    width: 100%;
    min-height: auto;
    padding: 20px;
  }

  .ai-finder-result h3 {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .ai-finder-result p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .ai-finder-form .btn-primary {
    width: 100%;
  }

  .ai-recommend-card {
    max-width: 100%;
  }

  .ai-recommend-image img {
    height: 200px;
  }

  .ai-result-actions {
    flex-direction: column;
  }

  .ai-result-actions .btn-primary,
  .ai-result-actions .btn-secondary {
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .features {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .features .section-heading {
    margin-bottom: 30px;
  }

  .feature-card {
    min-height: auto;
    padding: 24px;
  }

  .feature-card h3 {
    font-size: 1.15rem;
    line-height: 1.3;
  }

  .feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }

  .showroom-cta {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .showroom-cta-content {
    max-width: 420px;
  }

  .showroom-cta .section-tag {
    font-size: 0.78rem;
    margin-bottom: 8px;
  }

  .showroom-cta h2 {
    font-size: 1.55rem;
    line-height: 1.18;
    margin-bottom: 12px;
  }

  .showroom-cta p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .showroom-cta-points {
    gap: 8px;
    margin-bottom: 24px;
  }

  .showroom-cta-points span {
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  .showroom-actions {
    flex-direction: column;
    gap: 10px;
  }

  .showroom-actions .btn-primary,
  .showroom-actions .btn-secondary {
    width: 100%;
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-bike-card img {
    height: 200px;
  }

  .hero-bike-card::after {
    content: "Detail";
    font-size: 0.68rem;
  }

  .hero-bike-info {
    padding: 16px;
  }

  .hero-bike-info h3 {
    font-size: 1.25rem;
  }

  .brand-logo-card {
    min-height: 88px;
    padding: 14px;
  }

  .brand-logo-card img {
    max-height: 32px;
  }

  .ai-finder {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .ai-finder-card {
    padding: 18px;
  }

  .ai-finder-form,
  .ai-finder-result {
    padding: 18px;
  }

  .ai-recommend-image img {
    height: 180px;
  }

  .features {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .feature-card {
    padding: 22px;
  }

  .showroom-cta {
    padding: 40px 16px;
  }

  .showroom-cta h2 {
    font-size: 1.35rem;
  }

  .showroom-cta p {
    font-size: 0.85rem;
  }
}

@media (min-width: 1500px) {
  .hero {
    min-height: 760px;
    gap: 150px;
  }

  .hero-text {
    flex-basis: 760px;
  }

  .hero-featured-wrap {
    flex-basis: 640px;
    max-width: 640px;
  }

  .hero-text h1 {
    font-size: 3.55rem;
  }

  .hero-bike-card img {
    height: 370px;
  }
}

@media (hover: none) {
  .hero-bike-card:hover,
  .brand-logo-card:hover,
  .feature-card:hover {
    transform: none;
  }
}