/* =========================================================
   WHEELOVIA — Design System
   Palette drawn from the logo: onyx black, race red, chrome
   Type: Rajdhani (display, technical/automotive) + Inter (body) + Roboto Mono (data/specs)
   Signature motif: diagonal "speed stripe" (from the swoosh under WHEEL)
   and a rotating wheel-spoke mark used as a live UI accent.
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Inter:wght@400;500;600;700&family=Roboto+Mono:wght@500;600&display=swap');

:root{
  --black:#0c0c0e;
  --onyx:#17171a;
  --asphalt:#1e1e22;
  --red:#e31e24;
  --red-dark:#a8141a;
  --red-glow: rgba(227,30,36,.35);
  --white:#ffffff;
  --chrome:#eceef1;
  --grey-100:#f5f5f6;
  --grey-300:#d7d8db;
  --grey-500:#8a8d93;
  --grey-700:#4c4e54;

  --font-display:'Rajdhani', sans-serif;
  --font-body:'Inter', sans-serif;
  --font-mono:'Roboto Mono', monospace;

  --radius:10px;
  --radius-sm:6px;
  --container:1180px;
  --stripe: linear-gradient(100deg, transparent 0%, var(--red) 45%, var(--red) 55%, transparent 100%);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--black);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
ul{list-style:none; margin:0; padding:0;}
button{font-family:inherit; cursor:pointer;}
input, select{font-family:inherit;}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:700;
  letter-spacing:.01em;
  margin:0;
  text-transform:uppercase;
}

.eyebrow{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--red);
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}
.eyebrow::before{
  content:"";
  width:22px; height:2px;
  background:var(--red);
  display:inline-block;
}

:focus-visible{
  outline:3px solid var(--red);
  outline-offset:2px;
}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important;}
}

/* ---------------- Wheel mark (signature element) ---------------- */
.wheelmark{
  width:20px; height:20px;
  border-radius:50%;
  border:3px solid var(--black);
  position:relative;
  flex:0 0 auto;
  animation:spin 6s linear infinite;
}
.wheelmark::before{
  content:"";
  position:absolute; inset:4px;
  border-radius:50%;
  border:2px solid var(--red);
}
@keyframes spin{ to{ transform:rotate(360deg); } }

/* ---------------- Top utility bar ---------------- */
.topbar{
  background:var(--black);
  color:var(--grey-300);
  font-size:10px;
  font-family:var(--font-mono);
}
.topbar .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:16px;
}
.topbar a{ color:var(--grey-300); }
.topbar a:hover{ color:var(--red); }
.topbar-links{ display:flex; gap:18px; }
.topbar-links span{ color:var(--grey-700); }

/* ---------------- Header / Nav ---------------- */
header.site{
  background:var(--white);
  position:sticky; top:0; z-index:100;
  border-bottom:1px solid var(--grey-300);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:96px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  align-self:center;
}
.brand img{
  height:64px;
  width:auto;
  object-fit:contain;
}

.nav-links{ display:flex; align-items:center; gap:8px; }
.nav-links a{
  font-family:var(--font-display);
  font-weight:600;
  font-size:14.5px;
  letter-spacing:.03em;
  text-transform:uppercase;
  color:var(--black);
  position:relative;
  padding:9px 16px;
  border-radius:20px;
  transition:color .2s ease, background .2s ease;
}
.nav-links a::after{
  content:"";
  position:absolute; left:16px; right:16px; bottom:2px;
  height:2px; width:0;
  background:var(--red);
  transition:width .2s ease;
}
.nav-links a:hover{ color:var(--red); background:var(--grey-100); }
.nav-links a:hover::after{ width:0; }
.nav-links a.active{ color:var(--red); background:transparent; }
.nav-links a.active::after{ width:calc(100% - 32px); }

