*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-stretch: normal;
}

:root {
  --green: #3cad2a;
  --green2: #2F730A;
  --green3: #61ec4b;
  --redl: #FFF0F0;
  --redl2: #FFE0E0;
  --ink: #111418;
  --ink2: #1E2530;
  --ink3: #2E3845;
  --mid: #5A6678;
  --light: #98A4B4;
  --white: #FFFFFF;
  --off: #F7F8FA;
  --off2: #EFF1F5;
  --border: #E2E6ED;
  --border2: #CDD3DC;
  --green: #16A34A;
  --toyota-silver: #B8BFC8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, Helvetica, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TOP ALERT BAR ── */
.alert-bar {
  background: #003F00;
  /* var(--green);*/
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.alert-bar a {
  color: #FFD0D0;
  text-decoration: underline;
  font-weight: 700;
}

.alert-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFB0B0;
  flex-shrink: 0;
  animation: alertpulse 1.5s ease-in-out infinite;
}

@keyframes alertpulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7)
  }
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--ink);
  border-bottom: 3px solid var(--green);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text span:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.nav-logo-text span:last-child {
  font-size: 11px;
  color: var(--toyota-silver);
  letter-spacing: 0.5px;
}

.nav-r {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.nav-phone a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-phone a:hover {
  color: #FF8080;
}

.nav-phone span {
  font-size: 10px;
  color: var(--toyota-silver);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-cta {
  background: var(--green);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--green2);
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Red diagonal accent */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(0, 204, 0, 0.06) 100%);
  pointer-events: none;
}

/* Grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

/* LEFT content */
.hero-content {
  padding: 64px 48px 64px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-crumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--toyota-silver);
  margin-bottom: 20px;
}

.hero-crumb-sep {
  color: var(--green);
}

.hero-crumb-active {
  color: var(--green);
}

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.5px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}

h1 span.red {
  color: var(--green3);
}

h1 span.thin {
  font-weight: 600;
  color: var(--toyota-silver);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* Year selector */
.year-selector {
  margin-bottom: 32px;
}

.year-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--toyota-silver);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.year-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.year-btn {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 120px;
}

.year-btn:hover {
  border-color: rgba(20, 0, 0, 0.5);
  background: rgba(0, 204, 0, 0.08);
}

.year-btn.active {
  border-color: var(--green);
  background: rgba(0, 204, 0, 0.15);
  color: #fff;
}

.year-btn .price-tag {
  font-size: 17px;
  font-weight: 700;
  color: var(--green3);
}

.year-btn .was-price {
  font-size: 11px;
  color: var(--toyota-silver);
  text-decoration: line-through;
}

.year-btn.active .was-price {
  color: rgba(255, 255, 255, 0.5);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-red:hover {
  background: var(--green2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 204, 0, 0.4);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-call:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.btn-call svg {
  color: var(--green3);
}

/* Hero trust pills */
.hero-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.877);
}

/* RIGHT — order panel */
.hero-order {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
}

.order-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFF0F0;
  border: 1px solid #FFCECE;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.order-h {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 35px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.order-sub {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 22px;
  line-height: 1.5;
}

/* Selected product display */
.selected-product {
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sel-info {
  display: flex;
  flex-direction: column;
}

.sel-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.sel-year {
  font-size: 12px;
  color: var(--mid);
  margin-top: 2px;
}

.sel-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.sel-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.sel-was {
  font-size: 11px;
  color: var(--light);
  text-decoration: line-through;
}

.sel-save {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  margin-top: 2px;
}

.ff {
  margin-bottom: 12px;
}

.ff label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink3);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.ff input,
.ff select {
  width: 100%;
  padding: 11px 14px;
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ff input::placeholder {
  color: var(--light);
}

.ff input:focus,
.ff select:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 204, 0, 0.08);
}

.ff select {
  appearance: none;
  cursor: pointer;
}

.ff-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.order-btn {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 6px;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}

.order-btn:hover {
  background: var(--green2);
  box-shadow: 0 4px 16px rgba(0, 204, 0, 0.35);
}

