

/* ── Elevate Subnav ── */
.elv-subnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  transform: translateY(-100%);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s;
}
.elv-subnav.scrolled {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.esn-inner {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 32px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}
.esn-inner::-webkit-scrollbar {
  display: none;
}
.esn-brand {
  display: flex;
  flex-direction: column;
  padding-right: 18px;
  flex-shrink: 0;
  cursor: default;
  line-height: 1.15;
}
.esn-intro {
  font-size: 0.52rem;
  letter-spacing: 2px;
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
}
.esn-name {
  font-family: var(--font-display), sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #111;
  line-height: 1;
}
.esn-drop {
  font-size: 0.55rem;
  color: #aaa;
  margin-left: 4px;
}
.esn-sep {
  width: 1px;
  height: 22px;
  background: #ddd;
  margin: 0 14px;
  flex-shrink: 0;
}
.esn-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: #666;
  text-decoration: none;
  padding: 0 12px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
  flex-shrink: 0;
}
.esn-link:hover,
.esn-link.active {
  color: #111;
  border-bottom-color: #111;
}
.esn-top {
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  padding: 0 4px;
  color: #888;
  font-size: 0.6rem;
  font-weight: 500;
  transition: color 0.2s;
}
.esn-top i {
  font-size: 0.85rem;
  color: #e60121;
}
.esn-top:hover {
  color: #111;
}

