:root {
  --orange: #ff4b0b;
  --orange-light: #ff7a1a;
  --black: #050607;
  --soft-black: #0d1012;
  --panel: #15181b;
  --line: rgba(255, 255, 255, 0.14);
  --text: #101214;
  --muted: #6b7075;
  --white: #ffffff;
  --off-white: #f4f4f4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  margin: 0;
  color: var(--text);
  background: var(--off-white);
  font-family: "Arial", "Helvetica Neue", sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

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

a {
  text-decoration: none;
}

.page-container {
  max-width: 1260px;
  margin: 0 auto;
  padding-right: 26px;
  padding-left: 26px;
}

.section-dark {
  color: var(--white);
  background: var(--black);
}

.site-header {
  background: linear-gradient(180deg, rgba(2, 3, 4, 0.96), rgba(2, 3, 4, 0.45));
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(3, 4, 5, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
  min-height: 72px;
  padding: 0;
}

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

.navbar-nav {
  gap: 18px;
}

.navbar-dark .navbar-nav .nav-link {
  position: relative;
  padding: 28px 0 22px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.navbar-dark .navbar-nav .nav-link::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.navbar-dark .navbar-nav .nav-link.active::after,
.navbar-dark .navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.btn {
  min-height: 42px;
  padding: 12px 26px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.btn-primary {
  border-color: var(--orange);
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  box-shadow: 0 0 0 rgba(255, 75, 11, 0);
}

.btn-primary:hover,
.btn-primary:focus {
  border-color: var(--orange-light);
  background: linear-gradient(135deg, #ff8b2a, var(--orange));
  box-shadow: 0 0 20px rgba(255, 75, 11, 0.25);
}

.btn-outline-light {
  border-color: var(--orange);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  border-color: var(--orange);
  background: var(--orange);
}

.nav-cta {
  min-width: 146px;
}

.hero-section {
  position: relative;
  min-height: 690px;
  padding: 94px 0 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 30%, rgba(67, 79, 86, 0.45), transparent 34%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 58px),
    linear-gradient(180deg, #030506 0%, #0b1114 48%, #020303 100%);
}

.hero-section::after {
  position: absolute;
  right: -80px;
  bottom: 102px;
  width: 390px;
  height: 150px;
  content: "";
  background:
    linear-gradient(176deg, transparent 20%, rgba(255, 75, 11, 0.98) 21%, rgba(255, 75, 11, 0.98) 23%, transparent 24%),
    linear-gradient(168deg, transparent 54%, rgba(255, 75, 11, 0.9) 55%, rgba(255, 75, 11, 0.9) 57%, transparent 58%);
  filter: drop-shadow(0 0 10px rgba(255, 75, 11, 0.9));
}

.hero-glow {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 80, 13, 0.9), transparent);
}

.hero-glow-one {
  top: 280px;
  left: 85px;
  width: 360px;
}

.hero-glow-two {
  top: 305px;
  right: 210px;
  width: 190px;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 455px;
}

.hero-copy {
  padding-top: 42px;
}

.hero-copy h1 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 66px;
  font-weight: 950;
  font-style: italic;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-copy h1 span,
.brand-title span,
.section-kicker,
.tech-section h2 span,
.feature-card h2 span,
.spec-panel h2 span,
.test-ride-panel h2 span {
  color: var(--orange);
}

.hero-copy h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
}

.hero-copy p {
  max-width: 405px;
  margin-bottom: 28px;
  color: #e0e1e2;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-bike-wrap {
  position: relative;
  z-index: 1;
  min-height: 430px;
}

.hero-bike {
  width: min(640px, 100%);
  margin: 0 0 0 auto;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.4));
}

.stats-panel {
  position: relative;
  z-index: 2;
  margin: -18px 48px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: linear-gradient(100deg, rgba(32, 36, 39, 0.96), rgba(9, 11, 13, 0.92));
  backdrop-filter: blur(12px);
}

