/* ============================================================
   index-v2.css — Homepage v2 (Evodrive-inspired light theme)
   Author: Temlines — templines.com
   ============================================================ */

/* Fixed frosted-glass header — only for index.html (.iv2-page) */
body.iv2-page .hd-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(10, 10, 14, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 200;
}
body.iv2-page .hd-header.scrolled {
  background: rgba(10, 10, 14, 0.88);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
body.iv2-page .hd-header .hd-logo,
body.iv2-page .hd-header .hd-nav__link,
body.iv2-page .hd-header .hd-nav__link span,
body.iv2-page .hd-header .gx-btn--dark {
  color: #fff;
}
body.iv2-page .hd-header .gx-btn--dark:hover {
  color: var(--gx-g500);
}


.iv2-page {
  background: var(--gx-white);
  color: var(--gx-g500);
}

/* Section utility titles */
.iv2-section-title {
  font-family: var(--gx-font-heading);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 700;
  color: var(--gx-g500);
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.iv2-section-desc {
  font-size: 1rem;
  color: var(--gx-g100);
  line-height: 1.75;
  max-width: 34rem;
}

/* Outline button adapted for light backgrounds */
.iv2-btn--dark-outline {
    color: var(--gx-g500);
    border-color: rgba(31, 31, 30, 0.2);
    min-width: 200px;
    display: flex;
    justify-content: center;
    background: #fff;
}

.iv2-btn--dark-outline:hover {
  background: var(--gx-g500);
  color: var(--gx-white);
  border-color: var(--gx-g500);
}

/* ============================================================
   Header overrides for transparent / scrolled state on light bg
   ============================================================ */
.iv2-header {
  background: rgba(248,248,246,0.92) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(31,31,30,0.07);
}

.iv2-header .gx-header__logo,
.iv2-header .gx-header__link { color: var(--gx-g500); }

.iv2-header .gx-header__link--active { color: var(--gx-g500) !important; text-decoration: underline; text-decoration-color: var(--gx-lime); text-underline-offset: 4px; }
.iv2-header .gx-header__link:hover   { color: var(--gx-g500); opacity: 0.6; }

.iv2-nav-cta {
    height: 2.625rem;
    font-size: 0.875rem;
    padding: 0 0.75rem 0 1.25rem;
    background: var(--gx-lime);
    border: 0;
    color: var(--gx-g500);
}

.iv2-nav-cta .gx-btn__circle {
  width: 1.875rem;
  height: 1.875rem;
}

/* ============================================================
   1. HERO
   ============================================================ */
.iv2-hero {
  position: relative;
  background: var(--gx-white);
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../images/001.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 0;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
}

/* Large watermark */
.iv2-hero__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%) translateX(var(--iv2-watermark-shift, 0px));
  font-family: var(--gx-font-heading);
  font-size: clamp(10rem, 18vw, 18rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(31,31,30,0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

.iv2-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-top: 3rem;
  padding-bottom: 2rem;
  flex: 1;
}

/* ---- Eyebrow ---- */
.iv2-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--gx-font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.06em;
  margin-bottom: 1.75rem;
}

.iv2-hero__eyebrow-sep { opacity: 0.3; }

/* ---- Headline + rotating words ---- */
.iv2-hero__headline {
    font-family: var(--gx-font-heading);
    font-size: clamp(2.5rem, 6vw + 1rem, 5rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--gx-white);
    margin-bottom: 1.75rem;
}

.iv2-hero__line1 {
  display: block;
  margin-bottom: 0.125rem;
}

/* Rotating word wrapper */
.iv2-hero__rotating-wrap {
  display: block;
  position: relative;
  height: 1.15em;
  overflow: visible;
}

.iv2-word {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--gx-lime);
  opacity: 0;
  transform: translateY(20px);
  animation: iv2WordIn 9s ease-in-out infinite;
  white-space: nowrap;
}

.iv2-word--2 { animation-delay: 3s; }
.iv2-word--3 { animation-delay: 6s; }

