/* ============================================================
    CAR CURE – Vehicle Care & Storage Plans Page
    vehicle_care_plans.css
    ============================================================ */

/* Global overflow fixes for responsive */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ─── CSS Variables (mirrors global system) ─────────────────── */
:root {
  --vcp-dark:        #0d0f12;
  --vcp-dark-alt:    #131619;
  --vcp-teal:        #c9a84c;
  --vcp-teal-dim:    rgba(201, 168, 76, 0.12);
  --vcp-teal-glow:   rgba(201, 168, 76, 0.28);
  --vcp-red:         #e63946;
  --vcp-red-dim:     rgba(230, 57, 70, 0.15);
  --vcp-silver:      #a0aab4;
  --vcp-gold:        #f4b942;
  --vcp-platinum:    #c084fc;
  --vcp-white:       #e8e8ec;
  --vcp-gray-50:     #1e1e1e;
  --vcp-gray-100:    #2a2a2a;
  --vcp-gray-200:    rgba(255,255,255,.08);
  --vcp-gray-400:    #4a4a5a;
  --vcp-gray-600:    #7a7a8c;
  --vcp-gray-800:    #b8b8c8;
  --vcp-radius-sm:   8px;
  --vcp-radius:      16px;
  --vcp-radius-lg:   24px;
  --vcp-radius-xl:   32px;
  --vcp-transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --vcp-shadow-sm:   0 2px 8px rgba(0,0,0,0.3);
  --vcp-shadow:      0 8px 32px rgba(0,0,0,0.45);
  --vcp-shadow-lg:   0 20px 60px rgba(0,0,0,0.55);
  --vcp-shadow-teal: 0 8px 30px rgba(201, 168, 76, 0.28);
}

/* ─── Utility ────────────────────────────────────────────────── */
.vcp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Reveal Animations ──────────────────────────────────────── */
.reveal-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Buttons ────────────────────────────────────────────────── */
.vcp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--vcp-radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--vcp-transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.vcp-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-110%);
  transition: transform 0.4s ease;
  pointer-events: none;
}

.vcp-btn:hover::before { transform: translateX(0); }

.vcp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  filter: brightness(1.08);
}

.vcp-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.vcp-btn--primary {
  background: var(--vcp-teal);
  color: var(--vcp-dark);
  box-shadow: var(--vcp-shadow-teal);
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
}

/* Login prompt styles */
.vcp-form-login-prompt {
  text-align: center;
  padding: 3rem 2rem;
}

.vcp-form-login-prompt svg {
  color: var(--vcp-teal);
  margin-bottom: 1.5rem;
}

.vcp-form-login-prompt h3 {
  font-size: 1.5rem;
  color: var(--vcp-white);
  margin-bottom: 0.5rem;
}

.vcp-form-login-prompt p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.vcp-form-login-prompt .vcp-btn {
  width: 100%;
  max-width: 280px;
  justify-content: center;
  margin: 0 auto;
}

.vcp-form-login-prompt__sep {
  margin: 1rem 0;
  color: rgba(255,255,255,0.4);
}

.vcp-form-locked {
  cursor: pointer;
}

.vcp-form-locked-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.vcp-form-locked-message {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--vcp-radius);
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

.vcp-form-locked-message svg {
  color: var(--vcp-teal);
}

.vcp-form-locked .vcp-form-steps,
.vcp-form-locked fieldset,
.vcp-form-locked .vcp-form-nav {
  display: none;
}

.vcp-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201, 168, 76,0.5);
  filter: brightness(1.08);
}

.vcp-btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(201, 168, 76,0.4);
}

.vcp-btn--outline {
  background: transparent;
  color: rgba(220,224,235,0.9);
  border-color: rgba(220,224,235,0.35);
}

.vcp-btn--outline:hover {
  background: rgba(255,255,255,0.06);
  color: var(--vcp-teal);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-2px);
}

.vcp-btn--outline.vcp-btn--light {
  color: var(--vcp-white);
  border-color: rgba(255,255,255,0.4);
}

.vcp-btn--outline.vcp-btn--light:hover {
  background: var(--vcp-white);
  color: var(--vcp-dark);
  border-color: var(--vcp-white);
}

.vcp-btn--large {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
}

.vcp-btn--medium {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

.vcp-btn--full { width: 100%; justify-content: center; }

/* ─── Section Header ─────────────────────────────────────────── */
.vcp-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.vcp-section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4ac55;
  background: rgba(201,168,76,0.09);
  border: 1px solid rgba(201,168,76,0.28);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.vcp-section-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 600;
  color: #dde0e8;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.75rem;
}

.vcp-section-title--light { color: var(--vcp-white); }

.vcp-section-sub {
  font-size: 1.05rem;
  color: rgba(200,204,215,0.65);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

.vcp-section-sub--light { color: rgba(255,255,255,0.72); }


/* ══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.vcp-hero {
  position: relative;
  min-height: 92vh;
  background: linear-gradient(150deg, #0b0f15 0%, #0e1d1b 40%, #0d1a16 70%, #0b1210 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem 5rem;
  overflow: hidden;
}

/* Background grid */
.vcp-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}

/* Floating orbs */
.vcp-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.vcp-hero__orb--1 {
  width: 520px;
  height: 520px;
  top: -15%;
  right: -12%;
  background: radial-gradient(circle, rgba(201, 168, 76,0.08) 0%, transparent 65%);
  animation: orbFloat1 22s ease-in-out infinite;
}

.vcp-hero__orb--2 {
  width: 380px;
  height: 380px;
  bottom: -8%;
  left: -8%;
  background: radial-gradient(circle, rgba(230,57,70,0.07) 0%, transparent 65%);
  animation: orbFloat2 18s ease-in-out infinite;
}

.vcp-hero__orb--3 {
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 65%);
  animation: orbFloat1 26s ease-in-out 4s infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 40px) scale(1.08); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.1); }
}

.vcp-hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.vcp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76,0.08);
  border: 1px solid rgba(201, 168, 76,0.25);
  color: var(--vcp-teal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease-out 0.2s forwards;
}

.vcp-hero__title {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 600;
  color: var(--vcp-white);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out 0.4s forwards;
}

.vcp-hero__title-accent {
  background: linear-gradient(135deg, var(--vcp-teal), #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vcp-hero__desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  line-height: 1.8;
  margin: 0;
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out 0.6s forwards;
}

.vcp-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out 0.75s forwards;
}

/* Trust bar */
.vcp-hero__trust-bar {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out 0.9s forwards;
  min-width: 150px;
  position: relative;
  padding: 0 1rem;
  width: 100%;
}

.vcp-hero__trust-scroller {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.vcp-hero__trust-bar .vcp-hero__scroll-hint {
  position: relative;
  bottom: auto;
  transform: none;
  animation: none;
}

/* Trust rotator - dynamic cycling messages */
.vcp-trust-rotator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  width: auto;
  min-width: 140px;
}

.vcp-trust-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.vcp-trust-rotator.slide-out .vcp-trust-text {
  animation: trustOut 0.35s ease forwards;
}

.vcp-trust-rotator.slide-in .vcp-trust-text {
  animation: trustIn 0.35s ease forwards;
}

@keyframes trustOut {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-15px); }
}

@keyframes trustIn {
  0% { opacity: 0; transform: translateY(15px); }
  100% { opacity: 1; transform: translateY(0); }
}

.vcp-trust-rotator .vcp-trust-num {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--vcp-teal);
  line-height: 1;
}

.vcp-trust-rotator .vcp-trust-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  font-weight: 600;
}

.vcp-trust-rotator .vcp-trust-label span {
  display: block;
}

/* Legacy styles */
.vcp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vcp-trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* Scroll hint */
.vcp-hero__scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
  margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
  .vcp-hero__scroll-hint { 
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 480px) {
  .vcp-hero__scroll-hint { 
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
  }
}

.vcp-hero__scroll-hint i { font-size: 1rem; }

.vcp-hero__scroll-arrow {
  color: rgba(255,255,255,0.4);
  animation: scrollArrowBounce 2s ease-in-out infinite;
}

@keyframes scrollArrowBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(6px); opacity: 0.7; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0.7; }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ══════════════════════════════════════════════════════════════
   PLANS SECTION
═══════════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS SECTION
═══════════════════════════════════════════════════════════════ */
.vcp-how-it-works {
  padding: 6rem 0 2rem;
  background: var(--vcp-dark-alt);
}

.vcp-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
  position: relative;
}

/* Connecting line */
.vcp-steps-grid::before {
  content: '';
  position: absolute;
  top: 5rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
  z-index: 0;
}

.vcp-step-card {
  background: linear-gradient(160deg, #181c22 0%, #151920 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--vcp-radius-lg);
  padding: 2.5rem 1.5rem;
  position: relative;
  z-index: 1;
  text-align: center;
  transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.vcp-step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3), 0 0 20px rgba(201,168,76,0.05);
}

.vcp-step-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  transition: color 0.4s ease;
  z-index: 0;
}

.vcp-step-card:hover .vcp-step-number {
  color: rgba(201, 168, 76, 0.08);
}

.vcp-step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: var(--vcp-dark-alt);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--vcp-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.05);
  transition: box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.vcp-step-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.vcp-step-card:hover .vcp-step-icon {
  background: var(--vcp-dark);
  color: #c9a84c;
  box-shadow: 0 0 0 10px rgba(201, 168, 76, 0.15);
  transform: scale(1.05);
}