.order-notes {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.order-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--mid);
}

.order-note-icon {
  color: var(--green);
  font-size: 13px;
  flex-shrink: 0;
  font-weight: 700;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 5%;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.tb-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.tb-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--redl);
  border: 1px solid var(--redl2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.tb-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.tb-text span {
  font-size: 13px;
  color: var(--mid);
}

.tb-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── SECTION SHARED ── */
section {
  padding: 88px 5%;
}

.sec-in {
  max-width: 1200px;
  margin: 0 auto;
}

.tag-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.sec-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
}

.sec-tag-line {
  flex: 0 0 28px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.sec-tag-p {
  color: var(--white);
  width: 35%;
}

.sec-h {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.5px;
  line-height: 1.0;
  margin-bottom: 14px;
}

.sec-p {
  font-size: 16px;
  color: var(--mid);
  max-width: 520px;
  line-height: 1.8;
}

/* ── PRODUCTS ── */
.products {
  background: var(--white);
}

.products-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 52px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s;
  position: relative;
}

.product-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(0, 204, 0, 0.1);
  transform: translateY(-3px);
}

.product-card.bestseller {
  border-color: var(--green);
}

.product-card.bestseller::before {
  content: 'BEST SELLER';
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--green);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 3px;
}

.product-img {
  background: linear-gradient(135deg, #f0f2f5, #e8eaee);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Battery SVG illustration inside product card */
.product-img svg {
  width: 120px;
  height: auto;
}

.product-body {
  padding: 20px 18px;
}

.product-model {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.product-years {
  font-size: 12px;
  color: var(--mid);
  font-weight: 500;
  margin-bottom: 14px;
}

.product-features {
  list-style: none;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-features li {
  font-size: 12px;
  color: var(--ink3);
  display: flex;
  align-items: center;
  gap: 7px;
}

.pf-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  background: var(--off);
}

.prod-price {
  display: flex;
  flex-direction: column;
}

.prod-price-now {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.prod-price-was {
  font-size: 12px;
  color: var(--light);
  text-decoration: line-through;
}

.prod-warranty {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  margin-top: 2px;
}

.prod-btn {
  background: var(--ink);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 7px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.prod-btn:hover {
  background: var(--green);
}

.prod-banner {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.prod-banner span {
  font-size: 15px;
  font-weight: 500;
}

/* ── HOW IT WORKS ── */
.hiw {
  background: var(--ink);
}

.hiw .sec-h {
  color: #fff;
}

.hiw .sec-p {
  color: rgba(255, 255, 255, 0.5);
}

.hiw .sec-tag {
  color: #FF8080;
}

.hiw .sec-tag-line {
  background: #FF8080;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.hiw-line {
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 1px;
  border-top: 1.5px dashed rgba(255, 255, 255, 0.1);
}

.hiw-step {
  padding: 0 16px;
  text-align: center;
}

.hiw-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 204, 0, 0.4);
  background: rgba(0, 204, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  font-size: 22px;
  transition: all 0.25s;
}

.hiw-step:hover .hiw-num {
  border-color: var(--green);
  background: rgba(0, 204, 0, 0.15);
}

.hiw-step h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.hiw-step p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

/* ── WARNING SIGNS ── */
.warning {
  background: var(--off);
}

.warning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.warning-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.warning-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  transition: all 0.2s;
}

.warning-item:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(0, 204, 0, 0.06);
}

.warning-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--redl);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.warning-item h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}

.warning-item p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

/* Warning panel right */
.warning-panel {
  background: var(--ink);
  border-radius: 18px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.warning-panel::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 204, 0, 0.2) 0%, transparent 70%);
}

.warning-panel h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.warning-panel>p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.wp-stat {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.wp-stat-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--green3);
  line-height: 1;
  min-width: 80px;
}

.wp-stat-t strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.wp-stat-t span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.wp-div {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 18px 0;
  position: relative;
  z-index: 1;
}

.warn-cta-btn {
  display: block;
  text-align: center;
  background: var(--green);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 24px;
  transition: all 0.2s;
  position: relative;
  z-index: 1;
}