@keyframes iv2WordIn {
  0%           { opacity: 0; transform: translateY(20px); }
  8%           { opacity: 1; transform: translateY(0); }
  28%          { opacity: 1; transform: translateY(0); }
  36%          { opacity: 0; transform: translateY(-20px); }
  100%         { opacity: 0; transform: translateY(-20px); }
}

/* ---- Description ---- */
.iv2-hero__desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  max-width: 32rem;
  margin-bottom: 2.25rem;
}

/* ---- Actions ---- */
.iv2-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* ---- Trust strip ---- */
.iv2-hero__trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.iv2-trust__item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--gx-font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
}

.iv2-trust__sep {
  width: 1px;
  height: 1rem;
  background: rgba(255, 255, 255, 0.25);
}

/* ---- Car image side ---- */
.iv2-hero__img-wrap {
  position: relative;
}

.iv2-hero__car {
  width: 100%;
  height: 30rem;
  border-radius: var(--gx-r-2xl);
  border: 1.5px solid rgba(31,31,30,0.07);
}

/* Floating chips */
.iv2-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--gx-white);
  border: 1.5px solid rgba(31,31,30,0.08);
  border-radius: var(--gx-r-xl);
  padding: 0.625rem 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  font-family: var(--gx-font-mono);
  font-size: 0.75rem;
  color: var(--gx-g200);
  backdrop-filter: blur(12px);
  animation: iv2Float 4s ease-in-out infinite;
}

.iv2-chip--1 { top: 1.5rem;  left: -1.5rem; animation-delay: 0s; }
.iv2-chip--2 { bottom: 5rem; left: -1.5rem; animation-delay: 1.3s; }
.iv2-chip--3 { top: 2.5rem;  right: -0.5rem; animation-delay: 2.2s; }



.iv2-chip__val {
  font-family: var(--gx-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gx-g500);
  line-height: 1;
}

.iv2-chip__label {
    font-family: var(--gx-font-mono);
    font-size: 0.6875rem;
    padding-top: 3px;
}

@keyframes iv2Float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ---- Phone / info bar ---- */
.iv2-hero__phone-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(31,31,30,0.07);
   background: var(--gx-darker);
  backdrop-filter: blur(12px);
}

.iv2-phone-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.875rem 0;
  flex-wrap: wrap;
}

.iv2-phone-bar__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--gx-font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color var(--gx-t);
}

.iv2-phone-bar__phone:hover { color: var(--gx-g100); }

.iv2-phone-bar__sep {
  width: 1px;
  height: 1.125rem;
  background: #fff;
}


.iv2-phone-bar svg{
    width: 24px;
    height: 24px;
}

.iv2-phone-bar__text {
  font-size: 0.8125rem;
  color: #fff;
}

.iv2-phone-bar__cta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--gx-font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--gx-lime);
  text-underline-offset: 3px;
  transition: opacity var(--gx-t);
  margin-left: auto;
}

.iv2-phone-bar__cta:hover { opacity: 0.65; }

/* ============================================================
   2. SERVICES
   ============================================================ */
.iv2-services {
  background: var(--gx-off-white);
  padding: 7rem 0;
}

.iv2-services__head {
  text-align: center;
  margin-bottom: 4rem;
}

.iv2-services__head .iv2-section-desc { margin: 0 auto; text-align: center; }

.iv2-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Service card */

.iv2-scard {
  background: var(--gx-white);
  border-radius: var(--gx-r-2xl);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1.5px solid rgba(31,31,30,0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
}

.iv2-scard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.08);
  background: var(--gx-g500);
  border-color: transparent;
}

.iv2-scard:hover .iv2-scard__title { color: var(--gx-white); }
.iv2-scard:hover .iv2-scard__text  { color: rgba(255,255,255,0.5); }

.iv2-scard__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--gx-r-lg);
  background: var(--gx-off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}



.iv2-scard:hover .iv2-scard__icon {
  background: rgba(201,236,102,1);
}

.iv2-scard__title {
  font-family: var(--gx-font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gx-g500);
  line-height: 1.3;
}

.iv2-scard__text {
  font-size: 0.875rem;
  color: var(--gx-g100);
  line-height: 1.7;
  flex: 1;
}

