/* ═══════════════════════════════════════════
   KM MOTORS – KOLESSHHWAR MOTORS
   Main Stylesheet
   ═══════════════════════════════════════════ */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; color: #1C1C1C; background: #fff; overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: .15s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* VARIABLES */
:root {
  --red: #C62828;
  --red-dark: #B71C1C;
  --red-light: #FFEBEE;
  --red-mid: #E53935;
  --gold: #F9A825;
  --gold-dark: #F57F17;
  --gold-light: #FFF8E1;
  --dark: #111111;
  --ink: #1C1C1C;
  --gray: #616161;
  --gray-lt: #F5F5F5;
  --gray-mid: #E0E0E0;
  --white: #FFFFFF;
  --green: #2E7D32;
  --green-lt: #E8F5E9;
  --border: #E8E8E8;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* CONTAINER */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; border: none;
  transition: .2s; cursor: pointer; white-space: nowrap;
}
.btn-lg { padding: 13px 28px; font-size: 15px; border-radius: var(--radius-md); }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: #111; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #333; transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1.5px solid var(--red); color: var(--red); }
.btn-outline:hover { background: var(--red-light); }
.btn-outline-light { background: transparent; border: 1.5px solid rgba(255,255,255,.5); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.1); }
.btn-full { width: 100%; justify-content: center; }

/* ═══ TOPBAR ═══ */
.topbar { background: var(--dark); color: rgba(255,255,255,.7); font-size: 12px; padding: 7px 0; }
.topbar-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ═══ NAVBAR ═══ */
.navbar {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 900;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 20px; height: 68px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 46px; height: 46px; background: var(--red); color: #fff;
  border-radius: 10px; font-size: 18px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: -1px; flex-shrink: 0;
}
.logo-mark.sm { width: 36px; height: 36px; font-size: 14px; border-radius: 8px; }
.logo-name { display: block; font-size: 16px; font-weight: 800; color: var(--dark); line-height: 1.1; }
.logo-sub { display: block; font-size: 11px; color: var(--gray); }
.nav-links { display: flex; gap: 2px; flex: 1; list-style: none; }
.nav-links a { display: block; padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--ink); border-radius: var(--radius-sm); white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--red); background: var(--red-light); }
.has-dropdown { position: relative; }
.dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); min-width: 180px; padding: 8px;
  z-index: 100;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a { display: block; padding: 8px 12px; font-size: 14px; border-radius: 6px; color: var(--ink); }
.dropdown a:hover { background: var(--red-light); color: var(--red); }
.nav-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.chevron { font-size: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; display: block; transition: .3s; }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column; background: #fff;
  border-bottom: 1px solid var(--border); padding: 12px 20px;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 4px; font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--ink); }
.mobile-menu a:last-child { border-bottom: none; }

