/* ============================================================
   promo.css — Special Offers / Promotions page
   ============================================================ */

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

/* ============================================================
   Shared section heading
   ============================================================ */
.prm-section-title {
  font-family: var(--gx-font-heading);
  font-size: clamp(1.875rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--gx-g500);
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

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

.prm-section-head {
  margin-bottom: 3.5rem;
}

.prm-section-head--center {
  text-align: center;
}

.prm-section-head--center .prm-section-desc {
  margin: 0 auto;
}

/* Outline button on light bg */
.prm-btn--light-outline {
  color: var(--gx-g500);
  border-color: rgba(31, 31, 30, 0.2);
  background: #fff;
}

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

/* Scroll reveal */
[data-anim] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--gx-ease), transform 0.55s var(--gx-ease);
}

[data-anim].gx-anim--in {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="1"] { transition-delay: 0.10s; }
[data-delay="2"] { transition-delay: 0.20s; }
[data-delay="3"] { transition-delay: 0.30s; }
[data-delay="4"] { transition-delay: 0.40s; }
[data-delay="5"] { transition-delay: 0.50s; }

/* ============================================================
   1. HERO
   ============================================================ */
.prm-hero {
  position: relative;
  background:
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(201, 236, 102, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(80, 110, 255, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 55%),
    linear-gradient(180deg, #0c1020 0%, var(--gx-dark) 60%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Drifting orbs — depth */
.prm-hero::before {
  content: '';
  position: absolute;
  width: 38rem;
  height: 38rem;
  right: -10rem;
  top: 30%;
  background: radial-gradient(circle, rgba(201, 236, 102, 0.22) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
  animation: prmGlowDriftA 14s ease-in-out infinite alternate;
}

.prm-hero__orb {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.prm-hero__orb::before,
.prm-hero__orb::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
}
/* Cool blue orb left-bottom */
.prm-hero__orb::before {
  width: 28rem;
  height: 28rem;
  left: -8rem;
  bottom: -6rem;
  background: radial-gradient(circle, rgba(80, 110, 255, 0.18) 0%, transparent 65%);
  animation: prmGlowDriftB 18s ease-in-out infinite alternate;
}
/* Small lime orb top-left */
.prm-hero__orb::after {
  width: 16rem;
  height: 16rem;
  left: 18%;
  top: -4rem;
  background: radial-gradient(circle, rgba(201, 236, 102, 0.14) 0%, transparent 60%);
  animation: prmGlowDriftC 22s ease-in-out infinite alternate;
}

@keyframes prmGlowDriftA {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.85; }
  100% { transform: translate(-3rem, 2rem) scale(1.08); opacity: 1; }
}
@keyframes prmGlowDriftB {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(2.5rem, -2rem) scale(1.15); }
}
@keyframes prmGlowDriftC {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.6; }
  100% { transform: translate(4rem, 1.5rem) scale(0.9); opacity: 1; }
}

/* Slow drift of the grid pattern */
@keyframes prmGridDrift {
  0%   { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 24px 24px, 60px 60px, 60px 60px; }
}

/* ---- Ticker tape ---- */
.prm-hero__ticker {
  background: var(--gx-lime);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.625rem 0;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.prm-hero__ticker-track {
  display: inline-flex;
  animation: prmTicker 28s linear infinite;
}

.prm-hero__ticker-track span {
  font-family: var(--gx-font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gx-dark);
  white-space: nowrap;
}

@keyframes prmTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Main body ---- */
.prm-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 0 5rem;
  flex: 1;
}

/* Grid + spot-noise overlay */
.prm-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(201, 236, 102, 0.06) 1px, transparent 1.5px),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 24px 24px, 60px 60px, 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 100%);
  pointer-events: none;
  z-index: 0;
  animation: prmGridDrift 24s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .prm-hero::before,
  .prm-hero::after,
  .prm-hero__orb::before,
  .prm-hero__orb::after {
    animation: none;
  }
}

