/* ===== MODEL PAGES (car-*.html) STYLESHEET ===== */
/* ===== MODEL PAGE CSS ===== */
* {
  box-sizing: border-box;
}
/* ── FULL-WIDTH HERO BANNER (shared across all model pages) ── */
.city-fullhero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0a0a0a;
  min-height: 60vh;
}
.cfh-img {
  width: 100%;
  display: block;
  max-height: 95vh;
  object-fit: cover;
  object-position: center;
}
.cfh-badge {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  text-align: right;
}
.cfh-new {
  color: #fff;
  font-size: clamp(1.2rem, 3vw, 2.4rem);
  font-weight: 400;
  font-family: var(--font-display), sans-serif;
  letter-spacing: 2px;
  opacity: 0.85;
}
.cfh-city {
  color: #fff;
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 900;
  font-family: var(--font-display), sans-serif;
  letter-spacing: 4px;
  line-height: 0.9;
}
.cfh-vibe {
  display: inline-block;
  background: #e60121;
  color: #fff;
  font-size: clamp(0.9rem, 2.5vw, 1.8rem);
  font-weight: 700;
  font-family: var(--font-condensed), sans-serif;
  letter-spacing: 2px;
  padding: 5px 18px 7px;
  margin-top: 8px;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .cfh-badge {
    right: 4%;
    top: auto;
    bottom: 14%;
    transform: none;
  }
  .cfh-city {
    font-size: 3rem;
  }
  .city-fullhero {
    min-height: auto;
  }
}

