:root {
  --bg: #030405;
  --bg-soft: #080a0c;
  --text: #f7f7f4;
  --muted: #c8c8c4;
  --line: rgba(255, 255, 255, 0.09);
  --gold: #d7a55b;
  --gold-light: #f1cf8b;
  --gold-dark: #9b6830;
}

@font-face {
  font-family: "IRANSansLocal";
  src: url("fonts/IRANSansWeb.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 22%, rgba(24, 31, 35, 0.36), transparent 32%),
    radial-gradient(circle at 74% 46%, rgba(38, 27, 19, 0.23), transparent 34%),
    var(--bg);
  font-family: "IRANSansLocal", "IRANSansWeb", "IRANSans", Tahoma, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.hero-media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-video[hidden] {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 4, 5, 0.91);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  width: min(100%, 1672px);
  min-height: 114px;
  margin: 0 auto;
  padding: 0 clamp(26px, 3vw, 42px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: var(--gold-light);
  font-size: clamp(22px, 1.55vw, 28px);
  font-weight: 500;
  white-space: nowrap;
}

.toyota-mark {
  display: grid;
  width: 76px;
  height: 52px;
  place-items: center;
}

.toyota-mark svg {
  width: 76px;
  height: 52px;
  fill: none;
  stroke: #f1f1ef;
  stroke-width: 5.4;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 48px);
  color: #f2f2f0;
  font-size: clamp(15px, 1.12vw, 19px);
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 13px 0;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transition: width 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.visit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 143px;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 600;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.visit-button:hover {
  color: #15100a;
  background: var(--gold-light);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  min-height: calc(100vh - 114px);
  padding: clamp(36px, 4vh, 40px) clamp(24px, 2.4vw, 39px) clamp(70px, 8vh, 90px);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(530px, 960px) minmax(420px, 540px);
  align-items: start;
  gap: clamp(60px, 5.7vw, 96px);
  width: min(100%, 1595px);
  margin: 0 auto;
  direction: ltr;
}

.hero-copy {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: min(100%, 540px);
  padding-top: clamp(60px, 9vh, 92px);
  direction: rtl;
  text-align: center;
}

.model-name {
  margin: 0 0 14px;
  color: transparent;
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(52px, 5.2vw, 86px);
  font-weight: 900;
  line-height: 1.08;
}

.hero h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(38px, 3.7vw, 60px);
  font-weight: 900;
  line-height: 1.58;
}

.gold-line {
  display: block;
  width: 160px;
  height: 2px;
  margin: 34px auto 34px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-description {
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(20px, 1.45vw, 26px);
  font-weight: 400;
  line-height: 2.12;
}

.video-card {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 960 / 698;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: #111;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.video-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent 27%, transparent 62%, rgba(0, 0, 0, 0.54)),
    radial-gradient(circle at 20% 100%, rgba(255, 214, 141, 0.13), transparent 34%);
  pointer-events: none;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.video-badge {
  position: absolute;
  top: clamp(18px, 3vw, 25px);
  left: clamp(18px, 3vw, 25px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 278px;
  min-height: 82px;
  padding: 0 20px 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.92);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.34);
  font-size: clamp(14px, 1.18vw, 18px);
  font-weight: 700;
  cursor: pointer;
}

.badge-play {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid #f5f5f2;
  border-radius: 50%;
}

.badge-play::before,
.play-icon::before {
  display: block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  content: "";
  transform: translateX(1px);
}

.video-controls {
  position: absolute;
  right: clamp(28px, 3.8vw, 43px);
  bottom: clamp(25px, 3.2vw, 38px);
  left: clamp(28px, 3.8vw, 43px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(17px, 2.1vw, 27px);
  direction: ltr;
}

.control-button,
.icon-button {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.control-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
}

.play-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
}

.play-icon::before {
  border-top-width: 15px;
  border-bottom-width: 15px;
  border-right-width: 22px;
}

.play-toggle.is-playing .play-icon::before {
  width: 20px;
  height: 28px;
  border: 0;
  border-right: 7px solid #fff;
  border-left: 7px solid #fff;
  content: "";
}

.timeline-wrap {
  display: grid;
  flex: 1 1 auto;
  min-width: 0;
  gap: 8px;
}

.timeline {
  position: relative;
  height: 5px;
  overflow: visible;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.timeline-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 12%;
  border-radius: inherit;
  background: var(--gold-light);
}

.timeline-thumb {
  position: absolute;
  top: 50%;
  left: 12%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-light);
  transform: translate(-50%, -50%);
}

.time-label {
  color: #fff;
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1;
  text-align: left;
}

.icon-button {
  position: relative;
  width: 34px;
  height: 34px;
}

.volume-button::before {
  position: absolute;
  top: 9px;
  left: 1px;
  width: 10px;
  height: 16px;
  border-radius: 2px;
  background: #fff;
  content: "";
}

.volume-button::after {
  position: absolute;
  top: 4px;
  left: 10px;
  width: 15px;
  height: 24px;
  border: 4px solid #fff;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  content: "";
}

.settings-button::before {
  position: absolute;
  inset: 5px;
  border: 7px dotted #fff;
  border-radius: 50%;
  content: "";
}

.settings-button::after {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.fullscreen-button::before,
.fullscreen-button::after {
  position: absolute;
  inset: 4px;
  border: 4px solid #fff;
  content: "";
}

.fullscreen-button::before {
  clip-path: polygon(0 0, 39% 0, 39% 16%, 16% 16%, 16% 39%, 0 39%, 0 0, 61% 0, 100% 0, 100% 39%, 84% 39%, 84% 16%, 61% 16%);
}

.fullscreen-button::after {
  clip-path: polygon(0 61%, 16% 61%, 16% 84%, 39% 84%, 39% 100%, 0 100%, 0 61%, 61% 84%, 84% 84%, 84% 61%, 100% 61%, 100% 100%, 61% 100%);
}

.faq-guide {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 114px;
  padding: 30px clamp(24px, 3.3vw, 52px) 32px;
  background:
    linear-gradient(180deg, #030405 0%, #020303 100%);
}

.faq-guide::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 78% 5%, rgba(215, 165, 91, 0.11), transparent 28%),
    radial-gradient(circle at 16% 44%, rgba(255, 255, 255, 0.05), transparent 30%);
  pointer-events: none;
}

.faq-bg-car {
  position: absolute;
  top: 0;
  left: 0;
  width: min(43vw, 640px);
  min-width: 410px;
  opacity: 0.72;
  pointer-events: none;
}

.faq-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1432px);
  margin: 0 auto;
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  width: min(100%, 720px);
  margin-left: auto;
  color: var(--gold-light);
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 800;
}

.section-kicker strong {
  padding-left: 16px;
  border-left: 1px solid rgba(215, 165, 91, 0.55);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1;
}

.faq-heading {
  width: min(100%, 720px);
  margin: 20px 0 42px;
  margin-left: auto;
  text-align: right;
}

.faq-heading h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 900;
  line-height: 1.35;
}

.faq-heading p {
  margin: 0;
  color: rgba(247, 247, 244, 0.62);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.9;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  direction: rtl;
}

.question-card {
  position: relative;
  display: flex;
  min-height: 238px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 29px 28px 22px;
  border: 1px solid rgba(215, 165, 91, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.86) 40%, rgba(0, 0, 0, 0.98) 60%, rgba(0, 0, 0, 0.99) 100%),
    var(--card-image) left center / 58% 100% no-repeat,
    #070809;
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.45);
}

.question-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%);
  pointer-events: none;
}

.question-card-wide {
  min-height: 214px;
}

.question-card:nth-child(11) {
  grid-column: span 2;
}

.question-meta {
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: flex-end;
  color: var(--gold-light);
  direction: rtl;
}

.question-meta span {
  font-size: clamp(20px, 1.5vw, 26px);
  font-weight: 900;
  line-height: 1;
}

.question-card h3 {
  position: relative;
  z-index: 1;
  width: min(100%, 225px);
  margin: auto 0 24px;
  color: var(--text);
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 600;
  line-height: 1.85;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.82);
}

.question-card-wide h3 {
  width: min(100%, 265px);
}

.card-more {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 16px;
  padding: 0;
  border: 0;
  color: var(--gold-light);
  background: transparent;
  font-size: 15px;
  font-weight: 700;
  cursor: default;
}

.card-more::after {
  content: "←";
  font-size: 22px;
  line-height: 1;
}

.rating {
  position: relative;
  z-index: 1;
  margin: -12px 0 10px;
  color: var(--gold-light);
  font-size: 20px;
  letter-spacing: 4px;
  direction: ltr;
}

.fit-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 114px;
  min-height: 1300px;
  padding: 0 clamp(28px, 3vw, 54px) 120px;
  background:
    radial-gradient(circle at 20% 35%, rgba(26, 38, 40, 0.24), transparent 34%),
    linear-gradient(180deg, #030607 0%, #041010 45%, #030607 100%);
}

.fit-section::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 7%),
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.05), transparent 35%);
  pointer-events: none;
}

.fit-hero {
  --fit-hero-image: url("ax/fit/fit-hero-bg.png");
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  width: min(100%, 1536px);
  min-height: 560px;
  margin: 0 auto;
  padding-top: 122px;
  background:
    linear-gradient(90deg, rgba(4, 8, 9, 0.05) 0%, rgba(4, 8, 9, 0.1) 42%, rgba(4, 8, 9, 0.88) 72%, rgba(4, 8, 9, 0.99) 100%),
    var(--fit-hero-image) left top / auto 100% no-repeat;
}

.fit-copy {
  width: min(100%, 430px);
  margin-left: auto;
  text-align: right;
}

.fit-copy h2 {
  margin: 0 0 28px;
  color: var(--text);
  font-size: clamp(44px, 4vw, 66px);
  font-weight: 900;
  line-height: 1.35;
}

.fit-copy h2 .fit-title-highlight {
  color: var(--gold-light);
}

.fit-copy p {
  width: min(100%, 390px);
  margin: 0;
  color: rgba(247, 247, 244, 0.78);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 2.1;
}

.fit-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(100%, 1180px);
  margin: -12px auto 0;
  direction: rtl;
}