.vcp-step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--vcp-white);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.vcp-step-desc {
  font-size: 1.05rem;
  color: rgba(200, 204, 215, 0.65);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
  flex: 1;
}

@media (max-width: 992px) {
  .vcp-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vcp-steps-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .vcp-steps-grid {
    grid-template-columns: 1fr;
  }
}

.vcp-plans {
  padding: 6rem 0;
  background: linear-gradient(180deg, #101316 0%, #0d1012 50%, #111417 100%);
}

/* Duration toggle */
.vcp-duration-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.vcp-duration-toggle__label {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(200,204,215,0.6);
}

.vcp-duration-toggle__tabs {
  display: flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 4px;
  gap: 0;
}

.vcp-duration-tab {
  padding: 0.5rem 1.3rem;
  border: none;
  background: transparent;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(200,204,215,0.55);
  cursor: pointer;
  transition: all 0.25s ease;
}

.vcp-duration-tab.active {
  background: rgba(201,168,76,0.15);
  color: var(--vcp-teal);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.25);
}

/* Plans grid */
.vcp-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

/* Plan card */
.vcp-plan-card {
  background: linear-gradient(160deg, #181c22 0%, #151920 100%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--vcp-radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.35s ease,
              border-color 0.3s ease;
  cursor: pointer;
  /* Mouse-light effect */
  --x: 50%;
  --y: 50%;
}

.vcp-plan-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--vcp-radius-lg);
  background: radial-gradient(200px circle at var(--x) var(--y), rgba(201,168,76,0.07), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vcp-plan-card:hover::after { opacity: 1; }

.vcp-plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--vcp-shadow-lg);
  border-color: var(--vcp-teal);
}

.vcp-plan-card.is-selected {
  border-color: var(--vcp-teal);
  box-shadow: 0 0 0 4px var(--vcp-teal-dim), var(--vcp-shadow);
}

.vcp-plan-card--featured {
  background: linear-gradient(160deg, #141922 0%, #111620 100%);
  border-color: rgba(201,168,76,0.5);
  transform: scale(1.03);
  box-shadow: var(--vcp-shadow-lg), 0 0 60px rgba(201,168,76,0.06);
  z-index: 1;
}

.vcp-plan-card--featured:hover { transform: scale(1.03) translateY(-8px); }

.vcp-plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--vcp-teal);
  color: #0d0f12;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  white-space: nowrap;
}

.vcp-plan-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1.5rem;
}

.vcp-plan-tier {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.vcp-plan-tier.silver {
  background: rgba(192,200,210,0.07);
  border: 1.5px solid rgba(192,200,210,0.35);
  box-shadow: none;
}

.vcp-plan-tier.gold {
  background: rgba(201,168,76,0.08);
  border: 1.5px solid rgba(201,168,76,0.4);
  box-shadow: 0 0 16px rgba(201,168,76,0.15);
}

.vcp-plan-tier.platinum {
  background: rgba(192,132,252,0.07);
  border: 1.5px solid rgba(192,132,252,0.35);
  box-shadow: none;
}

.vcp-plan-name {
  font-size: 1.6rem;
  font-weight: 600;
  color: #dde0e8;
  margin: 0 0 0.3rem;
  letter-spacing: -0.02em;
}

.vcp-plan-card--featured .vcp-plan-name { color: var(--vcp-white); }

.vcp-plan-tagline {
  font-size: 0.9rem;
  color: rgba(200,204,215,0.55);
  margin: 0;
}

.vcp-plan-card--featured .vcp-plan-tagline { color: rgba(255,255,255,0.6); }

/* Pricing */
.vcp-plan-pricing {
  align-items: baseline;
  justify-content: center;
  margin-bottom: 1.8rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--vcp-gray-200);
  gap: 0.25rem;
}

.vcp-plan-card--featured .vcp-plan-pricing {
  border-bottom-color: rgba(255,255,255,0.12);
}

.vcp-plan-price {
  font-size: 2.8rem;
  font-weight: 600;
  color: #dde0e8;
  letter-spacing: -0.04em;
  line-height: 1;
  transition: all 0.4s ease;
}

.vcp-plan-card--featured .vcp-plan-price { color: var(--vcp-teal); }

.vcp-plan-cycle {
  font-size: 0.9rem;
  color: rgba(200,204,215,0.5);
  font-weight: 600;
}

/* Features */
.vcp-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vcp-plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.93rem;
  color: rgba(200,204,215,0.8);
  line-height: 1.5;
}

.vcp-plan-card--featured .vcp-plan-feature { color: rgba(255,255,255,0.85); }

.vcp-plan-feature i {
  flex-shrink: 0;
  margin-top: 0.15em;
  font-size: 0.9rem;
  color: var(--vcp-teal);
}

.vcp-plan-feature--na i { color: var(--vcp-gray-400); }
.vcp-plan-feature--na span { color: rgba(150,155,175,0.45); text-decoration: line-through; opacity: 1; }
.vcp-plan-card--featured .vcp-plan-feature--na span { color: rgba(255,255,255,0.3); }

/* Plan CTA */
.vcp-plan-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.5rem;
  font-size: 0.97rem;
  font-weight: 700;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: var(--vcp-radius-sm);
  background: transparent;
  color: var(--vcp-teal);
  cursor: pointer;
  transition: all var(--vcp-transition);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.vcp-plan-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.12);
  transform: translateX(-101%);
  transition: transform 0.35s ease;
}

.vcp-plan-cta span,
.vcp-plan-cta i { position: relative; z-index: 1; }

.vcp-plan-cta:hover::before { transform: translateX(0); }
.vcp-plan-cta:hover { 
  color: #e8c96a; 
  border-color: rgba(201,168,76,0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  filter: brightness(1.1);
}

.vcp-plan-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.vcp-plan-cta--featured {
  background: var(--vcp-teal);
  border-color: var(--vcp-teal);
  color: var(--vcp-dark);
}

.vcp-plan-cta--featured::before { background: rgba(255,255,255,0.15); }
.vcp-plan-cta--featured:hover { color: var(--vcp-dark); }

.vcp-plan-cta.is-selected {
  background: var(--vcp-teal);
  border-color: var(--vcp-teal);
  color: var(--vcp-dark);
}

/* ══════════════════════════════════════════════════════════════
   HANDLING SECTION
═══════════════════════════════════════════════════════════════ */
.vcp-handling {
  padding: 6rem 0;
  background: linear-gradient(180deg, #0d1012 0%, #111417 50%, #0f1214 100%);
}

.vcp-handling-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}

.vcp-handling-card {
  background: linear-gradient(160deg, #181c22 0%, #141820 100%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--vcp-radius-lg);
  padding: 2.5rem 2rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.35s ease,
              border-color 0.3s ease;
}

.vcp-handling-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vcp-shadow);
  border-color: var(--vcp-teal);
}

.vcp-handling-card--warehouse {
  background: linear-gradient(160deg, #141922 0%, #10141c 100%);
  border-color: rgba(201,168,76,0.22);
}

.vcp-handling-card--warehouse:hover {
  border-color: var(--vcp-teal);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.vcp-handling-card__icon {
  width: 56px;
  height: 56px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.vcp-handling-card__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(79%) sepia(27%) saturate(1178%) hue-rotate(3deg) brightness(95%) contrast(86%);
}

.vcp-handling-card:hover .vcp-handling-card__icon {
  transform: rotate(8deg) scale(1.1);
}

.vcp-handling-card__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #dde0e8;
  margin: 0 0 0.8rem;
  letter-spacing: -0.02em;
}

.vcp-handling-card--warehouse .vcp-handling-card__title { color: var(--vcp-white); }

.vcp-handling-card__desc {
  font-size: 0.97rem;
  color: rgba(200,204,215,0.6);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.vcp-handling-card--warehouse .vcp-handling-card__desc { color: rgba(255,255,255,0.65); }

.vcp-handling-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.vcp-handling-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.93rem;
  color: rgba(200,204,215,0.8);
  font-weight: 500;
}

.vcp-handling-card--warehouse .vcp-handling-list li { color: rgba(255,255,255,0.8); }

.vcp-handling-list li i {
  color: var(--vcp-teal);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.vcp-handling-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--vcp-teal-dim);
  border: 1px solid rgba(201, 168, 76,0.25);
  color: var(--vcp-teal);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vcp-handling-tag--platinum {
  background: rgba(192,132,252,0.12);
  border-color: rgba(192,132,252,0.25);
  color: var(--vcp-platinum);
}

/* OR divider */
.vcp-handling-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.vcp-handling-divider__line {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--vcp-gray-200), transparent);
}

.vcp-handling-divider__badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #181b1f;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(201,168,76,0.6);
  letter-spacing: 0.05em;
}


/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════════ */
.vcp-hiw {
  padding: 6rem 0;
  background: linear-gradient(160deg, #0d1016 0%, #0d1a18 100%);
  position: relative;
  overflow: hidden;
}

.vcp-hiw::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76,0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.vcp-hiw-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: none;
}

.vcp-hiw-steps::-webkit-scrollbar { display: none; }

.vcp-hiw-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--vcp-radius);
  padding: 2rem 1.5rem;
  min-width: 200px;
  flex: 1;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              background 0.3s ease,
              border-color 0.3s ease;
  position: relative;
}