.iv2-scard__link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: var(--gx-font-mono);
    font-size: 16px;
    font-weight: 600;
    color: var(--gx-g500);
    text-decoration: underline;
    text-decoration-color: var(--gx-lime);
    text-underline-offset: 3px;
    transition: opacity var(--gx-t);
}

.iv2-scard__link:hover { opacity: 0.6; }

.iv2-scard:hover .iv2-scard__link {
    color: #fff;
}

/* ============================================================
   3. MODELS STRIP
   ============================================================ */
.iv2-models {
  background: var(--gx-white);
  padding: 7rem 0 5rem;
}

.iv2-models__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.iv2-models__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Catalog-style model cards */
.iv2-mcard {
  width: 100%;
}

.iv2-models .cat-card {
  background: var(--gx-white);
  border: 1px solid rgba(31,31,30,0.08);
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
  text-decoration: none;
}

.iv2-models .cat-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}

.iv2-models .cat-card__img-wrap {
  position: relative;
  background: var(--gx-off-white);
  overflow: hidden;
}

.iv2-models .cat-card__img {
  width: 100%;
  height: auto;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

.iv2-models .cat-card:hover .cat-card__img { transform: scale(1.04); }

/* Responsive grid */
@media (max-width: 1024px) {
  .iv2-models__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .iv2-models__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.iv2-models .cat-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3125rem 0.75rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-family: var(--gx-font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gx-g500);
}

.iv2-models .cat-card__badge--accent {
  background: var(--gx-lime);
  color: var(--gx-dark);
}

.iv2-models .cat-card__save {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.88);
  border-radius: 50%;
  color: var(--gx-g100);
  transition: color 0.2s, background 0.2s;
  border: none;
}

.iv2-models .cat-card__save:hover { color: #DC2626; background: var(--gx-white); }

.iv2-models .cat-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.iv2-models .cat-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.iv2-models .cat-card__name {
  font-family: var(--gx-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gx-g500);
  letter-spacing: -0.01em;
}

.iv2-models .cat-card__specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.iv2-models .cat-card__specs li {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--gx-g100);
}

.iv2-models .cat-card__specs li svg {
  flex-shrink: 0;
  color: var(--gx-g200);
}

.iv2-models .cat-card__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  margin-top: auto;
}

.iv2-models .cat-card__btn {
    flex: 1;
    justify-content: center;
    font-size: 0.875rem;
    height: 2.75rem;
    background: rgba(31, 31, 30, 0.2);
    border: rgba(31, 31, 30, 0.2);
    color: #222;
}


.iv2-models .cat-card__btn:hover{
    background-color: #222;
    color: #fff;
}

.iv2-models .cat-card__btn:hover {
    background-color: #222;
    color: #fff;
}

.iv2-models .cat-card__btn:hover .gx-btn__circle{
    background-color: #fff;
    color: #222;
}


.iv2-models .cat-card__price {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 5rem;
}

.iv2-models .cat-card__price-from {
  font-family: var(--gx-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gx-g100);
}

.iv2-models .cat-card__price-val {
  font-family: var(--gx-font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gx-g500);
}

/* ============================================================
   4. STATS
   ============================================================ */
.iv2-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.iv2-stats {
  background: linear-gradient(rgba(31, 31, 30, 0.7), rgba(31, 31, 30, 0.7)), url('../../images/001.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 5.5rem 0;
}

.iv2-stats__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.iv2-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 4rem;
}

.iv2-stat__num {
  font-family: var(--gx-font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gx-white);
  line-height: 1;
}

.iv2-stat__suffix {
  font-family: var(--gx-font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--gx-lime);
  line-height: 1;
  margin-left: 0.125rem;
}

.iv2-stat__num + .iv2-stat__suffix {
  /* when suffix immediately follows num, put them inline */
  display: inline;
}