/* ── Hero Slider ── */
.elv-hero {
  position: relative;
  width: 100%;
  background: #0a0a0a;
  overflow: hidden;
}
.elv-slide {
  display: none;
  position: relative;
  width: 100%;
  min-height: 86vh;
  background-size: cover;
  background-position: center;
}
.elv-slide.active {
  display: block;
}
.elv-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.1) 55%,
    transparent 100%
  );
}
.elh-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 2;
}
.elh-text {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(2rem, 5.5vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.elh-cng {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid #2a8b2a;
  border-radius: 4px;
  padding: 6px 14px 6px 10px;
  margin-top: 8px;
}
.elh-cng-govtbox {
  background: #e60121;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  letter-spacing: 0.5px;
  border-radius: 2px;
}
.elh-cng-leaf {
  color: #2a8b2a;
  font-size: 1rem;
}
.elh-cng-text {
  display: flex;
  flex-direction: column;
}
.elh-cng-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #2a8b2a;
  letter-spacing: 0.5px;
}
.elh-cng-sub {
  font-size: 0.65rem;
  color: #333;
}
.elh-callback {
  position: absolute;
  bottom: 10%;
  left: 5%;
  z-index: 2;
}
.elh-callback button {
  background: #e60121;
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 12px 28px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.elh-callback button:hover {
  background: #c40000;
}
.elh-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: none;
  border: none;
  color: #e60121;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 12px 10px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.elh-arrow:hover {
  opacity: 1;
}
.elh-arrow.left {
  left: 12px;
}
.elh-arrow.right {
  right: 12px;
}
.elh-dots {
  position: absolute;
  bottom: 3.5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.elh-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.elh-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* ── Spec Bar ── */
.elv-spec-bar {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  background: #f0f0f0;
  border-bottom: 1px solid #ddd;
}
.esb-item {
  padding: 20px 24px;
  border-right: 1px solid #ddd;
}
.esb-item:last-child {
  border-right: none;
}
.esb-label {
  font-size: 0.68rem;
  color: #555;
  margin-bottom: 4px;
  font-weight: 400;
}
.esb-val {
  font-family: var(--font-display), sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  color: #111;
  letter-spacing: -0.5px;
  line-height: 1;
}
.esb-sub {
  font-size: 0.68rem;
  color: #777;
  margin-top: 2px;
}
.esb-btns {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.esb-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1.5px solid #ccc;
  border-radius: 40px;
  padding: 5px 14px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #555;
  background: none;
  cursor: pointer;
  transition: all 0.2s;
}
.esb-btn i {
  font-size: 0.7rem;
  color: #e60121;
}
.esb-btn:hover {
  border-color: #e60121;
  color: #e60121;
}

/* ── Section Title Style (Elevate branded) ── */
.elv-sec-head {
  padding: 48px 40px 28px;
}
.elv-sec-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.elv-sec-title h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #111;
  line-height: 1;
}
.elv-slash {
  width: 36px;
  height: 28px;
  position: relative;
  flex-shrink: 0;
}
.elv-slash::before,
.elv-slash::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 14px;
  height: 20px;
  border-radius: 1px;
}
.elv-slash::before {
  background: #e60121;
  opacity: 0.6;
  left: 0;
  transform: skewX(-15deg);
}
.elv-slash::after {
  background: #e60121;
  left: 10px;
  transform: skewX(-15deg);
}
.elv-sec-sub {
  font-size: 0.82rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.elv-sec-desc {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.65;
  max-width: 860px;
}

/* ── Experience Section ── */
.elv-exp {
  background: #fff;
}
.elv-exp-tabs {
  display: flex;
  gap: 24px;
  padding: 0 40px 0;
  border-bottom: 1px solid #e8e8e8;
}
.elv-exp-tab {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ccc;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 10px 0 10px;
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}
.elv-exp-tab.active {
  color: #111;
  border-bottom-color: #e60121;
}
.elv-exp-tab:hover {
  color: #555;
}
.elv-exp-panel {
  display: none;
}
.elv-exp-panel.active {
  display: flex;
  align-items: center;
  min-height: 480px;
}
.elv-exp-img {
  flex: 1;
  min-width: 0;
  padding: 24px 0 24px 0;
}
.elv-exp-img img {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  display: block;
}
.elv-exp-info {
  width: 500px;
  flex-shrink: 0;
  padding: 32px 40px 32px 20px;
}
.elv-exp-quote {
  font-size: clamp(0.88rem, 1.5vw, 1.05rem);
  color: #333;
  line-height: 1.75;
  text-align: center;
  margin-bottom: 28px;
}
.elv-color-label {
  font-size: 0.78rem;
  color: #555;
  margin-bottom: 8px;
  text-align: center;
}
.elv-color-label strong {
  color: #111;
}
.elv-swatches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.elv-sw {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.elv-sw:hover {
  transform: scale(1.18);
}
.elv-sw.active {
  box-shadow: 0 0 0 2px #e60121, 0 0 0 4px #fff, 0 0 0 6px #e60121;
}

/* ── Reasons to Buy ── */
.elv-rtb {
  background: #fff;
}
.elv-rtb-slider {
  position: relative;
  overflow: hidden;
}
.elv-rtb-track {
  display: flex;
  transition: transform 0.4s ease;
}
.elv-rtb-slide {
  flex: 0 0 100%;
  position: relative;
}
.elv-rtb-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.elv-rtb-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  padding: 32px 20px 20px;
}
.elv-rtb-cap-name {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}
.elv-rtb-cap-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  margin-top: 4px;
}
.elv-rtb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #e60121;
  transition: background 0.2s;
  z-index: 2;
}
.elv-rtb-nav:hover {
  background: #fff;
}
.elv-rtb-nav.left {
  left: 16px;
}
.elv-rtb-nav.right {
  right: 16px;
}
.elv-rtb-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  border-top: 1px solid #e8e8e8;
  flex-wrap: wrap;
  gap: 12px;
}
.elv-rtb-btns {
  display: flex;
  gap: 10px;
}
.elv-rtb-btn-outline {
  padding: 10px 22px;
  border: 1.5px solid #111;
  background: none;
  color: #111;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s;
}
.elv-rtb-btn-outline:hover {
  background: #111;
  color: #fff;
}
.elv-rtb-btn-fill {
  padding: 10px 22px;
  background: #e60121;
  border: 1.5px solid #e60121;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.2s;
}
.elv-rtb-btn-fill:hover {
  background: #c40000;
  border-color: #c40000;
}
.elv-rtb-pagi {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: #333;
}
.elv-rtb-pagi button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  background: none;
  cursor: pointer;
  font-size: 0.78rem;
  color: #e60121;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.elv-rtb-pagi button:hover {
  border-color: #e60121;
  background: #e60121;
  color: #fff;
}

/* ── Honda SENSING ── */
.elv-sensing {
  background: #fff;
}
.elv-sensing-hero {
  width: 100%;
  max-height: 65vh;
  object-fit: cover;
  display: block;
}
.elv-sensing-slider {
  position: relative;
  overflow: hidden;
}
.elv-sensing-track {
  display: flex;
  transition: transform 0.4s ease;
}
.elv-sensing-slide {
  flex: 0 0 100%;
}
.elv-sensing-slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.elv-sensing-info {
  padding: 16px 40px 6px;
}
.elv-sensing-cap-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #111;
}
.elv-sensing-cap-desc {
  font-size: 0.8rem;
  color: #555;
  margin-top: 4px;
}
.elv-sensing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  flex-wrap: wrap;
  gap: 12px;
}
.elv-sensing-pagi {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: #333;
}
.elv-sensing-pagi button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  background: none;
  cursor: pointer;
  font-size: 0.78rem;
  color: #e60121;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.elv-sensing-pagi button:hover {
  border-color: #e60121;
  background: #e60121;
  color: #fff;
}