.vcp-hiw-step:hover {
  transform: translateY(-6px);
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.vcp-hiw-step__num {
  font-size: 3.5rem;
  font-weight: 600;
  color: rgba(201, 168, 76,0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.vcp-hiw-step__icon {
  width: 56px;
  height: 56px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--vcp-teal);
  margin: 0 auto 1rem;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}

.vcp-hiw-step__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(79%) sepia(27%) saturate(1178%) hue-rotate(3deg) brightness(95%) contrast(86%);
}

.vcp-hiw-step:hover .vcp-hiw-step__icon {
  transform: scale(1.15) rotate(360deg);
  box-shadow: var(--vcp-shadow-teal);
}

.vcp-hiw-step__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--vcp-white);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.vcp-hiw-step__desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
}

.vcp-hiw-step--compact {
  min-width: 175px;
  padding: 1.6rem 1.2rem;
  flex: 0.82;
}

.vcp-hiw-step--compact .vcp-hiw-step__num {
  font-size: 2.8rem;
}

.vcp-hiw-step--compact .vcp-hiw-step__icon svg {
  width: 46px;
  height: 46px;
}

.vcp-hiw-step--compact .vcp-hiw-step__title {
  font-size: 0.95rem;
}

.vcp-hiw-step--compact .vcp-hiw-step__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.vcp-hiw-connector {
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  flex-shrink: 0;
  color: rgba(201, 168, 76,0.3);
  font-size: 1.1rem;
  margin-top: 3rem;
}

.vcp-hiw-connector__line {
  display: none;
}


/* ══════════════════════════════════════════════════════════════
   SUBSCRIBE / FORM
═══════════════════════════════════════════════════════════════ */
.vcp-subscribe {
  padding: 6rem 0;
  background: linear-gradient(160deg, var(--vcp-dark) 0%, #0a1512 50%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}

/* Ambient glow orb behind the form */
.vcp-subscribe::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Grid lines like the hero */
.vcp-subscribe::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.vcp-subscribe .vcp-container { position: relative; z-index: 1; }

/* Override section header text colors for dark bg */
.vcp-subscribe .vcp-section-header {
  position: relative;
}

.vcp-subscribe .vcp-section-title { 
  color: var(--vcp-white); 
  background: linear-gradient(135deg, #fff 0%, #d4ac55 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vcp-subscribe .vcp-section-sub   { color: rgba(255,255,255,0.6); }

.vcp-form-wrapper {
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(20,22,28,0.95) 0%, rgba(16,18,24,0.98) 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--vcp-radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: 
    0 32px 80px rgba(0,0,0,0.55), 
    0 0 60px rgba(201,168,76,0.08),
    inset 0 1px 0 rgba(201,168,76,0.12),
    inset 0 0 30px rgba(255,255,255,0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.vcp-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}

.vcp-form-wrapper::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(201,168,76,0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Step Indicators */
.vcp-step-indicators {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 2.5rem;
  padding-top: 2rem;
}

.vcp-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.vcp-step-indicator > span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vcp-step-indicator > label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vcp-step-indicator--active > span {
  background: var(--vcp-teal);
  border-color: var(--vcp-teal);
  color: var(--vcp-dark);
  box-shadow: 0 0 16px rgba(201,168,76,0.4);
}

.vcp-step-indicator--active > label {
  color: var(--vcp-teal);
}

.vcp-step .vcp-step__number {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  position: relative;
  z-index: 1;
}

.vcp-form-step__dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30,32,40,0.9) 0%, rgba(20,22,28,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.vcp-form-step.active .vcp-form-step__dot,
.vcp-form-step.completed .vcp-form-step__dot {
  background: var(--vcp-teal);
  border-color: var(--vcp-teal);
  color: var(--vcp-dark);
  box-shadow: 
    0 0 20px rgba(201,168,76,0.5),
    0 4px 15px rgba(0,0,0,0.3);
  transform: scale(1.1);
}

.vcp-form-step span {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.vcp-form-step.active span,
.vcp-form-step.completed span { 
  color: var(--vcp-teal); 
}

/* Step bar removed */

/* Form pages */
.vcp-form-page {
  display: none;
  border: none;
  padding: 0;
  margin: 0;
}

.vcp-form-page.active { display: block; }

.vcp-form-page__legend {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--vcp-white);
  margin-bottom: 1.8rem;
  display: block;
  letter-spacing: -0.02em;
  font-family: 'Technor', sans-serif;
}

.vcp-form-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vcp-form-page__header .vcp-form-page__legend {
  margin-bottom: 0;
}

/* My Vehicle button in form */
.vcp-my-vehicle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--vcp-radius-sm);
  color: var(--vcp-teal);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--vcp-transition);
  flex-shrink: 0;
}

.vcp-my-vehicle-btn img,
.vc-my-vehicle-btn__icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: invert(0.75);
}

.vcp-my-vehicle-btn:hover .vc-my-vehicle-btn__icon,
.vc-my-vehicle-btn:hover .vc-my-vehicle-btn__icon {
  filter: invert(73%) sepia(43%) saturate(867%) hue-rotate(7deg) brightness(92%) contrast(101%);
}

.vcp-form-page { position: relative; }

/* My Vehicle Modal */
.vcp-vehicle-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.vcp-vehicle-modal.active {
  opacity: 1;
  visibility: visible;
}

.vcp-vehicle-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.vcp-vehicle-modal__content {
  position: relative;
  width: 90%;
  max-width: 480px;
  max-height: 80vh;
  background: linear-gradient(160deg, #181c22 0%, #151920 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--vcp-radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.vcp-vehicle-modal.active .vcp-vehicle-modal__content {
  transform: scale(1);
}

.vcp-vehicle-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.vcp-vehicle-modal__header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--vcp-white);
  margin: 0;
}

.vcp-vehicle-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}

.vcp-vehicle-modal__close:hover {
  background: rgba(255,255,255,0.08);
  color: var(--vcp-white);
}

.vcp-vehicle-modal__body {
  padding: 1rem;
  max-height: 60vh;
  overflow-y: auto;
}

.vcp-vehicle-modal__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vcp-vehicle-dropdown__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.875rem 1rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--vcp-radius-sm);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}

.vcp-vehicle-dropdown__item:hover {
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.05) 100%);
  border-color: rgba(201,168,76,0.35);
  transform: translateX(4px);
}

.vcp-vehicle-dropdown__item:active {
  transform: translateX(2px);
  background: linear-gradient(135deg, rgba(201,168,76,0.18) 0%, rgba(201,168,76,0.08) 100%);
}

.vcp-vehicle-dropdown__item-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.vcp-vehicle-dropdown__item-text strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--vcp-white);
  letter-spacing: 0.02em;
}

.vcp-vehicle-dropdown__item-text small {
  font-size: 0.8rem;
  color: var(--vcp-gray-600);
}

.vcp-vehicle-dropdown__item::before {
  content: '';
  width: 36px;
  height: 36px;
  background: rgba(201,168,76,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vcp-no-vehicles {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--vcp-gray-600);
  font-size: 0.9rem;
}

.vcp-vehicle-modal__list::-webkit-scrollbar {
  width: 6px;
}

.vcp-vehicle-modal__list::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
}

.vcp-vehicle-modal__list::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
}

.vcp-vehicle-select-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--vcp-radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}

.vcp-vehicle-select-item:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
}

.vcp-vehicle-select-item__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.vcp-vehicle-select-item__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--vcp-white);
}

.vcp-vehicle-select-item__variant {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.vcp-vehicle-select-item__icon {
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.vcp-vehicle-select-item:hover .vcp-vehicle-select-item__icon {
  color: var(--vcp-teal);
}

.vcp-vehicle-modal-loading,
.vcp-vehicle-modal-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
}

/* Duration input wrap */
.vcp-duration-input-wrap {
  display: flex;
  gap: 0.5rem;
}

.vcp-duration-input-wrap .vcp-form-input:first-child {
  flex: 1;
  min-width: 80px;
}

.vcp-duration-input-wrap .vcp-form-select {
  width: 120px;
  flex-shrink: 0;
}

.vcp-form-label span {
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

/* Dynamic handling features */
#vcp-handling-features,
#vcp-plan-features {
  margin-top: 0.75rem;
  padding: 0 !important;
  background: rgba(201,168,76,0.08) !important;
  border: 1px solid rgba(201,168,76,0.2) !important;
  border-radius: var(--vcp-radius-sm);
  opacity: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  transition: all 0.3s ease;
  display: block !important;
  visibility: visible !important;
}

#vcp-handling-features.active:not(.show),
#vcp-plan-features.active:not(.show) {
  opacity: 0 !important;
  max-height: 0 !important;
  padding: 0 !important;
}

#vcp-handling-features.active.show,
#vcp-plan-features.active.show {
  opacity: 1 !important;
  max-height: 400px !important;
  padding: 0.75rem 1rem !important;
  background: rgba(201,168,76,0.15) !important;
  border-color: rgba(201,168,76,0.5) !important;
}

#vcp-plan-features.active.show .vcp-plan-feature-list li {
  animation: featureSlideIn 0.3s ease-out forwards;
  opacity: 0;
  transform: translateX(-10px);
}