.iv2-stat__label {
  font-family: var(--gx-font-mono);
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.iv2-stat__sep {
  width: 1px;
  height: 4rem;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* Fix: number + suffix side by side */
.iv2-stat > .iv2-stat__num,
.iv2-stat > .iv2-stat__suffix {
  display: inline;
  vertical-align: baseline;
}

.iv2-stat-num-row {
  display: flex;
  align-items: baseline;
  gap: 0.125rem;
}

/* ============================================================
   5. TECHNOLOGY SECTION
   ============================================================ */
.iv2-tech {
  background: var(--gx-off-white);
  padding: 8rem 0;
}

.iv2-tech__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.iv2-tech__media { position: relative; }

.iv2-tech__img {
  width: 100%;
  height: 30rem;
  border-radius: var(--gx-r-2xl);
}

.iv2-tech__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--gx-g500);
  color: var(--gx-white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--gx-r-xl);
  font-family: var(--gx-font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.iv2-tech__desc {
  font-size: 1rem;
  color: var(--gx-g100);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.iv2-tech__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.iv2-tech__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gx-g200);
  line-height: 1.5;
}

.iv2-tech__check {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: var(--gx-r-full);
  background: var(--gx-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.0625rem;
}

/* ============================================================
   6. REVIEWS
   ============================================================ */
.iv2-reviews {
  background: var(--gx-white);
  padding: 7.5rem 0;
}

.iv2-reviews__head {
  text-align: center;
  margin-bottom: 4rem;
}

.iv2-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.iv2-rcard {
  background: var(--gx-off-white);
  border-radius: var(--gx-r-2xl);
  padding: 2.25rem;
  border: 1.5px solid rgba(31,31,30,0.06);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.iv2-rcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.iv2-rcard__stars { display: flex; gap: 0.2rem; }


.iv2-rcard__stars svg{
            fill: orange;
    width: 17px;
    height: 17px;
}

.iv2-rcard__quote {
  font-size: 0.9375rem;
  color: var(--gx-g200);
  line-height: 1.75;
  flex: 1;
  margin: 0;
}

.iv2-rcard__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(31,31,30,0.07);
}

.iv2-rcard__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.iv2-rcard__name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gx-g500);
  margin-bottom: 0.125rem;
}

.iv2-rcard__car {
  display: block;
  font-family: var(--gx-font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
}

/* ============================================================
   7. CTA STRIP
   ============================================================ */
.iv2-cta {
  background: var(--gx-off-white);
  border-top: 1px solid rgba(31,31,30,0.07);
  padding: 2rem 0;
}

.iv2-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.iv2-cta__title {
  font-family: var(--gx-font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--gx-g500);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.iv2-cta__desc {
    font-size: 0.9rem;
    color: var(--gx-g100);
    max-width: 32rem;
    line-height: 1.7;
    margin-top: -10px;
}

.iv2-cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.iv2-cta__browse {
  color: var(--gx-g500);
  border-color: rgba(31,31,30,0.2);
}

.iv2-cta__browse:hover {
  background: var(--gx-g500);
  color: var(--gx-white);
  border-color: var(--gx-g500);
}

/* ============================================================
   2b. WHY CHOOSE US — 2-col features + center visual
   ============================================================ */
.iv2-services__features {
  display: grid;
  grid-template-columns: 1fr 18rem 1fr;
  gap: 4rem;
  align-items: center;
}

.iv2-services__col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.iv2-services__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28rem;
}

.iv2-services__bg-circle {
  position: absolute;
  width: 17rem;
  height: 17rem;
  border-radius: 50%;
  background: var(--gx-beige);
}

.iv2-services__img {
  position: relative;
  z-index: 1;
  width: 16rem;
  height: 26rem;
  border-radius: var(--gx-r-2xl);
  object-fit: cover;
  object-position: center top;
  /* mask-image: linear-gradient(to bottom, black 60%, transparent 100%); */
  /* -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%); */
  /* box-shadow: -6px 0 0 0 var(--gx-lime); */
}

.iv2-feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.iv2-services__col:first-child .iv2-feat {
  flex-direction: row-reverse;
  text-align: right;
}

.iv2-feat__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--gx-r-md);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(31, 31, 30, 0.2);
  box-shadow: none;
}
.iv2-feat__icon svg {
  stroke: var(--gx-g500);
}