.fit-card {
  position: relative;
  min-height: 650px;
  padding: 74px 42px 42px;
  border: 1px solid rgba(247, 247, 244, 0.42);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025)),
    rgba(10, 16, 17, 0.78);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.34), 0 20px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.fit-card-icon {
  position: absolute;
  top: -38px;
  right: 50%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  background: rgba(10, 13, 13, 0.96);
  color: var(--gold-light);
  transform: translateX(50%);
}

.fit-check::before,
.fit-check::after {
  position: absolute;
  content: "";
  background: var(--gold-light);
  border-radius: 2px;
}

.fit-check::before {
  width: 14px;
  height: 5px;
  transform: translate(-8px, 8px) rotate(45deg);
}

.fit-check::after {
  width: 36px;
  height: 5px;
  transform: translate(6px, 0) rotate(-45deg);
}

.fit-cross::before,
.fit-cross::after {
  position: absolute;
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: var(--gold-light);
  content: "";
}

.fit-cross::before {
  transform: rotate(45deg);
}

.fit-cross::after {
  transform: rotate(-45deg);
}

.fit-alert {
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
}

.fit-card h3 {
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(247, 247, 244, 0.11);
  color: var(--text);
  font-size: clamp(22px, 1.9vw, 27px);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}

.fit-card h3::first-letter {
  color: inherit;
}

.fit-card h3 {
  text-wrap: balance;
}

.fit-card h3,
.weak-item strong {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.fit-card h3 {
  color: var(--text);
}

.fit-card h3::selection,
.fit-copy h2::selection {
  background: rgba(215, 165, 91, 0.35);
}

.fit-card ul {
  display: grid;
  gap: 23px;
  margin: 0;
  padding: 0;
  color: rgba(247, 247, 244, 0.83);
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.9;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-right: 24px;
}

.fit-card li::before {
  position: absolute;
  top: 14px;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  content: "";
}

.fit-bottom-icon {
  position: absolute;
  right: 50%;
  bottom: 46px;
  width: 70px;
  height: 70px;
  transform: translateX(50%);
}

.family-icon::before,
.person-icon::before {
  position: absolute;
  inset: 0;
  color: var(--gold-light);
  font-size: 58px;
  line-height: 1;
  text-align: center;
}

.family-icon::before {
  content: "♙♙";
  letter-spacing: -20px;
}

.person-icon::before {
  content: "♙";
}

.weak-card {
  padding-left: 36px;
  padding-right: 36px;
}

.weak-card h3 {
  color: var(--gold-light);
}

.weak-list {
  display: grid;
  gap: 0;
}

.weak-item {
  position: relative;
  min-height: 102px;
  padding: 13px 0 13px 68px;
  border-bottom: 1px solid rgba(247, 247, 244, 0.13);
}

.weak-item:last-child {
  border-bottom: 0;
}

.weak-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 900;
  line-height: 1.45;
}

.weak-item p {
  margin: 0;
  color: rgba(247, 247, 244, 0.72);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.8;
}

.weak-icon {
  position: absolute;
  top: 26px;
  left: 0;
  width: 46px;
  height: 46px;
  color: var(--gold-light);
}

.weak-icon::before {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(215, 165, 91, 0.78);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 24px;
  line-height: 1;
}

.speed-icon::before {
  content: "◴";
}

.sound-icon::before {
  content: "◁";
}

.trim-icon::before {
  content: "✺";
}

.fuel-icon::before {
  content: "▯";
}

.star-icon::before {
  content: "☆";
  font-size: 36px;
}

.trust-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 114px;
  padding: 10px clamp(14px, 2.7vw, 44px) 24px;
  background:
    radial-gradient(circle at 50% 45%, rgba(29, 42, 45, 0.38), transparent 42%),
    linear-gradient(180deg, #030607 0%, #06090a 100%);
}

.trust-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 12%, transparent 88%, rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 35% 30%, rgba(215, 165, 91, 0.08), transparent 28%);
  pointer-events: none;
}

.trust-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1508px);
  margin: 0 auto;
}

.trust-hero {
  display: grid;
  grid-template-columns: minmax(520px, 715px) minmax(440px, 625px);
  align-items: center;
  gap: clamp(46px, 5vw, 76px);
  padding: 32px 30px 24px;
  direction: ltr;
}

.trust-copy {
  grid-column: 2;
  direction: rtl;
  text-align: center;
}

.trust-video {
  grid-column: 1;
  grid-row: 1;
}

.trust-step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
  color: var(--gold-light);
}

.trust-step span {
  width: 82px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
}

.trust-step span:last-child {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.trust-step strong {
  font-size: 32px;
  font-weight: 900;
}

.trust-copy h2 {
  margin: 0 0 20px;
  color: var(--text);
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 900;
  line-height: 1.28;
}

.trust-copy h2 .trust-title-highlight {
  color: var(--gold-light);
}

.trust-copy > p {
  margin: 0 auto 22px;
  color: rgba(247, 247, 244, 0.72);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 2;
}

.trust-note {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 22px;
  min-height: 94px;
  padding: 16px 22px;
  border: 1px solid rgba(215, 165, 91, 0.42);
  border-radius: 8px;
  background: rgba(5, 8, 9, 0.72);
  text-align: right;
}

.trust-note p {
  margin: 0;
  color: rgba(247, 247, 244, 0.86);
  font-size: 17px;
  line-height: 1.9;
}

.trust-image-icon {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.trust-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 715 / 411;
  border: 1px solid var(--gold);
  border-radius: 14px;
  background: #111;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.trust-video img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-media-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-media-video[hidden] {
  display: none;
}

.trust-video::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.52));
  content: "";
  pointer-events: none;
}

.trust-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 68px;
  height: 68px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
}

.trust-play::before,
.trust-mini-play::before {
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid #fff;
  content: "";
  transform: translateX(3px);
}

.trust-video-controls {
  position: absolute;
  right: 22px;
  bottom: 17px;
  left: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.trust-video-controls button {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
}

.trust-mini-play::before {
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 15px;
}

.trust-line {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.trust-line i {
  display: block;
  width: 12%;
  height: 100%;
  border-radius: inherit;
  background: #fff;
}

.trust-volume::before,
.trust-gear::before,
.trust-full::before {
  color: #fff;
  font-size: 25px;
  line-height: 1;
}

.trust-volume::before { content: "◖"; }
.trust-gear::before { content: "⚙"; }
.trust-full::before { content: "□"; }

.trust-read-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 14px 0 18px;
  color: var(--text);
}

.trust-read-title span {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
}

.trust-read-title span:last-child {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.trust-read-title p {
  margin: 0;
  font-size: clamp(20px, 1.9vw, 27px);
  font-weight: 700;
}

.trust-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  padding: 0 2px;
}

.trust-card {
  position: relative;
  min-height: 300px;
  padding: 22px 28px 18px;
  border: 1px solid rgba(215, 165, 91, 0.42);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 100%, rgba(215, 165, 91, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(7, 11, 12, 0.78);
  text-align: center;
}

.trust-card-number {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--gold-light);
  font-size: 20px;
  font-weight: 500;
}

.trust-card-icon {
  width: 58px;
  height: 58px;
  margin: 12px auto 18px;
  object-fit: contain;
}

.trust-card h3 {
  margin: 0 0 15px;
  color: var(--text);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 900;
  line-height: 1.45;
}

.trust-card p {
  margin: 0 0 18px;
  color: rgba(247, 247, 244, 0.66);
  font-size: 16px;
  line-height: 1.85;
}

.trust-card button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: 0;
  color: var(--gold-light);
  background: transparent;
  font-size: 16px;
  font-weight: 800;
}

.trust-card button::after {
  content: "←";
  font-size: 22px;
}

.trust-summary {
  display: grid;
  grid-template-columns: 70px 170px 1fr;
  align-items: center;
  gap: 22px;
  min-height: 84px;
  margin-top: 16px;
  padding: 16px 210px 16px 26px;
  border: 1px solid rgba(215, 165, 91, 0.36);
  border-radius: 14px;
  background: rgba(5, 7, 8, 0.74);
}

.summary-shield-img {
  width: 45px;
  height: 51px;
  object-fit: contain;
}

.trust-summary strong {
  color: var(--gold-light);
  font-size: 21px;
  font-weight: 900;
}

.trust-summary p {
  margin: 0;
  color: rgba(247, 247, 244, 0.82);
  font-size: 17px;
  line-height: 1.9;
}

.battery-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 114px;
  padding: 60px clamp(26px, 3vw, 28px) 50px;
  background:
    radial-gradient(circle at 82% 12%, rgba(215, 165, 91, 0.18), transparent 25%),
    radial-gradient(circle at 38% 58%, rgba(36, 47, 51, 0.24), transparent 38%),
    linear-gradient(180deg, #020405 0%, #050708 100%);
}

.battery-inner {
  width: min(100%, 1536px);
  margin: 0 auto;
}

.battery-layout {
  display: grid;
  grid-template-columns: minmax(820px, 950px) minmax(390px, 1fr);
  align-items: center;
  gap: clamp(34px, 4vw, 64px);
  justify-content: start;
  direction: ltr;
}

.battery-copy {
  grid-column: 2;
  grid-row: 1;
  direction: rtl;
  text-align: center;
  justify-self: center;
  align-self: start;
  width: min(100%, 540px);
  padding-top: 4px;
}

.battery-number {
  position: relative;
  display: inline-grid;
  min-width: 230px;
  margin-bottom: 24px;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: clamp(82px, 8vw, 132px);
  font-weight: 700;
  line-height: 0.9;
  text-shadow: 0 0 30px rgba(215, 165, 91, 0.55);
}

.battery-number::before,
.battery-number::after {
  position: absolute;
  top: 50%;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
  content: "";
}

.battery-number::before {
  right: 100%;
}

.battery-number::after {
  left: 100%;
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.battery-copy h2 {
  margin: 0 0 22px;
  color: var(--text);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.36;
}

.battery-copy h2 .battery-title-highlight {
  color: var(--gold);
}

.battery-copy > p {
  max-width: 560px;
  margin: 0 auto 48px;
  color: rgba(247, 247, 244, 0.66);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 2;
}

.battery-list-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
  color: var(--gold);
}