#vcp-plan-features.active.show .vcp-plan-feature-list li:nth-child(1) { animation-delay: 0.05s; }
#vcp-plan-features.active.show .vcp-plan-feature-list li:nth-child(2) { animation-delay: 0.1s; }
#vcp-plan-features.active.show .vcp-plan-feature-list li:nth-child(3) { animation-delay: 0.15s; }
#vcp-plan-features.active.show .vcp-plan-feature-list li:nth-child(4) { animation-delay: 0.2s; }
#vcp-plan-features.active.show .vcp-plan-feature-list li:nth-child(5) { animation-delay: 0.25s; }
#vcp-plan-features.active.show .vcp-plan-feature-list li:nth-child(6) { animation-delay: 0.3s; }

#vcp-handling-features.active.show .vcp-handling-list li {
  animation: featureSlideIn 0.3s ease-out forwards;
  opacity: 0;
  transform: translateX(-10px);
}

#vcp-handling-features.active.show .vcp-handling-list li:nth-child(1) { animation-delay: 0.05s; }
#vcp-handling-features.active.show .vcp-handling-list li:nth-child(2) { animation-delay: 0.1s; }
#vcp-handling-features.active.show .vcp-handling-list li:nth-child(3) { animation-delay: 0.15s; }

.vcp-handling-list,
.vcp-plan-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vcp-handling-list li,
.vcp-plan-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  padding: 0.3rem 0;
}

.vcp-handling-list li svg,
.vcp-plan-feature-list li svg {
  color: var(--vcp-teal);
  flex-shrink: 0;
}

/* Form rows & groups */
.vcp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Vehicle Details section specific layout */
.vcp-form-row--vehicle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.vcp-form-row--vehicle .vcp-form-group:first-child {
  grid-column: span 1;
}

.vcp-form-row--vehicle .vcp-form-group:nth-child(2) {
  grid-column: span 1;
}

.vcp-form-row--vehicle .vcp-form-group:nth-child(3) {
  grid-column: span 1;
}

/* Plan & Handling side by side */
.vcp-form-row--plan-handling {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.vcp-form-row--plan-handling .vcp-form-group {
  margin-bottom: 0;
}

.vcp-form-group {
  margin-bottom: 0.75rem;
}

.vcp-form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
}

.vcp-form-label span:not(.vcp-optional) { color: var(--vcp-red); }

.vcp-form-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--vcp-radius-sm);
  font-size: 0.97rem;
  color: var(--vcp-white);
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.03) 100%);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  font-family: inherit;
  position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.75);
  cursor: pointer;
}

.vcp-form-input::placeholder { color: rgba(255,255,255,0.25); }

.vcp-form-input option {
  background: #1a1a1a;
  color: var(--vcp-white);
}

.vcp-form-input:focus {
  outline: none;
  border-color: var(--vcp-teal);
  background: rgba(201,168,76,0.08);
  box-shadow: 
    0 0 0 3px rgba(201,168,76,0.15),
    0 4px 20px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

.vcp-form-input:hover:not(:focus) {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
}

.vcp-form-input.has-error { border-color: var(--vcp-red); }
.vcp-form-input.has-error:focus { box-shadow: 0 0 0 3px var(--vcp-red-dim); }

.vcp-form-select { cursor: pointer; }

.vcp-form-textarea { resize: vertical; min-height: 90px; }

.vcp-form-error {
  display: block;
  font-size: 0.8rem;
  color: var(--vcp-red);
  font-weight: 600;
  margin-top: 0.3rem;
  min-height: 1em;
}

/* Plan picker */
.vcp-form-plan-picker,
.vcp-form-handling-picker {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  align-items: stretch;
}

.vcp-plan-radio,
.vcp-handling-radio {
  cursor: pointer;
}

.vcp-plan-radio input,
.vcp-handling-radio input { display: none; }

.vcp-plan-radio__card {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--vcp-radius-sm);
  background: rgba(255,255,255,0.04);
  transition: all var(--vcp-transition);
  height: 100%;
  min-height: 54px;
  width: auto;
  min-width: 140px;
  text-align: center;
  white-space: nowrap;
}

.vcp-plan-radio:hover .vcp-plan-radio__card {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
}

.vcp-plan-radio input:checked + .vcp-plan-radio__card {
  border-color: var(--vcp-teal);
  background: rgba(201,168,76,0.1);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.2);
}

.vcp-plan-radio__tier {
  font-weight: 600;
  font-size: 1rem;
}

.vcp-plan-radio__tier.silver { color: var(--vcp-silver); }
.vcp-plan-radio__tier.gold   { color: var(--vcp-gold); }
.vcp-plan-radio__tier.platinum { color: var(--vcp-platinum); }

.vcp-plan-radio__price {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

.vcp-handling-radio__card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--vcp-radius-sm);
  background: rgba(255,255,255,0.04);
  transition: all var(--vcp-transition);
  min-width: 160px;
  max-width: 220px;
  flex: 1;
  text-align: center;
}

.vcp-handling-radio__card i {
  font-size: 1.4rem;
  color: var(--vcp-teal);
  flex-shrink: 0;
}

.vcp-handling-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(79%) sepia(27%) saturate(1178%) hue-rotate(3deg) brightness(95%) contrast(86%);
}

.vcp-handling-radio__card div { display: flex; flex-direction: column; gap: 0.2rem; }
.vcp-handling-radio__card strong { font-size: 0.97rem; color: var(--vcp-white); }
.vcp-handling-radio__card span  { font-size: 0.82rem; color: rgba(255,255,255,0.45); }

.vcp-handling-radio:hover .vcp-handling-radio__card {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
}
.vcp-handling-radio input:checked + .vcp-handling-radio__card {
  border-color: var(--vcp-teal);
  background: rgba(201,168,76,0.1);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.2);
}

/* Checkbox */
.vcp-form-group--checkbox { margin-top: 0.5rem; }

.vcp-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.vcp-checkbox input { display: none; }

.vcp-checkbox__box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 5px;
  background: rgba(255,255,255,0.06);
  transition: all 0.25s ease;
  position: relative;
  margin-top: 1px;
}

.vcp-checkbox__box::after {
  content: '';
  position: absolute;
  top: 2px; left: 5px;
  width: 7px; height: 11px;
  border: 2px solid #0d0f12;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}

.vcp-checkbox input:checked + .vcp-checkbox__box {
  background: var(--vcp-teal);
  border-color: var(--vcp-teal);
}

.vcp-checkbox input:checked + .vcp-checkbox__box::after { transform: rotate(45deg) scale(1); }

.vcp-checkbox__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.vcp-checkbox__label a { color: var(--vcp-teal); font-weight: 700; text-decoration: underline; }

/* Summary box */
.vcp-summary-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--vcp-radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.vcp-summary-box h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vcp-teal);
  margin: 0 0 1rem;
}

.vcp-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.93rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.vcp-summary-row:last-child { border-bottom: none; }

.vcp-summary-row__label { color: rgba(255,255,255,0.5); font-weight: 600; }
.vcp-summary-row__value { font-weight: 700; color: var(--vcp-white); }

.vcp-summary-total {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(201,168,76,0.25);
}

.vcp-summary-total .vcp-summary-row__label { font-size: 1rem; color: rgba(255,255,255,0.7); }
.vcp-summary-total .vcp-summary-row__value { font-size: 1.3rem; color: var(--vcp-teal); }

/* Form nav */
.vcp-form-nav {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.vcp-form-nav .vcp-btn--outline {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.vcp-form-nav .vcp-btn--outline:hover {
  background: rgba(255,255,255,0.08);
  color: var(--vcp-white);
  border-color: rgba(255,255,255,0.3);
}

.vcp-btn--submit { flex: 1; justify-content: center; }

/* Success state */
.vcp-form-success {
  text-align: center;
  padding: 2rem 1rem;
}

.vcp-form-success__icon {
  font-size: 4rem;
  color: var(--vcp-teal);
  margin-bottom: 1rem;
}

.vcp-form-success h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--vcp-white);
  margin-bottom: 0.75rem;
}

.vcp-form-success p {
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ══════════════════════════════════════════════════════════════
   HOME-STYLE SVG ICON WRAPPERS
   Matches the thin-stroke circle icon language of home.css
═══════════════════════════════════════════════════════════════ */
.vcp-svg-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vcp-svg-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}



/* CTA STRIP */

.vcp-cta-strip {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--vcp-dark) 0%, #0d1e1c 100%);
  position: relative;
  overflow: hidden;
}

.vcp-cta-strip__orb {
  position: absolute;
  top: -50%; left: -15%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76,0.07) 0%, transparent 65%);
  pointer-events: none;
  animation: orbFloat1 20s ease-in-out infinite;
}

.vcp-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.vcp-cta-strip__text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--vcp-white);
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}

.vcp-cta-strip__text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.vcp-cta-strip .vcp-btn--primary i { font-size: 1.2rem; }