/* Eyebrow */
.prm-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.5);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.prm-hero__eyebrow-sep { opacity: 0.35; }

/* Headline — ghost outline + solid mix */
.prm-hero__headline {
  font-family: var(--gx-font-heading);
  font-size: clamp(4rem, 7.5vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}

.prm-hero__line-ghost {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.25);
}

.prm-hero__line-solid {
  display: block;
  color: var(--gx-lime);
}

/* Description */
.prm-hero__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 28rem;
  margin-bottom: 2rem;
}

/* Actions */
.prm-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.prm-btn--hero-outline {
  color: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.2);
}

.prm-btn--hero-outline:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--gx-white);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ---- Visual: sticker + car + countdown ---- */
.prm-hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Static price sticker badge */
.prm-hero__sticker {
  position: absolute;
  top: -1.5rem;
  right: -1rem;
  z-index: 10;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: var(--gx-lime);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  user-select: none;
  transition: transform var(--gx-t, 200ms) ease;
}
.prm-hero__sticker:hover {
  transform: scale(1.04);
}

.prm-hero__sticker-top {
  font-family: var(--gx-font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1;
}

.prm-hero__sticker-val {
  font-family: var(--gx-font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gx-dark);
  letter-spacing: -0.04em;
  line-height: 1;
}

.prm-hero__sticker-bot {
  font-family: var(--gx-font-mono);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1;
}

/* Car image */
.prm-hero__car-wrap {
  border-radius: var(--gx-r-2xl) var(--gx-r-2xl) 0 0;
  overflow: hidden;
  background: #0f131f;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: none;
}

.prm-hero__car-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--gx-ease);
}

.prm-hero__visual:hover .prm-hero__car-img {
  transform: scale(1.03);
}

/* Countdown panel — seamlessly attached below image */
.prm-hero__cd-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: none;
  border-radius: 0 0 var(--gx-r-2xl) var(--gx-r-2xl);
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.prm-countdown__label {
  font-family: var(--gx-font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.prm-countdown {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.prm-countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--gx-r-lg);
  padding: 0.875rem 0.5rem;
  min-width: 0;
}

.prm-countdown__val {
  font-family: var(--gx-font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--gx-white);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.prm-countdown__name {
  font-family: var(--gx-font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.prm-countdown__colon {
  font-family: var(--gx-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  padding-top: 0.875rem;
  flex-shrink: 0;
}

/* ============================================================
   2. FEATURED DEAL
   ============================================================ */
.prm-featured {
  background: var(--gx-off-white);
  padding: 7rem 0;
}

.prm-featured__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: var(--gx-white);
  border-radius: var(--gx-r-2xl);
  border: 1.5px solid rgba(31, 31, 30, 0.07);
  overflow: hidden;
  box-shadow: var(--gx-sh-lg);
}

.prm-featured__img-wrap {
  position: relative;
  background: var(--gx-beige);
  overflow: hidden;
  min-height: 28rem;
}

.prm-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--gx-ease);
}

.prm-featured__card:hover .prm-featured__img {
  transform: scale(1.04);
}

.prm-featured__img-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--gx-lime);
  color: var(--gx-dark);
  font-family: var(--gx-font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: var(--gx-r-full);
}

.prm-featured__body {
  padding: 3rem 3rem 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}

.prm-featured__tag {
  font-family: var(--gx-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gx-g75);
}

.prm-featured__name {
  font-family: var(--gx-font-heading);
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 700;
  color: var(--gx-g500);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.prm-featured__desc {
  font-size: 0.9375rem;
  color: var(--gx-g100);
  line-height: 1.75;
}

/* Specs list */
.prm-featured__specs {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(31, 31, 30, 0.07);
  border-bottom: 1px solid rgba(31, 31, 30, 0.07);
}

.prm-featured__specs li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--gx-g300);
}