.battery-list-title span {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.battery-list-title strong {
  font-size: clamp(20px, 1.65vw, 24px);
}

.battery-topics {
  display: grid;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.battery-topics li {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 18px;
  min-height: 56px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.battery-topics span {
  color: var(--gold);
  font-size: 17px;
}

.battery-topics p {
  margin: 0;
  color: rgba(247, 247, 244, 0.86);
  font-size: 17px;
  text-align: right;
}

.battery-topics img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.battery-video {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 950 / 720;
  border: 1px solid rgba(215, 165, 91, 0.64);
  border-radius: 16px;
  background: #111;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
}

.battery-video img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.battery-media-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.battery-media-video[hidden] {
  display: none;
}

.battery-video::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(0, 0, 0, 0.56));
  content: "";
  pointer-events: none;
}

.battery-play {
  position: absolute;
  top: 50%;
  left: 45%;
  z-index: 2;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.58);
}

.battery-play::before,
.battery-mini-play::before {
  width: 0;
  height: 0;
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
  border-left: 28px solid #fff;
  content: "";
  transform: translateX(4px);
}

.battery-play,
.battery-controls {
  display: none;
}

.battery-controls {
  position: absolute;
  right: 34px;
  bottom: 27px;
  left: 34px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 18px;
}

.battery-controls button {
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  padding: 0;
  border: 0;
  background: transparent;
}

.battery-mini-play::before {
  display: block;
  border-top-width: 12px;
  border-bottom-width: 12px;
  border-left-width: 18px;
}

.battery-progress {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.battery-progress i {
  display: block;
  width: 3%;
  height: 100%;
  border-radius: inherit;
  background: var(--gold-light);
}

.battery-volume::before,
.battery-gear::before,
.battery-full::before {
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.battery-volume::before { content: "◖"; }
.battery-gear::before { content: "⚙"; }
.battery-full::before { content: "□"; }

.battery-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 60px);
  min-height: 90px;
  margin-top: 34px;
  padding: 18px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(5, 7, 8, 0.72);
  color: rgba(247, 247, 244, 0.74);
  text-align: center;
}

.battery-quote span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 66px;
  line-height: 0.6;
}

.battery-quote p {
  margin: 0;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.7;
}

.versions-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 114px;
  padding: 38px clamp(26px, 3vw, 44px) 24px;
  background:
    radial-gradient(circle at 70% 10%, rgba(215, 165, 91, 0.12), transparent 28%),
    radial-gradient(circle at 18% 45%, rgba(33, 43, 47, 0.28), transparent 35%),
    linear-gradient(180deg, #030607 0%, #050708 100%);
}

.versions-inner {
  width: min(100%, 1448px);
  margin: 0 auto;
}

.versions-hero {
  display: grid;
  grid-template-columns: minmax(520px, 711px) minmax(500px, 1fr);
  align-items: center;
  gap: clamp(52px, 5vw, 86px);
  direction: ltr;
}

.versions-copy {
  grid-column: 2;
  grid-row: 1;
  direction: rtl;
  text-align: right;
}

.versions-video {
  grid-column: 1;
  grid-row: 1;
}

.versions-kicker {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 800;
}

.versions-kicker i {
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold-light);
}

.versions-copy h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 900;
  line-height: 1.28;
}

.versions-copy h2 .versions-title-highlight {
  color: var(--gold-light);
}

.versions-copy p {
  max-width: 610px;
  margin: 0;
  color: rgba(247, 247, 244, 0.7);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 2;
}

.versions-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 711 / 401;
  border: 1px solid rgba(215, 165, 91, 0.6);
  border-radius: 10px;
  background: #111;
}

.versions-video img,
.versions-media-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.versions-media-video[hidden] {
  display: none;
}

.versions-video::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.66));
  content: "";
  pointer-events: none;
}

.versions-play {
  position: absolute;
  top: 48%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -50%);
}

.versions-play::before,
.versions-video-bar button::before {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid #fff;
  content: "";
  transform: translateX(3px);
}

.versions-video-bar {
  position: absolute;
  right: 20px;
  bottom: 15px;
  left: 20px;
  z-index: 3;
  display: grid;
  grid-template-columns: 24px auto 1fr auto;
  align-items: center;
  gap: 16px;
  color: #fff;
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.versions-video-bar button {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
}

.versions-video-bar button::before {
  display: block;
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 14px;
}

.versions-video-bar div {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.versions-video-bar i {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: var(--gold-light);
}

.versions-video-bar b {
  grid-column: 1 / -1;
  padding-top: 8px;
  color: rgba(247, 247, 244, 0.8);
  direction: rtl;
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
}

.versions-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 30px 22px;
  border: 1px solid rgba(215, 165, 91, 0.35);
  border-radius: 14px;
  background: rgba(10, 14, 15, 0.76);
}

.versions-benefits div {
  display: grid;
  min-height: 104px;
  place-items: center;
  padding: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(247, 247, 244, 0.88);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.versions-benefits div:last-child {
  border-left: 0;
}

.version-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.version-card {
  position: relative;
  min-height: 455px;
  padding: 28px 32px 20px;
  border: 1px solid rgba(215, 165, 91, 0.5);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(6, 10, 12, 0.84);
}

.version-card.is-featured {
  border-color: rgba(215, 165, 91, 0.95);
  box-shadow: inset 0 0 0 1px rgba(215, 165, 91, 0.26);
}

.version-ribbon {
  position: absolute;
  top: -17px;
  right: 0;
  min-width: 126px;
  padding: 8px 18px;
  border-radius: 8px 8px 0 0;
  color: #1b140a;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.version-card h3 {
  margin: 0 0 22px;
  color: var(--text);
  font-size: clamp(21px, 1.7vw, 26px);
  font-weight: 900;
  line-height: 1.55;
  text-align: center;
}

.version-image-row {
  display: grid;
  grid-template-columns: 1fr 175px;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.version-image-row img {
  width: 100%;
  max-height: 115px;
  object-fit: contain;
}

.version-tags {
  display: grid;
  gap: 8px;
}

.version-tags span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(215, 165, 91, 0.42);
  border-radius: 6px;
  color: rgba(247, 247, 244, 0.9);
  font-size: 14px;
  font-weight: 700;
}

.version-card dl {
  display: grid;
  margin: 0 0 14px;
}

.version-card dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  min-height: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.version-card dt {
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 800;
}

.version-card dd {
  margin: 0;
  color: rgba(247, 247, 244, 0.86);
  font-size: 14px;
  text-align: left;
  direction: rtl;
}

.version-card button,
.versions-note button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 42px;
  padding: 0 28px;
  border: 1px solid var(--gold);
  border-radius: 7px;
  color: var(--gold-light);
  background: transparent;
  font-size: 15px;
  font-weight: 800;
}

.version-card button {
  width: min(100%, 246px);
  margin: 0 auto;
}

.version-card button::after,
.versions-note button::after {
  content: "‹";
  font-size: 28px;
  line-height: 1;
}

.versions-note {
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: center;
  gap: 28px;
  min-height: 70px;
  margin-top: 16px;
  padding: 14px 34px;
  border: 1px solid rgba(215, 165, 91, 0.32);
  border-radius: 10px;
  background: rgba(6, 9, 10, 0.78);
}

.versions-note p {
  margin: 0;
  color: rgba(247, 247, 244, 0.68);
  font-size: 15px;
  line-height: 1.8;
}

.decision-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 114px;
  min-height: 1024px;
  padding: 94px clamp(42px, 3vw, 50px) 70px;
  background:
    linear-gradient(135deg, rgba(215, 165, 91, 0.22) 0%, transparent 16%),
    linear-gradient(315deg, rgba(215, 165, 91, 0.16) 0%, transparent 18%),
    radial-gradient(circle at 68% 46%, rgba(28, 40, 44, 0.3), transparent 32%),
    #030506;
}

.decision-section::before,
.decision-section::after {
  position: absolute;
  width: 360px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(215, 165, 91, 0.75), transparent);
  content: "";
  filter: blur(1px);
  transform: rotate(-45deg);
}

.decision-section::before {
  top: 38px;
  left: -80px;
}

.decision-section::after {
  right: -65px;
  bottom: 100px;
}

.decision-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1510px);
  margin: 0 auto;
}

.decision-layout {
  display: grid;
  grid-template-columns: minmax(820px, 930px) minmax(390px, 1fr);
  align-items: center;
  gap: clamp(42px, 4.4vw, 70px);
  direction: ltr;
}

.decision-copy {
  grid-column: 2;
  grid-row: 1;
  direction: rtl;
  text-align: right;
}

.decision-label {
  display: grid;
  grid-template-columns: 72px 1fr 95px;
  align-items: center;
  min-height: 98px;
  margin-bottom: 72px;
  border: 1px solid rgba(215, 165, 91, 0.52);
  border-radius: 12px;
  color: var(--gold-light);
  background: rgba(5, 8, 9, 0.58);
}

.decision-label p {
  margin: 0;
  padding: 0 28px;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 500;
}

.decision-label strong {
  display: grid;
  height: 100%;
  place-items: center;
  border-left: 1px solid rgba(215, 165, 91, 0.52);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
}

.decision-car-icon {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  margin-inline: auto;
  border: 2px solid var(--gold-light);
  border-radius: 50%;
}

.decision-car-icon::before {
  position: absolute;
  top: 20px;
  right: 12px;
  width: 30px;
  height: 16px;
  border: 2px solid var(--gold-light);
  border-radius: 8px 8px 4px 4px;
  content: "";
}

.decision-car-icon::after {
  position: absolute;
  right: 16px;
  bottom: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 18px 0 0 var(--gold-light);
  content: "";
}

.decision-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(60px, 6.2vw, 96px);
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
}

.decision-copy h2 .decision-title-highlight {
  color: var(--gold-light);
}

.decision-line {
  display: block;
  width: 88px;
  height: 4px;
  margin: 24px 82px 48px 0;
  border-radius: 999px;
  background: var(--gold-light);
}