.stat-item {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-panel .col-6:last-child .stat-item {
  border-right: 0;
}

.stat-icon {
  color: #ffb184;
  font-size: 46px;
  line-height: 1;
}

.stat-item strong {
  display: block;
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.stat-item span:not(.stat-icon) {
  display: block;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.stat-item small {
  color: #ced1d3;
  font-size: 11px;
}

.overview-section {
  padding: 46px 0 42px;
  overflow: hidden;
  background: radial-gradient(circle at 70% 45%, #ffffff 0%, #f7f7f7 50%, #ededed 100%);
}

.brand-title,
.section-kicker,
.feature-card h2,
.spec-panel h2,
.testimonial-panel h2,
.test-ride-panel h2 {
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 950;
  font-style: italic;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-lead {
  max-width: 320px;
  margin-bottom: 20px;
  color: #292d31;
  font-size: 15px;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 700;
}

.feature-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 16px;
  height: 16px;
  content: "✓";
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  line-height: 12px;
  text-align: center;
}

.button-row.compact {
  gap: 14px;
}

.btn-download {
  border: 1px solid #c8c8c8;
  color: #151515;
  background: #ffffff;
}

.overview-visual {
  position: relative;
  min-height: 280px;
}

.overview-visual img {
  position: relative;
  z-index: 1;
  width: min(700px, 100%);
  margin-left: auto;
}

.ghost-word {
  position: absolute;
  top: 10px;
  right: 12px;
  color: rgba(0, 0, 0, 0.035);
  font-size: 118px;
  font-weight: 950;
  font-style: italic;
  letter-spacing: 0;
}

.variants-section {
  padding: 28px 0 34px;
  background:
    radial-gradient(circle at 50% -30%, rgba(60, 65, 70, 0.6), transparent 42%),
    linear-gradient(180deg, #040506, #0a0c0d);
}

.section-kicker {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 19px;
  text-align: center;
}

.section-kicker::before,
.section-kicker::after {
  content: "///";
  margin: 0 12px;
  color: var(--orange);
  font-size: 13px;
}

.variant-card {
  width: 100%;
  min-height: 133px;
  padding: 12px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(23, 25, 27, 0.98), rgba(9, 10, 11, 0.98));
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.variant-card:hover,
.variant-card.active {
  border-color: rgba(255, 75, 11, 0.85);
  transform: translateY(-2px);
}

.variant-card img {
  height: 84px;
  margin: 0 auto 2px;
  object-fit: contain;
}

.variant-card span {
  display: block;
  font-weight: 800;
}

.swatch {
  display: block;
  width: 14px;
  height: 14px;
  margin: 6px auto 0;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
}

.swatch-red {
  background: #f52220;
}

.swatch-blue {
  background: #0f65ff;
}

.swatch-white {
  background: #ffffff;
}

.swatch-black {
  background: #0b0b0b;
}

.tech-section {
  padding: 38px 0 18px;
  background: #f7f7f7;
}

.tech-section h2 {
  margin: 0;
  font-size: 23px;
  font-weight: 950;
  line-height: 1.15;
  text-transform: uppercase;
}

.tech-section h2 span {
  font-style: italic;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.tech-item {
  text-align: center;
}

.tech-item span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin: 0 auto 8px;
  border: 1px solid #1e2327;
  border-radius: 50%;
  color: #202327;
  font-size: 24px;
}

.tech-item strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
}

.cards-section {
  padding: 0 0 16px;
  background: #f7f7f7;
}

.feature-card {
  min-height: 292px;
  height: 100%;
  overflow: hidden;
  border-radius: 7px;
}

.dark-card {
  color: var(--white);
  background:
    radial-gradient(circle at 22% 56%, rgba(255, 75, 11, 0.18), transparent 33%),
    linear-gradient(145deg, #111416, #030405);
}

.light-card {
  background: linear-gradient(135deg, #ffffff, #e9e9e9);
}

.feature-card h2 {
  padding: 30px 28px 0;
  font-size: 22px;
}

.performance-content,
.battery-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  align-items: center;
  gap: 12px;
  padding: 0 22px 18px;
}

.performance-content img {
  width: 210px;
}

.performance-content ul,
.charge-grid,
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.performance-content li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 28px;
}

.performance-content li::before {
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--orange);
  content: "◎";
  font-size: 20px;
}

.performance-content strong,
.performance-content small {
  display: block;
}

.performance-content small {
  color: #d7d7d7;
  font-size: 11px;
}

.battery-content {
  grid-template-columns: minmax(0, 1fr) 185px;
}

.battery-content img {
  width: 230px;
}

.small-list {
  gap: 8px;
  margin-bottom: 0;
}

.small-list li {
  font-size: 12px;
}

.charging-card {
  padding-bottom: 25px;
}

.charging-card p {
  max-width: 320px;
  margin: 0 28px 35px;
  color: #cfd2d4;
  font-size: 13px;
}

.charge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0 22px;
}

.charge-grid article {
  min-height: 76px;
  padding: 0 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.charge-grid article:last-child {
  border-right: 0;
}

.charge-grid span {
  display: block;
  color: #ffb184;
  font-size: 28px;
}

.charge-grid strong,
.charge-grid small {
  display: block;
}

.charge-grid strong {
  font-size: 12px;
}

.charge-grid small {
  color: #cfd2d4;
  font-size: 10px;
}

.warranty-section {
  padding: 0 0 16px;
  background: #f7f7f7;
}

.warranty-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  background: #ffffff;
}

.warranty-strip article {
  display: grid;
  min-height: 86px;
  grid-template-columns: 48px auto;
  align-content: center;
  padding: 0 28px;
  border-right: 1px solid #d8d8d8;
}

.warranty-strip article:last-child {
  border-right: 0;
}

.warranty-strip span {
  grid-row: span 2;
  color: var(--orange);
  font-size: 34px;
}

.warranty-strip strong {
  font-size: 18px;
  font-weight: 950;
  text-transform: uppercase;
}

.warranty-strip small {
  font-weight: 800;
}

.spec-test-section {
  padding: 0 0 10px;
  background: #f7f7f7;
}

.spec-panel,
.testimonial-panel {
  min-height: 245px;
  height: 100%;
  border-radius: 7px;
}

.spec-panel {
  padding: 24px 24px 18px;
  color: var(--white);
  background: linear-gradient(135deg, #101315, #040505);
}

.spec-panel h2,
.testimonial-panel h2 {
  font-size: 23px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
  margin-bottom: 18px;
}

.spec-grid div {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0;
  padding: 0 10px;
  font-size: 11px;
}

.spec-grid div:nth-last-child(-n+2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-grid strong {
  color: #ffffff;
  font-size: 11px;
}

.spec-panel .btn {
  min-height: 36px;
  padding: 10px 24px;
  border-color: var(--orange);
  color: var(--orange);
}

.spec-panel .btn:hover {
  color: var(--white);
  background: var(--orange);
}

.testimonial-panel {
  position: relative;
  padding: 24px 44px 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff, #e9e9e9);
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  min-height: 142px;
  padding: 18px 18px 16px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.82);
}

.stars {
  color: var(--orange);
  font-size: 15px;
  letter-spacing: 2px;
}

.testimonial-card p {
  margin: 10px 0 14px;
  font-weight: 700;
}

.testimonial-card strong {
  font-size: 12px;
}

.slider-arrow {
  position: absolute;
  top: 54%;
  width: 30px;
  height: 30px;
  border: 0;
  color: #8d9093;
  background: transparent;
  font-size: 42px;
  line-height: 20px;
}

.slider-arrow.prev {
  left: 8px;
}

.slider-arrow.next {
  right: 8px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #b7b7b7;
}

.slider-dots button.active {
  background: var(--orange);
}

.test-ride-section {
  padding: 0 0 10px;
  background: #f7f7f7;
}

.test-ride-panel {
  overflow: hidden;
  border-radius: 7px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 55%, rgba(255, 75, 11, 0.22), transparent 29%),
    linear-gradient(120deg, #090b0d, #161b1f 50%, #050607);
}

.test-ride-panel h2 {
  margin: 28px 0 15px;
  padding-left: 28px;
  font-size: 30px;
}

.test-ride-form {
  padding: 0 0 26px 28px;
}

.form-control,
.form-select {
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.09);
  font-size: 11px;
}

.form-control::placeholder {
  color: #d7d7d7;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--orange);
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 0.18rem rgba(255, 75, 11, 0.2);
}

.test-ride-form .invalid-feedback {
  margin-top: 4px;
  color: #ffb184;
  font-size: 11px;
  font-weight: 700;
}

.form-select option {
  color: #111111;
}

.test-ride-form .btn {
  justify-content: center;
  min-height: 40px;
}

.test-ride-form .btn.is-loading {
  opacity: 0.78;
  pointer-events: none;
}

.color-picker {
  margin: 0;
  padding: 10px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.07);
}

.color-picker legend {
  float: none;
  width: auto;
  margin: 0 0 8px;
  color: #d7d7d7;
  font-size: 11px;
  font-weight: 800;
}

.model-color-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.color-option {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  font-weight: 800;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.color-option:hover,
.color-option.active {
  border-color: var(--orange);
  background: rgba(255, 75, 11, 0.12);
  transform: translateY(-1px);
}

.color-dot {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}

.color-dot-neutron-blue {
  background: #0f65ff;
}

.color-dot-pulse-red,
.color-dot-red {
  background: #f52220;
}

.color-dot-magnetic-black {
  background: #0b0b0b;
}

.color-dot-photon-white {
  background: #ffffff;
}

.color-dot-cyan {
  background: #08c8de;
}

.color-dot-orange {
  background: #ff6a18;
}

.color-dot-grey {
  background: #80858a;
}

.color-picker small {
  display: block;
  margin-top: 7px;
  color: #bfc3c5;
  font-size: 10px;
}

.color-picker.is-invalid {
  border-color: #ffb184;
}

.color-picker.is-invalid .color-feedback {
  display: block;
}

.form-status {
  min-height: 18px;
  margin: 8px 0 0;
  color: #ffb184;
  font-size: 12px;
  font-weight: 700;
}

.form-status.success {
  color: #aef0c0;
}

.form-status.error {
  color: #ffb184;
}

.test-bike-wrap {
  min-height: 235px;
}

.test-bike-wrap img {
  width: min(450px, 100%);
  margin: 0 auto;
}

.site-footer {
  padding: 28px 0 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #07090a, #111517);
}

.footer-brand img {
  width: 135px;
  margin-bottom: 10px;
}

.footer-brand p {
  max-width: 210px;
  color: #bfc3c5;
  font-size: 11px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  font-size: 11px;
  font-weight: 800;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.site-footer li {
  margin-bottom: 8px;
  color: #d2d5d7;
  font-size: 12px;
}

.site-footer a {
  color: #d2d5d7;
}

.site-footer a:hover {
  color: var(--orange);
}

.contact-list li {
  white-space: nowrap;
}

.copyright {
  margin: 18px 0 0;
  color: #bfc3c5;
  font-size: 11px;
  text-align: center;
}
.whatsapp-floats {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1040;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #25d366, #128c47);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32), 0 0 18px rgba(37, 211, 102, 0.28);
  font-size: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1040;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #25d366, #128c47);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32), 0 0 18px rgba(37, 211, 102, 0.28);
  font-size: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  color: #ffffff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38), 0 0 24px rgba(37, 211, 102, 0.4);
}

@media (max-width: 1199.98px) {
  .navbar-nav {
    gap: 12px;
  }

  .navbar-dark .navbar-nav .nav-link {
    font-size: 12px;
  }

  .hero-copy h1 {
    font-size: 56px;
  }

  .stats-panel {
    margin-right: 0;
    margin-left: 0;
  }

  .performance-content,
  .battery-content {
    grid-template-columns: 1fr;
  }

  .performance-content img,
  .battery-content img {
    margin: 0 auto;
  }
}

@media (max-width: 991.98px) {
  .page-container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .navbar {
    min-height: 66px;
  }

  .navbar-collapse {
    padding: 14px 0 20px;
    background: rgba(4, 5, 6, 0.98);
  }

  .navbar-dark .navbar-nav .nav-link {
    padding: 9px 0;
  }

  .navbar-dark .navbar-nav .nav-link::after {
    bottom: 4px;
    width: 42px;
  }

  .nav-cta {
    margin-top: 12px;
  }

  .hero-section {
    min-height: 0;
    padding-top: 86px;
  }

  .hero-copy {
    padding-top: 10px;
  }

  .hero-bike-wrap {
    min-height: 0;
    margin-top: 12px;
  }

  .hero-bike {
    margin-right: auto;
  }

  .stats-panel {
    margin-top: 18px;
  }

  .stat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stats-panel .col-6:nth-child(2) .stat-item {
    border-right: 0;
  }

  .stats-panel .col-6:nth-child(n+3) .stat-item {
    border-bottom: 0;
  }

  .overview-visual {
    min-height: 220px;
    margin-top: 22px;
  }

  .ghost-word {
    font-size: 86px;
  }

  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .warranty-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .warranty-strip article:nth-child(2) {
    border-right: 0;
  }

  .warranty-strip article:nth-child(-n+2) {
    border-bottom: 1px solid #d8d8d8;
  }

  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    display: none;
  }

  .testimonial-card.active {
    display: block;
  }

  .test-ride-form {
    padding-right: 28px;
  }

  .model-color-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .hero-copy h1 {
    font-size: 44px;
  }

  .hero-copy h2 {
    font-size: 18px;
  }

  .button-row,
  .button-row.compact {
    gap: 10px;
  }

  .button-row .btn {
    flex: 1 1 160px;
  }

  .brand-title,
  .test-ride-panel h2 {
    font-size: 25px;
  }

  .overview-section {
    padding-top: 34px;
  }

  .variant-card {
    min-height: 122px;
  }

  .variant-card img {
    height: 72px;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .warranty-strip {
    grid-template-columns: 1fr;
  }

  .warranty-strip article,
  .warranty-strip article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #d8d8d8;
  }

  .warranty-strip article:last-child {
    border-bottom: 0;
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .spec-grid div:nth-last-child(2) {
    border-bottom: 0;
  }

  .charge-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .charge-grid article {
    border-right: 0;
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 13px;
  }

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

  .hero-section::after,
  .hero-glow {
    display: none;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy p {
    max-width: none;
  }

  .stat-item {
    min-height: 86px;
    justify-content: flex-start;
    padding-left: 16px;
    gap: 10px;
  }

  .stat-icon {
    font-size: 34px;
  }

  .stat-item strong {
    font-size: 21px;
  }

  .ghost-word {
    font-size: 58px;
  }

  .testimonial-panel {
    padding-right: 34px;
    padding-left: 34px;
  }

  .test-ride-panel h2,
  .test-ride-form {
    padding-left: 18px;
  }

  .test-ride-form {
    padding-right: 18px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    font-size: 23px;
  }
}