.warn-cta-btn:hover {
  background: #A80000;
}

/* ── COMPARISON TABLE ── */
.compare {
  background: var(--white);
}

.compare-table {
  margin-top: 48px;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--border);
}

.compare-table table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th {
  padding: 16px 20px;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--off);
  border-bottom: 2px solid var(--border);
}

.compare-table th.highlight {
  background: var(--ink);
  color: #fff;
}

.compare-table th.highlight span {
  color: var(--green3);
}

.compare-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--ink3);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table td.highlight {
  background: #FFFAFA;
  font-weight: 600;
  color: var(--ink);
}

.compare-table tr:hover td {
  background: var(--off);
}

.compare-table tr:hover td.highlight {
  background: var(--redl);
}

.check {
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
}

.cross {
  color: #CC0000;
  font-weight: 700;
  font-size: 15px;
}

.neutral {
  color: var(--mid);
}

/* ── REVIEWS ── */
.reviews {
  background: var(--off);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.2s;
}

.review-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(0, 204, 0, 0.07);
}

.review-stars {
  color: #F5A623;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-card blockquote {
  font-size: 14px;
  font-style: italic;
  color: var(--ink3);
  line-height: 1.75;
  margin-bottom: 18px;
  border-left: 3px solid var(--green);
  padding-left: 14px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-ava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--redl);
  border: 1px solid var(--redl2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
}

.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.review-meta {
  font-size: 12px;
  color: var(--light);
  margin-top: 1px;
}

/* ── SERVICE AREA ── */
.service-area {
  background: var(--ink);
  padding: 72px 5%;
}

.sa-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sa-content .sec-h {
  color: #fff;
}

.sa-content .sec-tag {
  color: #FF8080;
}

.sa-content .sec-tag-line {
  background: #FF8080;
}

.sa-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-top: 16px;
}

.sa-states {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.sa-state {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}

.sa-state:hover {
  border-color: rgba(0, 204, 0, 0.4);
  background: rgba(0, 204, 0, 0.08);
}

.sa-flag {
  font-size: 22px;
}

.sa-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.sa-city {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1px;
}

/* Map placeholder SVG */
.sa-map {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── FAQ ── */
.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 48px;
}

.faq-item {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
  transition: all 0.2s;
}

.faq-item:hover {
  background: var(--white);
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(0, 204, 0, 0.06);
}

.faq-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 9px;
}

.faq-item p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.75;
}

/* ── FINAL CTA ── */
.final-cta {
  background: var(--green);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.final-cta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  line-height: 1.0;
}

.final-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--green);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-white:hover {
  background: #FFE8E8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.cta-extras {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.cta-ex {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.cta-ex-check {
  font-size: 14px;
}

/* ── FOOTER ── */
footer {
  background: var(--ink2);
  border-top: 3px solid var(--green);
  padding: 40px 5%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.footer-contact a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.footer-contact a:hover {
  color: #FF8080;
}

.footer-contact span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ── STICKY CALL BAR (mobile) ── */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--green);
  padding: 14px 20px;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.sticky-call a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
}

.sticky-call span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