/* MAIN NAVBAR hide on scroll, show on scroll-up */
.navbar {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.navbar.hide {
  transform: translateY(-100%);
}
/* MODEL SUB-NAV — hidden initially, slides in as fixed bar when scrolled */
.model-subnav {
  background: white;
  border-bottom: 1px solid #e8e8e8;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transform: translateY(-100%);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s;
}
.model-subnav.scrolled {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.msn-inner {
  max-width: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.msn-inner::-webkit-scrollbar {
  display: none;
}
/* Brand (model name + dropdown arrow) */
.msn-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 18px 24px 18px 0;
  border-right: 1px solid #ddd;
  margin-right: 8px;
  flex-shrink: 0;
  cursor: default;
}
.msn-logo {
  display: none; /* hide the hex logo — Honda India style is name-only */
}
.msn-name {
  font-family: var(--font-display), sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #111;
}

/* Nav links */
.msn-link {
  padding: 19px 16px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-transform: none;
  color: #666;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition:
    color 0.2s,
    border-color 0.2s;
  flex-shrink: 0;
}
.msn-link:hover,
.msn-link.active {
  color: #111;
  border-bottom-color: #111;
}
/* CTA buttons */
.msn-btns {
  margin-left: auto;
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  padding: 10px 0;
}
.msn-btn-outline {
  padding: 9px 20px;
  background: none;
  border: 1.5px solid #111;
  color: #111;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.2s;
  white-space: nowrap;
}
.msn-btn-outline:hover {
  background: #111;
  color: #fff;
}
.msn-btn-fill {
  padding: 9px 20px;
  background: #111;
  border: 1.5px solid #111;
  color: #fff;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.2s;
  white-space: nowrap;
}
.msn-btn-fill:hover {
  background: #333;
  border-color: #333;
}
/* HERO */
.model-hero {
  background: #f5f5f5;
  padding: 52px 0 0;
  overflow: hidden;
}
.hero-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: center;
  min-height: 420px;
}
.hero-left {
  padding-bottom: 48px;
}
.h-kicker {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 8px;
}
.h-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
  color: var(--honda-black);
  margin-bottom: 4px;
}
.h-sub {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 16px;
}
.h-price-lbl {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #bbb;
}
.h-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--honda-black);
  margin-bottom: 20px;
}
.h-price sup {
  font-size: 0.95rem;
}
.h-price small {
  font-size: 0.78rem;
  color: #aaa;
  font-weight: 400;
}
.h-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-ec {
  padding: 10px 20px;
  background: none;
  border: 2px solid var(--honda-red);
  color: var(--honda-red);
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ec:hover {
  background: var(--honda-red);
  color: white;
}
.btn-td {
  padding: 10px 20px;
  background: var(--honda-red);
  border: 2px solid var(--honda-red);
  color: white;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-td:hover {
  background: #a50000;
  border-color: #a50000;
}
/* CAR IMAGE */
.hero-img-area {
  text-align: right;
  position: relative;
}
.car-main-img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  filter: drop-shadow(8px 16px 32px rgba(0, 0, 0, 0.15));
}
/* COLOR SWATCHES BAR */
.color-bar {
  background: white;
  border-top: 1px solid #ebebeb;
  padding: 13px 48px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.c-label {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #bbb;
  flex-shrink: 0;
}
.c-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  border: 2.5px solid transparent;
  outline: 2px solid transparent;
  transition: all 0.22s;
  flex-shrink: 0;
}
.c-swatch.active,
.c-swatch:hover {
  border-color: white;
  outline-color: var(--honda-red);
  transform: scale(1.2);
}
.c-name {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--honda-black);
}
/* SPEC TICKER */
.spec-ticker {
  background: var(--honda-black);
  padding: 12px 0;
}
.spec-ticker-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: stretch;
}
.st-item {
  flex: 1;
  text-align: center;
  padding: 8px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.st-item:last-child {
  border: none;
}
.st-val {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  white-space: nowrap;
}
.st-key {
  font-family: var(--font-condensed);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555;
  margin-top: 3px;
}
/* SECTION HEADING */
.sec-hd {
  margin-bottom: 32px;
}
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.sec-eyebrow::before {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: var(--honda-red);
}
.sec-eyebrow span {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--honda-red);
}
.sec-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--honda-black);
  line-height: 1.1;
}
.sec-sub {
  color: #888;
  font-size: 0.88rem;
  margin-top: 5px;
  line-height: 1.6;
}
/* EXPERIENCE / EXT-INT */
.exp-section {
  padding: 64px 0;
  background: white;
}
.exp-tabs {
  display: flex;
  border-bottom: 2px solid #eee;
  margin-bottom: 32px;
  gap: 0;
}
.exp-tab {
  padding: 12px 24px;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  color: #bbb;
  transition: all 0.2s;
}
.exp-tab.active,
.exp-tab:hover {
  color: var(--honda-red);
  border-bottom-color: var(--honda-red);
}
.exp-panel {
  display: none;
}
.exp-panel.active {
  display: block;
}
/* IMAGE SLIDER */
.img-slider {
  overflow: hidden;
  position: relative;
}
.slides-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide-item {
  flex: 0 0 100%;
}
.slide-item img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}
.slide-caption {
  text-align: center;
  padding: 10px 0;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
}
.slider-ctrl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
}
.s-btn {
  width: 38px;
  height: 38px;
  border: 1.5px solid #ddd;
  background: white;
  cursor: pointer;
  color: #666;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.s-btn:hover {
  background: var(--honda-red);
  border-color: var(--honda-red);
  color: white;
}
.s-dots {
  display: flex;
  gap: 6px;
}
.s-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.25s;
}
.s-dot.active {
  background: var(--honda-red);
  width: 20px;
  border-radius: 4px;
}
/* REASONS TO BUY */
.rtb-section {
  padding: 64px 0;
  background: #f6f6f6;
}
.rtb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rtb-card {
  background: white;
  padding: 28px 22px;
  border-bottom: 3px solid transparent;
  transition: all 0.25s;
}
.rtb-card:hover {
  border-bottom-color: var(--honda-red);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}