.decision-copy > p {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(247, 247, 244, 0.82);
  font-size: clamp(20px, 1.65vw, 26px);
  line-height: 2;
  text-align: center;
}

.decision-video {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 872 / 789;
  border: 1px solid rgba(215, 165, 91, 0.78);
  border-radius: 14px;
  background: #111;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.decision-video img,
.decision-media-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.decision-media-video[hidden] {
  display: none;
}

.decision-video::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgba(0, 0, 0, 0.58));
  content: "";
  pointer-events: none;
}

.decision-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 114px;
  height: 114px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.23);
  transform: translate(-50%, -50%);
}

.decision-play::before,
.decision-controls button:first-child::before {
  width: 0;
  height: 0;
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
  border-left: 28px solid #fff;
  content: "";
  transform: translateX(5px);
}

.decision-controls {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 18px;
}

.decision-controls button {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
}

.decision-controls button:first-child::before {
  display: block;
  border-top-width: 13px;
  border-bottom-width: 13px;
  border-left-width: 19px;
}

.decision-controls div {
  flex: 1;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.decision-controls i {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: var(--gold-light);
}

.decision-controls button:nth-of-type(2)::before,
.decision-controls button:nth-of-type(3)::before,
.decision-controls button:nth-of-type(4)::before {
  color: #fff;
  font-size: 28px;
}

.decision-controls button:nth-of-type(2)::before { content: "◖"; }
.decision-controls button:nth-of-type(3)::before { content: "⚙"; }
.decision-controls button:nth-of-type(4)::before { content: "□"; }

.compare-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 114px;
  min-height: 1024px;
  padding: 26px clamp(16px, 1.8vw, 28px) 22px;
  background:
    radial-gradient(circle at 14% 18%, rgba(215, 165, 91, 0.13), transparent 20%),
    radial-gradient(circle at 58% 22%, rgba(35, 58, 62, 0.24), transparent 34%),
    linear-gradient(180deg, #020405 0%, #071112 48%, #020303 100%);
}

.compare-inner {
  width: min(100%, 1504px);
  margin: 0 auto;
}

.compare-heading {
  position: relative;
  display: grid;
  min-height: 112px;
  place-items: center;
  padding: 6px 170px 12px;
}

.compare-badge {
  position: absolute;
  top: -26px;
  left: 0;
  display: grid;
  width: 144px;
  height: 124px;
  place-items: center;
  padding: 12px 12px 14px;
  border-radius: 0 0 14px 14px;
  color: #050607;
  background: linear-gradient(135deg, #b97825 0%, #f4ce82 100%);
  box-shadow: 0 18px 50px rgba(215, 165, 91, 0.2);
}

.compare-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.compare-badge span {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
}

.compare-title-wrap {
  width: min(100%, 1160px);
  text-align: center;
}

.compare-title-wrap h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 10px 34px 12px;
  border-radius: 999px;
  color: var(--text);
  background: linear-gradient(90deg, rgba(215, 165, 91, 0.42), rgba(215, 165, 91, 0.12), transparent);
  font-size: clamp(28px, 2.35vw, 38px);
  font-weight: 900;
  line-height: 1.28;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.72);
  white-space: nowrap;
}

.compare-title-wrap h2 .compare-title-or1,
.compare-title-wrap h2 .compare-title-or2 {
  color: var(--gold);
}

.compare-title-wrap p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 14px 0 0;
  color: rgba(247, 247, 244, 0.86);
  font-size: clamp(19px, 1.45vw, 24px);
  line-height: 1.7;
}

.compare-title-wrap p::before,
.compare-title-wrap p::after {
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 165, 91, 0.85), transparent);
  content: "";
}

.compare-table-frame {
  overflow-x: auto;
  border: 1px solid rgba(215, 165, 91, 0.78);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(13, 21, 23, 0.96), rgba(9, 13, 14, 0.98));
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.36);
}

.compare-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  table-layout: fixed;
  color: var(--text);
  direction: rtl;
}

.compare-table th,
.compare-table td {
  border-left: 1px solid rgba(215, 165, 91, 0.45);
  border-bottom: 1px solid rgba(215, 165, 91, 0.31);
  vertical-align: middle;
}

.compare-table tr > *:last-child {
  border-left: 0;
}

.compare-table tbody tr:last-child > * {
  border-bottom: 0;
}

.compare-criteria-col {
  width: 17.5%;
}

.compare-table thead th {
  height: 218px;
  padding: 14px 18px 0;
  font-weight: 800;
}

.compare-criteria-head {
  color: var(--gold);
  font-size: clamp(25px, 2vw, 34px);
}

.compare-car-head {
  display: grid;
  height: 100%;
  grid-template-rows: auto auto 1fr;
  place-items: center;
  text-align: center;
}

.compare-car-head h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(28px, 2.2vw, 36px);
  font-weight: 900;
  line-height: 1.2;
}

.compare-car-head p {
  margin: 2px 0 10px;
  color: rgba(247, 247, 244, 0.86);
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 18px;
}

.compare-car-head img {
  align-self: end;
  width: min(88%, 330px);
  max-height: 152px;
  object-fit: contain;
}

.compare-table tbody th {
  padding: 0 22px;
  color: var(--gold);
  font-size: clamp(17px, 1.25vw, 21px);
  font-weight: 800;
  line-height: 1.55;
  text-align: right;
}

.compare-table tbody th span {
  display: inline-block;
  max-width: 100%;
}

.compare-table td {
  height: 43px;
  padding: 7px 22px;
  color: rgba(247, 247, 244, 0.9);
  font-size: clamp(18px, 1.32vw, 23px);
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

.compare-table tbody tr:nth-child(10) td,
.compare-table tbody tr:nth-child(11) td {
  height: 66px;
  padding-inline: 28px;
  font-size: clamp(16px, 1.16vw, 20px);
  line-height: 1.85;
}

.compare-note {
  margin: 14px 0 0;
  color: rgba(247, 247, 244, 0.76);
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

.price-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 114px;
  padding: 12px clamp(10px, 1.3vw, 16px) 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 165, 91, 0.22), transparent 16%),
    radial-gradient(circle at 70% 40%, rgba(44, 60, 64, 0.2), transparent 32%),
    linear-gradient(180deg, #020303 0%, #081011 48%, #020303 100%);
}

.price-inner {
  width: min(100%, 1518px);
  min-height: 998px;
  margin: 0 auto;
  padding: 0 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
}

.price-heading {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 0 20px 24px;
  text-align: center;
}

.price-heading span {
  display: grid;
  min-width: 178px;
  height: 48px;
  place-items: center;
  margin-top: -1px;
  border: 1px solid rgba(215, 165, 91, 0.54);
  border-top: 0;
  border-radius: 0 0 28px 28px;
  color: var(--gold-light);
  background: linear-gradient(180deg, rgba(215, 165, 91, 0.2), rgba(215, 165, 91, 0.04));
  box-shadow: 0 0 28px rgba(215, 165, 91, 0.38);
  font-size: 25px;
  font-weight: 900;
}

.price-heading h2 {
  position: relative;
  display: block;
  width: 100%;
  margin: 16px auto 0;
  color: var(--text);
  font-size: clamp(36px, 3.35vw, 54px);
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.price-heading h2::before,
.price-heading h2::after {
  position: absolute;
  top: 50%;
  width: 126px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 165, 91, 0.82), transparent);
  content: "";
  transform: translateY(-50%);
}

.price-heading h2::before {
  right: 7%;
}

.price-heading h2::after {
  left: 7%;
}

.price-heading mark {
  padding: 0;
  color: var(--gold-light);
  background: transparent;
}

.price-heading p {
  margin: 16px 0 0;
  color: rgba(247, 247, 244, 0.72);
  font-size: clamp(19px, 1.45vw, 24px);
}

.price-top-grid {
  display: grid;
  grid-template-columns: minmax(570px, 0.97fr) minmax(610px, 1fr);
  gap: 18px;
  direction: ltr;
}

.today-price-card,
.price-chart-card,
.maintenance-card,
.price-footnote {
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(15, 22, 24, 0.92), rgba(4, 7, 8, 0.95));
  box-shadow: inset 0 0 42px rgba(255, 255, 255, 0.02);
}

.today-price-card {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(250px, 0.9fr);
  overflow: hidden;
  min-height: 450px;
  direction: ltr;
}

.today-price-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.today-price-copy {
  position: relative;
  direction: rtl;
  padding: 34px 40px 32px;
}

.price-icon {
  position: relative;
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(215, 165, 91, 0.8);
  border-radius: 9px;
  color: var(--gold);
}

.price-tag-icon::before {
  width: 26px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 4px 7px 7px 4px;
  content: "";
  transform: rotate(-35deg);
}

.price-tag-icon::after {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.today-price-copy > .price-icon {
  position: absolute;
  top: 22px;
  right: 24px;
}

.today-price-copy h3 {
  margin: 0 0 34px;
  padding-right: 76px;
  color: var(--text);
  font-size: clamp(20px, 1.55vw, 25px);
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}

.today-price-copy strong {
  display: block;
  color: var(--gold);
  font-size: clamp(31px, 2.55vw, 41px);
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
  text-align: center;
}

.today-price-copy b {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 22px;
  text-align: center;
}

.today-price-copy p {
  margin: 12px 0 0;
  color: rgba(247, 247, 244, 0.82);
  font-size: 18px;
  text-align: center;
}

.today-price-copy .price-change {
  margin-top: 22px;
  color: #35c975;
  font-size: 18px;
}

.price-update {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
}

.calendar-icon {
  width: 34px;
  height: 34px;
  border-color: transparent;
}

.calendar-icon::before {
  width: 24px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 3px;
  content: "";
}

.calendar-icon::after {
  position: absolute;
  top: 14px;
  width: 18px;
  height: 2px;
  background: #fff;
  box-shadow: 0 6px 0 rgba(255, 255, 255, 0.72);
  content: "";
}

.price-update small {
  color: rgba(247, 247, 244, 0.88);
  font-size: 17px;
  line-height: 1.7;
}

.price-chart-card {
  min-height: 450px;
  padding: 22px 26px 8px;
  direction: rtl;
}

.chart-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 8px;
}