/* ── ANIMATIONS ── */
.fi {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fi.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 48px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .hero-order {
    padding: 36px 24px;
  }

  .products-intro,
  .warning-grid,
  .sa-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-grid,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hiw-steps {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .hiw-line {
    display: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .sticky-call {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }
}

@media (max-width: 580px) {

  .product-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hiw-steps {
    grid-template-columns: 1fr;
  }

  .ff-row {
    grid-template-columns: 1fr;
  }

  .trust-bar-inner {
    justify-content: center;
  }

  .tb-divider {
    display: none;
  }

  .year-options {
    flex-direction: column;
  }

  .year-btn {
    min-width: unset;
    flex-direction: row;
    justify-content: space-between;
  }

  .sa-states {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-phone a {
    display: none;
  }

  .nav-phone {
    display: none !important;
  }

  .prod-banner {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}

/* Hide by default (desktop) */
/* Hide on desktop */
.mobile-call-bar {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {


  .sa-states {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr) !important;
  }


  .final-cta {
    padding-left: 15px !important;
  }


  .cta-btns {
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    gap: 16px;
    flex-wrap: wrap;
  }

  .final-cta p {

    text-align: start;
  }

  .tag-row.custome-how-work {
    display: flex;
    justify-content: center;
  }

  .sech-h {
    text-align: center !important;
  }

  .sec-tag-p {
    width: 100%;
    text-align: center;
  }

  .cta-extras {
    display: flex;
    align-items: center;
    justify-content: start !important;
    gap: 28px;
    margin-top: 28px;
    flex-wrap: wrap;
  }


  section {
    padding: 50px 5% !important;
  }

  .trust-bar-inner {
    justify-content: start !important;
  }

  .wp-stat-n {
    font-size: 35px !important;
  }

  .hero-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .alert-bar {
    display: none !important;
  }

  .mobile-call-bar {

    z-index: 9999;
    display: block !important;
    text-align: center;
    padding: 10px;
    background: #003f00;
  }

  .mobile-call-bar a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
  }
}

.mobile-call-bar a {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  /* ✅ space between icon and number */
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  padding: 5px;
}

/* 🔴 Icon color */
.mobile-call-bar i {
  color: white;
}




/*table css */

@media (max-width: 768px) {
  .tb-item {
    display: flex;
    align-items: center;
    gap: 32px !important;
  }

  .trust-pill {
    font-size: 14px;
  }


  .compare-table thead {
    display: none;
  }

  .compare-table table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table td {
    display: block;
    width: 100%;
  }

  .compare-table tr {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
  }

  .compare-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
  }

  .compare-table td:last-child {
    border-bottom: none;
  }

  /* =========================
     COLUMN HEADINGS FIX
     ========================= */

  /* 1st column = What You Get */
  .compare-table td:nth-child(1)::before {
    /* content: "get in ";
    font-weight: 600; */
    font-size: 187px;
    /* 👈 yahan size set karo */

    background-color: red;
  }

  /* 2nd column = Aloy Hybrid */
  .compare-table td:nth-child(2)::before {
    content: "Aloy Hybrid";
    font-weight: 600;
  }

  /* 3rd column = Toyota Dealership */
  .compare-table td:nth-child(3)::before {
    content: "Toyota Dealership";
    font-weight: 600;
  }

  /* 4th column = Used / Junkyard */
  .compare-table td:nth-child(4)::before {
    content: "Used / Junkyard";
    font-weight: 600;
  }

  /* LEFT LABEL */
  .compare-table td::before {
    color: #333;
    flex: 1;
    text-align: left;
  }

  /* RIGHT VALUE */
  .compare-table td>* {
    margin-left: auto;
    text-align: right;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  /* highlight column */
  .compare-table td.highlight {
    background: #fff8e1;
  }

  .check {
    color: green;
    font-weight: bold;
  }

  .cross {
    color: red;
    font-weight: bold;
  }

  .neutral {
    color: #999;
  }

  .compare-table td:first-child {
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink3);
  }

  td .check {
    padding-right: 10px;
  }

  td .cross {
    padding-right: 10px;
  }
}

/* Hide on desktop */
@media (min-width: 992px) {
  a.btn-red {
    display: none !important;
  }
}

/*thanks you page*/

.thank-you-title {
  color: #004d00;
  /* Deep green matching the image */
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 15px;
}

.thank-you-subtitle {
  color: #333333;
  font-size: 1.1rem;
}

.envelope-container {
  max-width: 250px;
  width: 100%;
}

/* Responsive adjustment for small screens */
@media (max-width: 768px) {
  .text-section {
    text-align: center !important;
    margin-bottom: 30px;
  }
}

.center-page {
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hiw-step.fi.vis {
  padding-left: 0;
}

@media (max-width: 767px) {
  .moblie_respone_button {
    justify-content: center !important;
  }
}

.nav-cta {
  display: none;
}

@media (max-width: 767px) {
  .nav-cta {
    display: inline-block;
  }
}