.nav-cta{
  display:flex; align-items:center; gap:14px;
}
.nav-cta .btn-outline{
  border-color:var(--black);
  color:var(--black);
}
.nav-cta .btn-outline:hover{ border-color:var(--red); color:var(--red); }
.btn{
  font-family:var(--font-display);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  font-size:14px;
  padding:11px 22px;
  border-radius:var(--radius-sm);
  border:2px solid transparent;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn-primary{
  background:var(--red);
  color:var(--white);
}
.btn-primary:hover{
  background:var(--red-dark);
  transform:translateY(-2px);
  box-shadow:0 10px 22px -8px var(--red-glow);
}
.btn-outline{
  background:transparent;
  border-color:var(--black);
  color:var(--black);
}
.btn-outline:hover{ border-color:var(--red); color:var(--red); }
.btn-outline.light{ border-color:var(--white); color:var(--white); }
.btn-outline.light:hover{ border-color:var(--red); color:var(--red); }
.btn-block{ width:100%; justify-content:center; }

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none; border:none;
  padding:8px;
}
.hamburger span{ width:24px; height:2px; background:var(--black); display:block; }

/* ---------------- Hero ---------------- */
.hero{
  position:relative;
  background:var(--black);
  color:var(--white);
  overflow:hidden;
  padding:96px 0 110px;
}
.hero::before{
  /* signature diagonal speed-stripe, echoing the logo swoosh */
  content:"";
  position:absolute;
  top:8%;
  left:-10%;
  width:140%;
  height:46%;
  background:var(--stripe);
  opacity:.16;
  transform:rotate(-6deg);
  pointer-events:none;
}
.hero::after{
  content:"";
  position:absolute;
  bottom:-30%;
  right:-8%;
  width:520px; height:520px;
  border-radius:50%;
  border:60px solid rgba(255,255,255,.03);
  pointer-events:none;
}
.hero .container{
  position:relative;
  z-index:2;
}
.hero-tag{
  font-family:var(--font-mono);
  color:var(--red);
  letter-spacing:.18em;
  font-size:13px;
  text-transform:uppercase;
  margin-bottom:18px;
}
.hero h1{
  font-size:clamp(38px, 6vw, 68px);
  line-height:1.02;
  max-width:820px;
}
.hero h1 em{
  font-style:normal;
  color:var(--red);
}
.hero p.lead{
  font-family:var(--font-body);
  font-size:18px;
  color:var(--grey-300);
  max-width:560px;
  margin:22px 0 0;
  line-height:1.6;
}
.hero-actions{
  display:flex; gap:16px; margin-top:34px;
}

/* Finder card */
.finder{
  background:var(--white);
  color:var(--black);
  border-radius:var(--radius);
  margin-top:52px;
  padding:26px;
  box-shadow:0 30px 60px -20px rgba(0,0,0,.5);
  position:relative;
}
.finder::before{
  content:"";
  position:absolute; top:0; left:24px; right:24px; height:4px;
  background:var(--red);
  border-radius:0 0 4px 4px;
}
.finder-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
  align-items:end;
}
.field label{
  display:block;
  font-family:var(--font-mono);
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--grey-700);
  margin-bottom:8px;
}
.field select, .field input{
  width:100%;
  padding:13px 14px;
  border:1.5px solid var(--grey-300);
  border-radius:var(--radius-sm);
  font-size:15px;
  background:var(--white);
  color:var(--black);
}
.field select:focus, .field input:focus{ border-color:var(--red); }

/* Stats strip */
.stats-strip{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-top:44px;
  padding-top:32px;
  border-top:1px solid rgba(255,255,255,.12);
}
.stat b{
  font-family:var(--font-display);
  font-size:30px;
  color:var(--white);
  display:block;
}
.stat span{
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--grey-500);
  text-transform:uppercase;
  letter-spacing:.06em;
}

/* ---------------- Section shells ---------------- */
section{ padding:78px 0; }
section.alt{ background:var(--grey-100); }
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom:38px;
  gap:20px;
}
.section-head h2{ font-size:clamp(26px,3.4vw,38px); }
.section-head .desc{ color:var(--grey-700); max-width:480px; font-size:15px; }
.view-all{
  font-family:var(--font-display);
  font-weight:700;
  text-transform:uppercase;
  font-size:14px;
  color:var(--red);
  white-space:nowrap;
  border-bottom:2px solid var(--red);
  padding-bottom:2px;
}

/* ---------------- Brand grid ---------------- */
.brand-grid{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:14px;
}
.brand-tile{
  background:var(--white);
  border:1px solid var(--grey-300);
  border-radius:var(--radius-sm);
  padding:20px 10px;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  text-align:center;
  transition:border-color .15s ease, transform .15s ease;
}
.brand-tile:hover{ border-color:var(--red); transform:translateY(-3px); }
.brand-tile .tile-icon{
  width:44px; height:44px;
  border-radius:50%;
  background:var(--grey-100);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:700; color:var(--black);
}
.brand-tile:hover .tile-icon{ background:var(--red); color:var(--white); }
.brand-tile span{ font-size:13px; font-weight:600; }