.prm-featured__specs li svg {
  flex-shrink: 0;
  color: var(--gx-g100);
}

/* Pricing */
.prm-featured__pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.prm-featured__price-was {
  display: block;
  font-family: var(--gx-font-mono);
  font-size: 0.875rem;
  color: var(--gx-g75);
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}

.prm-featured__price-now-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.prm-featured__price-now {
  font-family: var(--gx-font-heading);
  font-size: clamp(1.625rem, 2vw, 2rem);
  font-weight: 700;
  color: var(--gx-g500);
  letter-spacing: -0.03em;
}

.prm-featured__price-save {
  font-family: var(--gx-font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gx-dark);
  background: var(--gx-lime);
  padding: 0.25rem 0.625rem;
  border-radius: var(--gx-r-full);
}

/* ============================================================
   3. PROMO GRID
   ============================================================ */
.prm-grid-section {
  background: var(--gx-white);
  padding: 7rem 0;
}

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

/* Promo card */
.prm-card {
  background: var(--gx-white);
  border: 1.5px solid rgba(31, 31, 30, 0.08);
  border-radius: var(--gx-r-2xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s var(--gx-ease), transform 0.3s var(--gx-ease);
}

.prm-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px);
}

.prm-card__img-wrap {
  position: relative;
  background: var(--gx-beige);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.prm-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--gx-ease);
}

.prm-card:hover .prm-card__img {
  transform: scale(1.05);
}

.prm-card__discount {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gx-dark);
  color: var(--gx-lime);
  font-family: var(--gx-font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.3125rem 0.75rem;
  border-radius: var(--gx-r-full);
  z-index: 1;
}

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

.prm-card__badge--hot {
  background: var(--gx-lime);
  color: var(--gx-dark);
}

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

.prm-card__name {
  font-family: var(--gx-font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gx-g500);
  letter-spacing: -0.02em;
}

/* Specs row */
.prm-card__specs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.prm-card__specs li {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--gx-font-mono);
  font-size: 0.75rem;
  color: var(--gx-g100);
}

/* Perks */
.prm-card__perks {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 0.875rem 0;
  border-top: 1px solid rgba(31, 31, 30, 0.06);
  border-bottom: 1px solid rgba(31, 31, 30, 0.06);
}

.prm-card__perk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--gx-g300);
}