/* ── Design Section ── */
.elv-design {
  background: #fff;
}
.elv-design-tabs {
  display: flex;
  gap: 0;
  padding: 0 40px;
  border-bottom: 1px solid #e8e8e8;
  overflow-x: auto;
  scrollbar-width: none;
}
.elv-design-tabs::-webkit-scrollbar {
  display: none;
}
.elv-design-tab {
  font-size: 0.88rem;
  font-weight: 700;
  color: #bbb;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 12px 16px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    color 0.2s,
    border-color 0.2s;
  flex-shrink: 0;
}
.elv-design-tab.active {
  color: #111;
  border-bottom-color: #e60121;
}
.elv-design-tab:hover {
  color: #555;
}
.elv-design-panel {
  display: none;
  position: relative;
}
.elv-design-panel.active {
  display: block;
}
.elv-design-slide {
  position: relative;
  overflow: hidden;
}
.elv-design-track {
  display: flex;
  transition: transform 0.4s ease;
}
.elv-design-img {
  flex: 0 0 100%;
}
.elv-design-img img {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  display: block;
}
.elv-design-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}
.elv-design-caption {
  color: #fff;
}
.elv-design-cap-name {
  font-size: 0.92rem;
  font-weight: 700;
}
.elv-design-cap-desc {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 3px;
}
.elv-design-right-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s;
  flex-shrink: 0;
}
.elv-design-right-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* ── Technology Section ── */
.elv-tech {
  background: #fff;
}
.elv-tech-tabs {
  display: flex;
  gap: 0;
  padding: 0 40px;
  border-bottom: 1px solid #e8e8e8;
  overflow-x: auto;
  scrollbar-width: none;
}
.elv-tech-tabs::-webkit-scrollbar {
  display: none;
}
.elv-tech-tab {
  font-size: 0.88rem;
  font-weight: 700;
  color: #bbb;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 12px 16px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    color 0.2s,
    border-color 0.2s;
  flex-shrink: 0;
}
.elv-tech-tab.active {
  color: #111;
  border-bottom-color: #e60121;
}
.elv-tech-tab:hover {
  color: #555;
}
.elv-tech-panel {
  display: none;
  padding: 32px 40px;
}
.elv-tech-panel.active {
  display: block;
}
.elv-tech-desc {
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 28px;
  max-width: 860px;
}
.elv-tech-img-wrap {
  text-align: center;
  margin-bottom: 28px;
}
.elv-tech-img {
  max-height: 340px;
  width: 100%;
  object-fit: contain;
  display: inline-block;
}
.elv-tech-badge {
  display: inline-block;
  margin-bottom: 20px;
}
.elv-tech-badge img {
  max-height: 48px;
}
.elv-tech-specs-row {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid #e8e8e8;
  padding-top: 20px;
  flex-wrap: wrap;
}
.elv-tech-fuel {
  background: #e60121;
  color: #fff;
  border-radius: 40px;
  padding: 6px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-right: 28px;
  flex-shrink: 0;
}
.elv-tech-stat {
  flex: 1;
  min-width: 120px;
}
.elv-tech-stat-label {
  font-size: 0.65rem;
  color: #888;
  text-transform: capitalize;
  margin-bottom: 2px;
}
.elv-tech-stat-val {
  font-family: var(--font-display), sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #111;
  line-height: 1.1;
}
.elv-tech-stat-unit {
  font-size: 0.65rem;
  color: #888;
}
.elv-tech-btns {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.elv-tech-btn-out {
  padding: 10px 22px;
  border: 1.5px solid #e60121;
  background: none;
  color: #e60121;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s;
}
.elv-tech-btn-out:hover {
  background: #e60121;
  color: #fff;
}
.elv-tech-btn-fill {
  padding: 10px 22px;
  background: #e60121;
  border: 1.5px solid #e60121;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.2s;
}
.elv-tech-btn-fill:hover {
  background: #c40000;
  border-color: #c40000;
}

/* ── Accessories ── */
.elv-acc {
  background: #fff;
}
.elv-acc-tabs {
  display: flex;
  gap: 0;
  padding: 0 40px;
  border-bottom: 2px solid #e8e8e8;
  overflow-x: auto;
  scrollbar-width: none;
}
.elv-acc-tabs::-webkit-scrollbar {
  display: none;
}
.elv-acc-tab {
  font-size: 0.8rem;
  font-weight: 700;
  color: #bbb;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 12px 16px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    color 0.2s,
    border-color 0.2s;
  flex-shrink: 0;
  margin-bottom: -2px;
}
.elv-acc-tab.active {
  color: #111;
  border-bottom-color: #e60121;
}
.elv-acc-tab:hover {
  color: #555;
}
.elv-acc-panel {
  display: none;
}
.elv-acc-panel.active {
  display: block;
}
.elv-acc-row {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 20px 40px 0;
}
.elv-acc-row::-webkit-scrollbar {
  display: none;
}
.elv-acc-card {
  flex: 0 0 calc(16.66% - 2px);
  min-width: 200px;
  position: relative;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  aspect-ratio: 1/0.85;
  margin: 5px;
}
.elv-acc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.82;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.elv-acc-card:hover img {
  transform: scale(1.06);
  opacity: 0.65;
}
.elv-acc-name {
  position: absolute;
  bottom: 12px;
  left: 14px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}
.elv-acc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid #e8e8e8;
  margin-top: 16px;
}
.elv-acc-btns {
  display: flex;
  gap: 10px;
}
.elv-acc-btn-out {
  padding: 9px 20px;
  border: 1.5px solid #111;
  background: none;
  color: #111;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s;
}
.elv-acc-btn-out:hover {
  background: #111;
  color: #fff;
}
.elv-acc-btn-fill {
  padding: 9px 20px;
  background: #111;
  border: 1.5px solid #111;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.2s;
}
.elv-acc-btn-fill:hover {
  background: #333;
  border-color: #333;
}
.elv-acc-pagi {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: #333;
}
.elv-acc-pagi button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  background: none;
  cursor: pointer;
  font-size: 0.72rem;
  color: #e60121;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.elv-acc-pagi button:hover {
  border-color: #e60121;
  background: #e60121;
  color: #fff;
}

