:root {
  --red: #f20d28;
  --red-deep: #ba0018;
  --black: #070708;
  --panel: #111114;
  --panel-2: #18181c;
  --line: rgba(255,255,255,.11);
  --muted: #96969d;
  --white: #f5f4f2;
  --display: "Unbounded", sans-serif;
  --body: "Manrope", sans-serif;
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body { margin: 0; background: var(--black); color: var(--white); font-family: var(--body); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body::selection { background: var(--red); color: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.noise { position: fixed; inset: 0; pointer-events: none; opacity: .025; z-index: 999; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); }

.site-header { position: fixed; inset: 0 0 auto; height: 82px; z-index: 100; border-bottom: 1px solid var(--line); background: rgba(7,7,8,.84); backdrop-filter: blur(20px); }
.header-row { height: 100%; display: flex; align-items: center; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-size: 15px; font-weight: 700; letter-spacing: -.04em; }
.brand > span:last-child > span { color: var(--red); }
.brand-mark { width: 34px; height: 34px; border: 1px solid var(--red); display: grid; place-items: center; color: var(--red); font: 700 10px var(--display); transform: skew(-7deg); }
.main-nav { display: flex; gap: 25px; margin-left: auto; }
.main-nav a { color: #bbb; font-size: 13px; font-weight: 600; transition: .2s; }
.main-nav a:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.header-phone { font-weight: 700; font-size: 13px; }
.menu-button { display: none; border: 0; background: none; width: 38px; height: 38px; padding: 10px; }
.menu-button span { display: block; width: 100%; height: 1px; background: #fff; margin: 6px 0; }

.button { min-height: 52px; padding: 0 24px; border: 1px solid transparent; border-radius: 3px; display: inline-flex; align-items: center; justify-content: center; gap: 22px; background: transparent; color: #fff; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .055em; cursor: pointer; transition: .25s; }
.button span { font-size: 19px; font-weight: 400; }
.button-red { background: var(--red); box-shadow: 0 10px 40px rgba(242,13,40,.18); }
.button-red:hover { background: #ff263f; transform: translateY(-2px); box-shadow: 0 14px 45px rgba(242,13,40,.3); }
.button-outline { border-color: rgba(255,255,255,.32); }
.button-outline:hover { border-color: var(--red); color: var(--red); }
.button-small { min-height: 40px; padding: 0 17px; font-size: 11px; }
.text-link { color: #ddd; font-size: 13px; font-weight: 700; border-bottom: 1px solid #777; padding-bottom: 4px; transition: .2s; }
.text-link:hover { color: var(--red); border-color: var(--red); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #a4a4aa; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .17em; }
.eyebrow i { width: 7px; height: 7px; background: var(--red); border-radius: 50%; box-shadow: 0 0 16px var(--red); }

.hero { min-height: 820px; padding: 150px 0 70px; position: relative; overflow: hidden; display: flex; align-items: center; }
.hero::after { content: "VOSTOK"; position: absolute; left: 5%; bottom: -72px; color: rgba(255,255,255,.018); font: 700 clamp(140px, 23vw, 350px)/1 var(--display); letter-spacing: -.09em; pointer-events: none; }
.hero-glow { position: absolute; width: 520px; height: 520px; right: 10%; top: 16%; background: radial-gradient(circle, rgba(242,13,40,.18), transparent 65%); filter: blur(40px); }
.hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 55px; align-items: center; position: relative; z-index: 1; }
.hero-copy h1 { margin: 25px 0; font: 600 clamp(46px, 5.8vw, 83px)/1.04 var(--display); letter-spacing: -.065em; text-transform: uppercase; }
.hero-copy h1 em, .section-heading h2 em, .calculator-copy h2 em, .contact-band h2 em { color: var(--red); font-style: normal; }
.hero-copy > p { max-width: 570px; color: #a6a6ac; font-size: 17px; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.hero-stats { display: flex; gap: 48px; margin-top: 60px; }
.hero-stats > div { display: flex; align-items: center; gap: 12px; }
.hero-stats strong { font: 600 24px var(--display); }
.hero-stats span { color: #77777e; font-size: 10px; line-height: 1.35; text-transform: uppercase; letter-spacing: .08em; }
.hero-visual { height: 540px; position: relative; }
.hero-visual::before { content: ""; position: absolute; inset: 22px -30px -22px 40px; border: 1px solid rgba(242,13,40,.35); z-index: -1; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) contrast(1.08); }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.82)); }
.hero-number { position: absolute; z-index: 2; right: 24px; top: 12px; color: rgba(255,255,255,.7); font: 500 60px var(--display); }
.hero-caption { position: absolute; left: 25px; bottom: 23px; z-index: 2; display: flex; flex-direction: column; }
.hero-caption span { font: 600 20px var(--display); }
.hero-caption small { color: #aaa; margin-top: 4px; }

.direction-section, .dark-section, .calculator-section, .process-section, .reviews-section, .seo-section, .timeline-section, .faq-section { padding: 110px 0; }
.direction-section { background: #0b0b0d; border-top: 1px solid var(--line); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 50px; }
.section-heading h2, .calculator-copy h2, .contact-band h2 { margin: 10px 0 0; font: 600 clamp(32px, 4vw, 54px)/1.08 var(--display); letter-spacing: -.055em; text-transform: uppercase; }
.section-heading > p { max-width: 460px; color: var(--muted); font-size: 14px; }
.direction-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.direction-card { position: relative; height: 340px; padding: 28px; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); background: #111; transition: .3s; }
.direction-card::before { content: ""; position: absolute; inset: 0; opacity: .62; transition: .3s; background-size: cover; background-position: center; }
.direction-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.2), #09090b 92%); }
.direction-china::before { background-image: url("/images/cars/geely-monjaro.jpg"); }
.direction-japan::before { background-image: url("/images/cars/mazda-cx-5.jpg"); }
.direction-korea::before { background-image: url("/images/cars/hyundai-palisade.jpg"); }
.direction-card:hover { transform: translateY(-6px); border-color: var(--red); }
.direction-card:hover::before { transform: scale(1.05); opacity: .72; }
.direction-japan::before { transform: scaleX(-1); }
.direction-japan:hover::before { transform: scaleX(-1) scale(1.05); opacity: .72; }
.direction-card > * { position: relative; z-index: 2; }
.direction-card > span { align-self: end; color: #aaa; font: 500 13px var(--display); }
.direction-card small { color: #aaa; text-transform: uppercase; letter-spacing: .14em; font-size: 10px; }
.direction-card h3 { margin: 4px 0 0; font: 600 27px var(--display); text-transform: uppercase; }
.direction-card b { color: #aaa; font-size: 12px; font-weight: 500; }
.direction-card i { position: absolute; right: 26px; bottom: 25px; color: var(--red); font-style: normal; font-size: 25px; }

.dark-section { background: var(--black); }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.car-card { height: 100%; background: var(--panel); border: 1px solid var(--line); overflow: hidden; transition: .3s; }
.car-card:hover { border-color: rgba(242,13,40,.65); transform: translateY(-5px); }
.car-image { display: block; position: relative; height: 285px; overflow: hidden; background: #1a1a1d; }
.car-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.96) brightness(1.08) contrast(1.02); transition: .45s; }
.car-card:hover .car-image img { transform: scale(1.035); filter: saturate(1.08) brightness(1.12); }
.country-chip, .hot-chip { position: absolute; top: 15px; padding: 7px 10px; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.country-chip { left: 15px; background: rgba(5,5,6,.8); backdrop-filter: blur(8px); }
.hot-chip { right: 15px; background: var(--red); }
.car-content { padding: 23px; }
.car-heading { display: flex; justify-content: space-between; align-items: start; gap: 15px; }
.car-heading h3 { margin: 0; font: 600 17px/1.3 var(--display); text-transform: uppercase; letter-spacing: -.025em; }
.car-heading > span { color: var(--red); font-size: 12px; font-weight: 700; }
.car-specs { display: flex; gap: 8px; margin-top: 17px; flex-wrap: wrap; }
.car-specs span { padding: 5px 8px; background: #1d1d21; color: #aaa; font-size: 10px; }
.car-trim { min-height: 21px; color: #777; font-size: 12px; margin: 11px 0 22px; }
.car-price { border-top: 1px solid var(--line); padding-top: 18px; display: flex; justify-content: space-between; align-items: end; }
.car-price > div { display: flex; flex-direction: column; }
.car-price small { color: #777; font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }
.car-price strong { margin-top: 2px; font: 600 19px var(--display); }
.car-price > a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid #3b3b40; color: var(--red); transition: .2s; }
.car-price > a:hover { background: var(--red); color: #fff; border-color: var(--red); }

.calculator-section { background: #0c0c0e; border-block: 1px solid var(--line); }
.calculator-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.calculator-copy > p { max-width: 480px; color: var(--muted); }
.calc-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.calc-badges span { border: 1px solid var(--line); padding: 8px 11px; color: #888; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.live-calculator { padding: 38px; border: 1px solid rgba(242,13,40,.28); background: linear-gradient(145deg, #18181c, #101012); box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.live-calculator label, .lead-form label, .admin-login-card label, .admin-setting-grid label, .admin-country-grid label { display: flex; flex-direction: column; gap: 8px; }
.live-calculator label > span, .lead-form label > span, .admin-login-card label > span, .admin-setting-grid label > span, .admin-country-grid label > span { color: #8e8e95; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.live-calculator select, .lead-form input, .lead-form textarea, .admin-page input, .admin-page select, .admin-login-card input { width: 100%; min-height: 52px; border: 1px solid #34343a; border-radius: 2px; outline: 0; background: #0c0c0e; color: #f5f5f5; padding: 0 15px; transition: .2s; }
.live-calculator select:focus, .lead-form input:focus, .admin-page input:focus, .admin-page select:focus, .admin-login-card input:focus { border-color: var(--red); }
.calc-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 17px; }
.calc-loading { display: none; margin: 25px 0; color: #999; font-size: 13px; }
.calc-loading.active { display: block; }
.calc-result { margin-top: 26px; }
.calc-total { display: flex; align-items: end; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.calc-total span { color: #888; font-size: 11px; text-transform: uppercase; }
.calc-total strong { color: var(--red); font: 600 clamp(27px, 3vw, 38px) var(--display); }
.calc-breakdown { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 25px; padding: 18px 0 5px; }
.calc-breakdown div { display: flex; justify-content: space-between; gap: 12px; color: #999; font-size: 11px; }
.calc-breakdown b { color: #ddd; font-weight: 600; }
.calc-disclaimer, .form-note { color: #666; font-size: 9px; margin: 16px 0 0; }
.calc-error { padding: 14px; background: rgba(242,13,40,.1); color: #ff7585; font-size: 13px; }

.process-section { background: #f0efec; color: #111; }
.process-section .eyebrow { color: #777; }
.process-section .section-heading > p { color: #626266; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #c9c8c5; border-left: 1px solid #c9c8c5; }
.process-grid article { min-height: 280px; padding: 25px; border-right: 1px solid #c9c8c5; border-bottom: 1px solid #c9c8c5; }
.process-grid article > span { color: var(--red); font: 600 12px var(--display); }
.process-grid h3 { margin: 100px 0 12px; font: 600 15px var(--display); text-transform: uppercase; }
.process-grid p { margin: 0; color: #666; font-size: 12px; }
.reviews-section { background: #0a0a0b; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.reviews-grid blockquote { margin: 0; padding: 30px; min-height: 300px; display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--panel); }
.reviews-grid blockquote > div { color: var(--red); font: 600 44px var(--display); height: 45px; }
.reviews-grid blockquote > p { color: #b8b8bc; font-size: 14px; }
.reviews-grid footer { margin-top: auto; display: flex; flex-direction: column; border-top: 1px solid var(--line); padding-top: 15px; }
.reviews-grid footer strong { font-size: 12px; }
.reviews-grid footer span { color: #777; font-size: 10px; }

.inner-hero { padding: 180px 0 90px; min-height: 590px; display: flex; align-items: end; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.inner-hero::before { content: ""; position: absolute; inset: 0; opacity: .4; background-size: cover; background-position: center; }
.inner-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #080809 20%, rgba(8,8,9,.7), #08080944), linear-gradient(0deg, #080809, transparent 65%); }
.country-china::before { background-image: url("/images/cars/geely-monjaro.jpg"); }
.country-japan::before { background-image: url("/images/cars/mazda-cx-5.jpg"); }
.country-japan::before { transform: scaleX(-1); }
.country-korea::before { background-image: url("/images/cars/hyundai-palisade.jpg"); }
.inner-hero .container { position: relative; z-index: 2; }
.breadcrumbs { display: flex; gap: 8px; color: #6f6f75; font-size: 10px; margin-bottom: 35px; }
.breadcrumbs a:hover { color: var(--red); }
.inner-hero h1 { max-width: 920px; margin: 16px 0 22px; font: 600 clamp(40px, 6vw, 76px)/1.04 var(--display); text-transform: uppercase; letter-spacing: -.06em; }
.inner-hero p { max-width: 720px; color: #aaa; font-size: 16px; }
.inner-hero .button { margin-top: 24px; }
.compact-hero { min-height: 460px; padding-bottom: 65px; }
.compact-hero::before { background: radial-gradient(circle at 75% 35%, rgba(242,13,40,.18), transparent 34%); opacity: 1; }
.country-facts { background: #0c0c0e; }
.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.facts-grid article { padding: 42px 30px; border-right: 1px solid var(--line); }
.facts-grid article:first-child { border-left: 1px solid var(--line); }
.facts-grid span { color: var(--red); font: 600 11px var(--display); }
.facts-grid h2 { margin: 40px 0 10px; font: 600 13px var(--display); text-transform: uppercase; }
.facts-grid p { color: #777; font-size: 11px; }
.seo-section { background: #efeeeb; color: #121214; }
.seo-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.seo-grid h2 { margin: 0; font: 600 30px/1.25 var(--display); text-transform: uppercase; letter-spacing: -.035em; }
.seo-grid p { color: #5c5c60; font-size: 14px; margin: 0 0 18px; }
.catalog-page { padding-top: 60px; }
.catalog-filters { display: flex; gap: 8px; margin-bottom: 35px; }
.catalog-filters button { border: 1px solid var(--line); background: transparent; color: #999; padding: 10px 18px; cursor: pointer; font-size: 11px; text-transform: uppercase; }
.catalog-filters button.active, .catalog-filters button:hover { background: var(--red); border-color: var(--red); color: #fff; }
.catalog-grid > [data-car-country].hidden { display: none; }

.timeline-section { background: #0b0b0d; }
.timeline article { display: grid; grid-template-columns: 90px .7fr 1fr; gap: 30px; align-items: start; padding: 38px 0; border-top: 1px solid var(--line); }
.timeline article:last-child { border-bottom: 1px solid var(--line); }
.timeline span { color: var(--red); font: 600 12px var(--display); }
.timeline h2 { margin: 0; font: 600 18px var(--display); text-transform: uppercase; }
.timeline p { margin: 0; color: #888; font-size: 13px; }
.faq-section { background: #0f0f11; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: grid; grid-template-columns: 60px 1fr 30px; gap: 15px; align-items: center; border: 0; background: transparent; padding: 25px 0; text-align: left; cursor: pointer; }
.faq-item button span { color: var(--red); font: 600 11px var(--display); }
.faq-item button strong { font: 600 14px var(--display); text-transform: uppercase; }
.faq-item button i { font-style: normal; color: var(--red); font-size: 24px; transition: .25s; }
.faq-item > div { max-height: 0; overflow: hidden; transition: .35s; }
.faq-item > div p { max-width: 750px; margin: 0 0 25px 75px; color: #888; font-size: 13px; }
.faq-item.open > div { max-height: 200px; }
.faq-item.open button i { transform: rotate(45deg); }

.product-section { padding: 150px 0 95px; }
.product-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 55px; align-items: stretch; }
.product-image { min-height: 560px; background: var(--panel); }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-info { padding: 25px 0; }
.product-info h1 { margin: 16px 0 4px; font: 600 clamp(37px, 5vw, 60px)/1.05 var(--display); text-transform: uppercase; letter-spacing: -.06em; }
.product-trim { color: #888; }
.product-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); margin: 35px 0; border: 1px solid var(--line); }
.product-specs div { background: #0d0d0f; padding: 16px; display: flex; flex-direction: column; }
.product-specs small, .product-price small { color: #777; font-size: 9px; text-transform: uppercase; }
.product-specs strong { font-size: 13px; }
.product-price { display: flex; flex-direction: column; margin: 40px 0 25px; }
.product-price strong { color: var(--red); font: 600 32px var(--display); }

.contact-band { padding: 100px 0; background: var(--red); color: #fff; }
.contact-band-grid { display: grid; grid-template-columns: 1fr 440px; gap: 90px; align-items: center; }
.contact-band .eyebrow { color: rgba(255,255,255,.7); }
.contact-band h2 em { color: #111; }
.contact-band-grid > div > p { max-width: 590px; color: rgba(255,255,255,.72); }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; padding: 27px; background: #101012; }
.lead-form label:first-child, .lead-form label:nth-child(3), .lead-form .button, .lead-form .form-note, .lead-form .form-status { grid-column: 1 / -1; }
.lead-form input { background: #17171a; }
.lead-form .button { margin-top: 3px; }
.form-status { min-height: 18px; color: #65df90; font-size: 12px; }
.site-footer { padding: 65px 0 25px; background: #060607; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr 1fr; gap: 45px; }
.footer-grid > div:first-child p { color: #666; font-size: 11px; margin-top: 20px; }
.footer-links, .footer-contacts { display: flex; flex-direction: column; gap: 10px; font-size: 11px; color: #777; }
.footer-links strong { color: #eee; text-transform: uppercase; font-size: 10px; margin-bottom: 6px; }
.footer-links a:hover, .footer-contacts a:hover { color: var(--red); }
.footer-contacts a { color: #eee; font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); margin-top: 45px; padding-top: 20px; color: #505055; font-size: 9px; }
.error-page { min-height: 75vh; padding: 180px 0 80px; text-align: center; }
.error-page span { color: var(--red); font: 600 100px var(--display); }
.error-page h1 { font: 600 30px var(--display); text-transform: uppercase; }

.admin-login { min-height: 100vh; padding: 150px 24px 70px; display: grid; place-items: center; }
.admin-login-card { width: min(430px, 100%); display: flex; flex-direction: column; gap: 17px; padding: 36px; border: 1px solid var(--line); background: var(--panel); }
.admin-login-card h1 { margin: 0 0 12px; font: 600 27px var(--display); text-transform: uppercase; }
.admin-error, .admin-success { padding: 13px 15px; font-size: 12px; background: rgba(242,13,40,.12); color: #ff7a8a; border: 1px solid rgba(242,13,40,.3); }
.admin-success { margin: 20px 0; background: rgba(46,190,100,.1); color: #70df98; border-color: rgba(46,190,100,.3); }
.admin-page { padding: 140px 0 90px; background: #080809; }
.admin-top, .admin-panel-heading { display: flex; justify-content: space-between; align-items: center; gap: 25px; }
.admin-top h1 { margin: 10px 0 0; font: 600 clamp(28px, 4vw, 45px) var(--display); text-transform: uppercase; }
.admin-tabs { position: sticky; top: 82px; z-index: 10; display: flex; gap: 20px; margin: 35px 0; padding: 14px 18px; background: rgba(20,20,23,.94); border: 1px solid var(--line); backdrop-filter: blur(10px); }
.admin-tabs a { color: #999; font-size: 11px; text-transform: uppercase; }
.admin-tabs a:hover { color: var(--red); }
.admin-panel { margin-top: 25px; padding: 28px; border: 1px solid var(--line); background: var(--panel); scroll-margin-top: 160px; }
.admin-panel-heading { margin-bottom: 25px; }
.admin-panel h2 { margin: 6px 0 0; font: 600 20px var(--display); text-transform: uppercase; }
.admin-setting-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.admin-setting-grid label > div { display: flex; align-items: center; }
.admin-setting-grid input { border-right: 0; }
.admin-setting-grid b { height: 52px; min-width: 68px; display: grid; place-items: center; background: #242428; color: #999; font-size: 10px; }
.admin-country-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.admin-country-grid fieldset { border: 1px solid var(--line); padding: 18px; display: flex; flex-direction: column; gap: 13px; }
.admin-country-grid legend { color: var(--red); font: 600 12px var(--display); padding: 0 7px; }
.car-editor { display: grid; grid-template-columns: 1.3fr 1fr .7fr .55fr .7fr .6fr .7fr 1fr .9fr 1.4fr; gap: 7px; padding: 12px 0; border-top: 1px solid var(--line); align-items: center; }
.car-editor-new { padding: 16px; margin-bottom: 24px; border: 1px solid rgba(242,13,40,.35); background: rgba(242,13,40,.035); }
.car-editor input, .car-editor select { min-height: 40px; padding: 0 9px; font-size: 10px; min-width: 0; }
.check-label { display: flex; align-items: center; gap: 7px; color: #999; font-size: 10px; }
.check-label input { width: auto; min-height: auto; accent-color: var(--red); }
.lead-table article { display: grid; grid-template-columns: 125px .8fr 1fr 1fr 1.4fr; gap: 15px; padding: 14px 0; border-top: 1px solid var(--line); font-size: 11px; }
.lead-table time, .lead-table span, .lead-table p { color: #777; margin: 0; }
.lead-table a { color: var(--red); }

@media (max-width: 1050px) {
  .main-nav { gap: 14px; }
  .header-phone { display: none; }
  .hero-grid, .calculator-shell, .seo-grid, .contact-band-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { height: 470px; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-setting-grid, .admin-country-grid { grid-template-columns: repeat(2, 1fr); }
  .car-editor { grid-template-columns: repeat(5, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .product-image { min-height: 450px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 30px, 1240px); }
  .site-header { height: 70px; }
  .header-actions { margin-left: auto; }
  .header-actions .button { display: none; }
  .menu-button { display: block; }
  .main-nav { display: none; position: absolute; top: 70px; left: 0; right: 0; padding: 25px 20px; flex-direction: column; background: #0c0c0e; border-bottom: 1px solid var(--line); }
  .main-nav.open { display: flex; }
  .hero { min-height: auto; padding: 115px 0 60px; }
  .hero-grid { gap: 45px; }
  .hero-copy h1 { font-size: clamp(39px, 12vw, 58px); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-stats { gap: 22px; flex-wrap: wrap; margin-top: 40px; }
  .hero-visual { height: 360px; }
  .hero-visual::before { inset: 12px -8px -12px 18px; }
  .hero-number { font-size: 40px; }
  .direction-section, .dark-section, .calculator-section, .process-section, .reviews-section, .seo-section, .timeline-section, .faq-section { padding: 75px 0; }
  .section-heading { align-items: start; flex-direction: column; margin-bottom: 35px; }
  .section-heading h2, .calculator-copy h2, .contact-band h2 { font-size: 32px; }
  .direction-grid, .reviews-grid, .facts-grid, .footer-grid { grid-template-columns: 1fr; }
  .direction-card { height: 270px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .car-image { height: 235px; }
  .live-calculator { padding: 22px; }
  .calc-fields, .calc-breakdown { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid h3 { margin-top: 50px; }
  .inner-hero { min-height: 530px; padding: 135px 0 60px; }
  .inner-hero h1 { font-size: 39px; }
  .facts-grid article, .facts-grid article:first-child { border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .timeline article { grid-template-columns: 45px 1fr; }
  .timeline article p { grid-column: 2; }
  .faq-item button { grid-template-columns: 35px 1fr 25px; }
  .faq-item > div p { margin-left: 50px; }
  .product-section { padding-top: 115px; }
  .product-image { min-height: 300px; }
  .product-specs { grid-template-columns: 1fr; }
  .contact-band { padding: 75px 0; }
  .contact-band-grid { gap: 40px; }
  .lead-form { grid-template-columns: 1fr; }
  .lead-form label { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .admin-tabs { top: 70px; overflow-x: auto; }
  .admin-panel { padding: 18px; }
  .admin-panel-heading { align-items: flex-start; flex-direction: column; }
  .admin-setting-grid, .admin-country-grid { grid-template-columns: 1fr; }
  .car-editor { grid-template-columns: 1fr 1fr; padding: 18px 0; }
  .lead-table article { grid-template-columns: 1fr 1fr; }
}

/* Main branded banner */
.hero-home {
  display: block;
  min-height: 0;
  padding: 118px 0 60px;
}
.hero-home::after { display: none; }
.hero-banner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: #050506;
  aspect-ratio: 16 / 9;
}
.hero-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.16), transparent 48%),
    linear-gradient(0deg, rgba(0,0,0,.9), transparent 47%);
}
.hero-banner-content {
  position: absolute;
  z-index: 2;
  left: 40px;
  right: 40px;
  bottom: 35px;
  max-width: 740px;
}
.hero-banner-content h1 {
  margin: 13px 0 10px;
  font: 600 clamp(28px, 4vw, 53px)/1.08 var(--display);
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.hero-banner-content h1 em {
  color: var(--red);
  font-style: normal;
}
.hero-banner-content > p {
  margin: 0;
  color: #b9b9bd;
  font-size: 14px;
}
.hero-home .hero-actions { margin-top: 22px; }
.hero-home .hero-stats {
  justify-content: flex-end;
  margin-top: 25px;
}

@media (max-width: 760px) {
  .hero-home { padding-top: 94px; }
  .hero-banner { aspect-ratio: auto; overflow: visible; }
  .hero-banner > img { aspect-ratio: 16 / 9; object-fit: cover; }
  .hero-banner::after { display: none; }
  .hero-banner-content {
    position: static;
    max-width: none;
    padding: 25px 19px 28px;
    background: #101012;
  }
  .hero-banner-content h1 { font-size: 29px; }
  .hero-home .hero-actions { flex-direction: column; }
  .hero-home .hero-stats { justify-content: flex-start; }
}

.hero-visual-banner {
  height: auto;
  aspect-ratio: 1024 / 545;
  align-self: center;
  background: #050506;
}
.hero-visual-banner img {
  object-fit: contain;
}
.hero-visual-banner::after {
  display: none;
}

.hero-home-side {
  min-height: 610px;
  padding: 105px 0 38px;
}
.hero-home-side .hero-grid {
  grid-template-columns: .76fr 1.24fr;
  gap: 40px;
}
.hero-home-side .hero-copy h1 {
  margin: 20px 0 18px;
  font-size: clamp(34px, 3.75vw, 52px);
  line-height: 1.02;
}
.hero-home-side .hero-copy > p {
  max-width: 500px;
  font-size: 14px;
  line-height: 1.55;
}
.hero-home-side .hero-actions {
  margin-top: 26px;
}
.hero-home-side .hero-stats {
  margin-top: 30px;
  gap: 28px;
}
.hero-home-side .hero-stats strong {
  font-size: 20px;
}
.hero-home-side .hero-stats span {
  font-size: 9px;
}

@media (max-width: 760px) {
  .hero-home-side {
    min-height: 0;
    padding: 94px 0 45px;
  }
  .hero-home-side .hero-copy h1 {
    font-size: 34px;
  }
  .hero-visual-banner {
    height: auto;
    aspect-ratio: 1024 / 545;
  }
}