/* ---------------- Car cards ---------------- */
.car-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}
.car-card{
  background:var(--white);
  border:1px solid var(--grey-300);
  border-radius:var(--radius);
  overflow:hidden;
  transition:box-shadow .2s ease, transform .2s ease;
  display:flex; flex-direction:column;
}
.car-card:hover{ box-shadow:0 18px 34px -18px rgba(0,0,0,.35); transform:translateY(-4px); }
.car-media{
  height:150px;
  background:linear-gradient(135deg, var(--onyx), var(--black));
  position:relative;
  display:flex; align-items:center; justify-content:center;
  color:var(--grey-500);
  font-family:var(--font-mono);
  font-size:12px;
}
.car-media .badge{
  position:absolute; top:10px; left:10px;
  background:var(--red); color:var(--white);
  font-family:var(--font-mono);
  font-size:10px; letter-spacing:.06em; text-transform:uppercase;
  padding:4px 9px; border-radius:20px;
}
.car-body{ padding:18px; display:flex; flex-direction:column; gap:8px; flex:1; }
.car-brand{ font-family:var(--font-mono); font-size:11px; color:var(--grey-500); text-transform:uppercase; letter-spacing:.05em; }
.car-name{ font-family:var(--font-display); font-weight:700; font-size:19px; }
.car-price{ font-family:var(--font-mono); font-weight:600; color:var(--red); font-size:15px; margin-top:auto; }
.car-meta{ display:flex; gap:14px; font-size:12px; color:var(--grey-700); }
.car-actions{ display:flex; gap:8px; margin-top:10px; }
.car-actions .btn{ flex:1; padding:9px; font-size:12px; }

/* ---------------- Tools grid ---------------- */
.tool-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}
.tool-card{
  background:var(--black);
  color:var(--white);
  border-radius:var(--radius);
  padding:30px 26px;
  position:relative;
  overflow:hidden;
  min-height:190px;
  display:flex; flex-direction:column; justify-content:space-between;
}
.tool-card::after{
  content:"";
  position:absolute; right:-30px; bottom:-30px;
  width:120px; height:120px; border-radius:50%;
  border:24px solid rgba(227,30,36,.12);
}
.tool-icon{
  width:46px; height:46px;
  border:2px solid var(--red);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:700; color:var(--red);
  margin-bottom:20px;
}
.tool-card h3{ font-size:20px; margin-bottom:6px; }
.tool-card p{ font-size:13px; color:var(--grey-500); margin:0; }
.tool-card .go{
  margin-top:16px;
  font-family:var(--font-mono);
  font-size:12px; text-transform:uppercase; letter-spacing:.08em;
  color:var(--white);
  display:inline-flex; align-items:center; gap:6px;
}
.tool-card:hover .go{ color:var(--red); }

/* ---------------- News ---------------- */
.news-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}
.news-card{
  border-bottom:1px solid var(--grey-300);
  padding-bottom:22px;
}
.news-tag{
  font-family:var(--font-mono);
  font-size:11px; text-transform:uppercase; letter-spacing:.08em;
  color:var(--red);
  margin-bottom:10px; display:block;
}
.news-card h3{
  font-family:var(--font-display);
  text-transform:none;
  font-size:19px;
  line-height:1.3;
  margin-bottom:10px;
}
.news-meta{ font-family:var(--font-mono); font-size:11px; color:var(--grey-500); }

/* ---------------- Comparison strip (home) ---------------- */
.vs-strip{
  display:flex;
  gap:16px;
  overflow-x:auto;
  padding-bottom:10px;
}
.vs-card{
  min-width:280px;
  border:1px solid var(--grey-300);
  border-radius:var(--radius);
  padding:18px;
  display:flex; flex-direction:column; gap:12px;
  background:var(--white);
}
.vs-row{ display:flex; align-items:center; justify-content:space-between; }
.vs-badge{
  font-family:var(--font-display); font-weight:700; color:var(--red);
  font-size:13px;
}
.vs-name{ font-weight:600; font-size:14px; }
.vs-price{ font-family:var(--font-mono); font-size:12px; color:var(--grey-700); }