.rtb-icon {
  font-size: 1.8rem;
  color: var(--honda-red);
  margin-bottom: 12px;
}
.rtb-title {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 7px;
}
.rtb-desc {
  color: #777;
  font-size: 0.85rem;
  line-height: 1.6;
}
/* TECHNOLOGY */
.tech-section {
  padding: 64px 0;
  background: white;
}
.tech-tabs {
  display: flex;
  border-bottom: 2px solid #eee;
  margin-bottom: 32px;
  overflow-x: auto;
  gap: 0;
  scrollbar-width: none;
}
.tech-tabs::-webkit-scrollbar {
  display: none;
}
.tech-tab {
  padding: 12px 22px;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  color: #bbb;
  transition: all 0.2s;
  white-space: nowrap;
}
.tech-tab.active,
.tech-tab:hover {
  color: var(--honda-red);
  border-bottom-color: var(--honda-red);
}
.tech-panel {
  display: none;
}
.tech-panel.active {
  display: block;
}
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.tech-desc {
  color: #777;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.tech-specs {
  list-style: none;
  padding: 0;
}
.tsr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid #f0f0f0;
}
.tsr:last-child {
  border: none;
}
.tsr .tk {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #aaa;
}
.tsr .tv {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--honda-black);
  text-align: right;
}
.tech-nums {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.tn {
  background: #f6f6f6;
  padding: 14px 10px;
  text-align: center;
}
.tn-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--honda-red);
  line-height: 1;
}
.tn-lbl {
  font-family: var(--font-condensed);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #aaa;
  margin-top: 3px;
}
.tech-img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  max-height: 300px;
}
/* OTHER MODELS */
.other-section {
  padding: 60px 0;
  background: #f6f6f6;
}
.other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.other-card {
  background: white;
  padding: 18px;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.25s;
  cursor: pointer;
}
.other-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.other-card img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  margin-bottom: 10px;
}
.other-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.other-card p {
  font-size: 0.75rem;
  color: #aaa;
  margin-bottom: 12px;
}
.oc-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
/* FAQ */
.faq-section {
  padding: 60px 0;
  background: white;
}
.faq-item {
  border-bottom: 1px solid #eee;
}
.faq-q {
  padding: 16px 0;
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.3px;
  color: var(--honda-black);
}
.faq-q i {
  color: var(--honda-red);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 14px;
}
.faq-item.open .faq-q i {
  transform: rotate(180deg);
}
/* POPUP */
.pop-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pop-overlay.show {
  display: flex;
}
.pop-box {
  background: white;
  width: 100%;
  max-width: 460px;
  animation: pIn 0.28s ease;
}
@keyframes pIn {
  from {
    transform: scale(0.93);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.pop-head {
  background: var(--honda-black);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.pop-head h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}
.pop-head p {
  font-size: 0.75rem;
  color: #888;
  margin-top: 2px;
}
.pop-x {
  background: none;
  border: none;
  color: #777;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
.pop-x:hover {
  color: white;
}
.pop-body {
  padding: 20px 24px;
}
.pg {
  margin-bottom: 12px;
}
.pg label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 4px;
}
.pg input,
.pg select {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid #e5e5e5;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  border-radius: 2px;
  transition: border-color 0.2s;
  background: white;
}
.pg input:focus,
.pg select:focus {
  border-color: var(--honda-red);
}
.pg2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pop-note {
  padding: 0 24px 16px;
  font-size: 0.7rem;
  color: #bbb;
  text-align: center;
}
/* ═══════════════ RTB SLIDER ═══════════════ */
.rtb-section {
  padding: 64px 0;
  background: #f6f6f6;
  overflow: hidden;
}
.rtb-hd-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 20px;
}
.rtb-nav-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.rtb-arrow {
  width: 44px;
  height: 44px;
  background: white;
  border: 1.5px solid #ddd;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #666;
  transition: all 0.2s;
}
.rtb-arrow:hover {
  background: var(--honda-red);
  border-color: var(--honda-red);
  color: white;
}
.rtb-slider-outer {
  overflow: hidden;
  position: relative;
}
.rtb-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.rtb-slide {
  flex: 0 0 100%;
  background: white;
}
.rtb-slide-img {
  position: relative;
  overflow: hidden;
  height: 360px;
}
.rtb-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.rtb-slide:hover .rtb-slide-img img {
  transform: scale(1.04);
}
.rtb-slide-num {
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  pointer-events: none;
}
.rtb-stars-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 16px;
  backdrop-filter: blur(4px);
}
.rtb-stars-label {
  font-family: var(--font-condensed);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}