/* ── FAQs ── */
.elv-faq {
  background: #fff;
  padding: 60px 0 80px;
}
.elv-faq-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.elv-faq-item {
  border-bottom: 1px solid #e8e8e8;
}
.elv-faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-size: 0.94rem;
  color: #111;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}
.elv-faq-q i {
  color: #999;
  font-size: 0.8rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.elv-faq-q.open i {
  transform: rotate(180deg);
}
.elv-faq-a {
  display: none;
  font-size: 0.87rem;
  color: #555;
  line-height: 1.78;
  padding: 0 0 18px;
}
.elv-faq-a.open {
  display: block;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .elv-spec-bar {
    grid-template-columns: 1fr 1fr;
  }
  .esb-item:nth-child(2) {
    border-right: none;
  }
  .elv-exp-panel.active {
    flex-direction: column;
  }
  .elv-exp-info {
    width: 100%;
    padding: 20px 24px;
  }
  .elv-sec-head {
    padding: 36px 24px 20px;
  }
  .elv-exp-tabs,
  .elv-design-tabs,
  .elv-tech-tabs,
  .elv-acc-tabs {
    padding: 0 16px;
  }
  .elv-tech-panel,
  .elv-acc-footer,
  .elv-sensing-footer,
  .elv-rtb-footer {
    padding: 16px 20px;
  }
  .elv-acc-row {
    padding: 16px 16px 0;
  }
  .elv-acc-card {
    flex: 0 0 calc(50% - 2px);
    min-width: 160px;
  }
  .elv-rtb-slide img {
    height: 320px;
  }
  .elv-design-img img {
    max-height: 380px;
  }
}
@media (max-width: 480px) {
  .elv-spec-bar {
    grid-template-columns: 1fr;
  }
  .esb-item {
    border-right: none;
  }
  .elh-text {
    font-size: 2rem;
  }
  .elv-slide {
    min-height: 25vh;

}
.elh-callback button {

    padding: 10px 10px;
    font-size: 0.50rem;
 
}
}
section {
    padding: 20px 0;
}