.iv2-feat__title {
  font-family: var(--gx-font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gx-g500);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.iv2-feat__text {
  font-size: 0.8125rem;
  color: var(--gx-g100);
  line-height: 1.65;
}

/* ============================================================
   3b. MODELS TABS + GRID
   ============================================================ */
.iv2-models__tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.iv2-models__tab {
  padding: 0.625rem 1.5rem;
  border-radius: var(--gx-r-full);
  font-family: var(--gx-font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--gx-off-white);
  color: var(--gx-g200);
  border: 1.5px solid rgba(31,31,30,0.08);
  cursor: pointer;
  transition: background var(--gx-t), color var(--gx-t), border-color var(--gx-t);
}

.iv2-models__tab.is-active,
.iv2-models__tab:hover {
  background: var(--gx-g500);
  color: var(--gx-white);
  border-color: var(--gx-g500);
}

.iv2-models__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.iv2-models__grid .cat-card[hidden] {
  display: none;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.iv2-how {
  background: var(--gx-beige);
  padding: 7rem 0;
}

.iv2-how__head {
  text-align: center;
  margin-bottom: 4rem;
}

.iv2-how__head .iv2-section-desc {
  margin: 0 auto;
}

.iv2-how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.iv2-how__step {
  background: var(--gx-white);
  border-radius: var(--gx-r-2xl);
  padding: 2.5rem 2rem;
  border: 1.5px solid rgba(31,31,30,0.06);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.iv2-how__step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gx-lime);
  border-radius: var(--gx-r-2xl) var(--gx-r-2xl) 0 0;
}
.iv2-how__step:hover {
  border-color: rgba(31,31,30,0.14);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}

.iv2-how__step-num {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--gx-font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(31,31,30,0.07);
  line-height: 1;
}

.iv2-how__step-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--gx-r-md);
  background: var(--gx-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: none;
}
.iv2-how__step-icon svg {
  stroke: var(--gx-dark);
}

.iv2-how__step-title {
  font-family: var(--gx-font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gx-g500);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.iv2-how__step-text {
  font-size: 0.8125rem;
  color: var(--gx-g100);
  line-height: 1.65;
}

/* ============================================================
   OUR BRANDS
   ============================================================ */
.iv2-brands {
  background: var(--gx-white);
  padding: 6rem 0;
  border-bottom: 1px solid rgba(31, 31, 30, 0.06);
}

.iv2-brands__head {
  text-align: center;
  margin-bottom: 4rem;
}

.iv2-brands__head .iv2-section-desc {
  margin: 0 auto;
}

.iv2-brands__logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  padding: 0 2rem;
}

.iv2-brands__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(31, 31, 30, 0.12);
  border-radius: 0;
  font-family: var(--gx-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gx-g500);
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
  text-decoration: none;
  background: var(--gx-off-white);
}

.iv2-brands__logo:hover {
  border-color: var(--gx-lime);
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.12);
  transform: translateY(-2px);
}

.iv2-brands__logo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gx-lime);
  flex-shrink: 0;
  margin-left: -10px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1280px) {
  .iv2-services__grid { grid-template-columns: 1fr 1fr; }
  .iv2-brands__logos  { grid-template-columns: repeat(6, 1fr); gap: 1.25rem; padding: 0 1rem; }
}