/* ═══ HERO ═══ */
.hero {
  background: var(--dark);
  padding: 80px 0 60px; position: relative; overflow: hidden;
  min-height: 580px; display: flex; align-items: center;
}
.hero-bg-text {
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-size: 320px; font-weight: 900; color: rgba(255,255,255,.03);
  pointer-events: none; user-select: none; line-height: 1;
}
.hero::before {
  content: ''; position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(198,40,40,.25) 0%, transparent 65%);
  top: -200px; left: -100px; pointer-events: none;
}
.hero-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.hero-content { max-width: 580px; }
.hero-badge { display: inline-block; background: var(--gold); color: #000; font-size: 12px; font-weight: 700; padding: 5px 16px; border-radius: 100px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(36px, 5.5vw, 64px); font-weight: 900; line-height: 1.08; color: #fff; margin-bottom: 18px; letter-spacing: -1px; }
.text-red { color: var(--red-mid); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 28px; line-height: 1.65; max-width: 480px; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.55); }
.hero-stats { display: flex; flex-direction: column; gap: 14px; }
.stat-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); padding: 18px 24px; text-align: center; min-width: 140px; }
.stat-n { font-size: 26px; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-l { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; }

/* ═══ BRAND STRIP ═══ */
.brand-strip { background: var(--gray-lt); padding: 20px 0; border-bottom: 1px solid var(--border); }
.brand-strip-label { font-size: 12px; color: var(--gray); font-weight: 600; margin-bottom: 12px; text-align: center; letter-spacing: .5px; }
.brand-chips { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.brand-chip { display: inline-flex; align-items: center; gap: 5px; padding: 7px 16px; background: #fff; border: 1.5px solid var(--border); border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.brand-chip:hover { border-color: var(--red); color: var(--red); background: var(--red-light); }
.chip-ev { border-color: #A5D6A7; background: var(--green-lt); color: var(--green); }
.chip-ev:hover { border-color: var(--green); background: #C8E6C9; }

/* ═══ SECTION ═══ */
.section { padding: 72px 0; }
.section-gray { background: var(--gray-lt); }
.section-dark { background: var(--dark); }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; margin-bottom: 10px; }
.section-header p { font-size: 16px; color: var(--gray); }
.section-header.light h2 { color: #fff; }
.section-header.light p { color: rgba(255,255,255,.6); }
.eyebrow { font-size: 12px; font-weight: 700; color: var(--red); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; display: block; }
.eyebrow.light { color: var(--gold); }
.section-cta { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

/* ═══ TABS ═══ */
.tab-row { display: flex; gap: 4px; border-bottom: 2px solid var(--border); margin-bottom: 24px; overflow-x: auto; scrollbar-width: none; }
.tab-row::-webkit-scrollbar { display: none; }
.tab { padding: 10px 22px; font-size: 14px; font-weight: 600; border: none; background: none; color: var(--gray); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; font-family: inherit; white-space: nowrap; transition: .15s; }
.tab.active { color: var(--red); border-bottom-color: var(--red); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ═══ BIKE CARDS ═══ */
.bikes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(252px, 1fr)); gap: 20px; }
.bike-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: .25s; position: relative; display: flex; flex-direction: column; }
.bike-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bike-badge { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; z-index: 1; }
.badge-new { background: #E3F2FD; color: #1565C0; }
.badge-used { background: #FFF3E0; color: #E65100; }
.badge-ev { background: var(--green-lt); color: var(--green); }
.badge-cert { background: #FCE4EC; color: #880E4F; }
.bike-img { width: 100%; height: 180px; background: var(--gray-lt); display: flex; align-items: center; justify-content: center; font-size: 72px; border-bottom: 1px solid var(--border); }
.bike-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.bike-brand { font-size: 11px; font-weight: 700; color: var(--gray); letter-spacing: .5px; text-transform: uppercase; }
.bike-name { font-size: 17px; font-weight: 700; margin: 3px 0 6px; }
.bike-desc { font-size: 13px; color: var(--gray); line-height: 1.5; margin-bottom: 10px; flex: 1; }
.bike-price { font-size: 22px; font-weight: 800; color: var(--red); margin-bottom: 3px; }
.bike-emi { font-size: 12px; color: var(--gray); margin-bottom: 12px; }
.bike-emi strong { color: var(--green); }
.bike-seller { font-size: 11px; color: var(--gray); margin-bottom: 12px; }
.bike-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bike-actions .btn { padding: 9px 10px; font-size: 13px; justify-content: center; border-radius: 8px; }

/* ═══ WHY GRID ═══ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 28px; }
.why-icon { font-size: 32px; margin-bottom: 14px; }
.why-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ═══ LOAN BANNER ═══ */
.loan-banner { background: linear-gradient(135deg, #B71C1C 0%, #1a1a1a 100%); padding: 56px 0; }
.loan-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.loan-banner-text h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: #fff; margin-bottom: 10px; }
.loan-banner-text p { font-size: 15px; color: rgba(255,255,255,.7); margin-bottom: 16px; }
.loan-lenders { display: flex; gap: 8px; flex-wrap: wrap; }
.lender-pill { background: rgba(255,255,255,.12); color: #fff; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 100px; border: 1px solid rgba(255,255,255,.2); }
.loan-banner-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; flex-shrink: 0; }
.loan-rate-box { text-align: center; background: rgba(255,255,255,.1); padding: 16px 28px; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,.2); }
.rate-from { display: block; font-size: 12px; color: rgba(255,255,255,.6); }
.rate-num { display: block; font-size: 36px; font-weight: 900; color: var(--gold); line-height: 1; }
.rate-pa { display: block; font-size: 12px; color: rgba(255,255,255,.6); }

/* ═══ SELL SECTION ═══ */
.sell-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sell-left .eyebrow { margin-bottom: 10px; }
.sell-left h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; margin-bottom: 14px; }
.sell-left p { font-size: 16px; color: var(--gray); margin-bottom: 20px; line-height: 1.7; }
.sell-points { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.sell-points li { font-size: 15px; color: var(--ink); }
.sell-steps { display: flex; flex-direction: column; gap: 0; }
.sell-step { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--border); }
.sell-step:last-child { border-bottom: none; }
.step-n { width: 36px; height: 36px; background: var(--red); color: #fff; border-radius: 50%; font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sell-step h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.sell-step p { font-size: 13px; color: var(--gray); }

/* ═══ REVIEWS ═══ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.stars { color: var(--gold); font-size: 16px; margin-bottom: 10px; }
.review-card p { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--red); color: #fff; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.reviewer b { font-size: 14px; display: block; }
.reviewer span { font-size: 12px; color: var(--gray); }

/* ═══ FINAL CTA ═══ */
.final-cta { background: var(--red); padding: 64px 0; text-align: center; }
.final-cta h2 { font-size: clamp(24px, 4vw, 40px); font-weight: 800; color: #fff; margin-bottom: 10px; }
.final-cta p { font-size: 17px; color: rgba(255,255,255,.75); margin-bottom: 28px; }
.final-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══ FOOTER ═══ */
.footer { background: var(--dark); color: rgba(255,255,255,.6); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-size: 17px; font-weight: 700; color: #fff; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; font-size: 14px; }
.footer h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer ul { display: flex; flex-direction: column; gap: 8px; }
.footer ul a { font-size: 14px; color: rgba(255,255,255,.55); }
.footer ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 8px; }

/* ═══ FILTER BAR ═══ */
.filter-bar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px 20px; margin-bottom: 24px; display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end; }
.filter-group { display: flex; flex-direction: column; gap: 5px; }
.filter-group label { font-size: 12px; font-weight: 600; color: var(--gray); }
.filter-group select, .filter-group input { padding: 9px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; color: var(--ink); background: #fff; min-width: 140px; }
.filter-group select:focus, .filter-group input:focus { outline: none; border-color: var(--red); }
.filter-group.search { flex: 1; }
.filter-group.search input { width: 100%; min-width: 180px; }

/* ═══ FORM STYLES ═══ */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; color: var(--gray); margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; color: var(--ink); background: #fff; transition: .15s; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(198,40,40,.08); }
.form-row textarea { resize: vertical; min-height: 90px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12px; color: var(--gray); margin-top: 6px; }

/* ═══ RANGE SLIDER ═══ */
input[type="range"] { width: 100%; accent-color: var(--red); height: 4px; }
.range-row { display: flex; align-items: center; gap: 10px; }
.range-row input { flex: 1; }
.range-val { font-size: 14px; font-weight: 700; color: var(--red); min-width: 80px; text-align: right; }
.range-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--gray); margin-top: 4px; }

/* ═══ RESULT BOX ═══ */
.result-box { background: var(--gray-lt); border-radius: var(--radius-md); padding: 20px; margin-top: 16px; }
.result-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; text-align: center; }
.result-item .r-label { font-size: 12px; color: var(--gray); margin-bottom: 4px; }
.result-item .r-val { font-size: 20px; font-weight: 800; color: var(--red); }

/* ═══ LOAN OFFERS ═══ */
.loan-offers { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.loan-offer { display: flex; justify-content: space-between; align-items: center; background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 14px 18px; cursor: pointer; transition: .15s; }
.loan-offer:hover { border-color: var(--red); background: var(--red-light); }
.loan-offer.best { border-color: var(--gold); }
.loan-offer .offer-name { font-weight: 700; font-size: 15px; }
.loan-offer .offer-rate { font-size: 15px; font-weight: 700; color: var(--green); }
.loan-offer .offer-info { font-size: 12px; color: var(--gray); }
.best-badge { background: var(--gold); color: #000; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 100px; }

/* ═══ CIBIL ═══ */
.cibil-card { max-width: 560px; margin: 0 auto; }
.score-visual { text-align: center; padding: 24px 0; }
.score-circle { width: 130px; height: 130px; border-radius: 50%; border: 10px solid; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; flex-direction: column; }
.score-num { font-size: 34px; font-weight: 900; line-height: 1; }
.score-lbl { font-size: 12px; color: var(--gray); }
.cibil-eligibility { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.elig-box { background: var(--gray-lt); border-radius: var(--radius-md); padding: 14px; text-align: center; }
.elig-label { font-size: 12px; color: var(--gray); }
.elig-val { font-size: 20px; font-weight: 800; color: var(--red); }

/* ═══ PAGE HERO ═══ */
.page-hero { background: var(--dark); padding: 48px 0; color: #fff; }
.page-hero h1 { font-size: clamp(26px, 4vw, 44px); font-weight: 800; margin-bottom: 10px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,.65); max-width: 520px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: #fff; }

/* ═══ SELL PAGE ═══ */
.sell-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.sell-info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; display: flex; gap: 14px; align-items: flex-start; }
.info-card-icon { font-size: 26px; flex-shrink: 0; }
.info-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.info-card p { font-size: 13px; color: var(--gray); line-height: 1.55; }
.file-drop { border: 2px dashed var(--border); border-radius: var(--radius-md); padding: 32px; text-align: center; cursor: pointer; transition: .15s; }
.file-drop:hover { border-color: var(--red); background: var(--red-light); }
.file-drop .icon { font-size: 36px; margin-bottom: 8px; }
.file-drop p { font-size: 14px; color: var(--gray); }
.file-drop small { font-size: 12px; color: var(--gray); }

/* ═══ LOAN PAGE ═══ */
.loan-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.finance-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 18px; margin-top: 32px; }
.finance-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; }
.finance-card.featured { border-color: var(--gold); border-width: 2px; }
.finance-card-icon { font-size: 28px; margin-bottom: 12px; }
.finance-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.finance-card p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 12px; }
.finance-rate { font-size: 26px; font-weight: 900; color: var(--red); }
.finance-rate small { font-size: 13px; font-weight: 400; color: var(--gray); }
.finance-points { display: flex; flex-direction: column; gap: 4px; margin-top: 10px; }
.finance-points li { font-size: 13px; color: var(--gray); }
.finance-points li::before { content: '✓ '; color: var(--green); font-weight: 700; }

/* ═══ CONTACT ═══ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { font-size: 24px; }
.contact-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.contact-item p { font-size: 14px; color: var(--gray); }
.map-placeholder { background: var(--gray-lt); border-radius: var(--radius-lg); height: 250px; display: flex; align-items: center; justify-content: center; font-size: 40px; margin-top: 20px; border: 1px solid var(--border); }

/* ═══ PRIVACY / TERMS ═══ */
.prose-page { max-width: 780px; margin: 0 auto; padding: 60px 24px; }
.prose-page h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.prose-page .updated { font-size: 13px; color: var(--gray); margin-bottom: 32px; }
.prose-page h2 { font-size: 20px; font-weight: 700; margin: 28px 0 10px; }
.prose-page p, .prose-page li { font-size: 15px; color: #444; line-height: 1.75; margin-bottom: 10px; }
.prose-page ul { padding-left: 20px; list-style: disc; }

/* ═══ SUCCESS / ALERT BOXES ═══ */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; margin-top: 14px; display: none; }
.alert-success { background: var(--green-lt); color: var(--green); border: 1px solid #A5D6A7; }
.alert-error { background: #FFEBEE; color: var(--red); border: 1px solid #EF9A9A; }

/* ═══ TOAST ═══ */
.toast { position: fixed; bottom: 28px; right: 28px; background: var(--dark); color: #fff; padding: 14px 22px; border-radius: var(--radius-md); font-size: 14px; font-weight: 500; transform: translateY(80px); opacity: 0; transition: .3s; z-index: 9999; max-width: 320px; box-shadow: var(--shadow-lg); pointer-events: none; }
.toast.show { transform: translateY(0); opacity: 1; }

/* ═══ UTILITY ═══ */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.hidden { display: none !important; }
.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-card { min-width: 130px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hide-mobile { display: none; }
  .sell-split, .sell-layout, .loan-layout, .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-2col { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 32px; }
  .hero-btns { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .loan-banner-inner { flex-direction: column; text-align: center; }
  .section { padding: 48px 0; }
  .bikes-grid { grid-template-columns: 1fr; }
  .finance-cards { grid-template-columns: 1fr; }
}