/* Desktop-only adjustments: match SOS CTA strip arrangement */
@media (min-width: 1025px) {
  .vcp-cta-strip {
    padding: 4rem 0;
  }
  .vcp-cta-strip__inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 2rem !important;
  }
  .vcp-cta-strip__text {
    text-align: left !important;
    margin: 0 !important;
    flex: 1;
  }
  .vcp-cta-strip__text h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem) !important;
    font-weight: 700 !important;
    margin-bottom: 0.4rem !important;
  }
  .vcp-cta-strip__text p {
    font-size: 0.9rem !important;
    margin: 0 !important;
  }
  .vcp-cta-strip__actions {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.75rem !important;
    flex-shrink: 0 !important;
    width: auto !important;
  }
  .vcp-cta-strip .vcp-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1.05rem 2.4rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    white-space: normal !important;
    min-width: 140px !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 12px !important;
  }
  .vcp-cta-strip .vcp-btn--primary,
  .vcp-cta-strip .vcp-btn--large {
    padding: 1.05rem 2.4rem !important;
    font-size: 1rem !important;
  }
  .vcp-cta-strip .vcp-btn svg {
    width: 16px;
    height: 16px;
  }
  /* Override button size classes */
  .vcp-cta-strip .vcp-btn--large,
  .vcp-cta-strip .vcp-btn--medium {
    padding: 1.05rem 2.4rem !important;
    font-size: 1rem !important;
  }
  .vcp-cta-strip .vcp-btn--primary.vcp-btn--large {
    padding: 1.05rem 2.4rem !important;
  }
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .vcp-plans-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .vcp-plan-card--featured { transform: none; }
  .vcp-plan-card--featured:hover { transform: translateY(-8px); }

  .vcp-handling-grid {
    grid-template-columns: 1fr;
  }

  .vcp-handling-divider {
    flex-direction: row;
  }

  .vcp-handling-divider__line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--vcp-gray-200), transparent);
  }
}

@media (max-width: 768px) {
  .vcp-hero {
    min-height: 80vh;
    padding: 2rem 1.5rem 1rem;
  }

  .vcp-hero__scroll-hint {
    margin-bottom: 0.25rem;
  }

  .vcp-hero__actions { flex-direction: column; width: 100%; }
  .vcp-hero__actions .vcp-btn { width: 100%; justify-content: center; }

  .vcp-hero__trust-bar { gap: 1.2rem; justify-content: center; min-width: 150px; }
  .vcp-trust-rotator { height: 3rem; }
  .vcp-trust-rotator .vcp-trust-num { font-size: 1.4rem; }
  .vcp-trust-rotator .vcp-trust-label { font-size: 0.7rem; }

  .vcp-form-wrapper { padding: 2rem 1.5rem; }

  .vcp-form-row { 
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .vcp-cta-strip__inner { flex-direction: column; text-align: center; }
  .vcp-cta-strip__inner .vcp-btn { width: 100%; justify-content: center; margin-top: 12px; }
  .vcp-cta-strip__inner .vcp-btn:first-child { margin-top: 0; }

  .vcp-hiw-steps {
    flex-direction: column;
    overflow-x: visible;
  }

  .vcp-hiw-step--compact {
  min-width: 175px;
  padding: 1.6rem 1.2rem;
  flex: 0.82;
}

.vcp-hiw-step--compact .vcp-hiw-step__num {
  font-size: 2.8rem;
}

.vcp-hiw-step--compact .vcp-hiw-step__icon svg {
  width: 46px;
  height: 46px;
}

.vcp-hiw-step--compact .vcp-hiw-step__title {
  font-size: 0.95rem;
}

.vcp-hiw-step--compact .vcp-hiw-step__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.vcp-hiw-connector {
    flex-direction: column;
    margin: 0;
    padding: 0.5rem 0;
    transform: rotate(90deg);
    height: 30px;
    width: auto;
    align-self: center;
  }

  .vcp-hiw-step { min-width: auto; width: 100%; }
}

@media (max-width: 480px) {
  html, body { 
    overflow-x: hidden !important; 
    max-width: 100% !important; 
    width: 100% !important;
    margin: 0;
    padding: 0;
  }
  .vcp-hero {
    padding: 2rem 1rem 1rem;
  }
  .vcp-hero__scroll-hint {
    margin-bottom: 0.2rem;
    color: rgba(255,255,255,0.8);
  }
  .vcp-container {
    padding: 0 1rem;
  }
  .vcp-plans,
  .vcp-handling,
  .vcp-hiw,
  .vcp-subscribe,
  .vcp-cta-strip {
    padding: 4rem 1rem;
    overflow-x: hidden;
  }

  .vcp-section-header { margin-bottom: 2.5rem; }

  .vcp-form-wrapper {
    padding: 1.5rem 1rem;
    border-radius: var(--vcp-radius);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .vcp-hero__trust-bar { gap: 0.8rem; }

  .vcp-trust-divider { height: 30px; }

  .vcp-duration-toggle { gap: 0.5rem; }

  .vcp-duration-tab { padding: 0.4rem 0.8rem; font-size: 0.82rem; }

  .vcp-form-nav { flex-direction: column-reverse; }
  .vcp-form-nav .vcp-btn { width: 100%; justify-content: center; }
  
  .vcp-cta-strip__inner { width: 100%; max-width: 100%; }
  .vcp-cta-strip__text h2 { font-size: 1.5rem; }
  .vcp-cta-strip__actions { 
    width: 100%; 
    flex-direction: column; 
    gap: 0 !important;
  }
  .vcp-cta-strip__actions .vcp-btn { 
    width: 100%; 
    max-width: 100%; 
    box-sizing: border-box; 
    margin-top: 16px !important;
    margin-bottom: 0 !important;
    display: block !important;
  }
  .vcp-cta-strip__actions .vcp-btn:first-child { 
    margin-top: 0 !important; 
  }
  
  .vcp-hiw-steps { width: 100%; max-width: 100%; }
  .vcp-hiw-step { width: 100%; }
}

/* ─── Accessibility ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-on-scroll { opacity: 1 !important; transform: none !important; }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--vcp-teal);
  outline-offset: 3px;
}

/* ══════════════════════════════════════════════════════════════
   TIER ICONS — Pure CSS (Silver / Gold / Platinum)
═══════════════════════════════════════════════════════════════ */

/* Shared icon container */
.vcp-tier-icon {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Orbital rings */
.vcp-tier-icon__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
  pointer-events: none;
}

.vcp-tier-icon__body {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

/* ─── SILVER ICON: Layered horizontal bars inside a hexagon-ish shape ─── */
.vcp-tier-icon--silver .vcp-tier-icon__ring--1 {
  width: 46px; height: 46px;
  border-color: rgba(176, 192, 210, 0.22);
  animation: tierRingPulse 3.5s ease-in-out infinite;
}
.vcp-tier-icon--silver .vcp-tier-icon__ring--2 {
  width: 36px; height: 36px;
  border-color: rgba(176, 192, 210, 0.14);
  animation: tierRingPulse 3.5s ease-in-out 0.4s infinite;
}

.vcp-tier-icon--silver .vcp-tier-icon__shield {
  width: 20px;
  height: 24px;
  border: 2px solid rgba(180, 194, 210, 0.85);
  border-radius: 3px 3px 50% 50%;
  position: absolute;
  top: 1px;
  box-shadow: 0 0 8px rgba(180, 194, 210, 0.2), inset 0 0 6px rgba(180, 194, 210, 0.04);
}

.vcp-tier-icon--silver .vcp-tier-icon__bar {
  position: absolute;
  height: 1.5px;
  border-radius: 2px;
  background: rgba(180, 194, 210, 0.75);
}
.vcp-tier-icon--silver .vcp-tier-icon__bar--1 {
  width: 10px;
  top: calc(50% - 3px);
  left: 50%;
  transform: translateX(-50%);
}
.vcp-tier-icon--silver .vcp-tier-icon__bar--2 {
  width: 7px;
  top: calc(50% + 2px);
  left: 50%;
  transform: translateX(-50%);
}

/* ─── GOLD ICON: Crown ─── */
.vcp-tier-icon--gold .vcp-tier-icon__ring--1 {
  width: 46px; height: 46px;
  border-color: rgba(201, 168, 76, 0.3);
  animation: tierRingPulse 3s ease-in-out infinite;
}
.vcp-tier-icon--gold .vcp-tier-icon__ring--2 {
  width: 36px; height: 36px;
  border-color: rgba(201, 168, 76, 0.18);
  animation: tierRingPulse 3s ease-in-out 0.35s infinite;
}

.vcp-tier-icon__crown {
  position: relative;
  width: 22px;
  height: 18px;
}

.vcp-crown__base {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 7px;
  background: linear-gradient(135deg, #c9a84c, #f4d06a, #c9a84c);
  border-radius: 1px 1px 3px 3px;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.45);
}

.vcp-crown__peak {
  position: absolute;
  bottom: 6px;
  width: 0; height: 0;
}
.vcp-crown__peak--l {
  left: 2px;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-bottom: 9px solid #c9a84c;
  filter: drop-shadow(0 -2px 4px rgba(201,168,76,0.4));
}
.vcp-crown__peak--c {
  left: 50%;
  transform: translateX(-50%);
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-bottom: 13px solid #f4d06a;
  filter: drop-shadow(0 -2px 6px rgba(244,208,106,0.6));
}
.vcp-crown__peak--r {
  right: 2px;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-bottom: 9px solid #c9a84c;
  filter: drop-shadow(0 -2px 4px rgba(201,168,76,0.4));
}

.vcp-crown__gem {
  position: absolute;
  border-radius: 50%;
  background: #fff7d6;
  box-shadow: 0 0 4px rgba(255, 235, 130, 0.8);
  bottom: 9px;
}
.vcp-crown__gem--l { width: 3px; height: 3px; left: 3px; }
.vcp-crown__gem--c { width: 4px; height: 4px; left: 50%; transform: translateX(-50%); bottom: 12px; }
.vcp-crown__gem--r { width: 3px; height: 3px; right: 3px; }

/* Gold icon glow animation */
.vcp-tier-icon--gold .vcp-tier-icon__crown {
  animation: crownGlow 2.8s ease-in-out infinite alternate;
}

@keyframes crownGlow {
  from { filter: drop-shadow(0 0 3px rgba(201,168,76,0.4)); }
  to   { filter: drop-shadow(0 0 10px rgba(244,208,106,0.75)); }
}

/* ─── PLATINUM ICON: Multi-faceted diamond ─── */
.vcp-tier-icon--platinum .vcp-tier-icon__ring--1 {
  width: 46px; height: 46px;
  border-color: rgba(192, 132, 252, 0.28);
  animation: tierRingPulse 2.8s ease-in-out infinite;
}
.vcp-tier-icon--platinum .vcp-tier-icon__ring--2 {
  width: 36px; height: 36px;
  border-color: rgba(192, 132, 252, 0.16);
  animation: tierRingPulse 2.8s ease-in-out 0.3s infinite;
}
.vcp-tier-icon--platinum .vcp-tier-icon__ring--3 {
  width: 26px; height: 26px;
  border-color: rgba(192, 132, 252, 0.1);
  animation: tierRingPulse 2.8s ease-in-out 0.6s infinite;
}

.vcp-tier-icon__diamond {
  position: relative;
  width: 20px;
  height: 22px;
  animation: diamondFloat 3s ease-in-out infinite alternate;
}

.vcp-diamond__top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 9px solid rgba(192, 132, 252, 0.9);
  filter: drop-shadow(0 -1px 4px rgba(192,132,252,0.5));
}

.vcp-diamond__bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 13px solid rgba(168, 100, 240, 0.95);
  filter: drop-shadow(0 3px 6px rgba(192,132,252,0.4));
}

.vcp-diamond__shine {
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-40%);
  width: 5px;
  height: 5px;
  background: rgba(255, 240, 255, 0.75);
  border-radius: 50%;
  filter: blur(1.5px);
  animation: diamondShine 2.2s ease-in-out infinite alternate;
}