.rtb-stars {
  color: #f4b400;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 2px;
}
.rtb-mileage-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--honda-red);
  color: white;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.rtb-mileage-badge span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.85;
}
.rtb-slide-body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rtb-slide-cat {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--honda-red);
}
.rtb-slide-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--honda-black);
  line-height: 1.15;
  margin: 0;
}
.rtb-slide-desc {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}
.rtb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.rtb-tags span {
  background: #f4f4f4;
  padding: 3px 10px;
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #555;
  border-left: 3px solid var(--honda-red);
}
/* RTB 2-column layout on desktop */
@media (min-width: 860px) {
  .rtb-slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .rtb-slide-img {
    height: auto;
    min-height: 380px;
  }
  .rtb-slide-body {
    justify-content: center;
    padding: 48px 40px;
  }
}

/* ═══════════════ HONDA SENSING ═══════════════ */
.sensing-section {
  background: #0a0a0a;
  padding: 80px 0;
  overflow: hidden;
}
.sensing-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sensing-eyebrow::before {
  background: var(--honda-red);
}
.sensing-eyebrow span {
  color: var(--honda-red);
}
.sensing-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin: 8px 0 16px;
}
.sensing-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.sensing-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 36px;
}
.sensing-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.sensing-features i {
  color: var(--honda-red);
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.sensing-btn {
  padding: 11px 28px;
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sensing-btn:hover {
  background: var(--honda-red);
  border-color: var(--honda-red);
  color: white;
}
.sensing-visual {
  position: relative;
}
.sensing-scene {
  position: relative;
  padding-bottom: 40px;
}
.sensing-car {
  width: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(220, 30, 30, 0.2));
  position: relative;
  z-index: 2;
}
.sensing-rings {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
.s-ring {
  position: absolute;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  animation: sRingPulse 2.4s ease-in-out infinite;
}
.s-ring.r1 {
  width: 200px;
  height: 70px;
  border: 1.5px solid rgba(220, 30, 30, 0.7);
  bottom: 0;
  animation-delay: 0s;
}
.s-ring.r2 {
  width: 320px;
  height: 110px;
  border: 1.5px solid rgba(220, 30, 30, 0.45);
  bottom: -20px;
  animation-delay: 0.5s;
}
.s-ring.r3 {
  width: 460px;
  height: 150px;
  border: 1.5px solid rgba(220, 30, 30, 0.2);
  bottom: -40px;
  animation-delay: 1s;
}
@keyframes sRingPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translateX(-50%) scaleY(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleY(1.06);
  }
}
.sensing-speed-badge {
  position: absolute;
  bottom: 50%;
  right: 8%;
  background: white;
  padding: 10px 16px;
  z-index: 3;
  text-align: center;
}
.sb-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--honda-black);
  display: block;
  line-height: 1;
}
.sb-unit {
  font-family: var(--font-condensed);
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #aaa;
}
.sensing-caption {
  margin-top: 20px;
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

/* ═══════════════ DESIGN SECTION ═══════════════ */
.design-section {
  background: #111;
  padding: 64px 0 0;
}
.design-eyebrow::before {
  background: var(--honda-red);
}
.design-eyebrow span {
  color: var(--honda-red);
}
.design-title {
  color: white;
}
.design-sub {
  color: rgba(255, 255, 255, 0.4);
}
.design-section .container {
  padding-bottom: 36px;
}
.design-slider-wrap {
  position: relative;
  overflow: hidden;
}
.design-slide {
  flex: 0 0 100%;
  position: relative;
}
.design-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: brightness(0.75);
}
.design-slide-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 40px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.design-ctrl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 0;
  background: #111;
}
.design-arrow {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.design-arrow:hover {
  background: var(--honda-red);
  border-color: var(--honda-red);
  color: white;
}
.design-dots .s-dot {
  background: rgba(255, 255, 255, 0.25);
}
.design-dots .s-dot.active {
  background: var(--honda-red);
}

/* ═══════════════ ACCESSORIES ═══════════════ */
.acc-section {
  padding: 64px 0;
  background: white;
}
.acc-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #eee;
  margin-bottom: 32px;
  overflow-x: auto;
  scrollbar-width: none;
}
.acc-tabs::-webkit-scrollbar {
  display: none;
}
.acc-tab {
  padding: 10px 22px;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  color: #bbb;
  transition: all 0.2s;
  white-space: nowrap;
}
.acc-tab.active,
.acc-tab:hover {
  color: var(--honda-red);
  border-bottom-color: var(--honda-red);
}
.acc-slider-wrap {
  position: relative;
  padding: 0 56px;
}
.acc-slider-outer {
  overflow: hidden;
}
.acc-track {
  display: flex;
  gap: 20px;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.acc-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
  color: var(--honda-black);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.acc-arr:hover {
  background: var(--honda-red);
  color: white;
  border-color: var(--honda-red);
}
.acc-arr:disabled {
  opacity: 0.28;
  cursor: default;
  pointer-events: none;
}
.acc-arr-l {
  left: 0;
}
.acc-arr-r {
  right: 0;
}
.acc-card {
  flex: 0 0 calc(25% - 15px);
  border: 1px solid #eee;
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
}
.acc-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: var(--honda-red);
}
.acc-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.acc-card:hover img {
  transform: scale(1.05);
}
.acc-card-body {
  padding: 12px 14px;
}
.acc-name {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--honda-black);
  margin-bottom: 3px;
}
.acc-price {
  font-size: 0.72rem;
  color: var(--honda-red);
  font-weight: 600;
}