.chart-title h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(21px, 1.55vw, 26px);
  font-weight: 800;
}

.chart-icon {
  position: relative;
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 6px;
}

.chart-icon::before {
  width: 26px;
  height: 18px;
  border-top: 4px solid var(--gold);
  border-right: 4px solid var(--gold);
  content: "";
  transform: skew(-16deg) rotate(-8deg);
}

.chart-icon::after {
  position: absolute;
  top: 12px;
  right: 13px;
  width: 8px;
  height: 8px;
  border-top: 4px solid var(--gold);
  border-right: 4px solid var(--gold);
  content: "";
  transform: rotate(45deg);
}

.price-chart svg {
  display: block;
  width: 100%;
  height: auto;
  color: rgba(247, 247, 244, 0.85);
  direction: rtl;
}

.chart-grid line {
  stroke: rgba(255, 255, 255, 0.18);
  stroke-dasharray: 4 4;
}

.chart-area {
  fill: url(#priceFill);
}

.chart-line {
  fill: none;
  stroke: #f2b636;
  stroke-width: 4;
  stroke-linecap: round;
}

.chart-points circle {
  fill: #f2b636;
  stroke: #f7c75e;
  stroke-width: 2;
}

.chart-labels text,
.chart-months text {
  fill: rgba(247, 247, 244, 0.9);
  font-family: inherit;
  font-size: 14px;
  text-anchor: middle;
}

.chart-labels text:nth-last-child(n+7) {
  text-anchor: start;
}

.chart-months text {
  font-size: 12px;
}

.chart-summary {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 16px;
  align-items: center;
  margin-top: 0;
  padding: 12px 18px;
  border: 1px solid rgba(215, 165, 91, 0.48);
  border-radius: 8px;
}

.chart-summary p {
  margin: 0;
  color: rgba(247, 247, 244, 0.86);
  font-size: 17px;
  line-height: 1.7;
}

.info-dot {
  grid-row: span 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #070707;
  background: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 900;
}

.maintenance-card {
  margin-top: 18px;
  padding: 24px 28px 28px;
}

.maintenance-head {
  position: relative;
  padding: 0 70px 22px 0;
  text-align: right;
}

.maintenance-head .price-icon {
  position: absolute;
  top: -4px;
  right: 0;
  border-radius: 12px;
}

.wrench-icon::before {
  width: 30px;
  height: 8px;
  border: 3px solid var(--gold);
  border-right: 0;
  border-left: 0;
  content: "";
  transform: rotate(-45deg);
}

.wrench-icon::after {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.maintenance-head h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 900;
}

.maintenance-head p {
  margin: 6px 0 0;
  color: rgba(247, 247, 244, 0.68);
  font-size: 16px;
}

.maintenance-body {
  display: grid;
  grid-template-columns: 170px 1fr 270px;
  align-items: center;
  gap: 28px;
}

.maintenance-body img {
  width: 156px;
  border: 1px solid rgba(215, 165, 91, 0.65);
  border-radius: 8px;
}

.maintenance-desc {
  min-height: 150px;
  padding: 22px 28px;
  border: 1px solid rgba(215, 165, 91, 0.44);
  border-radius: 6px;
}

.maintenance-desc h4 {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(215, 165, 91, 0.3);
  color: var(--text);
  font-size: 22px;
}

.maintenance-desc h4::first-letter {
  color: inherit;
}

.maintenance-desc p,
.maintenance-desc small {
  color: rgba(247, 247, 244, 0.82);
  font-size: 15px;
  line-height: 1.8;
}

.maintenance-desc h4,
.maintenance-cost strong {
  color: var(--gold);
}

.maintenance-cost {
  text-align: center;
}

.maintenance-cost strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.15;
}

.maintenance-cost span {
  color: var(--gold);
  font-size: 22px;
  font-weight: 800;
}

.maintenance-cost small {
  display: block;
  margin-top: 22px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(247, 247, 244, 0.7);
  font-size: 14px;
}

.price-footnote {
  position: relative;
  margin: 10px 0 0;
  padding: 18px 72px;
  color: rgba(247, 247, 244, 0.82);
  font-size: 17px;
  line-height: 1.8;
  text-align: center;
}

.price-footnote::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(215, 165, 91, 0.12);
  box-shadow: 0 0 22px rgba(215, 165, 91, 0.25);
  content: "!";
  font-size: 26px;
  font-weight: 900;
  transform: translateY(-50%);
}

.owners-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 114px;
  min-height: 1024px;
  padding: 12px 24px 10px;
  background:
    radial-gradient(circle at 70% 12%, rgba(48, 64, 70, 0.24), transparent 24%),
    linear-gradient(135deg, transparent 0 76%, rgba(96, 107, 116, 0.2) 76% 80%, transparent 80%),
    linear-gradient(180deg, #020506 0%, #081113 58%, #020303 100%);
}

.owners-inner {
  position: relative;
  width: min(100%, 1490px);
  margin: 0 auto;
}

.owners-badge {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
  min-height: 64px;
  justify-content: center;
  border: 2px solid var(--gold);
  border-radius: 12px;
  color: var(--text);
  background: rgba(6, 10, 12, 0.82);
  font-size: 25px;
  font-weight: 900;
}

.owners-badge strong {
  color: var(--gold);
}

.owners-hero-car {
  position: absolute;
  top: 0;
  right: 0;
  width: min(26vw, 360px);
  max-width: 360px;
  pointer-events: none;
}

.owners-heading {
  max-width: 1280px;
  margin: -54px auto 18px;
  padding-right: 130px;
  text-align: center;
}

.owners-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 900;
  line-height: 1.18;
  white-space: nowrap;
  text-shadow: 0 5px 12px rgba(0, 0, 0, 0.55);
}

.owners-heading h2::after {
  display: block;
  width: min(70%, 640px);
  height: 3px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(215, 165, 91, 0.92), transparent);
  box-shadow: 0 0 18px rgba(215, 165, 91, 0.65);
  content: "";
}

.owners-heading p {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 0;
  color: rgba(247, 247, 244, 0.86);
  font-size: 17px;
  line-height: 1.7;
}

.owners-people-icon,
.owners-chat-icon,
.owners-shield-icon,
.owners-pin-icon,
.owners-clipboard-icon {
  position: relative;
  display: inline-block;
  color: var(--gold);
}

.owners-people-icon {
  width: 34px;
  height: 24px;
}

.owners-people-icon::before {
  position: absolute;
  inset: 2px 5px auto auto;
  width: 12px;
  height: 12px;
  border: 3px solid currentColor;
  border-radius: 50%;
  content: "";
  box-shadow: -14px 0 0 -3px #081113, -14px 0 0 0 currentColor;
}

.owners-people-icon::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 12px;
  border: 3px solid currentColor;
  border-radius: 16px 16px 0 0;
  content: "";
}

.owners-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1175px;
  min-height: 82px;
  margin-bottom: 10px;
  border: 1px solid rgba(215, 165, 91, 0.32);
  border-radius: 8px;
  background: rgba(10, 17, 19, 0.82);
}

.owners-stats div {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  padding: 12px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.23);
}

.owners-stats div:last-child {
  border-left: 0;
}

.owners-stats span {
  grid-row: span 2;
}

.owners-stats strong {
  color: var(--text);
  font-family: Arial, sans-serif;
  font-size: 25px;
  font-weight: 900;
  direction: ltr;
}

.owners-stats small {
  color: rgba(247, 247, 244, 0.84);
  font-size: 15px;
}

.owners-chat-icon {
  width: 52px;
  height: 42px;
  border: 4px solid currentColor;
  border-radius: 50%;
}

.owners-chat-icon::before {
  position: absolute;
  right: 10px;
  top: 14px;
  content: "...";
  font-size: 26px;
  line-height: 0;
}

.owners-chat-icon::after {
  position: absolute;
  left: -8px;
  bottom: -4px;
  width: 18px;
  height: 16px;
  border-left: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  border-radius: 0 0 0 12px;
  content: "";
}

.owners-star-icon {
  color: var(--gold);
  font-size: 62px;
  line-height: 1;
}

.owners-shield-icon {
  width: 48px;
  height: 56px;
  border: 4px solid currentColor;
  border-radius: 23px 23px 30px 30px;
}