@keyframes tierRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes diamondFloat {
  from { transform: translateY(0) scale(1); filter: drop-shadow(0 0 4px rgba(192,132,252,0.4)); }
  to   { transform: translateY(-2px) scale(1.05); filter: drop-shadow(0 4px 8px rgba(192,132,252,0.65)); }
}

@keyframes diamondShine {
  from { opacity: 0.4; transform: translateX(-40%) scale(0.8); }
  to   { opacity: 1;   transform: translateX(-35%) scale(1.2); }
}

/* Reduced motion overrides */
@media (prefers-reduced-motion: reduce) {
  .vcp-tier-icon__ring,
  .vcp-tier-icon__crown,
  .vcp-tier-icon__diamond,
  .vcp-diamond__shine {
    animation: none !important;
  }
}


/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS — Uniform card heights & spacing
═══════════════════════════════════════════════════════════════ */

.vcp-hiw-steps {
  align-items: stretch !important;
}

.vcp-hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  min-height: 240px;
}

/* Remove the compact variant size differences so all cards match */
.vcp-hiw-step--compact {
  min-width: 200px !important;
  padding: 2rem 1.5rem !important;
  flex: 1 !important;
}

.vcp-hiw-step--compact .vcp-hiw-step__num {
  font-size: 3.5rem !important;
}

.vcp-hiw-step--compact .vcp-hiw-step__icon svg {
  width: 56px !important;
  height: 56px !important;
}

.vcp-hiw-step--compact .vcp-hiw-step__title {
  font-size: 1.05rem !important;
}

.vcp-hiw-step--compact .vcp-hiw-step__desc {
  font-size: 0.87rem !important;
  color: rgba(255,255,255,0.55) !important;
}

/* Push the CTA desc to the bottom for visual balance when cards stretch */
.vcp-hiw-step__desc {
  flex: 1;
}

/* Connectors align to center of stretched cards */
.vcp-hiw-connector {
  align-self: center !important;
  margin-top: 0 !important;
}


/* ══════════════════════════════════════════════════════════════
   HERO BRAND BAR — Dynamic header enhancement
═══════════════════════════════════════════════════════════════ */

.vcp-hero__brand-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
  background: rgba(10, 10, 14, 0.55);
  border: 1px solid rgba(201, 168, 76, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 0.45rem 1.25rem 0.45rem 0.9rem;
  animation: brandBarReveal 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.15s both;
}

.vcp-hero__brand-name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vcp-teal);
  white-space: nowrap;
}

.vcp-hero__brand-sep {
  display: block;
  width: 1px;
  height: 14px;
  background: rgba(201, 168, 76, 0.35);
  border-radius: 1px;
  flex-shrink: 0;
}