/* ---------------- Page hero (inner pages) ---------------- */
.page-hero{
  background:var(--black);
  color:var(--white);
  padding:64px 0;
  position:relative;
  overflow:hidden;
}
.page-hero::before{
  content:"";
  position:absolute; top:-20%; right:-10%;
  width:60%; height:180%;
  background:var(--stripe);
  opacity:.14;
  transform:rotate(-8deg);
}
.page-hero .container{ position:relative; z-index:2; }
.breadcrumb{
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--grey-500);
  margin-bottom:14px;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.breadcrumb a:hover{ color:var(--red); }
.page-hero h1{ font-size:clamp(30px,4.4vw,48px); }
.page-hero p{ color:var(--grey-300); max-width:600px; margin-top:14px; font-size:16px; }

/* ---------------- Compare page ---------------- */
.compare-picker{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:18px;
  margin-bottom:44px;
}
.compare-slot{
  border:2px dashed var(--grey-300);
  border-radius:var(--radius);
  padding:20px;
  text-align:center;
}
.compare-slot select{
  width:100%;
  padding:12px;
  border:1.5px solid var(--grey-300);
  border-radius:var(--radius-sm);
  font-size:14px;
  margin-top:10px;
}
.compare-slot .slot-label{
  font-family:var(--font-mono);
  font-size:11px; text-transform:uppercase; letter-spacing:.08em;
  color:var(--grey-500);
}
.compare-table{
  width:100%;
  border-collapse:collapse;
  font-size:14px;
}
.compare-table th, .compare-table td{
  border:1px solid var(--grey-300);
  padding:14px 16px;
  text-align:left;
}
.compare-table thead th{
  background:var(--black);
  color:var(--white);
  font-family:var(--font-display);
  text-transform:uppercase;
  font-size:14px;
}
.compare-table tbody tr:nth-child(even){ background:var(--grey-100); }
.compare-table td.label{
  font-family:var(--font-mono);
  font-size:12px;
  text-transform:uppercase;
  color:var(--grey-700);
  width:200px;
}
.compare-empty{
  text-align:center;
  padding:60px 20px;
  color:var(--grey-500);
  font-family:var(--font-mono);
  border:1px dashed var(--grey-300);
  border-radius:var(--radius);
}

/* ---------------- EMI Calculator ---------------- */
.emi-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:start;
}
.emi-form .field{ margin-bottom:24px; }
.range-row{
  display:flex; justify-content:space-between;
  font-family:var(--font-mono); font-size:12px; color:var(--grey-700);
  margin-top:8px;
}
input[type=range]{
  width:100%;
  accent-color:var(--red);
}
.emi-result{
  background:var(--black);
  color:var(--white);
  border-radius:var(--radius);
  padding:36px;
  position:relative;
  overflow:hidden;
}
.emi-result::before{
  content:"";
  position:absolute; top:-30%; left:-20%;
  width:80%; height:80%;
  background:var(--stripe);
  opacity:.14;
  transform:rotate(-10deg);
}
.emi-result .container{ position:static; }
.emi-headline{
  font-family:var(--font-mono);
  font-size:12px; letter-spacing:.1em; text-transform:uppercase;
  color:var(--grey-500);
  position:relative; z-index:2;
}
.emi-amount{
  font-family:var(--font-display);
  font-size:52px;
  color:var(--red);
  margin:8px 0 28px;
  position:relative; z-index:2;
}
.emi-breakdown{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  position:relative; z-index:2;
}
.emi-breakdown div{
  border-top:1px solid rgba(255,255,255,.15);
  padding-top:12px;
}
.emi-breakdown b{
  display:block;
  font-family:var(--font-mono);
  font-size:18px;
  margin-top:4px;
}
.emi-breakdown span{
  font-size:11px; text-transform:uppercase; letter-spacing:.06em; color:var(--grey-500);
}
.bar{
  height:10px;
  border-radius:6px;
  background:var(--grey-700);
  overflow:hidden;
  margin-top:26px;
  display:flex;
  position:relative; z-index:2;
}
.bar .principal{ background:var(--red); height:100%; }
.bar .interest{ background:var(--grey-300); height:100%; }
.bar-legend{
  display:flex; gap:20px; margin-top:12px;
  font-family:var(--font-mono); font-size:11px; color:var(--grey-500);
  position:relative; z-index:2;
}
.dot{ width:8px; height:8px; border-radius:50%; display:inline-block; margin-right:6px; }

