:root {
  --ink: #f7f5ff;
  --muted: #b8b1c6;
  --paper: #090813;
  --soft: #12101e;
  --surface: #171421;
  --surface-2: #20182b;
  --line: rgba(255, 255, 255, 0.11);
  --roam-pink: #e72b96;
  --roam-purple: #6f26a8;
  --roam-blue: #16c7df;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 4%, rgba(111, 38, 168, 0.22), transparent 30%),
    radial-gradient(circle at 18% 22%, rgba(22, 199, 223, 0.12), transparent 28%),
    var(--paper);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.site-header {
  background: rgba(9, 8, 19, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.navbar {
  min-height: 82px;
}

.navbar-brand img {
  width: 176px;
  height: auto;
}

.navbar-toggler {
  width: 50px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-left: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none !important;
}

.navbar-toggler-icon {
  width: 26px;
  height: 20px;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-size: 26px 3px, 26px 3px, 26px 3px;
  background-position: 0 0, 0 8.5px, 0 17px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 0.65rem !important;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--roam-pink);
}

.nav-pill {
  color: #fff !important;
  background: linear-gradient(135deg, var(--roam-pink), var(--roam-purple));
  border-radius: 999px;
  padding-inline: 1rem !important;
  box-shadow: 0 10px 24px rgba(238, 43, 149, 0.26);
}

.hero-section {
  position: relative;
  margin-top: 82px;
  overflow: hidden;
  background: #05040a;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
  aspect-ratio: 2304 / 750;
  height: auto;
  max-height: 620px;
}

.hero-section .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background:
    radial-gradient(circle at 70% 10%, rgba(111, 38, 168, 0.26), transparent 34%),
    #05040a;
}

.hero-section::after {
  content: none;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  padding: 24px 0 34px;
  background:
    linear-gradient(135deg, rgba(9, 8, 19, 0.98), rgba(32, 24, 43, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
  max-width: none;
  padding: 0;
  color: #fff;
}

.hero-copy > * {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.8rem;
  color: var(--roam-pink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--roam-blue);
  border-radius: 999px;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.015em;
}

.hero-copy p:not(.eyebrow) {
  margin: 0.55rem 0 0;
  max-width: 560px;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0;
  justify-content: flex-end;
}

.btn {
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 900;
}

.btn-roam {
  color: #fff;
  background: linear-gradient(135deg, var(--roam-pink), var(--roam-purple));
  border: 0;
  box-shadow: 0 14px 30px rgba(238, 43, 149, 0.28);
}

.btn-roam:hover,
.btn-roam:focus {
  color: #fff;
  transform: translateY(-1px);
}

.carousel-indicators {
  z-index: 4;
  margin-bottom: 2.2rem;
}

.carousel-indicators [data-bs-target] {
  width: 42px;
  height: 5px;
  border: 0;
  border-radius: 999px;
}

.section {
  padding: 96px 0;
}

.brand-strip {
  background: linear-gradient(135deg, rgba(18, 16, 30, 0.98), rgba(9, 8, 19, 0.98));
  border-bottom: 1px solid var(--line);
}

.brand-strip h2,
.section-heading h2,
.manufacturing-section h2,
.catalogue-section h2,
.dealer-panel h2 {
  font-family: "Barlow Condensed", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin: 0 0 1rem;
  overflow-wrap: break-word;
}

.brand-strip p,
.section-heading p,
.manufacturing-section p,
.catalogue-section p,
.dealer-panel p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.brand-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.brand-points span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  font-weight: 850;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.models-section {
  background: var(--paper);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.8rem;
}

.filter-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 800;
}

.filter-tabs button.active,
.filter-tabs button:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--roam-purple), #211039);
}

.product-card,
.mini-bike,
.benefit,
.testimonials-section blockquote {
  height: 100%;
  background: linear-gradient(180deg, #191524, #12101d);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(24, 15, 42, 0.08);
}

.product-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
  object-position: top center;
  background: #21182d;
}

.product-card__body {
  padding: 1.1rem;
}

.product-card span {
  display: inline-flex;
  color: var(--roam-pink);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-card h3,
.mini-bike h3,
.benefit h3 {
  margin: 0.45rem 0;
  font-family: "Barlow Condensed", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.product-card p,
.mini-bike p,
.benefit p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.card-actions {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}

.card-actions a {
  flex: 1;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 900;
  font-size: 0.86rem;
}

.card-actions a:last-child {
  color: #fff;
  background: #158a4a;
}

.series-section {
  background: linear-gradient(180deg, var(--surface), var(--paper));
  border-top: 1px solid var(--line);
}

.series-card {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  box-shadow: var(--shadow);
}

.series-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.series-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 7, 20, 0.08), rgba(10, 7, 20, 0.82));
}

.series-card div {
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 2;
}

.series-card h2 {
  font-family: "Barlow Condensed", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.series-card p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.88);
}

.light-card::after {
  background: linear-gradient(180deg, rgba(59, 18, 79, 0.04), rgba(59, 18, 79, 0.72));
}

.mini-bike {
  padding: 0.9rem;
}

.mini-bike img {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  background: #21182d;
}

.mini-bike h3,
.mini-bike p {
  padding-inline: 0.35rem;
}