@media (max-width: 1024px) {
  .iv2-brands__logos { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .iv2-hero__inner   { grid-template-columns: 1fr; }
  .iv2-hero__img-wrap { display: none; }
  .iv2-tech__inner   { grid-template-columns: 1fr; }
  .iv2-tech__media   { order: 2; }
  .iv2-tech__text    { order: 1; }
  .iv2-reviews__grid { grid-template-columns: 1fr; max-width: 36rem; margin: 0 auto; }
  .iv2-stat          { padding: 1rem 2rem; }
  .iv2-services__features { grid-template-columns: 1fr; }
  .iv2-services__visual    { display: none; }
  .iv2-services__col:first-child .iv2-feat {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .iv2-feat {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .iv2-models__grid        { grid-template-columns: repeat(2, 1fr); }
  .iv2-how__steps          { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .iv2-services__grid    { grid-template-columns: 1fr; }
  .iv2-models__head      { flex-direction: column; align-items: flex-start; }
  .iv2-cta__inner        { flex-direction: column; align-items: flex-start; }
  .iv2-hero__watermark   { font-size: 8rem; }
  .iv2-stat__sep         { display: none; }
  .iv2-stats__grid       { flex-wrap: wrap; justify-content: center; }
  .iv2-stat              { width: 50%; }
  .iv2-phone-bar         { justify-content: center; }
  .iv2-phone-bar__cta    { margin-left: 0; }
  .iv2-models__grid        { grid-template-columns: 1fr; }
  .iv2-how__steps          { grid-template-columns: 1fr; }
  .iv2-brands__logos       { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; padding: 0 1rem; }

  /* Hero text fits viewport */
  .iv2-hero__headline      { font-size: clamp(2rem, 9vw, 2.75rem); margin-bottom: 1.25rem; }
  .iv2-hero__rotating-wrap { height: 1.25em; }
  .iv2-word                { white-space: normal; }
  .iv2-hero__inner         { padding-top: 6rem; padding-bottom: 1.5rem; gap: 1rem; }
  .iv2-hero__desc          { font-size: 0.95rem; }
}

/* ============================================================
   Hero variants with different background images
   ============================================================ */

/* index.html — custom hero with 2.jpg background */
.iv2-hero.idx-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75)), url('../../images/2.jpg');
}

.idx-hero .iv2-hero__watermark {
  color: rgba(255, 255, 255, 0.08);
}

.idx-hero .iv2-hero__eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.idx-hero .iv2-hero__headline {
  color: var(--gx-white);
}

.idx-hero .iv2-hero__desc {
  color: rgba(255, 255, 255, 0.9);
}

.idx-hero .iv2-trust__item {
  color: rgba(255, 255, 255, 0.8);
}

.idx-hero .iv2-trust__item svg {
  stroke: rgba(255, 255, 255, 0.9);
}

.idx-hero .iv2-trust__sep {
  background: rgba(255, 255, 255, 0.3);
}

.idx-hero .iv2-hero__car {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.idx-hero .iv2-chip {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.idx-hero .iv2-hero__phone-bar {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.idx-hero .iv2-phone-bar__phone {
  color: var(--gx-white);
}

.idx-hero .iv2-phone-bar__phone:hover {
  color: var(--gx-lime);
}

.idx-hero .iv2-phone-bar__sep {
  background: rgba(255, 255, 255, 0.2);
}

.idx-hero .iv2-phone-bar__text {
  color: rgba(255, 255, 255, 0.65);
}

.idx-hero .iv2-phone-bar__cta {
  color: var(--gx-lime);
}

/* index2.html — custom hero with moto2.jpg background */
.iv2-hero.idx2-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('../../images/moto2.jpg');
}

.idx2-hero .iv2-hero__watermark {
  color: rgba(255, 255, 255, 0.08);
}

.idx2-hero .iv2-hero__eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.idx2-hero .iv2-hero__headline {
  color: var(--gx-white);
}

.idx2-hero .iv2-hero__desc {
  color: rgba(255, 255, 255, 0.9);
}

.idx2-hero .iv2-trust__item {
  color: rgba(255, 255, 255, 0.8);
}

.idx2-hero .iv2-trust__item svg {
  stroke: rgba(255, 255, 255, 0.9);
}

.idx2-hero .iv2-trust__sep {
  background: rgba(255, 255, 255, 0.3);
}

.idx2-hero .iv2-hero__car {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.idx2-hero .iv2-chip {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.idx2-hero .iv2-hero__phone-bar {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.idx2-hero .iv2-phone-bar__phone {
  color: var(--gx-white);
}

.idx2-hero .iv2-phone-bar__phone:hover {
  color: var(--gx-lime);
}

.idx2-hero .iv2-phone-bar__sep {
  background: rgba(255, 255, 255, 0.2);
}

.idx2-hero .iv2-phone-bar__text {
  color: rgba(255, 255, 255, 0.65);
}

.idx2-hero .iv2-phone-bar__cta {
  color: var(--gx-lime);
}

/* ============================================================
   Index hero carousel — car slider
   ============================================================ */
.idx-hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--gx-r-2xl, 1.5rem);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.idx-hero-slider__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.idx-hero-slide {
  flex: 0 0 100%;
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
}

.idx-hero-slide__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.idx-hero-slide:hover .idx-hero-slide__img {
  transform: scale(1.04);
}

.idx-hero-slide__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.idx-hero-slide__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.2rem 0.65rem;
  border-radius: 2rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.2);
  color: #fff;
  backdrop-filter: blur(6px);
}

.idx-hero-slide__badge--accent { background: rgba(168, 85, 247, 0.75); }

.idx-hero-slide__name {
  font-family: var(--gx-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.idx-hero-slide__price {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* Dots */
.idx-hero-slider__dots {
  position: absolute;
  bottom: 1rem;
  right: 1.25rem;
  display: flex;
  gap: 0.375rem;
  z-index: 3;
}

.idx-hero-slider__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.25s;
}

.idx-hero-slider__dot--active {
  background: #fff;
  width: 1.1rem;
  border-radius: 1rem;
}

/* ============================================================
   Find Your Car — full-bleed hero slider + search panel
   ============================================================ */
.iv2-find {
  position: relative;
  padding-bottom: 0;
  background: var(--gx-off-white, #f7f7f5);
}

.iv2-find__slider {
  position: relative;
  height: clamp(38rem, 90vh, 56rem);
  overflow: hidden;
}

.iv2-find__slides {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.iv2-find__slide {
  position: absolute;
  top: -10%;
  left: 0;
  right: 0;
  height: 120%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 800ms ease;
  will-change: transform;
}
.iv2-find__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.65) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.4) 100%);
}
.iv2-find__slide.is-active { opacity: 1; }

/* Prev/next buttons */
.iv2-find__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--gx-t, 200ms) ease, transform var(--gx-t, 200ms) ease;
}
.iv2-find__nav:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.05);
}
.iv2-find__nav--prev { left: 1.5rem; }
.iv2-find__nav--next { right: 1.5rem; }