/* ---------------- About page ---------------- */
.about-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  align-items:center;
}
.about-copy p{ color:var(--grey-700); line-height:1.75; font-size:15.5px; margin-bottom:16px; }
.value-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:20px;
}
.value-card{
  border:1px solid var(--grey-300);
  border-radius:var(--radius);
  padding:24px 20px;
}
.value-card .num{
  font-family:var(--font-mono);
  color:var(--red);
  font-size:12px;
  margin-bottom:10px;
}
.value-card h4{ font-size:17px; margin-bottom:8px; }
.value-card p{ font-size:13.5px; color:var(--grey-700); margin:0; }

.about-photo{
  background:var(--black);
  border-radius:var(--radius);
  aspect-ratio:4/5;
  position:relative;
  overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.about-photo::before{
  content:"";
  position:absolute; inset:0;
  background:var(--stripe);
  opacity:.2;
  transform:rotate(-8deg) scale(1.4);
}
.about-photo img{ width:60%; position:relative; z-index:2; filter:brightness(0) invert(1); }

.team-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.team-card{ text-align:center; }
.team-photo{
  aspect-ratio:1;
  border-radius:50%;
  background:var(--grey-100);
  border:3px solid var(--grey-300);
  margin-bottom:14px;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-size:26px; font-weight:700; color:var(--grey-500);
}
.team-card h4{ font-size:15px; margin-bottom:4px; }
.team-card span{ font-family:var(--font-mono); font-size:11px; color:var(--red); text-transform:uppercase; }

/* ---------------- Contact page ---------------- */
.contact-wrap{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:50px;
}
.contact-info-card{
  background:var(--black);
  color:var(--white);
  border-radius:var(--radius);
  padding:36px;
  position:relative;
  overflow:hidden;
}
.contact-info-card::before{
  content:"";
  position:absolute; bottom:-40%; left:-20%;
  width:100%; height:100%;
  background:var(--stripe);
  opacity:.14;
  transform:rotate(10deg);
}
.contact-info-card .container{position:static;}
.contact-item{
  position:relative; z-index:2;
  display:flex; gap:14px;
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.contact-item:last-child{ border-bottom:none; }
.contact-icon{
  width:38px; height:38px;
  border-radius:50%;
  border:2px solid var(--red);
  color:var(--red);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-size:14px;
  flex:0 0 auto;
}
.contact-item h4{ font-size:14px; text-transform:uppercase; margin-bottom:4px; font-family:var(--font-display); }
.contact-item p{ margin:0; color:var(--grey-300); font-size:13.5px; }

.contact-form{
  background:var(--white);
  border:1px solid var(--grey-300);
  border-radius:var(--radius);
  padding:36px;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group{ margin-bottom:20px; }
.form-group label{
  display:block; font-family:var(--font-mono); font-size:11px;
  text-transform:uppercase; letter-spacing:.06em; color:var(--grey-700);
  margin-bottom:8px;
}
.form-group input, .form-group textarea{
  width:100%;
  padding:13px 14px;
  border:1.5px solid var(--grey-300);
  border-radius:var(--radius-sm);
  font-size:14px;
  resize:vertical;
}
.form-group input:focus, .form-group textarea:focus{ border-color:var(--red); }
.form-note{
  font-size:12px; color:var(--grey-500); margin-top:10px;
}

/* ---------------- CTA band ---------------- */
.cta-band{
  background:var(--red);
  color:var(--white);
  text-align:center;
  padding:64px 0;
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content:"";
  position:absolute; inset:0;
  background:repeating-linear-gradient(-45deg, rgba(0,0,0,.06) 0 2px, transparent 2px 26px);
}
.cta-band .container{ position:relative; z-index:2; }
.cta-band h2{ font-size:clamp(26px,3.6vw,40px); margin-bottom:14px; }
.cta-band p{ margin:0 0 26px; color:rgba(255,255,255,.9); }
.cta-band .btn-outline{ border-color:var(--white); color:var(--white); }
.cta-band .btn-outline:hover{ background:var(--white); color:var(--red); }

/* ---------------- Footer ---------------- */
footer.site{
  background:var(--black);
  color:var(--grey-300);
  padding:64px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:44px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-brand img{ height:100px; margin-bottom:16px; filter:brightness(0) invert(1); }
.footer-brand p{ color:var(--grey-500); font-size:13.5px; line-height:1.6; max-width:280px; }
.footer-col h4{
  font-size:14px; margin-bottom:18px; color:var(--white);
}
.footer-col ul li{ margin-bottom:11px; }
.footer-col a{ color:var(--grey-500); font-size:13.5px; }
.footer-col a:hover{ color:var(--red); }
.social-row{ display:flex; gap:12px; margin-top:20px; }
.social-row a{
  width:36px; height:36px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-size:12px;
}
.social-row a:hover{ border-color:var(--red); color:var(--red); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding:22px 0;
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--grey-700);
}
.footer-bottom a{ color:var(--grey-500); margin-left:18px; }
.footer-bottom a:hover{ color:var(--red); }

/* ---------------- Chat widget ---------------- */
.chat-fab{
  position:fixed;
  bottom:26px; right:26px;
  background:var(--red);
  color:var(--white);
  width:60px; height:60px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -8px var(--red-glow);
  z-index:200;
  border:none;
  font-family:var(--font-display);
  font-weight:700;
}
.chat-fab:hover{ background:var(--red-dark); }
.chat-panel{
  position:fixed;
  bottom:98px; right:26px;
  width:340px;
  max-width:90vw;
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:0 30px 60px -16px rgba(0,0,0,.4);
  overflow:hidden;
  z-index:200;
  display:none;
  flex-direction:column;
  border:1px solid var(--grey-300);
}
.chat-panel.open{ display:flex; }
.chat-head{
  background:var(--black);
  color:var(--white);
  padding:16px 18px;
  display:flex; align-items:center; gap:10px;
}
.chat-head b{ font-family:var(--font-display); font-size:15px; }
.chat-head span{ display:block; font-family:var(--font-mono); font-size:10px; color:var(--grey-500); }
.chat-body{
  padding:16px 18px;
  font-size:13.5px;
  color:var(--grey-700);
  line-height:1.6;
  max-height:220px;
  overflow-y:auto;
}
.chat-quick{
  display:flex; flex-wrap:wrap; gap:8px;
  padding:0 18px 16px;
}
.chat-quick button{
  border:1px solid var(--grey-300);
  background:var(--white);
  padding:7px 12px;
  border-radius:20px;
  font-size:12px;
}
.chat-quick button:hover{ border-color:var(--red); color:var(--red); }
.chat-input{
  display:flex;
  border-top:1px solid var(--grey-300);
}
.chat-input input{
  flex:1; border:none; padding:14px 16px; font-size:13.5px;
}
.chat-input input:focus{ outline:none; }
.chat-input button{
  background:var(--red); color:var(--white); border:none;
  padding:0 18px;
  font-family:var(--font-display); font-weight:700;
}

/* ---------------- Utility ---------------- */
.mt-0{margin-top:0;}
.text-center{text-align:center;}

/* ---------------- Responsive ---------------- */
@media (max-width: 980px){
  .finder-grid{ grid-template-columns:1fr 1fr; }
  .car-grid{ grid-template-columns:repeat(2,1fr); }
  .brand-grid{ grid-template-columns:repeat(3,1fr); }
  .tool-grid{ grid-template-columns:1fr; }
  .news-grid{ grid-template-columns:1fr 1fr; }
  .about-grid, .emi-wrap, .contact-wrap{ grid-template-columns:1fr; }
  .value-grid{ grid-template-columns:1fr 1fr; }
  .team-grid{ grid-template-columns:1fr 1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 700px){
  .nav-links{ display:none; }
  .hamburger{ display:flex; }
  .finder-grid{ grid-template-columns:1fr; }
  .car-grid, .brand-grid, .news-grid{ grid-template-columns:1fr 1fr; }
  .stats-strip{ flex-wrap:wrap; }
  .stat{ width:45%; }
  .compare-picker{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .footer-bottom{ flex-direction:column; gap:10px; text-align:center; }
}