.vcp-hero__brand-tagline {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(220, 224, 235, 0.75);
  white-space: nowrap;
  overflow: hidden;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.vcp-hero__brand-tagline.is-changing {
  opacity: 0;
  transform: translateY(4px);
}

@keyframes brandBarReveal {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ══════════════════════════════════════════════════════════════
   CSS ICON SYSTEM  —  .vcp-icon[data-icon="..."]
   All icons are drawn with CSS clip-path, borders, or pseudo-
   elements. Zero external font dependencies.
═══════════════════════════════════════════════════════════════ */

.vcp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  font-size: 1rem;        /* baseline; override with vcp-icon--lg/xl */
  flex-shrink: 0;
  position: relative;
  vertical-align: middle;
}

/* Size modifiers */
.vcp-icon--lg  { font-size: 1.5rem; }
.vcp-icon--xl  { font-size: 2.5rem; }

/* ── check ── */
.vcp-icon[data-icon="check"]::before,
.vcp-icon[data-icon="check"]::after {
  content: '';
  position: absolute;
  background: transparent;
  border: 2px solid var(--vcp-teal);
  border-radius: 2px;
}
.vcp-icon[data-icon="check"]::before {
  width: 0.28em; height: 0.55em;
  bottom: 0.12em; left: 0.15em;
  transform: rotate(-45deg);
  transform-origin: bottom left;
  border-top: none;
  border-right: none;
}
.vcp-icon[data-icon="check"]::after {
  width: 0.28em; height: 0.95em;
  bottom: 0.12em; left: 0.3em;
  transform: rotate(40deg);
  transform-origin: bottom left;
  border-bottom: none;
  border-left: none;
}

/* na-feature overrides check to grey */
.vcp-plan-feature--na .vcp-icon[data-icon="check"]::before,
.vcp-plan-feature--na .vcp-icon[data-icon="check"]::after {
  border-color: var(--vcp-gray-400);
}

/* ── minus ── */
.vcp-icon[data-icon="minus"]::before {
  content: '';
  position: absolute;
  width: 0.75em; height: 0.12em;
  background: transparent;
  border: 2px solid var(--vcp-gray-400);
  border-radius: 2px;
}

/* ── star ── (5-point polygon via clip-path) */
.vcp-icon[data-icon="star"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  border: 2px solid var(--vcp-teal);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.vcp-icon[data-icon="star"] { color: var(--vcp-teal); }

/* ── arrow-down / arrow-right / arrow-left ── */
.vcp-icon[data-icon="arrow-down"]::before,
.vcp-icon[data-icon="arrow-right"]::before,
.vcp-icon[data-icon="arrow-left"]::before {
  content: '';
  position: absolute;
  width: 0.45em; height: 0.45em;
  border-right: 0.13em solid currentColor;
  border-bottom: 0.13em solid currentColor;
  border-radius: 1px;
}
.vcp-icon[data-icon="arrow-down"]::before   { transform: rotate(45deg) translate(-20%, -20%); }
.vcp-icon[data-icon="arrow-right"]::before  { transform: rotate(-45deg) translate(-20%,  20%); }
.vcp-icon[data-icon="arrow-left"]::before   { transform: rotate(135deg) translate( 20%,  20%); }

/* ── chevron-down ── (thinner, for scroll hint) */
.vcp-icon[data-icon="chevron-down"]::before {
  content: '';
  position: absolute;
  width: 0.55em; height: 0.55em;
  border-right: 0.1em solid currentColor;
  border-bottom: 0.1em solid currentColor;
  border-radius: 1px;
  transform: rotate(45deg) translate(-15%, -20%);
}

/* ── bolt (lightning) ── */
.vcp-icon[data-icon="bolt"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  clip-path: polygon(65% 0%, 28% 52%, 52% 52%, 35% 100%, 72% 42%, 48% 42%);
}

/* ── car ── */
.vcp-icon[data-icon="car"]::before {
  content: '';
  position: absolute;
  inset: 0.12em 0.05em 0.2em;
  background: currentColor;
  border-radius: 30% 30% 15% 15% / 50% 50% 20% 20%;
  clip-path: polygon(8% 55%, 18% 28%, 35% 18%, 65% 18%, 82% 28%, 92% 55%, 92% 80%, 80% 80%, 80% 72%, 20% 72%, 20% 80%, 8% 80%);
  color: var(--vcp-teal);
}
.vcp-icon[data-icon="car"]::after {
  content: '';
  position: absolute;
  width: 0.22em; height: 0.22em;
  border-radius: 50%;
  background: var(--vcp-teal);
  bottom: 0.1em;
  left: 0.22em;
  box-shadow: 0.5em 0 0 var(--vcp-teal);
}
.vcp-icon[data-icon="car"] { color: var(--vcp-teal); }

/* ── shield ── */
.vcp-icon[data-icon="shield"]::before {
  content: '';
  position: absolute;
  inset: 0.05em 0.12em 0.08em;
  background: currentColor;
  clip-path: polygon(50% 0%, 100% 18%, 100% 55%, 50% 100%, 0% 55%, 0% 18%);
  color: var(--vcp-teal);
}
.vcp-icon[data-icon="shield"]::after {
  content: '';
  position: absolute;
  inset: 0.21em 0.26em 0.26em;
  background: transparent;
  clip-path: polygon(50% 8%, 92% 25%, 92% 60%, 50% 92%, 8% 60%, 8% 25%);
  border: 0.07em solid rgba(255,255,255,0.25);
}
.vcp-icon[data-icon="shield"] { color: var(--vcp-teal); }

/* ── gauge ── */
.vcp-icon[data-icon="gauge"]::before {
  content: '';
  position: absolute;
  inset: 0.1em 0.05em 0.3em;
  border: 0.1em solid currentColor;
  border-bottom: none;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  color: var(--vcp-teal);
}
.vcp-icon[data-icon="gauge"]::after {
  content: '';
  position: absolute;
  width: 0.08em; height: 0.38em;
  background: var(--vcp-teal);
  border-radius: 2px;
  bottom: 0.28em; left: 50%;
  transform: translateX(-50%) rotate(-30deg);
  transform-origin: bottom center;
}
.vcp-icon[data-icon="gauge"] { color: var(--vcp-teal); }

/* ── key ── */
.vcp-icon[data-icon="key"]::before {
  content: '';
  position: absolute;
  width: 0.42em; height: 0.42em;
  border: 0.1em solid currentColor;
  border-radius: 50%;
  top: 0.08em;
  left: 0.08em;
  color: var(--vcp-teal);
}
.vcp-icon[data-icon="key"]::after {
  content: '';
  position: absolute;
  width: 0.5em; height: 0.1em;
  background: var(--vcp-teal);
  border-radius: 2px;
  bottom: 0.2em; right: 0.05em;
  box-shadow: -0.12em 0.12em 0 var(--vcp-teal),
              -0.12em 0.24em 0 var(--vcp-teal);
}
.vcp-icon[data-icon="key"] { color: var(--vcp-teal); }

/* ── garage ── */
.vcp-icon[data-icon="garage"]::before {
  content: '';
  position: absolute;
  inset: 0.05em 0 0.32em;
  background: currentColor;
  clip-path: polygon(50% 0%, 100% 35%, 100% 100%, 0% 100%, 0% 35%);
  color: var(--vcp-teal);
}
.vcp-icon[data-icon="garage"]::after {
  content: '';
  position: absolute;
  left: 0.15em; right: 0.15em;
  height: 0.08em;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  bottom: 0.33em;
  box-shadow: 0 -0.13em 0 rgba(255,255,255,0.2),
              0 -0.26em 0 rgba(255,255,255,0.15);
}
.vcp-icon[data-icon="garage"] { color: var(--vcp-teal); }

/* ── vault ── */
.vcp-icon[data-icon="vault"]::before {
  content: '';
  position: absolute;
  inset: 0.06em 0.06em 0.06em 0.06em;
  border: 0.1em solid currentColor;
  border-radius: 20%;
  color: var(--vcp-platinum);
}
.vcp-icon[data-icon="vault"]::after {
  content: '';
  position: absolute;
  width: 0.3em; height: 0.3em;
  border: 0.08em solid var(--vcp-platinum);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.vcp-icon[data-icon="vault"] { color: var(--vcp-platinum); }

/* ── diamond ── */
.vcp-icon[data-icon="diamond"]::before {
  content: '';
  position: absolute;
  inset: 0.06em 0.1em;
  background: currentColor;
  clip-path: polygon(50% 0%, 100% 38%, 50% 100%, 0% 38%);
  color: var(--vcp-platinum);
}
.vcp-icon[data-icon="diamond"] { color: var(--vcp-platinum); }

/* ── check-circle ── */
.vcp-icon[data-icon="check-circle"]::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 0.1em solid var(--vcp-teal);
  border-radius: 50%;
}
.vcp-icon[data-icon="check-circle"]::after {
  content: '';
  position: absolute;
  width: 0.22em; height: 0.42em;
  border-right: 0.1em solid var(--vcp-teal);
  border-bottom: 0.1em solid var(--vcp-teal);
  border-radius: 1px;
  transform: rotate(40deg) translate(-10%, -15%);
}


/* ══════════════════════════════════════════════════════════════
   STAR-TIER SYSTEM  (Silver / Gold / Platinum)
   Progressive richness: 1 muted → 2 glowing → 3 animated
═══════════════════════════════════════════════════════════════ */

.vcp-star-tier {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
  height: 2.4rem;
}

/* Individual star shape */
.vcp-star {
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  position: relative;
  flex-shrink: 0;
}

.vcp-star::before {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background: currentColor;
}

/* ── SILVER: 1 star, cool grey, no glow ── */
.vcp-star-tier--silver { color: #b0c0d2; }
.vcp-star-tier--silver .vcp-star::before {
  background: linear-gradient(135deg, #c8d4e0, #8ea0b0);
  filter: drop-shadow(0 1px 3px rgba(160, 190, 210, 0.18));
}

/* ── GOLD: 2 stars, warm amber, pulsing glow ── */
.vcp-star-tier--gold { color: #f4b942; }
.vcp-star-tier--gold .vcp-star::before {
  background: linear-gradient(135deg, #ffe177, #c9a84c);
  animation: starGoldPulse 2.4s ease-in-out infinite alternate;
}
.vcp-star-tier--gold .vcp-star:nth-child(1) { animation-delay: 0s; }
.vcp-star-tier--gold .vcp-star:nth-child(2) { animation-delay: 0.3s; }

@keyframes starGoldPulse {
  from { filter: drop-shadow(0 0 3px rgba(244,185,66,0.4)); }
  to   { filter: drop-shadow(0 0 9px rgba(244,208,100,0.75)); }
}

/* ── PLATINUM: 3 stars, purple-iridescent, cycling color + float ── */
.vcp-star-tier--platinum .vcp-star::before {
  background: linear-gradient(135deg, #e8c4ff, #a855f7, #7c3aed);
  animation: starPlatinumShift 3s ease-in-out infinite alternate;
}
.vcp-star-tier--platinum .vcp-star:nth-child(1) { animation-delay: 0s;    transform: scale(0.88); }
.vcp-star-tier--platinum .vcp-star:nth-child(2) { animation-delay: 0.2s;  transform: scale(1.08); }
.vcp-star-tier--platinum .vcp-star:nth-child(3) { animation-delay: 0.4s;  transform: scale(0.88); }

.vcp-star-tier--platinum .vcp-star:nth-child(2)::before {
  background: linear-gradient(135deg, #f0d6ff, #c084fc, #9333ea);
  filter: drop-shadow(0 0 6px rgba(192,132,252,0.6));
}

@keyframes starPlatinumShift {
  from { filter: drop-shadow(0 0 2px rgba(168,85,247,0.4)); }
  to   { filter: drop-shadow(0 0 10px rgba(192,132,252,0.8)); }
}

/* ── plan pricing layout (currency prefix) ── */
.vcp-plan-pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
}

.vcp-plan-currency {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(200,204,215,0.55);
}

/* ── scroll-hint icon color ── */
.vcp-hero__scroll-hint .vcp-icon { color: rgba(255,255,255,0.4); font-size: 1.1rem; }


/* ── reveal-delay support ── */
.reveal-on-scroll[style*="--reveal-delay"] {
  transition-delay: var(--reveal-delay, 0s);
}

/* ── Reduced motion overrides for new animations ── */
@media (prefers-reduced-motion: reduce) {
  .vcp-star-tier--gold .vcp-star::before,
  .vcp-star-tier--platinum .vcp-star::before {
    animation: none !important;
    filter: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCED FORM STYLES (3-step form, dynamic selectors)
   ═══════════════════════════════════════════════════════════════ */

.vcp-btn--small {
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
}

.vcp-form-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.vcp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  opacity: 0.4;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.vcp-step.active {
  opacity: 1;
  transform: scale(1.1);
}

.vcp-step.completed {
  opacity: 0.7;
}

.vcp-step__number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.vcp-step.active .vcp-step__number {
  background: var(--vcp-teal-glow);
  border-color: var(--vcp-teal);
  color: var(--vcp-teal);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.vcp-step.completed .vcp-step__number {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--vcp-teal);
  color: var(--vcp-teal);
}

.vcp-step__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.vcp-step.active .vcp-step__label {
  color: var(--vcp-teal);
}

.vcp-step.completed .vcp-step__label {
  color: rgba(201, 168, 76, 0.7);
}

.vcp-form-page {
  display: none;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.vcp-form-page--active {
  display: block;
  opacity: 1;
  transform: translateX(0);
  animation: pageSlideIn 0.4s ease-out;
}

@keyframes pageSlideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.vcp-form-page__legend {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vcp-white);
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.vcp-dynamic-selector {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
}

.vcp-dynamic-selector__buttons {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.vcp-dynamic-selector__content {
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--vcp-radius-sm);
  padding: 1rem;
  min-height: 100px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.vcp-plan-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--vcp-radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.vcp-plan-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateX(5px);
}

.vcp-plan-btn.active {
  background: var(--vcp-teal-glow);
  border-color: var(--vcp-teal);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
  transform: translateX(5px) scale(1.02);
}

.vcp-plan-btn__tier {
  font-size: 1rem;
  font-weight: 700;
  color: var(--vcp-white);
  letter-spacing: 0.03em;
}

.vcp-plan-btn[data-plan="silver"] .vcp-plan-btn__tier {
  color: var(--vcp-silver);
}

.vcp-plan-btn[data-plan="gold"] .vcp-plan-btn__tier {
  color: var(--vcp-gold);
}

.vcp-plan-btn[data-plan="platinum"] .vcp-plan-btn__tier {
  color: var(--vcp-platinum);
}

.vcp-plan-btn__price {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.vcp-handling-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--vcp-radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.vcp-handling-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateX(5px);
}

.vcp-handling-btn.active {
  background: var(--vcp-teal-glow);
  border-color: var(--vcp-teal);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
  transform: translateX(5px) scale(1.02);
}

.vcp-handling-btn__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: invert(73%) sepia(43%) saturate(867%) hue-rotate(7deg) brightness(92%) contrast(101%);
  transition: filter 0.3s ease;
}

.vcp-handling-btn:hover .vcp-handling-btn__icon,
.vcp-handling-btn.active .vcp-handling-btn__icon {
  filter: invert(73%) sepia(43%) saturate(867%) hue-rotate(7deg) brightness(100%) contrast(101%);
}

.vcp-handling-btn__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vcp-white);
}

.vcp-feature-list__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vcp-teal);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.vcp-feature-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vcp-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0;
  animation: featureSlideIn 0.3s ease-out;
}

.vcp-feature-item svg {
  color: var(--vcp-teal);
  flex-shrink: 0;
}

@keyframes featureSlideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.vcp-condition-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.vcp-condition-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.vcp-condition-btn input {
  display: none;
}

.vcp-condition-btn span {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--vcp-radius-sm);
  text-align: center;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.vcp-condition-btn:hover span {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
}

.vcp-condition-btn input:checked + span {
  background: var(--vcp-teal-glow);
  border-color: var(--vcp-teal);
  color: var(--vcp-teal);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.2);
}

.vcp-images-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  pointer-events: auto;
}

.vcp-images-header .vcp-form-label {
  margin-bottom: 0;
}

.vcp-view-images-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 10;
}

.vcp-view-images-btn:hover {
  background: rgba(201,168,76,0.25);
  border-color: var(--vcp-teal);
}

.image-viewer-modal {
  max-width: 700px;
  width: 90%;
}

.image-viewer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1rem;
  max-height: 60vh;
  overflow-y: auto;
}

.image-viewer-item {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--vcp-radius-sm);
  overflow: hidden;
}