/* ═══════════════ MESMERISING MOMENTS ═══════════════ */
.moments-section {
  padding: 64px 0;
  background: #0a0a0a;
}
.moments-eyebrow::before {
  background: var(--honda-red);
}
.moments-eyebrow span {
  color: var(--honda-red);
}
.moments-title {
  color: white;
}
.moments-sub {
  color: rgba(255, 255, 255, 0.4);
}
.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.moment-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.moment-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.75);
  transition: all 0.4s;
}
.moment-card:hover img {
  filter: brightness(0.5);
  transform: scale(1.04);
}
.moment-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.moment-play i {
  width: 54px;
  height: 54px;
  background: rgba(210, 20, 20, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  padding-left: 4px;
  transition: transform 0.25s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.moment-card:hover .moment-play i {
  transform: scale(1.15);
}
.moment-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-family: var(--font-condensed);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.tech-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f6f6;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 24px;
  }
  .h-btns {
    justify-content: center;
  }
  .hero-img-area {
    text-align: center;
    order: -1;
  }
  .car-main-img {
    max-height: 300px;
  }
  .color-bar {
    padding: 12px 24px;
  }
  .spec-ticker-inner {
    padding: 0 24px;
  }
  .rtb-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tech-grid {
    grid-template-columns: 1fr;
  }
  .tech-img-wrap {
    display: none;
  }
  .other-grid {
    grid-template-columns: 1fr 1fr;
  }
  .msn-btns {
    display: none;
  }
  .sensing-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .sensing-visual {
    display: none;
  }
  .acc-card {
    flex-basis: calc(50% - 10px);
  }
  .acc-slider-wrap {
    padding: 0 44px;
  }
  .moments-grid {
    grid-template-columns: 1fr 1fr;
  }
  .design-slide img {
    height: 360px;
  }
  .rtb-hd-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .rtb-grid,
  .other-grid {
    grid-template-columns: 1fr;
  }
  .spec-ticker-inner {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
  }
  .st-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .tech-nums {
    grid-template-columns: repeat(2, 1fr);
  }
  .pg2 {
    grid-template-columns: 1fr;
  }
  .slide-item img {
    height: 240px;
  }
  .exp-section,
  .rtb-section,
  .tech-section,
  .other-section,
  .faq-section {
    padding: 40px 0;
  }
  .acc-card {
    flex-basis: calc(100% - 0px);
  }
  .acc-slider-wrap {
    padding: 0 36px;
  }
  .moments-grid {
    grid-template-columns: 1fr;
  }
  .design-slide img {
    height: 260px;
  }
  .design-slide-cap {
    padding: 14px 20px;
    font-size: 0.68rem;
  }
  .sensing-title {
    font-size: 1.7rem;
  }
  .rtb-slide-body {
    padding: 24px 20px;
  }
  .rtb-slide-title {
    font-size: 1.3rem;
  }
}
