:root {
  --black: #0A0A0A;
  --mid: #444;
  --muted: #888;
  --border: #E8E8E8;
  --bg: #F7F7F7;
  --white: #FFFFFF;
  --gold: #2563EB;
  --gold2: #3B82F6;
  --green: #22C55E;
  --green-bg: #F0FDF4;
  --tag: #F3F4F6;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--black); font-family: 'Montserrat', sans-serif; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: 66px; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: transform .3s ease;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 48px; width: auto; display: block; mix-blend-mode: multiply; }
.logo-footer img { height: 42px; width: auto; display: block; mix-blend-mode: screen; }
.nav-r { display: flex; gap: 8px; }
.npill { display: flex; align-items: center; gap: 6px; padding: 9px 18px; border-radius: 100px; font-family: 'Montserrat', sans-serif; font-size: .75rem; font-weight: 600; text-decoration: none; transition: all .2s; white-space: nowrap; letter-spacing: .02em; }
.npill span { display: inline; }
.ncall { border: 1.5px solid #DCDCDC; color: var(--black); background: var(--white); }
.ncall:hover { border-color: var(--black); }
.nwa { background: var(--green); color: #fff; border: 1.5px solid var(--green); }
.nwa:hover { background: #16A34A; }

/* ── HERO ── */
.hero {
  min-height: 100vh; padding: 110px 5% 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px;
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,151,42,.06) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero-l { position: relative; z-index: 1; }
.h-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: #FFF8EC; border: 1px solid #F5DFA0; color: var(--gold);
  font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 26px;
  
}
.h-tag::before { content: '●'; font-size: .45rem; }
.hero h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  line-height: 1.04; letter-spacing: -.02em; color: var(--black);
  
}
.hero h1 i { font-style: normal; color: var(--gold); }
.h-sub { margin-top: 20px; font-size: .93rem; color: var(--muted); line-height: 1.75; max-width: 400px; font-weight: 400;  }
.h-btns { margin-top: 34px; display: flex; gap: 10px; flex-wrap: wrap;  }
.hbp {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px;
  background: var(--black); color: #fff; font-family: 'Montserrat', sans-serif;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none; border-radius: 100px; border: 2px solid var(--black); transition: all .22s;
}
.hbp:hover { background: var(--gold); border-color: var(--gold); }
.hbw {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px;
  background: var(--green-bg); color: #15803D; font-family: 'Montserrat', sans-serif;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none; border-radius: 100px; border: 2px solid #BBF7D0; transition: all .22s;
}
.hbw:hover { background: var(--green); color: #fff; border-color: var(--green); }
.h-stats {
  margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border);
  display: flex; gap: 32px; flex-wrap: wrap; 
}
.stat-n { font-family: 'Montserrat', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--black); letter-spacing: -.02em; line-height: 1; }
.stat-n s { text-decoration: none; color: var(--gold); }
.stat-l { font-size: .65rem; font-weight: 600; color: var(--muted); margin-top: 4px; letter-spacing: .08em; text-transform: uppercase; }

/* HERO RIGHT CARD */
.hero-r { position: relative; z-index: 1;  }
.hcard {
  background: linear-gradient(145deg, #F8F5EF, #FFFDF8);
  border: 1px solid #EDE8DC; border-radius: 22px;
  padding: 36px 32px 28px; position: relative; overflow: hidden;
}
.hcard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 22px 22px 0 0;
}
.hc-lbl { font-size: .6rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.hc-name { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 900; letter-spacing: -.01em; color: var(--black); margin-bottom: 20px; }
.hc-svg { width: 100%; margin-bottom: 24px; }
.hc-row { display: flex; justify-content: space-between; align-items: flex-end; }
.hc-pl { font-size: .6rem; font-weight: 600; color: var(--muted); margin-bottom: 2px; letter-spacing: .06em; text-transform: uppercase; }
.hc-price { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.85rem; letter-spacing: -.02em; line-height: 1; color: var(--black); }
.hc-price sub { font-size: .72rem; font-weight: 500; color: var(--muted); vertical-align: baseline; }
.hc-chips { display: flex; gap: 5px; flex-wrap: wrap; }
.hchip { background: var(--tag); color: #555; font-size: .62rem; font-weight: 600; padding: 5px 10px; border-radius: 100px; letter-spacing: .02em; }
.hbadge { position: absolute; top: -13px; right: 24px; background: var(--black); color: #fff; font-family: 'Montserrat', sans-serif; font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; z-index: 10; }
.hfloat {
  position: absolute; bottom: -16px; left: 20px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 11px 16px; display: flex; align-items: center; gap: 9px;
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
}
.hfi { font-size: 1.3rem; }
.hfm { font-family: 'Montserrat', sans-serif; font-size: .78rem; font-weight: 800; color: var(--black); }
.hfs { font-size: .62rem; font-weight: 500; color: var(--muted); margin-top: 1px; }

/* ── SECTIONS ── */
section { padding: 88px 5%; }
.kicker { display: inline-flex; align-items: center; gap: 8px; font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.kicker::before { content: ''; width: 20px; height: 2px; background: var(--gold); border-radius: 2px; display: block; }
.sec-h { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(1.8rem, 3.2vw, 2.8rem); letter-spacing: -.02em; color: var(--black); line-height: 1.1; margin-bottom: 10px; }
.sec-s { font-size: .88rem; color: var(--muted); font-weight: 400; line-height: 1.75; max-width: 450px; margin-bottom: 48px; }

/* ── FLEET ── */
#fleet { background: var(--bg); }
.fl-hd { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }
.fl-hd .sec-s { margin-bottom: 0; }
.cars { display: grid; grid-template-columns: repeat(auto-fill, minmax(295px, 1fr)); gap: 18px; }

/* CAR CARD */
.cc { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; transition: transform .28s, box-shadow .28s, border-color .28s; }
.cc:hover { transform: translateY(-5px); box-shadow: 0 18px 52px rgba(0,0,0,.08); border-color: #D0D0D0; }
.cc-top { padding: 20px 20px 0; display: flex; justify-content: space-between; align-items: flex-start; }
.cbadge { font-size: .58rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.ce { background: #EEF2FF; color: #4F46E5; }
.cl { background: #FFF8EC; color: var(--gold); }
.cs { background: #F0FDF4; color: #16A34A; }
.cx { background: #FFF1F2; color: #E11D48; }
.cpr { text-align: right; }
.cpfr { font-size: .58rem; font-weight: 600; color: var(--muted); display: block; margin-bottom: 1px; letter-spacing: .06em; text-transform: uppercase; }
.cpam { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.3rem; letter-spacing: -.01em; color: var(--black); line-height: 1; }
.cpam small { font-size: .68rem; font-weight: 500; color: var(--muted); }
.cpd { font-size: .62rem; font-weight: 500; color: var(--muted); }
.cc-img { margin: 12px 14px 0; border-radius: 12px; background: #F5F6F8; overflow: hidden; width: calc(100% - 28px); aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; }
.cc-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .32s; }
.cc:hover .cc-img img { transform: scale(1.04); }
.cc-img .no-img { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #BBB; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.cc-img .no-img svg { opacity: .35; }
.cc-body { padding: 16px 20px 20px; }
.cn { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em; color: var(--black); margin-bottom: 2px; }
.ct { font-size: .68rem; font-weight: 500; color: var(--muted); margin-bottom: 12px; letter-spacing: .04em; text-transform: uppercase; }
.cspecs { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px; }
.csp { background: var(--tag); color: #555; font-size: .62rem; font-weight: 600; padding: 4px 9px; border-radius: 100px; }
.cbtns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bcall {
  display: flex; align-items: center; justify-content: center; gap: 6px; padding: 11px;
  border-radius: 10px; font-family: 'Montserrat', sans-serif; font-size: .7rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; text-decoration: none;
  transition: all .2s; border: 1.5px solid #E0E0E0; color: var(--black); background: #fff;
}
.bcall:hover { background: var(--black); color: #fff; border-color: var(--black); }
.bwa {
  display: flex; align-items: center; justify-content: center; gap: 6px; padding: 11px;
  border-radius: 10px; font-family: 'Montserrat', sans-serif; font-size: .7rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; text-decoration: none;
  transition: all .2s; background: var(--green); color: #fff; border: 1.5px solid var(--green);
}
.bwa:hover { background: #16A34A; }

/* ── WHY ── */
#why { background: #fff; }
.wgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 14px; }
.wc { border: 1px solid var(--border); border-radius: 16px; padding: 30px 26px; transition: border-color .25s, box-shadow .25s; }
.wc:hover { border-color: #C8C8C8; box-shadow: 0 6px 28px rgba(0,0,0,.05); }
.wi { width: 42px; height: 42px; background: #F5F5F5; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; margin-bottom: 16px; }
.wt { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: .92rem; color: var(--black); margin-bottom: 8px; letter-spacing: -.01em; }
.wd { font-size: .82rem; font-weight: 400; color: var(--muted); line-height: 1.7; }

/* ── CONTACT ── */
#contact { background: var(--black); padding: 88px 5%; }
.cin { max-width: 620px; margin: 0 auto; text-align: center; }
.cin .kicker { justify-content: center; color: #888; }
.cin .kicker::before { background: #444; }
.cin .sec-h { color: #fff; }
.cdesc { font-size: .88rem; color: #777; line-height: 1.8; font-weight: 400; margin-bottom: 40px; }
.cbtns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.bcc {
  display: inline-flex; align-items: center; gap: 9px; padding: 15px 30px;
  border-radius: 100px; font-family: 'Montserrat', sans-serif; font-size: .75rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  transition: all .22s; border: 1.5px solid #2A2A2A; color: #fff; background: transparent;
}
.bcc:hover { border-color: #fff; background: #fff; color: var(--black); }
.bcw {
  display: inline-flex; align-items: center; gap: 9px; padding: 15px 30px;
  border-radius: 100px; font-family: 'Montserrat', sans-serif; font-size: .75rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  transition: all .22s; background: var(--green); color: #fff; border: 1.5px solid var(--green);
}
.bcw:hover { background: #16A34A; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(34,197,94,.3); }
.cnote { margin-top: 30px; font-size: .68rem; font-weight: 500; color: #444; letter-spacing: .08em; }

/* ── FOOTER ── */
footer { background: #080808; border-top: 1px solid #181818; padding: 44px 5% 26px; }
.ft { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; margin-bottom: 40px; }
.fb .logo { display: inline-flex; align-items: center; }
.ft-tag { font-size: .7rem; font-weight: 500; color: #444; margin-top: 6px; }
.fc h5 { font-size: .58rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: #444; margin-bottom: 12px; }
.fc a, .fc p { display: block; font-size: .78rem; font-weight: 400; color: #666; text-decoration: none; margin-bottom: 7px; transition: color .2s; }
.fc a:hover { color: #fff; }
.fb2 { border-top: 1px solid #181818; padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.fc2 { font-size: .68rem; font-weight: 400; color: #333; }
.fc2 em { font-style: normal; color: var(--gold); }

/* ── FLOAT WA ── */
.fwa { position: fixed; bottom: 24px; right: 24px; z-index: 200; width: 54px; height: 54px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 5px 20px rgba(34,197,94,.4); animation: waP 2.5s ease-in-out infinite; transition: transform .2s; }
.fwa:hover { transform: scale(1.1); animation: none; box-shadow: 0 8px 32px rgba(34,197,94,.5); }
@keyframes waP { 0%,100%{box-shadow:0 5px 20px rgba(34,197,94,.4)} 50%{box-shadow:0 5px 36px rgba(34,197,94,.65)} }

/* ── ANIMATIONS ── */

.r { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .hero { grid-template-columns: 1fr; padding: 100px 5% 60px; gap: 48px; }
  .hero-r { display: none; }
}
@media(max-width:580px) {
  nav { padding: 0 4%; }
  .npill span { display: none; }
  .npill { padding: 9px 13px; }
  section { padding: 68px 4%; }
  .cars { grid-template-columns: 1fr; }
  .wgrid { grid-template-columns: 1fr; }
  .h-btns, .cbtns-big { flex-direction: column; align-items: stretch; }
  .hbp, .hbw, .bcc, .bcw { justify-content: center; }
  .ft { flex-direction: column; }
  .h-stats { gap: 20px; }
}