.owners-shield-icon::before {
  position: absolute;
  inset: 16px 13px;
  width: 18px;
  height: 10px;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.owners-pin-icon {
  width: 46px;
  height: 56px;
  border: 4px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.owners-pin-icon::before {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 12px;
  height: 12px;
  border: 3px solid currentColor;
  border-radius: 50%;
  content: "";
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.review-card {
  display: grid;
  grid-template-columns: 208px 1fr;
  gap: 22px;
  min-height: 196px;
  padding: 9px;
  border: 1px solid rgba(215, 165, 91, 0.32);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(15, 25, 28, 0.9), rgba(4, 8, 9, 0.92));
}

.review-card img {
  width: 208px;
  height: 178px;
  object-fit: cover;
  border-radius: 7px;
}

.review-card:nth-last-child(-n + 2) img {
  height: 154px;
}

.review-copy {
  padding: 7px 2px 0 0;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 7px;
}

.review-top h3 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
}

.review-top span {
  color: var(--gold);
  direction: ltr;
  font-size: 27px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.review-meta {
  margin: 0 0 7px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(247, 247, 244, 0.75);
  font-size: 13px;
}

.review-copy p {
  margin: 5px 0;
  color: rgba(247, 247, 244, 0.86);
  font-size: 13px;
  line-height: 1.8;
}

.review-copy b {
  color: #30d85f;
}

.review-copy em {
  color: #ff4a3d;
  font-style: normal;
  font-weight: 800;
}

.review-copy small {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-top: 4px;
  padding: 0 14px;
  border: 1px solid rgba(215, 165, 91, 0.32);
  border-radius: 999px;
  color: rgba(247, 247, 244, 0.9);
  background: rgba(0, 0, 0, 0.35);
  font-size: 12px;
}

.owners-summary {
  display: grid;
  grid-template-columns: 70px 230px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 62px;
  margin-top: 8px;
  padding: 7px 34px;
  border: 1px solid rgba(215, 165, 91, 0.34);
  border-radius: 8px;
  background: rgba(8, 13, 15, 0.9);
}

.owners-summary h3 {
  margin: 0;
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
}

.owners-summary p {
  margin: 0;
  color: rgba(247, 247, 244, 0.82);
  font-size: 16px;
  line-height: 1.9;
}

.owners-clipboard-icon {
  width: 52px;
  height: 52px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.owners-clipboard-icon::before {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 22px;
  height: 27px;
  border: 3px solid currentColor;
  border-radius: 3px;
  content: "";
}

.owners-clipboard-icon::after {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 18px;
  height: 12px;
  border-bottom: 3px solid currentColor;
  border-right: 3px solid currentColor;
  content: "";
  transform: rotate(-20deg);
}

.buy-method-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 114px;
  min-height: 1024px;
  padding: 23px 16px 22px;
  background:
    linear-gradient(135deg, rgba(215, 165, 91, 0.08), transparent 18%),
    radial-gradient(circle at 12% 4%, rgba(215, 165, 91, 0.16), transparent 20%),
    #040607;
}

.buy-method-section::before,
.buy-method-section::after {
  position: absolute;
  inset-block: 0;
  width: 28%;
  background-image:
    linear-gradient(135deg, transparent 0 26%, rgba(215, 165, 91, 0.38) 26% 26.7%, transparent 26.7%),
    linear-gradient(135deg, transparent 0 43%, rgba(215, 165, 91, 0.18) 43% 43.5%, transparent 43.5%);
  content: "";
  pointer-events: none;
}

.buy-method-section::before {
  left: 0;
}

.buy-method-section::after {
  right: 0;
  transform: scaleX(-1);
}

.buy-method-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1504px);
  min-height: 958px;
  margin: 0 auto;
  padding: 0 34px 26px;
  border: 1px solid rgba(215, 165, 91, 0.58);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(2, 4, 5, 0.7), rgba(7, 10, 11, 0.9));
  box-shadow: inset 0 0 0 1px rgba(215, 165, 91, 0.12);
}

.buy-method-heading {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  gap: 38px;
  min-height: 120px;
}

.buy-method-heading::before,
.buy-method-heading::after {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 165, 91, 0.9), transparent);
  content: "";
}

.buy-method-heading h2 {
  grid-column: 1 / -1;
  grid-row: 1;
  margin: 0;
  color: var(--text);
  font-size: clamp(26px, 2.2vw, 35px);
  font-weight: 900;
  text-align: center;
}

.buy-method-number {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 22%;
  display: grid;
  width: 120px;
  height: 100px;
  place-items: center;
  align-self: start;
  color: #050606;
  background: linear-gradient(135deg, #b97825, #f6d28a);
  border-radius: 0 0 10px 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 70px;
  font-weight: 900;
  line-height: 1;
}

.buy-method-video {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(215, 165, 91, 0.74);
  border-radius: 16px;
  background: #111;
}

.buy-method-video img {
  display: block;
  width: 100%;
  aspect-ratio: 1438 / 565;
  object-fit: cover;
}

.buy-method-video::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 84px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  content: "";
  pointer-events: none;
}

.buy-method-play {
  position: absolute;
  top: 51%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 122px;
  height: 122px;
  place-items: center;
  border: 1px solid rgba(215, 165, 91, 0.82);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
}

.buy-method-play,
.buy-method-controls {
  display: none;
}

.buy-method-play::before,
.buy-method-controls button:first-child::before,
.buy-method-controls button:nth-child(2)::before {
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 36px solid #fff;
  content: "";
  transform: translateX(4px);
}

.buy-method-controls {
  position: absolute;
  right: 38px;
  bottom: 22px;
  left: 38px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 22px;
  color: #fff;
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 24px;
}

.buy-method-controls button {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
}

.buy-method-controls button:first-child::before,
.buy-method-controls button:nth-child(2)::before {
  display: block;
  border-top-width: 15px;
  border-bottom-width: 15px;
  border-left-width: 22px;
}

.buy-method-controls button:nth-child(2) {
  position: relative;
}

.buy-method-controls button:nth-child(2)::after {
  position: absolute;
  top: 4px;
  right: 2px;
  width: 4px;
  height: 26px;
  background: #fff;
  content: "";
}

.buy-method-controls div {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.buy-method-controls i {
  display: block;
  width: 34%;
  height: 100%;
  border-radius: inherit;
  background: var(--gold-light);
  box-shadow: 6px 0 0 #fff;
}

.buy-method-controls button:nth-of-type(n+3)::before {
  color: #fff;
  font-size: 30px;
}

.buy-method-controls button:nth-of-type(3)::before { content: "◖"; }
.buy-method-controls button:nth-of-type(4)::before { content: "⚙"; }
.buy-method-controls button:nth-of-type(5)::before { content: "▭"; }
.buy-method-controls button:nth-of-type(6)::before { content: "□"; }

.buy-method-note {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr 280px;
  align-items: center;
  gap: 24px;
  min-height: 156px;
  margin-top: 28px;
  padding: 18px 28px;
  border: 1px solid rgba(215, 165, 91, 0.42);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16, 22, 24, 0.9), rgba(5, 7, 8, 0.92));
}

.buy-method-note h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
}

.buy-method-note p {
  max-width: 830px;
  margin: 0;
  color: rgba(247, 247, 244, 0.88);
  font-size: clamp(19px, 1.5vw, 25px);
  line-height: 1.85;
}

.buy-bulb-icon {
  position: relative;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
}

.buy-bulb-icon::before {
  width: 36px;
  height: 42px;
  border: 4px solid currentColor;
  border-bottom: 0;
  border-radius: 50% 50% 40% 40%;
  content: "";
}

.buy-bulb-icon::after {
  position: absolute;
  bottom: 22px;
  width: 28px;
  height: 16px;
  border-top: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  content: "";
}

.buy-toyota-watermark {
  position: relative;
  justify-self: center;
  width: 178px;
  height: 96px;
  opacity: 0.16;
}

.buy-toyota-watermark::before,
.buy-toyota-watermark::after {
  position: absolute;
  border: 10px solid #fff;
  content: "";
}

.buy-toyota-watermark::before {
  inset: 8px 0;
  border-radius: 50%;
}

.buy-toyota-watermark::after {
  top: 0;
  right: 62px;
  width: 54px;
  height: 86px;
  border-radius: 50%;
}

.prebuy-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 114px;
  min-height: 1024px;
  padding: 132px 15px 78px;
  background:
    radial-gradient(circle at 50% 15%, rgba(28, 43, 48, 0.35), transparent 30%),
    linear-gradient(180deg, #040708 0%, #081115 48%, #050708 100%);
}

.prebuy-section::before,
.prebuy-section::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  content: "";
}

.prebuy-section::before {
  top: 72px;
}

.prebuy-section::after {
  bottom: 78px;
}

.prebuy-inner {
  width: min(100%, 1489px);
  margin: 0 auto;
}

.prebuy-inner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50px;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.45);
}

.prebuy-inner h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.deal-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 114px;
  min-height: 1024px;
  padding: 16px 16px 26px;
  background:
    radial-gradient(circle at 50% 18%, rgba(34, 50, 56, 0.28), transparent 30%),
    linear-gradient(180deg, #030607 0%, #081114 50%, #030506 100%);
}

.deal-inner {
  width: min(100%, 1504px);
  min-height: 982px;
  margin: 0 auto;
  padding: 44px 30px 38px;
  border: 1px solid rgba(215, 165, 91, 0.45);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(7, 11, 13, 0.78), rgba(5, 8, 10, 0.95));
}

.deal-top {
  display: grid;
  grid-template-columns: minmax(620px, 770px) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(44px, 5.4vw, 86px);
  direction: ltr;
}

.deal-video {
  overflow: hidden;
  border: 1px solid rgba(215, 165, 91, 0.84);
  border-radius: 14px;
  background: #111;
}

.deal-video img {
  display: block;
  width: 100%;
  aspect-ratio: 771 / 434;
  object-fit: cover;
}

.deal-copy {
  direction: rtl;
  text-align: center;
}

.deal-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 184px;
  min-height: 58px;
  justify-content: center;
  margin-bottom: 30px;
  border: 1px solid rgba(215, 165, 91, 0.58);
  border-radius: 13px;
  color: var(--text);
  background: rgba(4, 8, 10, 0.78);
  font-size: 27px;
  font-weight: 900;
}

.deal-badge strong {
  color: var(--gold);
  font-size: 36px;
}

.deal-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 900;
  line-height: 1.35;
}

.deal-copy h2 mark {
  color: var(--gold);
  background: transparent;
}

.deal-copy h3 {
  margin: 28px 0 0;
  color: var(--gold);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 700;
}

.deal-copy h3::after {
  display: block;
  width: 100%;
  height: 2px;
  margin: 34px 0 28px;
  background: linear-gradient(90deg, transparent, rgba(215, 165, 91, 0.9), transparent);
  content: "";
}

.deal-copy p {
  max-width: 590px;
  margin: 0 auto;
  color: rgba(247, 247, 244, 0.82);
  font-size: clamp(19px, 1.45vw, 25px);
  line-height: 2.05;
}

.deal-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-areas:
    "s5 s4 s3 s2 s1"
    "s6 s7 s8 s9 s9";
  gap: 30px 64px;
  margin-top: 42px;
  padding: 0 56px;
  direction: ltr;
}

.deal-flow::before,
.deal-flow::after {
  position: absolute;
  right: 30px;
  left: 30px;
  height: 1px;
  background: rgba(215, 165, 91, 0.88);
  content: "";
  z-index: 0;
}

.deal-flow::before {
  top: 96px;
}

.deal-flow::after {
  bottom: 96px;
}

.deal-step {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 194px;
  justify-items: center;
  align-content: center;
  padding: 20px 18px 18px;
  border: 1px solid rgba(215, 165, 91, 0.78);
  border-radius: 13px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 48%), rgba(6, 10, 12, 0.94);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.24);
  direction: rtl;
}

