
:root{
  --red:#c80a18;
  --red-dark:#a50712;
  --ink:#151619;
  --ink-2:#202126;
  --muted:#72757b;
  --line:#e4e5e7;
  --soft:#f7f7f8;
  --white:#fff;
  --green:#1fad55;
  --shadow:0 24px 70px rgba(17,18,22,.09);
  --shadow-soft:0 14px 38px rgba(17,18,22,.065);
  --radius:16px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  color:var(--ink);
  background:#fff;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
button,input,textarea{font:inherit}
button,a{-webkit-tap-highlight-color:transparent}
a{text-decoration:none;color:inherit}
img{max-width:100%}
body.modal-open{overflow:hidden}

.cursor-glow{
  position:fixed;z-index:0;width:320px;height:320px;margin:-160px 0 0 -160px;
  border-radius:50%;pointer-events:none;opacity:0;
  background:radial-gradient(circle,rgba(200,10,24,.045),transparent 68%);
  transform:translate3d(-999px,-999px,0);transition:opacity .2s ease;
}
.site-header,main,.site-footer,.quick-contact,.order-modal,.my-orders-modal,.testimonial-modal,.image-lightbox,.info-modal{position:relative;z-index:2}

/* HEADER */
.site-header{
  position:sticky;top:0;z-index:4000;height:86px;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(20,21,24,.07);
  transition:height .22s ease,box-shadow .22s ease;
}
.site-header.scrolled{height:76px;box-shadow:0 12px 34px rgba(17,18,22,.07)}
.header-shell{
  width:min(1320px,92%);height:100%;margin:auto;
  display:flex;align-items:center;justify-content:space-between;gap:28px;
}
.brand-logo{width:190px;height:70px;display:flex;align-items:center;overflow:hidden}
.brand-logo img{width:100%;height:100%;object-fit:contain;object-position:left center}
.desktop-nav{display:flex;align-items:center;gap:28px;margin-left:auto}
.desktop-nav a,.nav-my-orders{
  border:0;background:none;padding:8px 0;color:#414349;cursor:pointer;
  font-size:11px;font-weight:800;position:relative;
}
.desktop-nav a::after,.nav-my-orders::after{
  content:"";position:absolute;left:50%;bottom:2px;width:0;height:2px;transform:translateX(-50%);
  background:var(--red);border-radius:5px;transition:width .18s ease;
}
.desktop-nav a:hover,.nav-my-orders:hover{color:var(--red)}
.desktop-nav a:hover::after,.nav-my-orders:hover::after{width:18px}
.header-actions{display:flex;align-items:center;gap:8px}
.header-my-orders{display:none;border:1px solid var(--line);background:#fff;color:var(--ink);padding:11px 13px;border-radius:9px;font-size:10px;font-weight:800}
.header-order,.panel-order{
  border:0;background:linear-gradient(135deg,#d10b1a,#b60714);color:#fff;cursor:pointer;
  min-height:44px;padding:0 18px;border-radius:9px;font-size:11px;font-weight:900;
  box-shadow:0 12px 28px rgba(200,10,24,.19);
  transition:transform .18s ease,box-shadow .18s ease;
}
.header-order:hover,.panel-order:hover{transform:translateY(-2px);box-shadow:0 16px 34px rgba(200,10,24,.25)}

/* THIN FEATURE STRIP */
.feature-strip{
  width:min(1180px,92%);min-height:72px;margin:20px auto 0;padding:13px 24px;
  display:grid;grid-template-columns:5px 1fr 38px;gap:14px;align-items:center;
  overflow:hidden;border-radius:13px;border:1px solid rgba(255,255,255,.07);
  background:radial-gradient(circle at 90% 0%,rgba(200,10,24,.14),transparent 34%),linear-gradient(112deg,#101115,#191a1e);
  box-shadow:0 14px 36px rgba(14,15,18,.13);color:#fff;
}
.strip-marker{width:5px;height:28px;border-radius:99px;background:linear-gradient(#f02b39,#990711)}
.strip-line{width:38px;height:1px;background:linear-gradient(90deg,rgba(255,255,255,.08),rgba(255,255,255,.4))}
.feature-banner-copy strong{display:block;font-size:16px;letter-spacing:-.15px}
.feature-banner-copy p{margin:3px 0 0;color:#a7aab0;font-size:9.5px;line-height:1.4}

/* HERO / SEARCH */
.hero-search{padding:74px 5% 92px;position:relative}
.hero-search::before{
  content:"";position:absolute;inset:0 0 auto;height:620px;pointer-events:none;
  background:radial-gradient(circle at 30% 30%,rgba(200,10,24,.045),transparent 34%),linear-gradient(#fff,#fcfcfd);
}
.hero-grid{
  position:relative;width:min(1240px,100%);margin:auto;
  display:grid;grid-template-columns:minmax(0,1fr);gap:0;align-items:center;
}
.hero-copy{max-width:920px}
.eyebrow,.section-heading>span,.section-label,.contact-title>span{
  color:var(--red);font-size:9px;font-weight:950;letter-spacing:1.8px;
}
.hero-copy h1{
  margin:13px 0 16px;font-size:clamp(45px,5.1vw,72px);line-height:.96;letter-spacing:-3.3px;font-weight:950;
}
.hero-copy h1 em{font-style:normal;color:var(--red)}
.hero-copy>p{max-width:700px;margin:0;color:var(--muted);font-size:13px;line-height:1.75}
.search-stage{position:relative;margin-top:28px}
.search-box{
  min-height:70px;padding:7px 7px 7px 17px;display:grid;grid-template-columns:22px 1fr auto;gap:10px;align-items:center;
  border:1px solid #d9dade;border-radius:14px;background:#fff;
  box-shadow:0 25px 70px rgba(17,18,22,.085);transition:.2s;
}
.search-box:focus-within{border-color:rgba(200,10,24,.48);box-shadow:0 0 0 4px rgba(200,10,24,.045),0 30px 78px rgba(17,18,22,.10)}
.search-icon{width:15px;height:15px;border:2px solid #9b9da3;border-radius:50%;position:relative}
.search-icon::after{content:"";position:absolute;width:7px;height:2px;background:#9b9da3;right:-6px;bottom:-3px;transform:rotate(45deg);border-radius:2px}
.search-box input{width:100%;border:0;outline:0;background:transparent;color:var(--ink);font-size:16px;font-weight:750}
.search-box input::placeholder{color:#a1a3a8;font-weight:600}
.search-box button{
  border:1px solid var(--line);background:#f8f8f9;color:#55585e;cursor:pointer;
  min-height:52px;padding:0 16px;border-radius:9px;font-size:10px;font-weight:850;
}
.suggestions{
  display:none;position:absolute;z-index:140;left:0;right:0;top:calc(100% + 8px);
  max-height:370px;overflow:auto;border:1px solid #dedfe2;border-radius:13px;background:#fff;
  box-shadow:0 26px 65px rgba(17,18,22,.14);
}
.suggestions.active{display:block}
.suggestion{padding:13px 16px;border-bottom:1px solid #eeeeef;cursor:pointer}
.suggestion:last-child{border-bottom:0}
.suggestion:hover{background:#faf6f7}
.suggestion strong,.suggestion small{display:block}
.suggestion strong{font-size:12px;color:#222328}
.suggestion small{margin-top:3px;color:#888b91;font-size:9.5px}
.hero-trust{display:flex;gap:8px;flex-wrap:wrap;margin-top:17px}
.hero-trust span{
  padding:7px 9px;border:1px solid #e5e6e8;border-radius:7px;background:#fff;color:#666970;font-size:9px;font-weight:800;
}
.hero-trust span::before{content:"✓";margin-right:6px;color:var(--red)}

.hero-panel{
  padding:32px;border-radius:18px;color:#fff;
  background:radial-gradient(circle at 100% 0%,rgba(200,10,24,.3),transparent 40%),linear-gradient(145deg,#111216,#202126);
  box-shadow:0 34px 80px rgba(17,18,22,.18);
}
.panel-kicker{color:#ff5964;font-size:8px;font-weight:950;letter-spacing:1.8px}
.hero-panel h2{margin:11px 0 25px;font-size:27px;line-height:1.08;letter-spacing:-1px}
.panel-points{display:grid;gap:8px;margin-bottom:24px}
.panel-points div{display:flex;align-items:center;gap:11px;padding:10px;border:1px solid rgba(255,255,255,.09);border-radius:8px;background:rgba(255,255,255,.035)}
.panel-points b{color:#ff5964;font-size:9px}
.panel-points span{font-size:10px;color:#e3e4e6}
.panel-order{width:100%}

/* RESULTS */
.vehicle-results{position:relative;width:min(1240px,100%);margin:38px auto 0}
.empty-state{
  min-height:112px;padding:20px 24px;display:flex;align-items:center;gap:16px;border:1px dashed #dcdde0;border-radius:14px;background:#fff;
}
.empty-state strong,.empty-state small{display:block}
.empty-state strong{font-size:13px}
.empty-state small{margin-top:4px;color:#85888e;font-size:10px}
.empty-icon{width:38px;height:38px;border-radius:10px;border:1px solid #e2e3e5;background:linear-gradient(135deg,#fff,#f4f4f5);position:relative}
.empty-icon::before{content:"";position:absolute;width:13px;height:13px;border:2px solid var(--red);border-radius:50%;left:9px;top:8px}
.empty-icon::after{content:"";position:absolute;width:8px;height:2px;background:var(--red);transform:rotate(45deg);left:21px;top:23px}

.vehicle-card{overflow:hidden;border:1px solid #dedfe2;border-radius:18px;background:#fff;box-shadow:var(--shadow);animation:cardIn .3s ease both}
@keyframes cardIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.vehicle-top{display:flex;justify-content:space-between;gap:20px;align-items:flex-start;padding:27px 30px;background:#fff}
.vehicle-top h3{margin:0;font-size:28px;letter-spacing:-1px}
.vehicle-top p{margin:6px 0 0;color:#7c7f85;font-size:10px}
.vehicle-price{text-align:right;color:var(--red);font-size:28px;font-weight:950;white-space:nowrap}
.vehicle-price span,.vehicle-price small{display:block;margin-top:3px;color:#75787e;font-size:8px;letter-spacing:.8px}
.vehicle-gallery{display:grid;gap:2px;background:#dfe0e2}
.vehicle-gallery.gallery-count-1{grid-template-columns:1fr}
.vehicle-gallery.gallery-count-2{grid-template-columns:repeat(2,1fr)}
.vehicle-gallery.gallery-count-3{grid-template-columns:repeat(3,1fr)}
.vehicle-photo{height:350px;overflow:hidden;background:#f1f2f3}
.vehicle-gallery.gallery-count-1 .vehicle-photo{height:500px}
.vehicle-photo img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s ease,filter .35s ease}
.vehicle-photo:hover img{transform:scale(1.025);filter:saturate(1.03)}
.photo-label{display:none!important}
.vehicle-features{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;padding:17px 28px;background:#fff}
.vehicle-feature{min-height:44px;display:grid;place-items:center;padding:8px;border:1px solid #e8e9eb;border-radius:8px;background:#fafafa;font-size:9px;font-weight:800;text-align:center}
.vehicle-bottom{display:flex;justify-content:space-between;gap:20px;align-items:center;padding:20px 28px 26px;border-top:1px solid #ececee}
.vehicle-bottom-copy strong,.vehicle-bottom-copy small{display:block}
.vehicle-bottom-copy strong{font-size:12px}
.vehicle-bottom-copy small{margin-top:4px;color:#82858b;font-size:9px}
.vehicle-order{
  border:0;background:var(--ink);color:#fff;min-height:46px;padding:0 20px;border-radius:9px;cursor:pointer;font-size:10px;font-weight:900;
  box-shadow:0 12px 26px rgba(17,18,22,.14);transition:.18s;
}
.vehicle-order:hover{transform:translateY(-2px);background:var(--red)}
.assisted-vehicle-gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:#ddd}
.assisted-photo{height:300px;overflow:hidden}.assisted-photo img{width:100%;height:100%;object-fit:cover}
.assisted-vehicle-content{padding:28px}.assisted-head{display:flex;justify-content:space-between;gap:20px}.assisted-kicker{color:var(--red);font-size:8px;font-weight:950;letter-spacing:1px}
.assisted-head h3{margin:6px 0;font-size:28px}.assisted-head p{color:#74777d;font-size:11px}
.assisted-payment{padding:10px;border:1px solid #e3e4e6;border-radius:8px;background:#fafafa;text-align:right}.assisted-payment strong,.assisted-payment small{display:block}
.assisted-benefits{display:grid;grid-template-columns:repeat(3,1fr);gap:7px;margin:20px 0}.assisted-benefits span{padding:9px;border:1px solid #e7e8ea;border-radius:7px;font-size:9px}
.assisted-bottom{display:flex;justify-content:space-between;align-items:center;gap:18px;padding-top:18px;border-top:1px solid #ececee}.assisted-bottom strong,.assisted-bottom small{display:block}.assisted-bottom small{margin-top:3px;color:#83868c;font-size:9px}

/* GENERAL SECTIONS */
.business-flow,.product-features,.testimonial-section,.contact{width:min(1240px,90%);margin-left:auto;margin-right:auto}
.business-flow{padding:88px 0 92px}
.section-heading{max-width:720px}
.section-heading h2{margin:8px 0 10px;font-size:clamp(31px,3.1vw,43px);line-height:1.04;letter-spacing:-1.6px}
.section-heading p{margin:0;color:var(--muted);font-size:11.5px;line-height:1.7}
.flow-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:30px}
.flow-card{position:relative;min-height:205px;padding:24px;border:1px solid var(--line);border-radius:14px;background:#fff;box-shadow:var(--shadow-soft);overflow:hidden}
.flow-card>b{position:absolute;right:18px;top:17px;color:#d0d1d4;font-size:9px}
.flow-symbol{width:42px;height:42px;display:block;margin-bottom:23px;border:1px solid #e2e3e5;border-radius:9px;background:#fafafa;position:relative}
.search-symbol::before{content:"";position:absolute;width:13px;height:13px;border:2px solid var(--red);border-radius:50%;left:10px;top:9px}
.search-symbol::after{content:"";position:absolute;width:7px;height:2px;background:var(--red);transform:rotate(45deg);left:23px;top:24px}
.order-symbol::before{content:"✓";position:absolute;inset:0;display:grid;place-items:center;color:var(--red);font-weight:950}
.track-symbol::before{content:"↗";position:absolute;inset:0;display:grid;place-items:center;color:var(--red);font-weight:950}
.flow-card h3{margin:0 0 8px;font-size:16px;letter-spacing:-.3px}
.flow-card p{margin:0;color:#75787e;font-size:10.5px;line-height:1.65}

.product-features{
  padding:58px;display:grid;grid-template-columns:minmax(0,1.15fr) minmax(330px,.85fr);gap:58px;align-items:start;
  border:1px solid var(--line);border-radius:20px;background:#fff;box-shadow:var(--shadow-soft);
}
.feature-copy h2{margin:11px 0 13px;font-size:clamp(35px,3.7vw,51px);line-height:1.01;letter-spacing:-2px}
.feature-copy h2 em{font-style:normal;color:var(--red)}
.feature-intro{max-width:680px;margin:0 0 27px;color:var(--muted);font-size:12px;line-height:1.75}
.feature-list{border-top:1px solid #e8e9eb}
.feature-list article{display:grid;grid-template-columns:48px 1fr;gap:14px;padding:21px 0;border-bottom:1px solid #e8e9eb}
.feature-number{width:38px;height:38px;display:grid;place-items:center;border:1px solid #e2e3e5;border-radius:8px;background:#fafafa;color:var(--red);font-size:9px;font-weight:950}
.feature-list h3{margin:0 0 6px;font-size:15px}.feature-list p{margin:0;color:#74777d;font-size:10.5px;line-height:1.65}
.feature-summary{padding:34px;border-radius:15px;color:#fff;background:radial-gradient(circle at 100% 0%,rgba(200,10,24,.28),transparent 38%),linear-gradient(145deg,#111216,#202126);box-shadow:0 30px 72px rgba(17,18,22,.18)}
.summary-line{display:block;width:38px;height:3px;border-radius:4px;background:var(--red);margin-bottom:22px}
.feature-summary small{color:#ff6670;font-size:8px;font-weight:950;letter-spacing:1.7px}
.feature-summary>strong{display:block;margin:11px 0;font-size:29px;line-height:1.06;letter-spacing:-1px}
.feature-summary>p{color:#bbbcc1;font-size:10.5px;line-height:1.7}
.summary-points{display:grid;gap:7px;margin-top:23px}.summary-points span{padding:10px;border:1px solid rgba(255,255,255,.1);border-radius:7px;background:rgba(255,255,255,.035);font-size:9px}.summary-points span::before{content:"✓";margin-right:7px;color:#ff5a65}

/* TESTIMONIAL */
.testimonial-section{padding:100px 0 96px;text-align:center}
.testimonial-heading{margin:0 auto}
.testimonial-preview{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;max-width:850px;margin:31px auto 0}
.preview-card{height:245px;padding:0;border:1px solid #e2e3e5;border-radius:13px;background:#f4f4f5;overflow:hidden;cursor:pointer;box-shadow:var(--shadow-soft);transition:.22s}
.preview-card:hover{transform:translateY(-5px);box-shadow:0 22px 52px rgba(17,18,22,.11)}
.preview-card img{width:100%;height:100%;object-fit:cover;display:block}
.preview-lift{transform:translateY(-8px)}
.preview-lift:hover{transform:translateY(-13px)}
.testimonial-button{margin-top:22px;border:0;background:var(--ink);color:#fff;min-height:45px;padding:0 18px;border-radius:9px;cursor:pointer;font-size:10px;font-weight:900}
.testimonial-button:hover{background:var(--red)}

/* CONTACT */
.contact{padding:0 0 100px}
.contact-title{margin:0 auto 30px;text-align:center}
.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.contact-card{min-height:155px;padding:24px;border:1px solid var(--line);border-radius:14px;background:#fff;box-shadow:0 12px 34px rgba(17,18,22,.045);transition:.2s}
.contact-card:hover{transform:translateY(-4px);border-color:rgba(200,10,24,.3);box-shadow:0 20px 50px rgba(17,18,22,.08)}
.contact-card small{color:var(--red);font-size:8px;font-weight:950;letter-spacing:1.5px}
.contact-card strong{display:block;margin:25px 0 5px;font-size:20px;letter-spacing:-.4px}
.contact-card span{color:#74777d;font-size:10px}
.whatsapp-contact small{color:var(--green)}

/* FOOTER - single clean logo */
.site-footer{padding:33px 5% 18px;background:linear-gradient(140deg,#0f1013,#18191d);color:#fff}
.footer-shell{width:min(1240px,100%);margin:auto;display:flex;justify-content:space-between;align-items:center;gap:30px}
.footer-brand{display:flex;align-items:center;gap:18px}
.footer-logo-shell{width:145px;height:70px;padding:7px 12px;border-radius:10px;background:#fff;display:flex;align-items:center;justify-content:center;overflow:hidden}
.footer-logo-shell img{width:100%;height:100%;object-fit:contain}
.footer-brand>div:last-child strong,.footer-brand>div:last-child span{display:block}.footer-brand>div:last-child strong{font-size:13px}.footer-brand>div:last-child span{margin-top:4px;color:#83868c;font-size:9px}
.footer-links{display:flex;gap:7px;flex-wrap:wrap;justify-content:flex-end}
.footer-links button,.footer-links a{border:1px solid #303238;background:#191a1e;color:#c6c8cc;padding:8px 10px;border-radius:7px;font-size:9px;font-weight:800;cursor:pointer}
.footer-links button:hover,.footer-links a:hover{border-color:var(--red);color:#fff}
.footer-bottom{width:min(1240px,100%);margin:20px auto 0;padding-top:14px;border-top:1px solid #292a2e;display:flex;justify-content:space-between;gap:20px}
.footer-bottom p,.footer-bottom span{margin:0;color:#6d7076;font-size:8px}

/* FIXED PHONE + WHATSAPP: bottom-left, always visible */
.quick-contact{
  position:fixed;z-index:4600;left:18px;bottom:18px;display:flex;flex-direction:column;gap:8px;
}
.quick-contact-item{
  min-width:154px;min-height:52px;padding:7px 12px 7px 7px;display:flex;align-items:center;gap:9px;
  border-radius:11px;border:1px solid #303238;background:#151619;color:#fff;
  box-shadow:0 14px 38px rgba(17,18,22,.2);transition:.18s;
}
.quick-contact-item:hover{transform:translateX(3px);box-shadow:0 18px 44px rgba(17,18,22,.25)}
.quick-icon{width:38px;height:38px;display:grid;place-items:center;border-radius:8px;flex:0 0 38px}
.phone-icon{background:var(--red);position:relative}
.phone-icon::before{content:"☎";color:#fff;font-size:17px}
.whatsapp-icon{background:var(--green);font-size:13px;font-weight:950;color:#fff}
.quick-contact-item div{display:flex;flex-direction:column;line-height:1.1}.quick-contact-item b{font-size:10px}.quick-contact-item small{margin-top:4px;color:#b9bbc0;font-size:8px}

/* MODALS */
.order-modal,.my-orders-modal,.testimonial-modal,.info-modal,.image-lightbox{
  display:none;position:fixed;inset:0;z-index:6000;align-items:center;justify-content:center;padding:18px;
}
.order-modal.active,.my-orders-modal.active,.testimonial-modal.active,.info-modal.active,.image-lightbox.active{display:flex}
.modal-backdrop,.my-orders-backdrop,.testimonial-backdrop,.info-modal-backdrop{
  position:absolute;inset:0;background:rgba(8,9,11,.78);backdrop-filter:blur(10px);
}
.order-box,.my-orders-window,.testimonial-window,.info-modal-window{
  position:relative;width:min(760px,96vw);max-height:92vh;overflow:auto;background:#fff;border:1px solid #dedfe2;border-radius:18px;box-shadow:0 40px 120px rgba(0,0,0,.35);
}
.order-box{padding:32px}.my-orders-window{width:min(900px,96vw);padding:32px}.testimonial-window{width:min(1160px,96vw);padding:34px}.info-modal-window{padding:32px}
.close-modal,.my-orders-close,.testimonial-close,.info-modal-close,#lightboxClose{
  position:absolute;right:15px;top:15px;width:40px;height:40px;border:1px solid #dedfe2;border-radius:9px;background:#fff;color:var(--ink);cursor:pointer;font-size:22px;z-index:2;
}
.close-modal:hover,.my-orders-close:hover,.testimonial-close:hover,.info-modal-close:hover,#lightboxClose:hover{background:var(--red);border-color:var(--red);color:#fff}
.order-header span,.my-orders-heading span,.testimonial-modal-title span,.info-modal-kicker{color:var(--red);font-size:8px;font-weight:950;letter-spacing:1.6px}
.order-header h2,.my-orders-heading h2,.testimonial-modal-title h2,.info-modal-window h2{margin:7px 0 6px;font-size:30px;letter-spacing:-1px}
.order-header p,.my-orders-heading p,.testimonial-modal-title p,.info-modal-window p{color:#70737a;font-size:10.5px;line-height:1.65}
.order-box form{display:grid;gap:14px;margin-top:24px}
.order-box label{display:grid;gap:7px;color:#33353a;font-size:9px;font-weight:900}
.order-box input,.order-box textarea{
  width:100%;border:1px solid #dfe0e3;border-radius:9px;background:#fff;color:var(--ink);outline:0;padding:12px;font-size:11px;font-weight:650;
}
.order-box textarea{min-height:92px;resize:vertical}
.order-box input:focus,.order-box textarea:focus{border-color:rgba(200,10,24,.5);box-shadow:0 0 0 3px rgba(200,10,24,.045)}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.selected-product{display:flex;justify-content:space-between;gap:18px;align-items:center;padding:14px;border:1px solid #e3e4e6;border-radius:10px;background:#fafafa}
.selected-product small,.selected-product strong{display:block}.selected-product small{color:#8b8e94;font-size:7px;letter-spacing:1px}.selected-product>strong{color:var(--red)}
.payment-fixed{padding:12px;border:1px solid #e3e4e6;border-radius:9px;background:#fafafa}.payment-fixed span,.payment-fixed small{display:block}.payment-fixed span{font-size:11px}.payment-fixed small{margin-top:3px;color:#83868c;font-size:8px}
.submit-order{min-height:49px;border:0;border-radius:9px;background:var(--ink);color:#fff;cursor:pointer;font-size:10px;font-weight:950;display:flex;align-items:center;justify-content:center;gap:10px}.submit-order:hover{background:var(--red)}
.modal-vehicle-suggestions,.location-suggestions{display:none;position:absolute;z-index:50;left:0;right:0;top:calc(100% + 5px);max-height:250px;overflow:auto;border:1px solid #dedfe2;border-radius:9px;background:#fff;box-shadow:0 18px 45px rgba(17,18,22,.14)}
.modal-vehicle-suggestions.active,.location-suggestions.active{display:block}
.modal-vehicle-picker,.location-picker{position:relative}
.modal-vehicle-suggestion,.location-option{padding:10px 12px;border-bottom:1px solid #eee;cursor:pointer}.modal-vehicle-suggestion:hover,.location-option:hover{background:#faf6f7}.modal-vehicle-suggestion strong,.modal-vehicle-suggestion small{display:block}.modal-vehicle-suggestion strong{font-size:10px}.modal-vehicle-suggestion small{margin-top:3px;color:#85888e;font-size:8px}
.my-orders-content{display:grid;gap:10px;margin-top:22px}.my-orders-empty{padding:20px;text-align:center;border:1px dashed #ddd;border-radius:10px;color:#80838a;font-size:10px}
.customer-order-card{border:1px solid #e2e3e5;border-radius:12px;background:#fff;overflow:hidden}.customer-order-top{padding:14px;display:flex;justify-content:space-between;gap:15px;border-bottom:1px solid #eee}.customer-order-main{display:grid;gap:4px}.customer-order-main strong{font-size:11px}.customer-order-main small{color:#81848a;font-size:8px}.customer-order-status{padding:6px 8px;border-radius:999px;background:#f1f1f2;font-size:8px;font-weight:900;align-self:flex-start}.customer-order-details{display:grid;grid-template-columns:repeat(2,1fr);gap:9px;padding:14px;font-size:9px}.customer-order-price{color:var(--red);font-weight:950}
.testimonial-modal-title{text-align:center;max-width:720px;margin:0 auto 26px}.testimonial-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}.testimonial-grid button{padding:0;border:1px solid #e0e1e3;border-radius:12px;background:#f5f5f6;overflow:hidden;cursor:zoom-in}.testimonial-image-shell{height:520px;padding:8px}.testimonial-grid img{width:100%;height:100%;object-fit:contain;display:block;border-radius:7px;background:#fff}
.image-lightbox{background:rgba(5,5,7,.92)}.image-lightbox img{max-width:94vw;max-height:90vh;object-fit:contain;border-radius:10px;box-shadow:0 34px 100px rgba(0,0,0,.5)}
.info-modal-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin:18px 0}.info-modal-grid div{padding:12px;border:1px solid #e5e6e8;border-radius:8px;background:#fafafa}.info-modal-grid small,.info-modal-grid strong{display:block}.info-modal-grid small{color:#8c8f95;font-size:7px}.info-modal-grid strong{margin-top:4px;font-size:10px}.info-legal-note{padding:12px;border-left:3px solid var(--red);background:#fafafa}

/* ANIMATION / MOUSE */
.premium-reveal{opacity:0;transform:translateY(16px);transition:opacity .6s ease,transform .6s ease}
.premium-reveal.is-visible{opacity:1;transform:none}
.mouse-tilt{will-change:transform}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}.premium-reveal{opacity:1;transform:none;transition:none}.mouse-tilt{transform:none!important}.cursor-glow{display:none}}

@media(max-width:1000px){
  .desktop-nav{display:none}.header-my-orders{display:inline-flex}
  .hero-grid{grid-template-columns:1fr}.hero-panel{max-width:620px}
  .product-features{grid-template-columns:1fr}
  .flow-grid{grid-template-columns:1fr 1fr}.flow-card:last-child{grid-column:1/-1}
}
@media(max-width:720px){
  .site-header{height:76px}.header-shell{width:94%}.brand-logo{width:135px;height:56px}.header-order{padding:0 12px;min-height:40px}.header-my-orders{padding:9px 10px}
  .feature-strip{width:calc(100% - 24px);min-height:62px;margin-top:10px;padding:10px 14px;grid-template-columns:4px 1fr}.strip-line{display:none}.feature-banner-copy strong{font-size:13px}.feature-banner-copy p{font-size:8px}
  .hero-search{padding:54px 4% 70px}.hero-copy h1{font-size:38px;letter-spacing:-1.8px}.hero-copy>p{font-size:11px}.hero-panel{padding:25px}.hero-panel h2{font-size:23px}
  .search-box{min-height:62px;padding-left:12px}.search-box input{font-size:14px}.search-box button{min-height:46px;padding:0 11px}
  .vehicle-top{padding:21px;flex-direction:column}.vehicle-price{text-align:left;font-size:24px}
  .vehicle-gallery.gallery-count-1,.vehicle-gallery.gallery-count-2,.vehicle-gallery.gallery-count-3{grid-template-columns:1fr}.vehicle-photo,.vehicle-gallery.gallery-count-1 .vehicle-photo{height:290px}
  .vehicle-features{grid-template-columns:1fr 1fr;padding:14px 18px}.vehicle-bottom{flex-direction:column;align-items:stretch;padding:18px}.vehicle-order{width:100%}
  .assisted-vehicle-gallery{grid-template-columns:1fr}.assisted-photo{height:250px}.assisted-head,.assisted-bottom{flex-direction:column;align-items:stretch}.assisted-benefits{grid-template-columns:1fr}
  .business-flow,.product-features,.testimonial-section,.contact{width:calc(100% - 28px)}.business-flow{padding:66px 0}.flow-grid{grid-template-columns:1fr}.flow-card:last-child{grid-column:auto}
  .product-features{padding:29px 20px}.feature-copy h2{font-size:34px;letter-spacing:-1.3px}.feature-list article{grid-template-columns:42px 1fr}.feature-summary{padding:26px 20px}
  .testimonial-section{padding:75px 0}.testimonial-preview{grid-template-columns:1fr;max-width:380px}.preview-card,.preview-lift{height:auto;transform:none}.preview-card img{height:auto;max-height:440px;object-fit:cover}
  .contact-grid{grid-template-columns:1fr}
  .footer-shell{flex-direction:column;align-items:flex-start}.footer-links{justify-content:flex-start}.footer-bottom{flex-direction:column;gap:6px}.footer-logo-shell{width:125px;height:62px}
  .quick-contact{left:10px;bottom:10px}.quick-contact-item{min-width:48px;width:48px;height:48px;padding:5px}.quick-contact-item div{display:none}.quick-icon{width:38px;height:38px}
  .form-grid{grid-template-columns:1fr}.order-box,.my-orders-window,.testimonial-window,.info-modal-window{padding:25px 15px}.testimonial-grid{grid-template-columns:1fr}.testimonial-image-shell{height:auto}.testimonial-grid img{height:auto;max-height:none}.customer-order-details{grid-template-columns:1fr}.info-modal-grid{grid-template-columns:1fr}
}


/* OTOSAR PREMIUM MOTION PATCH 2026-09-07 */
/* JS devre dışı kalırsa hiçbir içerik gizlenmez. */
.otosar-motion-ready .hero-copy>.eyebrow,
.otosar-motion-ready .hero-copy>h1,
.otosar-motion-ready .hero-copy>p,
.otosar-motion-ready .hero-copy>.search-stage,
.otosar-motion-ready .hero-copy>.hero-trust,
.otosar-motion-ready .hero-panel{
  opacity:0;
  transform:translate3d(0,16px,0);
}
.otosar-motion-ready.otosar-motion-launched .hero-copy>.eyebrow{animation:otosarHeroIn .58s .04s cubic-bezier(.2,.8,.2,1) forwards}
.otosar-motion-ready.otosar-motion-launched .hero-copy>h1{animation:otosarHeroIn .66s .10s cubic-bezier(.2,.8,.2,1) forwards}
.otosar-motion-ready.otosar-motion-launched .hero-copy>p{animation:otosarHeroIn .66s .17s cubic-bezier(.2,.8,.2,1) forwards}
.otosar-motion-ready.otosar-motion-launched .hero-copy>.search-stage{animation:otosarHeroIn .70s .24s cubic-bezier(.2,.8,.2,1) forwards}
.otosar-motion-ready.otosar-motion-launched .hero-copy>.hero-trust{animation:otosarHeroIn .70s .31s cubic-bezier(.2,.8,.2,1) forwards}
.otosar-motion-ready.otosar-motion-launched .hero-panel{animation:otosarHeroPanelIn .78s .18s cubic-bezier(.18,.86,.22,1) forwards}
@keyframes otosarHeroIn{to{opacity:1;transform:translate3d(0,0,0)}}
@keyframes otosarHeroPanelIn{from{opacity:0;transform:translate3d(18px,18px,0) scale(.985)}to{opacity:1;transform:translate3d(0,0,0) scale(1)}}

/* Bölüm açıldığında iç elemanlar küçük gecikmelerle gelir. */
.premium-reveal.is-visible .flow-card,
.premium-reveal.is-visible .feature-list article,
.premium-reveal.is-visible .preview-card,
.premium-reveal.is-visible .contact-card{
  animation:otosarStaggerIn .52s cubic-bezier(.2,.8,.2,1) both;
}
.premium-reveal.is-visible .flow-card:nth-child(2),
.premium-reveal.is-visible .feature-list article:nth-child(2),
.premium-reveal.is-visible .preview-card:nth-child(2),
.premium-reveal.is-visible .contact-card:nth-child(2){animation-delay:.07s}
.premium-reveal.is-visible .flow-card:nth-child(3),
.premium-reveal.is-visible .feature-list article:nth-child(3),
.premium-reveal.is-visible .preview-card:nth-child(3),
.premium-reveal.is-visible .contact-card:nth-child(3){animation-delay:.14s}
.premium-reveal.is-visible .feature-list article:nth-child(4){animation-delay:.21s}
@keyframes otosarStaggerIn{from{opacity:.35;transform:translate3d(0,12px,0)}to{opacity:1;transform:translate3d(0,0,0)}}

/* Hero kartında imleci takip eden çok hafif premium ışık. */
.hero-panel{position:relative;overflow:hidden;isolation:isolate;--spot-x:78%;--spot-y:12%}
.hero-panel::before{
  content:"";position:absolute;inset:-1px;z-index:-1;pointer-events:none;
  background:radial-gradient(260px circle at var(--spot-x) var(--spot-y),rgba(255,255,255,.09),transparent 62%);
  opacity:.72;transition:opacity .25s ease;
}
.hero-panel:hover::before{opacity:1}
.panel-points div{transition:transform .2s ease,border-color .2s ease,background .2s ease}
.panel-points div:hover{transform:translateX(4px);border-color:rgba(255,89,100,.22);background:rgba(255,255,255,.055)}
.hero-trust span{transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease}
.hero-trust span:hover{transform:translateY(-2px);border-color:rgba(200,10,24,.25);box-shadow:0 10px 24px rgba(17,18,22,.05)}

/* CTA'lara sade bir ışık geçişi; yerleşimi değiştirmez. */
.header-order,.panel-order,.submit-order{position:relative;overflow:hidden;isolation:isolate}
.header-order::after,.panel-order::after,.submit-order::after{
  content:"";position:absolute;top:-70%;left:-45%;width:26%;height:240%;pointer-events:none;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.20),transparent);
  transform:rotate(18deg) translateX(-220%);transition:transform .65s cubic-bezier(.2,.8,.2,1);
}
.header-order:hover::after,.panel-order:hover::after,.submit-order:hover::after{transform:rotate(18deg) translateX(620%)}

@media (prefers-reduced-motion:reduce){
  .otosar-motion-ready .hero-copy>.eyebrow,
  .otosar-motion-ready .hero-copy>h1,
  .otosar-motion-ready .hero-copy>p,
  .otosar-motion-ready .hero-copy>.search-stage,
  .otosar-motion-ready .hero-copy>.hero-trust,
  .otosar-motion-ready .hero-panel{opacity:1!important;transform:none!important;animation:none!important}
  .premium-reveal.is-visible .flow-card,
  .premium-reveal.is-visible .feature-list article,
  .premium-reveal.is-visible .preview-card,
  .premium-reveal.is-visible .contact-card{animation:none!important}
  .panel-points div,.hero-trust span{transition:none}
}

/* =========================================================
   SEARCH LAYOUT + OVERLAP CLEANUP 2026-09-07
   Arama alanını sayfanın başında ortalar ve öneri listesinin
   güven rozetleri / sonuç alanı ile üst üste binmesini engeller.
   ========================================================= */
.hero-search{
  padding:42px 5% 52px;
}
.hero-search::before{
  height:500px;
}
.hero-copy{
  width:100%;
  max-width:1040px;
  margin:0 auto;
  text-align:center;
}
.hero-copy h1{
  max-width:940px;
  margin:13px auto 16px;
  font-size:clamp(40px,4.7vw,64px);
  line-height:.98;
}
.hero-copy>p{
  max-width:720px;
  margin:0 auto;
}
.search-stage{
  width:min(920px,100%);
  margin:26px auto 0;
  position:relative;
  z-index:20;
}
/* Öneri listesi artık absolute değildir: açıldığında aşağıdaki
   içeriği doğal olarak aşağı iter, hiçbir şeyi kapatmaz. */
.suggestions{
  position:relative;
  left:auto;
  right:auto;
  top:auto;
  margin-top:8px;
  max-height:340px;
  text-align:left;
  z-index:30;
}
.hero-trust{
  justify-content:center;
  margin-top:14px;
  position:relative;
  z-index:1;
}
.vehicle-results{
  width:min(1000px,100%);
  margin:26px auto 0;
}
.feature-strip{
  margin:0 auto;
}

/* Arama sırasında sonuç yüklenirken sayfanın zıplamasını azalt. */
.vehicle-results:empty{
  margin-top:0;
}
.search-error{
  padding:14px 16px;
  border:1px solid #f0d5d8;
  border-radius:11px;
  background:#fff7f8;
  color:#8d1b24;
  font-size:11px;
  font-weight:750;
  text-align:left;
}

@media(max-width:720px){
  .hero-search{padding:32px 4% 44px}
  .hero-copy h1{font-size:34px;letter-spacing:-1.5px}
  .hero-copy>p{font-size:10.5px}
  .search-stage{margin-top:21px}
  .suggestions{max-height:300px}
  .hero-trust{gap:6px;margin-top:12px}
  .hero-trust span{padding:6px 8px;font-size:8.5px}
  .vehicle-results{margin-top:20px}
  .feature-strip{width:calc(100% - 28px);margin:0 auto}
}