.why-section {
  background: linear-gradient(180deg, var(--paper), var(--surface));
}

.benefit {
  padding: 1.35rem;
}

.benefit strong {
  color: var(--roam-pink);
  font-size: 0.88rem;
}

.manufacturing-section {
  background:
    linear-gradient(135deg, rgba(27, 15, 43, 0.95), rgba(5, 4, 10, 0.98)),
    var(--ink);
  color: #fff;
}

.manufacturing-section p {
  color: rgba(255, 255, 255, 0.76);
}

.facility-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.capability-list span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.dealer-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c1045, #07060d);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dealer-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  color: #fff;
}

.dealer-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.dealer-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.7rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.dealer-form input,
.dealer-form button {
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 0 1rem;
}

.dealer-form input {
  background: rgba(255, 255, 255, 0.94);
  color: #171527;
}

.dealer-form button {
  color: #fff;
  background: linear-gradient(135deg, var(--roam-pink), var(--roam-purple));
  font-weight: 900;
}

.catalogue-section {
  background: linear-gradient(180deg, var(--surface), var(--paper));
}

.catalogue-preview {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.8fr;
  gap: 1rem;
  align-items: end;
}

.catalogue-preview img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.catalogue-preview img:first-child {
  transform: translateY(-1rem);
}

.testimonials-section {
  background: var(--surface);
}

.testimonials-section blockquote {
  margin: 0;
  padding: 1.4rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.7;
}

.testimonials-section cite {
  display: block;
  margin-top: 1rem;
  color: var(--roam-pink);
  font-style: normal;
  font-weight: 900;
}

.site-footer {
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 78% 10%, rgba(231, 43, 150, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(8, 7, 17, 1), rgba(3, 3, 7, 1));
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  padding: 64px 0 42px;
  border-bottom: 1px solid var(--line);
}

.footer-brand-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  max-width: 520px;
  margin-bottom: 1.2rem;
}

.footer-brand-stack img {
  width: auto;
  max-width: 168px;
  max-height: 52px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.48rem 0.7rem;
}

.footer-brand-stack img:nth-child(2) {
  max-height: 62px;
  background: #19151d;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand-stack img:nth-child(3) {
  max-width: 190px;
}

.footer-newsletter {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.footer-newsletter h3 {
  margin-bottom: 0.45rem;
  font-family: "Barlow Condensed", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1.85rem;
  letter-spacing: 0.01em;
}

.footer-newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  margin-top: 1rem;
}

.footer-newsletter input,
.footer-newsletter button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 1rem;
}

.footer-newsletter input {
  color: #171527;
  background: #fff;
}

.footer-newsletter button {
  color: #fff;
  background: linear-gradient(135deg, var(--roam-pink), var(--roam-purple));
  font-weight: 900;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  padding: 38px 0 44px;
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.site-footer a {
  display: flex;
  margin: 0 0 0.62rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-whatsapp {
  display: inline-flex !important;
  margin-top: 0.4rem !important;
  color: #fff !important;
  background: #158a4a;
  border-radius: 999px;
  padding: 0.7rem 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

@media (max-width: 1199.98px) {
  .nav-link {
    font-size: 0.84rem;
    padding-inline: 0.42rem !important;
  }
}

@media (max-width: 991.98px) {
  .navbar {
    min-height: 72px;
  }

  .navbar-brand img {
    width: 150px;
  }

  .navbar-collapse {
    padding: 1rem 0 0.8rem;
  }

  .nav-link {
    padding: 0.65rem 0 !important;
  }

  .nav-pill {
    display: inline-flex;
    padding-inline: 1rem !important;
  }

  .hero-section .carousel,
  .hero-section .carousel-inner,
  .hero-section .carousel-item {
    aspect-ratio: 2304 / 750;
    height: auto;
    max-height: 480px;
  }

  .hero-copy {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 76px 0;
  }

  .dealer-panel,
  .dealer-form,
  .footer-top,
  .footer-links-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .section .row,
  .dealer-section .row,
  .site-footer .row {
    margin-left: 0;
    margin-right: 0;
  }

  .section .row > *,
  .dealer-section .row > *,
  .site-footer .row > * {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-section {
    margin-top: 72px;
  }

  .hero-section .carousel,
  .hero-section .carousel-inner,
  .hero-section .carousel-item {
    aspect-ratio: 2304 / 750;
    height: auto;
    min-height: 0;
  }

  .hero-section .carousel-item img {
    object-position: center;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.15rem);
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
    width: 100%;
    text-align: center;
  }

  .brand-strip h2,
  .section-heading h2,
  .manufacturing-section h2,
  .catalogue-section h2,
  .dealer-panel h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .brand-points,
  .capability-list,
  .catalogue-preview {
    grid-template-columns: 1fr;
  }

  .brand-points {
    display: grid;
  }

  .filter-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.4rem;
  }

  .filter-tabs button {
    flex: 0 0 auto;
  }

  .series-card,
  .series-card img {
    min-height: 430px;
  }

  .dealer-form input,
  .dealer-form button,
  .footer-newsletter input,
  .footer-newsletter button {
    border-radius: 8px;
  }

  .footer-top {
    padding-top: 48px;
  }

  .footer-brand-stack {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-newsletter form,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }
}