/* Footer */
.prm-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.prm-card__price {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.prm-card__price-was {
  font-family: var(--gx-font-mono);
  font-size: 0.75rem;
  color: var(--gx-g75);
  text-decoration: line-through;
}

.prm-card__price-now {
  font-family: var(--gx-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gx-g500);
  letter-spacing: -0.03em;
}

.prm-card__btn {
  flex-shrink: 0;
}

/* ============================================================
   4. BENEFITS
   ============================================================ */
.prm-benefits {
  background: var(--gx-off-white);
  padding: 7rem 0;
}

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

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

.prm-benefit:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

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

.prm-benefit__title {
  font-family: var(--gx-font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gx-g500);
  line-height: 1.3;
}

.prm-benefit__text {
  font-size: 0.875rem;
  color: var(--gx-g100);
  line-height: 1.7;
}

/* ============================================================
   5. FINANCE BANNER — split design
   ============================================================ */
.prm-finance {
  display: grid;
  grid-template-columns: 42fr 4px 58fr;
  min-height: 32rem;
  overflow: hidden;
}

/* Lime half */
.prm-finance__lime {
  background: var(--gx-lime);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 3.5rem 4rem 5rem;
  position: relative;
  overflow: hidden;
  gap: 0;
}

/* Subtle texture rings */
.prm-finance__lime::after {
  content: '';
  position: absolute;
  right: -6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.prm-finance__lime::before {
  content: '';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  pointer-events: none;
  z-index: 0;
}

.prm-finance__big-label {
  font-family: var(--gx-font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 1;
}

.prm-finance__big-price {
  font-family: var(--gx-font-heading);
  font-size: clamp(6rem, 10vw, 10rem);
  font-weight: 800;
  color: var(--gx-dark);
  letter-spacing: -0.05em;
  line-height: 0.9;
  position: relative;
  z-index: 1;
}

.prm-finance__big-price::before {
  content: '€';
  font-size: 0.45em;
  font-weight: 700;
  vertical-align: super;
  letter-spacing: 0;
  margin-right: 0.05em;
}

.prm-finance__big-suffix {
  font-family: var(--gx-font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}

.prm-finance__small-note {
  font-family: var(--gx-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 1;
  width: 100%;
}



/* Dark half */
.prm-finance__dark {
  background: var(--gx-dark);
  background-image: linear-gradient(140deg, #0a0e1c 0%, #111827 100%);
  display: flex;
  align-items: center;
  padding: 4rem 5rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}

.prm-finance__dark::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 236, 102, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.prm-finance__dark-inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.prm-finance__eyebrow {
  font-family: var(--gx-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gx-lime);
}

.prm-finance__title {
  font-family: var(--gx-font-heading);
  font-size: clamp(1.875rem, 2.5vw, 2.75rem);
  font-weight: 700;
  color: var(--gx-white);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.prm-finance__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
}

.prm-finance__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.prm-finance__pill {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--gx-font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--gx-r-full);
  padding: 0.3125rem 0.75rem;
}

.prm-finance__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.prm-btn--finance-outline {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
}

.prm-btn--finance-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gx-white);
  border-color: rgba(255, 255, 255, 0.4);
}

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

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

.prm-rcard {
  background: var(--gx-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;
}

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

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

.prm-rcard__stars svg {
  width: 16px;
  height: 16px;
  fill: #f59e0b;
}

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

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

.prm-rcard__avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  object-fit: cover;
  object-position: center top;
}

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

.prm-rcard__meta {
  display: block;
  font-family: var(--gx-font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: var(--gx-g75);
}

.prm-rcard__saved {
  margin-left: auto;
  flex-shrink: 0;
  font-family: var(--gx-font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gx-dark);
  background: var(--gx-lime);
  padding: 0.25rem 0.625rem;
  border-radius: var(--gx-r-full);
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .prm-reviews__grid {
    grid-template-columns: 1fr;
    max-width: 36rem;
    margin: 0 auto;
  }
}

/* ============================================================
   7. CTA
   ============================================================ */
.prm-cta {
  background: var(--gx-lime);
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Ghost background word */
.prm-cta__bg-word {
  position: absolute;
  right: -0.1em;
  bottom: -0.2em;
  font-family: var(--gx-font-heading);
  font-size: clamp(10rem, 22vw, 22rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.1);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.prm-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 32rem;
    max-width: 100%;
}

/* Content side */
.prm-cta__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 5rem 0 5rem;
}

.prm-cta__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--gx-font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
}

.prm-cta__title {
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}

.prm-cta__title-small {
  font-family: var(--gx-font-heading);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.prm-cta__title-big {
  font-family: var(--gx-font-heading);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 800;
  color: var(--gx-dark);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

/* Perk list */
.prm-cta__perks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.prm-cta__perks li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: rgba(0, 0, 0, 0.65);
}

.prm-cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.prm-cta__outline {
  color: var(--gx-dark);
  border-color: rgba(0, 0, 0, 0.25);
  background: var(--gx-lime);
}

.prm-cta__outline:hover {
  background: var(--gx-dark);
  color: var(--gx-lime);
  border-color: var(--gx-dark);
}

/* Car wrap — bleeds to the right */
.prm-cta__car-wrap {
    position: relative;
    overflow: hidden;
    align-self: stretch;
    left: -55px;
}

.prm-cta__car-img {
    position: absolute;
    bottom: 0;
    left: -15%;
    width: 130%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    mask-image: linear-gradient(to left, transparent 0%, black 30%);
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 30%);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1200px) {
  .prm-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .prm-hero__inner {
    grid-template-columns: 1fr;
    padding: 4rem 0 3rem;
    gap: 2.5rem;
  }

  .prm-hero__headline {
    font-size: clamp(3.5rem, 10vw, 6rem);
  }

  .prm-hero__sticker {
    width: 6rem;
    height: 6rem;
    top: -1rem;
    right: -0.5rem;
  }

  .prm-hero__sticker-val {
    font-size: 1.125rem;
  }

  .prm-featured__card {
    grid-template-columns: 1fr;
  }

  .prm-featured__img-wrap {
    min-height: 22rem;
  }

  .prm-featured__body {
    padding: 2rem 2rem 2.5rem;
  }

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

  .prm-finance {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .prm-finance__divider {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    width: 100%;
    height: 3rem;
    margin: -1.5rem 0;
  }

  .prm-finance__lime {
    padding: 3.5rem 2.5rem;
    align-items: center;
    text-align: center;
  }

  .prm-finance__small-note {
    text-align: center;
  }

  .prm-finance__dark {
    padding: 3rem 2.5rem 3.5rem;
    justify-content: center;
  }

  .prm-finance__dark-inner {
    max-width: 100%;
    align-items: flex-start;
  }

  .prm-cta__inner {
    grid-template-columns: 1fr;
  }

  .prm-cta__car-wrap {
    height: 20rem;
    align-self: auto;
  }

  .prm-cta__car-img {
    position: static;
    width: 100%;
    height: 100%;
    mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
  }

  .prm-cta__content {
    padding: 4rem 0 2.5rem;
  }
}

@media (max-width: 768px) {
  .prm-hero__line-ghost {
    -webkit-text-stroke-width: 1px;
  }

  .prm-countdown {
    gap: 0.25rem;
  }

  .prm-countdown__colon {
    font-size: 1.125rem;
    padding-top: 0.75rem;
  }

  .prm-countdown__val {
    font-size: 1.375rem;
  }

  .prm-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .prm-benefits__grid {
    grid-template-columns: 1fr;
  }

  .prm-featured__pricing {
    flex-direction: column;
    align-items: flex-start;
  }

  .prm-finance__lime {
    padding: 3rem 1.5rem;
  }

  .prm-finance__dark {
    padding: 2.5rem 1.5rem 3rem;
  }

  .prm-cta__bg-word {
    font-size: clamp(8rem, 40vw, 14rem);
  }

  .prm-cta__car-img {
    mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
  }
}

/* ============================================================
   Top bar (above the main header)
   ============================================================ */
.prm-topbar {
  background: #0a0d18;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12.5px;
  font-family: 'Inter', sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 100;
}
.prm-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.55rem 1.5rem;
  min-height: 36px;
}
.prm-topbar__left {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.prm-topbar__pill {
  background: var(--gx-lime);
  color: var(--gx-dark);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
}
.prm-topbar__msg {
  color: rgba(255, 255, 255, 0.75);
}
.prm-topbar__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.prm-topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease;
}
.prm-topbar__link svg {
  width: 13px;
  height: 13px;
}
.prm-topbar__link:hover { color: var(--gx-lime); }
.prm-topbar__sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-block;
}
.prm-topbar__socials {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.prm-topbar__socials a {
  display: inline-flex;
  color: inherit;
  transition: color 0.18s ease;
}
.prm-topbar__socials svg {
  width: 14px;
  height: 14px;
}
.prm-topbar__socials a:hover { color: var(--gx-lime); }

@media (max-width: 900px) {
  .prm-topbar__msg,
  .prm-topbar__sep,
  .prm-topbar__socials { display: none; }
  .prm-topbar__inner { gap: 0.75rem; }
}
@media (max-width: 540px) {
  .prm-topbar__right { gap: 0.6rem; font-size: 11px; }
  .prm-topbar__link svg { width: 12px; height: 12px; }
}