.deal-step::before,
.deal-step::after {
  position: absolute;
  top: 50%;
  color: var(--gold);
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
}

.deal-step:not(.step-1, .step-6)::before {
  right: -43px;
  content: "←";
}

.step-6::before,
.step-7::before,
.step-8::before,
.step-9::before {
  right: auto;
  left: -43px;
  content: "→";
}

.deal-step b {
  position: absolute;
  top: 18px;
  left: 28px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.deal-step img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 14px;
  mix-blend-mode: screen;
}

.step-6 img,
.step-8 img,
.step-9 img {
  width: 92px;
}

.deal-step h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.deal-step p {
  margin: 10px 0 0;
  color: rgba(247, 247, 244, 0.64);
  font-size: 17px;
}

.step-1 { grid-area: s1; }
.step-2 { grid-area: s2; }
.step-3 { grid-area: s3; }
.step-4 { grid-area: s4; }
.step-5 { grid-area: s5; }
.step-6 { grid-area: s6; grid-template-columns: 100px 1fr; min-height: 194px; justify-items: start; padding-inline: 28px; }
.step-7 { grid-area: s7; }
.step-8 { grid-area: s8; }
.step-9 { grid-area: s9; }

.step-6 b {
  left: 44px;
}

.step-6 img {
  grid-row: span 2;
  margin: 0;
}

.step-6 h3,
.step-6 p {
  text-align: right;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
    min-height: 86px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: 86px;
    right: 18px;
    left: 18px;
    display: none;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 28px;
    padding: 18px 22px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(6, 7, 8, 0.96);
  }

  .main-nav.is-open {
    display: flex;
  }

  .visit-button {
    justify-self: end;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 42px;
    direction: rtl;
  }

  .hero-copy {
    grid-column: auto;
    grid-row: auto;
    order: -1;
    width: min(100%, 720px);
    padding-top: 0;
  }

  .video-card {
    grid-column: auto;
    grid-row: auto;
  }

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

  .faq-heading {
    width: min(100%, 620px);
  }

  .trust-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .trust-copy {
    grid-column: auto;
    order: -1;
  }

  .trust-video {
    grid-column: auto;
    grid-row: auto;
  }

  .trust-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-summary {
    grid-template-columns: 56px 150px 1fr;
    padding-right: 26px;
  }

  .battery-layout {
    grid-template-columns: minmax(680px, 1.35fr) minmax(360px, 0.65fr);
    gap: 34px;
  }

  .battery-copy {
    grid-column: 2;
    order: initial;
  }

  .battery-video {
    grid-column: 1;
  }

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

  .versions-copy {
    grid-column: auto;
    order: -1;
    text-align: center;
  }

  .versions-video {
    grid-column: auto;
    grid-row: auto;
  }

  .versions-copy p {
    margin: 0 auto;
  }

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

  .version-card-grid {
    grid-template-columns: 1fr;
  }

  .compare-heading {
    padding-inline: 150px 24px;
  }

  .compare-title-wrap h2 {
    font-size: clamp(27px, 2.9vw, 32px);
  }

  .compare-title-wrap p::before,
  .compare-title-wrap p::after {
    width: 90px;
  }

  .price-heading h2 {
    font-size: clamp(34px, 4vw, 46px);
  }

  .price-heading h2::before,
  .price-heading h2::after {
    width: 70px;
  }

  .price-top-grid {
    grid-template-columns: 1fr;
  }

  .today-price-card {
    grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 1fr);
  }

  .maintenance-body {
    grid-template-columns: 150px 1fr 230px;
    gap: 18px;
  }

  .owners-section {
    min-height: auto;
  }

  .owners-hero-car {
    opacity: 0.42;
  }

  .owners-heading {
    margin-top: 18px;
  }

  .owners-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }

  .owners-stats div:nth-child(2) {
    border-left: 0;
  }

  .owners-stats div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .buy-method-inner {
    min-height: auto;
    padding-inline: 22px;
  }

  .buy-method-heading {
    min-height: 102px;
  }

  .buy-method-video img {
    min-height: 420px;
  }

  .buy-method-note {
    grid-template-columns: 100px 1fr;
  }

  .buy-toyota-watermark {
    display: none;
  }

  .prebuy-section {
    min-height: auto;
    padding-top: 80px;
  }

  .deal-inner {
    min-height: auto;
  }

  .deal-top {
    grid-template-columns: 1fr;
  }

  .deal-copy {
    order: -1;
  }

  .deal-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas:
      "s1 s2 s3"
      "s4 s5 s6"
      "s7 s8 s9";
    gap: 18px;
    padding: 0;
  }

  .deal-flow::before,
  .deal-flow::after,
  .deal-step::before,
  .deal-step::after {
    display: none;
  }

  .step-6 {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .step-6 h3,
  .step-6 p {
    text-align: center;
  }

}

