@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;700;900&family=Barlow+Condensed:wght@700;900&display=swap');

/* ── Wrap ── */
.vcf-wrap { font-family: 'Barlow', sans-serif; background: #0b1220; background-image: radial-gradient(ellipse 60% 40% at 15% 20%, rgba(245,168,0,.05) 0%, transparent 70%), radial-gradient(ellipse 50% 50% at 85% 80%, rgba(20,50,100,.3) 0%, transparent 70%); border-radius: 18px; padding: 40px 24px 44px; width: 100%; box-sizing: border-box; }

/* ── Step 0 ── */
.vcf-s0-wrap { display: flex; justify-content: center; }
.vcf-s0-card { background: #131e35; border: 1px solid rgba(245,168,0,.18); border-radius: 18px; padding: 36px 40px 32px; width: 100%; max-width: 580px; position: relative; overflow: hidden; }
.vcf-s0-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,#f5a800,#ffd040,#f5a800); }
.vcf-badge-row { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.vcf-badge-row i { color: #f5a800; font-size: 18px; }
.vcf-badge-lbl { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .14em; color: #f5a800; text-transform: uppercase; }
.vcf-headline { font-size: 34px; font-weight: 900; color: #fff; line-height: 1.1; margin: 0 0 10px; }
.vcf-sub { font-size: 15px; color: #8fa3c0; margin: 0 0 24px; line-height: 1.5; }

/* Tabs */
.vcf-tab-row { display: grid; grid-template-columns: 1fr 1fr; background: #0b1220; border-radius: 50px; padding: 5px; margin-bottom: 20px; border: 1px solid rgba(255,255,255,.07); }
.vcf-tab { border: none; border-radius: 50px; padding: 12px 0; font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: all .22s; background: transparent; color: #8fa3c0; }
.vcf-tab.on { background: #f5a800; color: #0b1220; box-shadow: 0 2px 14px rgba(245,168,0,.28); }

/* Inputs */
.vcf-fld-lbl { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .14em; color: #6a84a0; text-transform: uppercase; margin-bottom: 6px; display: block; }
.vcf-inp { width: 100%; background: #0b1220; border: 1.5px solid rgba(255,255,255,.1); border-radius: 11px; padding: 12px 16px; font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 600; color: #fff; outline: none; transition: border-color .2s; box-sizing: border-box; }
.vcf-inp:focus { border-color: rgba(245,168,0,.55); }
.vcf-inp::placeholder { color: #3a4e68; font-weight: 400; }
.vcf-inp-lg { font-size: 22px; font-weight: 700; letter-spacing: .1em; padding: 15px 20px; margin-bottom: 10px; }
.vcf-inp-md { font-size: 16px; letter-spacing: .06em; padding: 14px 18px; margin-bottom: 10px; text-transform: uppercase; }
.vcf-inp.err { border-color: rgba(226,75,74,.6); }
.vcf-err { font-size: 13px; color: #e24b4a; margin-bottom: 10px; display: none; }
.vcf-err.show { display: block; }

/* CTA */
.vcf-cta-btn { width: 100%; background: #f5a800; border: none; border-radius: 12px; padding: 18px; font-family: 'Barlow', sans-serif; font-size: 17px; font-weight: 900; color: #0b1220; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all .18s; }
.vcf-cta-btn:hover { background: #ffc120; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(245,168,0,.38); }
.vcf-trust-row { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 20px; flex-wrap: wrap; }
.vcf-trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #6a84a0; font-weight: 600; }
.vcf-trust-item i { color: #f5a800; font-size: 15px; }

/* Funnel shared */
#vcf-funnel { display: flex; flex-direction: column; align-items: center; }
.vcf-reg-pill { display: inline-flex; align-items: center; background: #131e35; border: 1.5px solid rgba(245,168,0,.35); border-radius: 10px; padding: 8px 20px; font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 900; letter-spacing: .18em; color: #f5a800; margin: 0 auto 22px; }
.vcf-step-body { width: 100%; }

/* Stepper */
.vcf-stepper { display: flex; align-items: center; justify-content: center; margin-bottom: 34px; }
.vcf-step-item { display: flex; align-items: center; gap: 10px; }
.vcf-step-num { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 15px; flex-shrink: 0; transition: all .3s; }
.vcf-step-num.active { background: #f5a800; color: #0b1220; box-shadow: 0 0 0 4px rgba(245,168,0,.25); }
.vcf-step-num.done { background: #f5a800; color: #0b1220; }
.vcf-step-num.pending { background: #1a2a45; color: #4a6080; border: 1.5px solid #253550; }
.vcf-step-lbl { font-size: 15px; font-weight: 700; }
.vcf-step-lbl.active { color: #fff; }
.vcf-step-lbl.pending { color: #4a6080; }
.vcf-step-lbl.done { color: #8fa3c0; }
.vcf-step-line { width: 60px; height: 2px; background: #1a2a45; margin: 0 8px; flex-shrink: 0; }
.vcf-step-line.done { background: #f5a800; }
.vcf-sec-title { text-align: center; font-size: 28px; font-weight: 900; color: #fff; margin-bottom: 8px; }
.vcf-sec-sub { text-align: center; font-size: 15px; color: #8fa3c0; margin-bottom: 28px; }

/* Vehicle type grid */
.vcf-vtype-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 32px; }
@media(max-width:600px){ .vcf-vtype-grid { grid-template-columns: repeat(2,1fr); } }
.vcf-vtype-card { background: #131e35; border: 2px solid #1a2a45; border-radius: 14px; overflow: hidden; cursor: pointer; transition: all .2s; display: flex; flex-direction: column; position: relative; }
.vcf-vtype-card:hover { border-color: rgba(245,168,0,.45); transform: translateY(-2px); }
.vcf-vtype-card.sel { border-color: #f5a800; box-shadow: 0 0 20px rgba(245,168,0,.2); }
.vcf-vtype-img { width: 100%; height: 100px; object-fit: cover; display: block; filter: brightness(.55) saturate(.7); }
.vcf-vtype-card.sel .vcf-vtype-img { filter: brightness(.45) saturate(.5); }
.vcf-sel-dot { position: absolute; top: 10px; right: 10px; width: 12px; height: 12px; border-radius: 50%; background: #f5a800; opacity: 0; transition: opacity .2s; }
.vcf-vtype-card.sel .vcf-sel-dot { opacity: 1; }
.vcf-vtype-body { padding: 12px 10px 14px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.vcf-vtype-card i { color: #8fa3c0; transition: color .2s; font-size: 28px; }
.vcf-vtype-card.sel i { color: #f5a800; }
.vcf-vtype-name { font-size: 14px; font-weight: 700; color: #8fa3c0; transition: color .2s; }
.vcf-vtype-card.sel .vcf-vtype-name { color: #f5a800; }

/* Package grid */
.vcf-pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
@media(max-width:640px){ .vcf-pkg-grid { grid-template-columns: 1fr; } }
.vcf-pkg-card { background: #131e35; border: 2px solid #1a2a45; border-radius: 14px; padding: 22px 18px; cursor: pointer; transition: all .2s; position: relative; overflow: hidden; }
.vcf-pkg-card:hover { border-color: rgba(245,168,0,.4); }
.vcf-pkg-card.sel { border-color: #f5a800; box-shadow: 0 0 22px rgba(245,168,0,.18); }
.vcf-pop-badge { position: absolute; top: 0; right: 0; background: #f5a800; color: #0b1220; font-size: 11px; font-weight: 900; letter-spacing: .08em; padding: 5px 12px; border-radius: 0 12px 0 10px; text-transform: uppercase; }
.vcf-pkg-name { font-size: 17px; font-weight: 900; color: #fff; margin-bottom: 4px; }
.vcf-pkg-price { font-size: 26px; font-weight: 900; color: #f5a800; margin-bottom: 14px; }
.vcf-pkg-price span { font-size: 13px; color: #6a84a0; font-weight: 400; }
.vcf-pkg-feature { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #8fa3c0; margin-bottom: 6px; }
.vcf-pkg-feature i { color: #3ec97a; font-size: 14px; flex-shrink: 0; }
.vcf-pkg-feature.off i { color: #3a4e68; }
.vcf-pkg-feature.off { color: #3a4e68; }

/* Checkout */
.vcf-co-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 20px; margin-bottom: 28px; }
@media(max-width:640px){ .vcf-co-layout { grid-template-columns: 1fr; } }
.vcf-co-box { background: #131e35; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 20px 22px; }
.vcf-co-title { font-size: 12px; font-weight: 700; letter-spacing: .1em; color: #f5a800; text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.vcf-co-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.05); font-size: 14px; }
.vcf-co-row:last-child { border: none; }
.vcf-co-key { color: #6a84a0; }
.vcf-co-val { color: #fff; font-weight: 700; }
.vcf-co-total-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0 0; margin-top: 8px; border-top: 1px solid rgba(245,168,0,.15); }
.vcf-co-total-lbl { font-weight: 700; color: #fff; font-size: 15px; }
.vcf-co-total-val { font-size: 24px; font-weight: 900; color: #f5a800; }
.vcf-trust-strip { display: flex; align-items: center; justify-content: space-around; background: #0b1220; border-radius: 10px; padding: 10px 14px; margin-top: 14px; }
.vcf-inp-grp { margin-bottom: 12px; }
.vcf-pay-btn { width: 100%; background: #f5a800; border: none; border-radius: 11px; padding: 16px; font-family: 'Barlow', sans-serif; font-size: 16px; font-weight: 900; color: #0b1220; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all .18s; margin-top: 6px; }
.vcf-pay-btn:hover { background: #ffc120; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(245,168,0,.4); }
.vcf-pay-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.vcf-stripe-note { text-align: center; font-size: 11px; color: #3a4e68; margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 4px; }
.vcf-pay-err { display: none; margin-top: 10px; padding: 10px 12px; background: rgba(226,75,74,.1); border: 1px solid rgba(226,75,74,.3); border-radius: 8px; font-size: 13px; color: #e24b4a; }
.vcf-pay-err.show { display: block; }

/* Nav */
.vcf-bot-nav { display: flex; justify-content: space-between; align-items: center; width: 100%; margin-top: 8px; }
.vcf-back-btn { background: transparent; border: 1.5px solid #253550; border-radius: 10px; padding: 12px 22px; font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 700; color: #8fa3c0; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all .2s; }
.vcf-back-btn:hover { border-color: #4a6080; color: #fff; }
.vcf-next-btn { background: #f5a800; border: none; border-radius: 10px; padding: 13px 32px; font-family: 'Barlow', sans-serif; font-size: 16px; font-weight: 900; color: #0b1220; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all .2s; }
.vcf-next-btn:hover { background: #ffc120; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(245,168,0,.35); }

/* Shake */
.vcf-shake { animation: vcfShake .4s ease; }
@keyframes vcfShake { 0%,100%{transform:translateX(0)}20%{transform:translateX(-6px)}40%{transform:translateX(6px)}60%{transform:translateX(-4px)}80%{transform:translateX(4px)} }