/* Centered text overlay */
.iv2-find__overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem 6rem;
  color: #fff;
}

/* Sub eyebrow with dot */
.iv2-find__sub {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--gx-font-mono, 'JetBrains Mono', monospace);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 1.1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
}
.iv2-find__sub-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gx-lime);
  box-shadow: 0 0 0 4px rgba(201,236,102,0.25);
  animation: ivFindPulse 2s ease-in-out infinite;
}
@keyframes ivFindPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201,236,102,0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(201,236,102,0.0); }
}

/* Title */
.iv2-find__title {
  font-family: var(--gx-font-heading, 'Inter Tight', sans-serif);
  font-size: clamp(2.75rem, 7vw, 5.75rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
  margin: 0 0 1.5rem;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}
/* Lead paragraph */
.iv2-find__lead {
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 0 2rem;
}

/* CTAs */
.iv2-find__ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.iv2-find__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  border-radius: 4rem;
  font-family: var(--gx-font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform var(--gx-t) ease, background var(--gx-t) ease, color var(--gx-t) ease;
}
.iv2-find__btn:hover { transform: translateY(-2px); }
.iv2-find__btn--primary {
  background: var(--gx-lime);
  color: var(--gx-dark);
}
.iv2-find__btn--primary:hover { background: #d4f072; }
.iv2-find__btn--ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.iv2-find__btn--ghost:hover {
  background: rgba(255,255,255,0.16);
}

/* Search panel — overlaps slider bottom */
.iv2-find__panel-wrap {
  position: relative;
  z-index: 5;
  margin-top: -3.5rem;
  margin-bottom: 2rem;
}
.iv2-find__panel {
  background: #fff;
  border-radius: var(--gx-r-xl, 1rem);
  box-shadow: 0 30px 60px rgba(15,18,30,0.12);
  position: relative;
  z-index: 1;
}

.iv2-find__fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 0;
  align-items: center;
  background: #fff;
  padding: 1rem;
  min-height: 6rem;
}

.iv2-find__field {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  height: 100%;
  border-right: 1px solid var(--gx-gray-light, #e8e8e8);
  cursor: pointer;
  position: relative;
  transition: background 200ms ease;
}
.iv2-find__field:first-child { padding-left: 1rem; }
.iv2-find__field:hover {
  background: rgba(15, 18, 30, 0.025);
}
.iv2-find__field-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gx-off-white, #f3f3f0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gx-g500, #0f121e);
  transition: background 200ms ease, color 200ms ease;
}
.iv2-find__field:hover .iv2-find__field-icon,
.iv2-find__field.is-open .iv2-find__field-icon,
.iv2-find__field.has-selection .iv2-find__field-icon {
  background: var(--gx-dark, #0f121e);
  color: var(--gx-lime);
}
.iv2-find__field-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
  flex: 1;
  width: 100%;
  position: relative;
}
.iv2-find__field-label {
  font-family: var(--gx-font-mono, monospace);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gx-g100, #8a8a85);
  line-height: 1;
}
/* Custom trigger button (replaces native select) */
.iv2-find__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  font-family: var(--gx-font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gx-g500, #0f121e);
  cursor: pointer;
  width: 100%;
  text-align: left;
  line-height: 1.2;
}
.iv2-find__trigger:focus { outline: none; }
.iv2-find__value {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.iv2-find__caret {
  flex-shrink: 0;
  color: var(--gx-g100, #8a8a85);
  transition: transform 200ms ease, color 200ms ease;
}
.iv2-find__field.is-open .iv2-find__caret {
  transform: rotate(180deg);
  color: var(--gx-g500, #0f121e);
}

/* Dropdown */
.iv2-find__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  z-index: 20;
  list-style: none;
  margin: 0;
  padding: 0.4rem;
  background: #fff;
  border: 1px solid var(--gx-gray-light, #e8e8e8);
  border-radius: var(--gx-r-md, 0.65rem);
  box-shadow: 0 16px 40px rgba(15, 18, 30, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.4rem);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  max-height: 18rem;
  overflow-y: auto;
}
.iv2-find__field.is-open {
  z-index: 30;
}
.iv2-find__field.is-open .iv2-find__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.iv2-find__dropdown li {
  padding: 0.6rem 0.85rem;
  font-family: var(--gx-font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gx-g500, #0f121e);
  border-radius: var(--gx-r-sm, 0.4rem);
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
  white-space: nowrap;
}
.iv2-find__dropdown li:hover {
  background: var(--gx-off-white, #f7f7f5);
}
.iv2-find__dropdown li.is-selected {
  background: var(--gx-dark, #0f121e);
  color: #fff;
}

.iv2-find__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0 2rem;
  height: 4rem;
  background: var(--gx-dark, #0f121e);
  color: #fff;
  border: 0;
  border-radius: var(--gx-r-md, 0.65rem);
  font-family: var(--gx-font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  margin-left: 0.5rem;
  transition: background 200ms ease;
}
.iv2-find__submit:hover {
  background: var(--gx-lime);
  color: var(--gx-dark);
}

@media (max-width: 1024px) {
  .iv2-find__panel-wrap { margin-top: -5rem; }
  .iv2-find__fields { grid-template-columns: 1fr 1fr; }
  .iv2-find__field { border-right: 0; padding: 0.75rem 0; border-bottom: 1px solid var(--gx-gray-light, #e8e8e8); }
  .iv2-find__field:nth-child(odd) { padding-right: 1rem; }
  .iv2-find__field:nth-child(even) { padding-left: 1rem; border-left: 1px solid var(--gx-gray-light, #e8e8e8); }
  .iv2-find__submit { grid-column: 1 / -1; margin-left: 0; margin-top: 1rem; justify-content: center; }
}
@media (max-width: 640px) {
  .iv2-find { padding-bottom: 2.5rem; }
  .iv2-find__nav { width: 2.5rem; height: 2.5rem; }
  .iv2-find__nav--prev { left: 0.75rem; }
  .iv2-find__nav--next { right: 0.75rem; }
  .iv2-find__panel-wrap { margin-top: -3.5rem; }
  .iv2-find__tabs { padding: 0 1rem; margin-top: -2rem; }
  .iv2-find__fields { grid-template-columns: 1fr; padding: 0.75rem 1rem 1rem; }
  .iv2-find__field { border-left: 0 !important; padding-right: 0 !important; padding-left: 0 !important; }
  .iv2-find__field:last-of-type { border-bottom: 0; }
}