@media (max-width: 980px) {
  .decision-layout {
    grid-template-columns: 1fr;
  }

  .decision-copy {
    grid-column: auto;
    grid-row: auto;
    order: -1;
  }

  .decision-video {
    grid-column: auto;
    grid-row: auto;
  }

  .compare-section {
    min-height: auto;
  }

  .compare-heading {
    min-height: auto;
    padding: 12px 0 22px;
    justify-items: stretch;
  }

  .compare-badge {
    position: relative;
    top: auto;
    left: auto;
    width: 126px;
    height: 108px;
    margin: 0 0 18px auto;
  }

  .compare-badge strong {
    font-size: 42px;
  }

  .compare-title-wrap h2 {
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .fit-section {
    min-height: auto;
  }

  .fit-cards {
    grid-template-columns: 1fr;
    width: min(100%, 620px);
    gap: 58px;
  }

  .fit-card {
    min-height: auto;
  }

  .trust-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 0 16px;
  }

  .brand {
    gap: 12px;
    font-size: 17px;
  }

  .toyota-mark,
  .toyota-mark svg {
    width: 52px;
    height: 36px;
  }

  .visit-button {
    display: none;
  }

  .hero {
    padding: 28px 14px 48px;
  }

  .model-name {
    margin-bottom: 10px;
  }

  .hero h1 {
    line-height: 1.45;
  }

  .gold-line {
    margin: 22px auto;
  }

  .hero-description {
    font-size: 17px;
    line-height: 2;
  }

  .video-card {
    border-radius: 18px;
  }

  .video-badge {
    min-width: 0;
    min-height: 58px;
    padding: 0 13px 0 16px;
  }

  .badge-play {
    width: 32px;
    height: 32px;
  }

  .badge-play::before {
    border-top-width: 8px;
    border-bottom-width: 8px;
    border-right-width: 12px;
  }

  .video-controls {
    right: 18px;
    bottom: 17px;
    left: 18px;
    gap: 12px;
  }

  .control-button {
    width: 32px;
    height: 32px;
  }

  .icon-button {
    width: 25px;
    height: 25px;
  }

  .settings-button {
    display: none;
  }

  .faq-guide {
    padding: 42px 14px 36px;
  }

  .faq-bg-car {
    width: 100%;
    min-width: 0;
    opacity: 0.28;
  }

  .section-kicker,
  .faq-heading {
    justify-content: center;
    text-align: center;
  }

  .faq-heading {
    margin: 18px auto 30px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .question-card,
  .question-card-wide {
    min-height: 220px;
    padding: 24px 22px 20px;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.76) 44%, rgba(0, 0, 0, 0.98) 68%, rgba(0, 0, 0, 0.99) 100%),
      var(--card-image) left center / 68% 100% no-repeat,
      #070809;
  }

  .question-card h3,
  .question-card-wide h3 {
    width: min(100%, 250px);
  }

  .question-card:nth-child(11) {
    grid-column: auto;
  }

  .fit-section {
    padding: 0 14px 62px;
  }

  .fit-hero {
    min-height: 480px;
    padding-top: 72px;
    background:
      linear-gradient(180deg, rgba(4, 8, 9, 0.2) 0%, rgba(4, 8, 9, 0.78) 60%, rgba(4, 8, 9, 1) 100%),
      url("ax/fit/fit-hero-bg.png") center top / auto 100% no-repeat;
  }

  .fit-copy {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .fit-copy h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .fit-copy p {
    margin: 0 auto;
    font-size: 16px;
    line-height: 2;
  }

  .fit-cards {
    margin-top: -24px;
    gap: 54px;
  }

  .fit-card {
    padding: 62px 22px 34px;
    border-radius: 16px;
  }

  .fit-card h3 {
    font-size: 22px;
  }

  .fit-card ul {
    font-size: 16px;
    gap: 16px;
  }

  .fit-bottom-icon {
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    margin: 26px auto 0;
    transform: none;
  }

  .weak-item {
    padding-left: 54px;
  }

  .weak-icon,
  .weak-icon::before {
    width: 38px;
    height: 38px;
  }

  .trust-section {
    padding: 16px 14px 34px;
  }

  .trust-hero {
    padding: 18px 0 20px;
  }

  .trust-copy h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .trust-copy > p {
    font-size: 16px;
    line-height: 1.9;
  }

  .trust-note {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .trust-video {
    border-radius: 10px;
  }

  .trust-video-controls {
    right: 13px;
    left: 13px;
    gap: 9px;
    font-size: 13px;
  }

  .trust-gear {
    display: none;
  }

  .trust-read-title {
    margin-top: 6px;
    text-align: center;
  }

  .trust-card-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    min-height: 250px;
  }

  .trust-summary {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding: 22px;
    text-align: center;
  }

  .battery-layout {
    grid-template-columns: 1fr;
  }

  .battery-copy {
    grid-column: auto;
    order: -1;
  }

  .battery-video {
    grid-column: auto;
    grid-row: auto;
  }

  .battery-section {
    padding: 40px 14px 36px;
  }

  .battery-number {
    min-width: 140px;
  }

  .battery-number::before,
  .battery-number::after {
    width: 54px;
  }

  .battery-copy {
    justify-self: stretch;
    text-align: center;
  }

  .battery-copy h2 {
    font-size: clamp(30px, 8vw, 38px);
  }

  .battery-copy > p {
    margin: 0 auto 30px;
    font-size: 16px;
  }

  .battery-list-title {
    justify-content: center;
  }

  .battery-topics {
    margin: 0 auto;
  }

  .battery-video {
    border-radius: 12px;
  }

  .battery-play {
    width: 70px;
    height: 70px;
  }

  .battery-controls {
    right: 14px;
    left: 14px;
    bottom: 14px;
    gap: 10px;
    font-size: 13px;
  }

  .battery-gear {
    display: none;
  }

  .battery-topics {
    max-width: 100%;
  }

  .battery-topics li {
    grid-template-columns: 32px 1fr 36px;
    gap: 10px;
  }

  .battery-quote {
    gap: 12px;
    padding: 16px;
  }

  .versions-section {
    padding: 34px 14px 28px;
  }

  .versions-copy h2 {
    font-size: clamp(31px, 8vw, 42px);
  }

  .versions-video-bar b {
    font-size: 14px;
  }

  .versions-benefits {
    grid-template-columns: 1fr;
    margin: 24px 0;
  }

  .versions-benefits div {
    min-height: 72px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .versions-benefits div:last-child {
    border-bottom: 0;
  }

  .version-card {
    padding: 24px 18px 20px;
  }

  .version-image-row {
    grid-template-columns: 1fr;
  }

  .version-tags {
    grid-template-columns: 1fr 1fr;
  }

  .version-card dl div {
    grid-template-columns: 92px 1fr;
  }

  .versions-note {
    grid-template-columns: 1fr;
    padding: 18px;
    text-align: center;
  }

  .decision-section {
    min-height: auto;
    padding: 46px 14px 42px;
  }

  .decision-label {
    grid-template-columns: 54px 1fr 64px;
    min-height: 70px;
    margin-bottom: 42px;
  }

  .decision-label p {
    padding: 0 12px;
    font-size: 16px;
  }

  .decision-label strong {
    font-size: 46px;
  }

  .decision-car-icon {
    width: 44px;
    height: 44px;
  }

  .decision-copy h2 {
    font-size: clamp(46px, 13vw, 64px);
  }

  .decision-line {
    margin: 18px auto 28px;
  }

  .decision-copy > p {
    font-size: 18px;
  }

  .decision-video {
    border-radius: 12px;
  }

  .decision-play {
    width: 76px;
    height: 76px;
  }

  .decision-controls {
    right: 14px;
    left: 14px;
    bottom: 14px;
    gap: 10px;
    font-size: 13px;
  }

  .decision-controls button:nth-of-type(3) {
    display: none;
  }

  .compare-section {
    padding: 28px 14px 28px;
  }

  .compare-title-wrap h2 {
    padding: 10px 16px;
    border-radius: 20px;
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1.45;
  }

  .compare-title-wrap p {
    display: block;
    font-size: 16px;
    line-height: 2;
  }

  .compare-title-wrap p::before,
  .compare-title-wrap p::after {
    display: none;
  }

  .compare-table-frame {
    border-radius: 10px;
  }

  .compare-table {
    min-width: 980px;
  }

  .compare-table thead th {
    height: 190px;
  }

  .compare-car-head h3 {
    font-size: 25px;
  }

  .compare-car-head p {
    font-size: 15px;
  }

  .compare-car-head img {
    width: 82%;
  }

  .compare-table tbody th,
  .compare-table td {
    font-size: 16px;
  }

  .price-section {
    padding: 24px 10px;
  }

  .price-inner {
    min-height: auto;
    overflow: hidden;
    padding: 0 12px 14px;
  }

  .price-heading {
    padding: 0 0 20px;
  }

  .price-heading span {
    min-width: 130px;
    height: 42px;
    font-size: 21px;
  }

  .price-heading h2 {
    display: block;
    font-size: clamp(29px, 8vw, 38px);
    line-height: 1.55;
    white-space: normal;
  }

  .price-heading h2::before,
  .price-heading h2::after {
    display: none;
  }

  .price-heading p {
    font-size: 16px;
    line-height: 1.8;
  }

  .today-price-card {
    grid-template-columns: 1fr;
    min-width: 0;
    direction: rtl;
  }

  .today-price-card img {
    height: 260px;
    object-position: center;
  }

  .today-price-copy {
    padding: 26px 18px 22px;
  }

  .today-price-copy h3 {
    padding-right: 62px;
    font-size: 19px;
  }

  .today-price-copy strong {
    font-size: 36px;
  }

  .price-chart-card {
    min-width: 0;
    padding: 18px 12px 12px;
  }

  .chart-title {
    justify-content: center;
  }

  .price-chart {
    overflow-x: auto;
  }

  .price-chart svg {
    min-width: 680px;
  }

  .chart-summary {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .info-dot {
    grid-row: auto;
  }

  .maintenance-card {
    padding: 20px 14px;
  }

  .maintenance-head {
    padding: 58px 0 18px;
    text-align: center;
  }

  .maintenance-head .price-icon {
    right: 50%;
    transform: translateX(50%);
  }

  .maintenance-body {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .maintenance-desc {
    width: 100%;
    text-align: center;
  }

  .maintenance-cost strong {
    font-size: 38px;
  }

  .price-footnote {
    padding: 60px 18px 18px;
    font-size: 15px;
  }

  .price-footnote::after {
    top: 18px;
    right: 50%;
    transform: translateX(50%);
  }

  .owners-section {
    padding: 24px 14px 28px;
  }

  .owners-badge {
    min-width: 118px;
    min-height: 54px;
    font-size: 20px;
  }

  .owners-hero-car {
    width: 56vw;
    opacity: 0.25;
  }

  .owners-heading {
    margin: 24px auto 22px;
    padding: 0;
  }

  .owners-heading h2 {
    font-size: clamp(32px, 9vw, 42px);
    white-space: normal;
  }

  .owners-heading p {
    display: block;
    font-size: 15px;
  }

  .owners-people-icon {
    display: none;
  }

  .owners-stats {
    grid-template-columns: 1fr;
  }

  .owners-stats div {
    grid-template-columns: 56px 1fr;
    padding: 13px 18px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .owners-stats div:last-child {
    border-bottom: 0;
  }

  .owners-chat-icon,
  .owners-shield-icon,
  .owners-pin-icon {
    transform: scale(0.78);
    transform-origin: center;
  }

  .owners-star-icon {
    font-size: 48px;
  }

  .review-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review-card img,
  .review-card:nth-last-child(-n + 2) img {
    width: 100%;
    height: 210px;
  }

  .review-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .review-top span {
    font-size: 23px;
  }

  .owners-summary {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 18px;
    text-align: center;
  }

  .owners-summary h3 {
    font-size: 24px;
  }

  .buy-method-section {
    min-height: auto;
    padding: 18px 10px 24px;
  }

  .buy-method-inner {
    padding: 0 10px 16px;
    border-radius: 12px;
  }

  .buy-method-heading {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 90px;
    justify-items: center;
  }

  .buy-method-number {
    position: relative;
    top: auto;
    right: auto;
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    height: 76px;
    width: 86px;
    font-size: 48px;
  }

  .buy-method-heading h2 {
    grid-column: 1;
    grid-row: 2;
    font-size: 22px;
  }

  .buy-method-video {
    border-radius: 10px;
  }

  .buy-method-video img {
    min-height: 360px;
    object-position: 46% center;
  }

  .buy-method-play {
    width: 82px;
    height: 82px;
  }

  .buy-method-play::before {
    border-top-width: 16px;
    border-bottom-width: 16px;
    border-right-width: 24px;
  }

  .buy-method-controls {
    right: 14px;
    bottom: 14px;
    left: 14px;
    gap: 10px;
    font-size: 14px;
  }

  .buy-method-controls button {
    width: 24px;
    height: 24px;
  }

  .buy-method-controls button:nth-child(2),
  .buy-method-controls button:nth-of-type(5) {
    display: none;
  }

  .buy-method-controls div {
    height: 5px;
  }

  .buy-method-note {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 18px;
    padding: 20px 18px;
    text-align: center;
  }

  .buy-bulb-icon {
    width: 74px;
    height: 74px;
  }

  .buy-method-note h3 {
    font-size: 24px;
  }

  .buy-method-note p {
    font-size: 16px;
  }

  .prebuy-section {
    padding: 34px 10px 34px;
  }

  .prebuy-inner {
    overflow-x: auto;
    border-radius: 18px;
  }

  .prebuy-inner img {
    width: 980px;
    max-width: none;
    border-radius: 18px;
  }

  .deal-section {
    min-height: auto;
    padding: 24px 10px;
  }

  .deal-inner {
    padding: 24px 12px;
    border-radius: 12px;
  }

  .deal-top {
    gap: 24px;
  }

  .deal-video {
    border-radius: 10px;
  }

  .deal-video img {
    min-height: 260px;
    object-position: 36% center;
  }

  .deal-badge {
    min-width: 140px;
    min-height: 48px;
    margin-bottom: 18px;
    font-size: 20px;
  }

  .deal-badge strong {
    font-size: 28px;
  }

  .deal-copy h2 {
    font-size: clamp(30px, 8.5vw, 38px);
  }

  .deal-copy h3 {
    margin-top: 16px;
    font-size: 20px;
  }

  .deal-copy h3::after {
    margin: 20px 0 18px;
  }

  .deal-copy p {
    font-size: 16px;
    line-height: 1.9;
  }

  .deal-flow {
    grid-template-columns: 1fr;
    grid-template-areas:
      "s1"
      "s2"
      "s3"
      "s4"
      "s5"
      "s6"
      "s7"
      "s8"
      "s9";
    margin-top: 26px;
  }

  .deal-step {
    min-height: 160px;
  }

  .deal-step img {
    width: 68px;
    height: 68px;
  }

  .step-6 img,
  .step-8 img,
  .step-9 img {
    width: 84px;
  }
}

@media (max-width: 460px) {
  .video-card {
    aspect-ratio: 1 / 1;
  }

  .video-card img {
    object-position: 38% center;
  }

  .video-badge {
    max-width: calc(100% - 28px);
    font-size: 12px;
  }

  .volume-button,
  .fullscreen-button {
    display: none;
  }
}