.image-viewer-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.image-viewer-item__label {
  padding: 0.5rem;
  font-size: 0.8rem;
  color: var(--vcp-white);
  text-align: center;
  background: rgba(0,0,0,0.3);
}

.image-viewer-item__delete {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: rgba(230, 57, 70, 0.9);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.image-viewer-item__delete:hover {
  background: #e63946;
}

#vcImageViewerModal.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#vcImageViewerModal.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

#vcImageViewerModal .image-viewer-modal {
  background: linear-gradient(160deg, #181c22 0%, #151920 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--vcp-radius-lg);
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

#vcImageViewerModal.modal-overlay.active .image-viewer-modal {
  transform: translateY(0);
}

#vcImageViewerModal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

#vcImageViewerModal .modal-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--vcp-white);
  margin: 0;
}

#vcImageViewerModal .btn-close-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1.5rem;
}

#vcImageViewerModal .btn-close-modal:hover {
  background: rgba(255,255,255,0.08);
  color: var(--vcp-white);
}

#vcImageViewerModal .image-viewer-grid {
  padding: 1.25rem;
  max-height: 60vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

#vcImageViewerModal .image-viewer-item {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--vcp-radius-sm);
  overflow: hidden;
}

#vcImageViewerModal .image-viewer-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

#vcImageViewerModal .image-viewer-item__label {
  padding: 0.5rem;
  font-size: 0.8rem;
  color: var(--vcp-white);
  text-align: center;
  background: rgba(0,0,0,0.4);
}

#vcImageViewerModal .image-viewer-item__delete {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  background: rgba(230, 57, 70, 0.9);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

#vcImageViewerModal .image-viewer-item__delete:hover {
  background: #e63946;
}

.vcp-image-upload-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.vcp-image-upload-box {
  position: relative;
}

.vcp-upload-icon {
  width: 50px;
  height: 50px;
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

.vcp-image-upload-label > img[alt="Interior"] {
  filter: invert(1) brightness(1) !important;
  opacity: 1 !important;
  width: 50px;
  height: 50px;
}

.vcp-image-upload-label:hover .vcp-upload-icon {
  opacity: 1;
}

.vcp-image-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.vcp-image-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--vcp-radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 120px;
}

.vcp-image-upload-label:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--vcp-teal);
}

.vcp-image-upload-label svg {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.vcp-image-upload-label:hover svg {
  color: var(--vcp-teal);
}

.vcp-image-upload-label span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-align: center;
}

.vcp-image-preview {
  display: none;
  margin-top: 0.5rem;
  border-radius: var(--vcp-radius-sm);
  overflow: hidden;
}

.vcp-image-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.vcp-service-buttons,
.vcp-key-buttons,
.vcp-movement-buttons,
.vcp-notification-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.vcp-service-btn,
.vcp-key-btn,
.vcp-movement-btn,
.vcp-notification-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.vcp-service-btn input,
.vcp-key-btn input,
.vcp-movement-btn input,
.vcp-notification-btn input {
  display: none;
}

.vcp-service-btn span,
.vcp-key-btn span,
.vcp-movement-btn span,
.vcp-notification-btn span {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--vcp-radius-sm);
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.vcp-service-btn:hover span,
.vcp-key-btn:hover span,
.vcp-movement-btn:hover span,
.vcp-notification-btn:hover span {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
}

.vcp-service-btn input:checked + span,
.vcp-key-btn input:checked + span,
.vcp-movement-btn input:checked + span,
.vcp-notification-btn input:checked + span {
  background: var(--vcp-teal-glow);
  border-color: var(--vcp-teal);
  color: var(--vcp-teal);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.2);
}

.vcp-pickup-address {
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

.vcp-form-nav--center {
  justify-content: center;
}

.vcp-form-nav--between {
  justify-content: space-between;
}

.vcp-form-nav--right {
  justify-content: flex-end;
}

.vcp-form-nav--right .vcp-btn--prev {
  order: -1;
}

.vcp-optional {
  font-weight: 400;
  color: #c9a84c;
  font-size: 0.85rem;
}

.vcp-form-hint {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.4rem;
  font-style: italic;
}

.vcp-btn--submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.vcp-handling-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--vcp-platinum);
  color: var(--vcp-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.vcp-handling-card__header {
  text-align: center;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vcp-handling-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.vcp-handling-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vcp-white);
  margin-bottom: 0.5rem;
}

.vcp-handling-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.vcp-handling-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vcp-handling-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vcp-handling-feature:last-child {
  border-bottom: none;
}

.vcp-handling-feature svg {
  color: var(--vcp-teal);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .vcp-form-steps {
    gap: 1rem;
  }

  

  .vcp-step__number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .vcp-step__label {
    font-size: 0.7rem;
  }

  .vcp-form-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .vcp-dynamic-selector {
    grid-template-columns: 1fr;
  }

  .vcp-dynamic-selector__buttons {
    min-width: 100%;
  }

  .vcp-condition-buttons,
  .vcp-service-buttons,
  .vcp-notification-buttons {
    flex-direction: column;
  }

  .vcp-key-buttons,
  .vcp-movement-buttons {
    flex-direction: column;
  }

  .vcp-form-nav--between {
    flex-direction: column;
  }

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

@media (max-width: 480px) {
  .vcp-form-steps {
    flex-direction: column;
    gap: 1.5rem;
  }

  .vcp-step:not(:last-child)::after {
    display: none;
  }

   .vcp-image-upload-grid {
     grid-template-columns: 1fr;
   }
 }

 /* Pricing Disclaimers */
 .vcp-plan-pricing-disclaimer {
   font-size: 0.75rem;
   color: var(--vcp-gray-600);
   text-align: center;
   margin-top: 0.75rem;
   padding: 0 1rem;
   line-height: 1.5;
   font-family: var(--font-body, 'Supreme', sans-serif);
 }

 .vcp-terms-disclaimer {
   font-size: 0.75rem;
   color: var(--vcp-gray-600);
   text-align: center;
   max-width: 800px;
   margin: 2rem auto;
   padding: 0 1.5rem;
   line-height: 1.6;
   font-family: var(--font-body, 'Supreme', sans-serif);
 }

 /* Home page pricing disclaimer */
 .pricing-disclaimer {
   font-size: 0.8rem;
   color: var(--text-muted);
   text-align: center;
   max-width: 600px;
   margin: -1.5rem auto 2rem;
   padding: 0 1rem;
   line-height: 1.6;
   font-family: var(--font-body, 'Supreme', sans-serif);
 }
