:root {
  --ink: #111516;
  --muted: #626766;
  --paper: #fbfaf7;
  --warm: #f3eee5;
  --line: rgba(17, 21, 22, .11);
  --gold: #b9853d;
  --gold-dark: #93672c;
  --white: #fff;
  --radius: 20px;
  --shadow: 0 22px 55px rgba(25, 27, 27, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Manrope, system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
body.menu-open, body.dialog-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow { margin: 0 0 12px; color: var(--gold-dark); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 22px; border: 1px solid transparent; border-radius: 10px; cursor: pointer; font-size: 13px; font-weight: 800; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-gold { color: white; background: var(--gold); box-shadow: 0 10px 25px rgba(185, 133, 61, .22); }
.button-gold:hover { background: var(--gold-dark); }
.button-light { border-color: rgba(17, 21, 22, .2); background: rgba(255, 255, 255, .7); backdrop-filter: blur(12px); }
.play { width: 25px; height: 25px; display: grid; place-items: center; padding-left: 2px; border: 1px solid currentColor; border-radius: 50%; font-size: 9px; }

.site-header { position: sticky; z-index: 50; top: 0; border-bottom: 1px solid var(--line); background: rgba(251, 250, 247, .92); backdrop-filter: blur(18px); }
.header-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.brand { display: inline-flex; flex-direction: column; line-height: 1; }
.brand strong { font-size: 25px; font-weight: 800; letter-spacing: .025em; white-space: nowrap; }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a { position: relative; font-size: 13px; font-weight: 600; }
.desktop-nav a::after { content: ''; position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .2s; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.phone { font-size: 12px; font-weight: 700; white-space: nowrap; }
.menu-button { width: 44px; height: 44px; display: none; border: 0; background: transparent; cursor: pointer; }
.menu-button span { width: 22px; height: 1.5px; display: block; margin: 6px auto; background: var(--ink); transition: transform .2s; }
.menu-open .menu-button span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-open .menu-button span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-nav { display: none; }

.hero { position: relative; min-height: 670px; overflow: hidden; background: #e7e6e1 url('/assets/sutarta-hero.jpg') center/cover no-repeat; }
.hero::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(251,250,247,.98) 0%, rgba(251,250,247,.91) 26%, rgba(251,250,247,.18) 58%, transparent 76%); }
.hero-content { position: relative; z-index: 2; padding-top: 88px; }
.hero h1 { max-width: 620px; margin: 0; font-size: clamp(48px, 5.2vw, 74px); line-height: 1.04; letter-spacing: -.055em; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-copy { max-width: 520px; margin: 22px 0 0; font-size: 16px; line-height: 1.65; }
.hero-actions { display: flex; gap: 12px; margin-top: 28px; }
.customer-note { display: flex; align-items: center; gap: 14px; margin-top: 30px; font-size: 12px; }
.avatars { display: flex; }
.avatars i { width: 34px; height: 34px; display: grid; place-items: center; margin-left: -7px; border: 2px solid white; border-radius: 50%; color: white; background: #5b5045; font-size: 10px; font-style: normal; font-weight: 800; }
.avatars i:first-child { margin-left: 0; background: #ad835c; }
.avatars i:nth-child(2) { background: #242a2b; }
.stats { position: absolute; z-index: 3; right: max(20px, calc((100vw - 1180px) / 2)); bottom: 30px; width: min(720px, calc(100% - 40px)); display: grid; grid-template-columns: repeat(4, 1fr); padding: 24px 18px; border: 1px solid rgba(255,255,255,.22); border-radius: 16px; color: white; background: rgba(17,21,22,.88); backdrop-filter: blur(16px); box-shadow: var(--shadow); }
.stats > div { display: flex; align-items: center; gap: 12px; padding: 0 17px; border-right: 1px solid rgba(255,255,255,.13); }
.stats > div:last-child { border: 0; }
.stat-icon { font-size: 29px; color: #d6b278; }
.stats p { margin: 0; }
.stats strong, .stats small { display: block; }
.stats strong { font-size: 17px; }
.stats small { margin-top: 5px; color: rgba(255,255,255,.68); font-size: 9px; line-height: 1.4; }

.section { padding: 88px 0; }
.cars-section { background: white; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.section-heading h2, .finance-copy h2, .trust-banner h2, .dialog-intro h2 { margin: 0; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.12; letter-spacing: -.045em; }
.section-heading > div > p:last-child { margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.text-link { padding: 10px 0; border: 0; color: var(--gold-dark); background: transparent; cursor: pointer; font-size: 12px; font-weight: 800; }
.text-link span { margin-left: 8px; }
.catalog-tools { display: grid; grid-template-columns: minmax(220px, 1fr) auto auto; align-items: center; gap: 14px; margin-bottom: 28px; }
.search-box { height: 48px; display: flex; align-items: center; gap: 10px; padding: 0 15px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); }
.search-box span { font-size: 21px; }
.search-box input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; font-size: 12px; }
.filter-chips { display: flex; gap: 7px; }
.chip { height: 38px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; background: white; cursor: pointer; font-size: 11px; font-weight: 700; }
.chip.active { color: white; border-color: var(--ink); background: var(--ink); }
.sort-box { font-size: 11px; font-weight: 700; }
.sort-box select { margin-left: 6px; padding: 9px 24px 9px 9px; border: 1px solid var(--line); border-radius: 8px; background: white; font-size: 11px; }
.car-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.car-card { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: white; transition: transform .25s, box-shadow .25s; }
.car-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.car-image { position: relative; aspect-ratio: 1.45 / 1; overflow: hidden; background-color: #ddd; }
.car-image::before { content: ''; position: absolute; inset: 0; background: url('/assets/sutarta-cars.jpg') var(--position, 0%) center / 600% 100% no-repeat; transform: scale(1.015); }
.favorite { position: absolute; z-index: 2; top: 13px; right: 13px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; color: white; background: rgba(17,21,22,.32); cursor: pointer; backdrop-filter: blur(8px); font-size: 18px; }
.favorite.active { color: #fff; background: var(--gold); }
.car-body { padding: 19px; }
.car-type { color: var(--gold-dark); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.car-body h3 { margin: 7px 0 7px; font-size: 17px; letter-spacing: -.02em; }
.car-meta { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; color: var(--muted); font-size: 10px; }
.car-meta span:not(:last-child)::after { content: '·'; margin-left: 6px; }
.car-price { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; margin-top: 19px; }
.car-price strong { font-size: 22px; letter-spacing: -.03em; }
.car-price small { color: var(--muted); font-size: 9px; }
.car-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 17px; padding-top: 14px; border-top: 1px solid var(--line); }
.car-bottom span { font-size: 10px; }
.car-bottom button { border: 0; color: var(--gold-dark); background: transparent; cursor: pointer; font-size: 10px; font-weight: 800; }
.empty-state { padding: 40px; text-align: center; color: var(--muted); border: 1px dashed var(--line); border-radius: 15px; }

.process-panel { display: grid; grid-template-columns: repeat(4, 1fr); padding: 32px 10px; border-radius: var(--radius); background: var(--warm); }
.process-panel article { position: relative; padding: 6px 27px; border-right: 1px solid var(--line); }
.process-panel article:last-child { border: 0; }
.process-panel article > span { position: absolute; top: 4px; right: 20px; color: rgba(17,21,22,.18); font-size: 11px; font-weight: 800; }
.round-icon { width: 43px; height: 43px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 50%; background: rgba(255,255,255,.76); box-shadow: 0 5px 16px rgba(30,30,25,.06); font-size: 19px; }
.process-panel h3 { min-height: 42px; margin: 0 0 10px; font-size: 13px; }
.process-panel p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }

.models-section { padding-top: 20px; }
.model-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.model-card { min-height: 152px; display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background-color: white; background-image: linear-gradient(to top, white 26%, transparent 66%), url('/assets/sutarta-cars.jpg'); background-size: auto, 600% 100%; background-position: center, var(--position) center; background-repeat: no-repeat; cursor: pointer; text-align: left; transition: transform .2s, border .2s; }
.model-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.model-card strong { display: block; font-size: 13px; }
.model-card span { margin-top: 5px; color: var(--muted); font-size: 10px; }

.finance-section { color: white; background: var(--ink); }
.finance-wrap { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 80px; }
.finance-copy > p:not(.eyebrow) { max-width: 520px; color: rgba(255,255,255,.63); font-size: 13px; line-height: 1.75; }
.finance-copy ul { display: grid; gap: 12px; margin: 25px 0 0; padding: 0; list-style: none; font-size: 12px; font-weight: 700; }
.finance-copy li::before { content: '✓'; margin-right: 10px; color: #d6ab6b; }
.calculator { padding: 30px; border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius); background: #202526; }
.calc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 27px; }
.calc-head h3 { margin: 0; font-size: 19px; }
.calc-head span { color: rgba(255,255,255,.48); font-size: 9px; }
.calculator label { display: grid; grid-template-columns: 1fr auto; gap: 12px; margin: 22px 0; font-size: 11px; font-weight: 700; }
.calculator output { color: #d9b77f; }
.calculator input[type='range'] { grid-column: 1 / -1; width: 100%; accent-color: var(--gold); }
.monthly { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 3px 20px; margin: 28px 0 20px; padding: 20px; border-radius: 12px; color: var(--ink); background: #f4eee3; }
.monthly span { font-size: 10px; font-weight: 700; }
.monthly strong { grid-row: span 2; font-size: 30px; letter-spacing: -.04em; }
.monthly small { color: var(--muted); font-size: 8px; }
.calculator .button { width: 100%; }

.trust-banner { display: grid; grid-template-columns: 1.1fr 1fr auto; align-items: center; gap: 50px; padding: 48px; border-radius: var(--radius); background: var(--warm); }
.trust-items { display: grid; gap: 17px; }
.trust-items p { margin: 0; }
.trust-items strong, .trust-items span { display: block; }
.trust-items strong { font-size: 12px; }
.trust-items span { margin-top: 4px; color: var(--muted); font-size: 10px; }

.site-footer { padding: 64px 0 20px; color: white; background: #0c0f10; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
.brand-light { color: white; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid p, .footer-grid a, .footer-grid span { color: rgba(255,255,255,.56); font-size: 11px; }
.footer-grid > div > strong { margin-bottom: 7px; font-size: 11px; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 45px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.35); font-size: 9px; }
.footer-bottom button { padding: 0; border: 0; color: inherit; background: transparent; cursor: pointer; font-size: inherit; }
.footer-bottom button:hover { color: white; }
.mobile-sticky { display: none; }

.request-dialog { width: min(720px, calc(100% - 28px)); padding: 38px; border: 0; border-radius: 20px; color: var(--ink); background: var(--paper); box-shadow: 0 40px 100px rgba(0,0,0,.35); }
.request-dialog::backdrop { background: rgba(6,8,8,.72); backdrop-filter: blur(7px); }
.dialog-close { position: absolute; top: 15px; right: 17px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: var(--warm); cursor: pointer; font-size: 23px; }
.dialog-intro { max-width: 560px; margin-bottom: 25px; }
.dialog-intro p:last-child { color: var(--muted); font-size: 12px; line-height: 1.6; }
.request-dialog form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.request-dialog label { display: grid; gap: 7px; font-size: 10px; font-weight: 800; }
.request-dialog input:not([type='checkbox']), .request-dialog textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 9px; outline: 0; background: white; font-size: 12px; resize: vertical; }
.request-dialog input:focus, .request-dialog textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(185,133,61,.12); }
.request-dialog .full { grid-column: 1 / -1; }
.request-dialog .consent { display: flex; grid-template-columns: none; align-items: center; color: var(--muted); font-weight: 500; }
.request-dialog .consent input { accent-color: var(--gold); }
.privacy-copy { color: var(--muted); font-size: 11px; line-height: 1.7; }
.privacy-copy h3 { margin: 21px 0 3px; color: var(--ink); font-size: 12px; }
.privacy-copy p { margin: 0; }
.request-dialog .honeypot { position: absolute; left: -10000px; }
.form-status { min-height: 18px; margin: 0; color: #a13e2f; font-size: 10px; }
.toast { position: fixed; z-index: 100; right: 25px; bottom: 25px; min-width: 300px; display: grid; gap: 3px; padding: 18px 20px; border-radius: 12px; color: white; background: var(--ink); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(140%); transition: opacity .2s, transform .3s; }
.toast.show { opacity: 1; transform: translateY(0); }
.toast strong { font-size: 13px; }
.toast span { color: rgba(255,255,255,.65); font-size: 10px; }
.privacy-banner { position: fixed; z-index: 110; right: 24px; bottom: 24px; left: 24px; max-width: 820px; align-items: center; justify-content: space-between; gap: 28px; margin-left: auto; padding: 22px 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; color: white; background: rgba(17,21,22,.97); box-shadow: 0 25px 80px rgba(0,0,0,.3); backdrop-filter: blur(18px); }
.privacy-banner:not([hidden]) { display: flex; }
.privacy-banner strong { font-size: 13px; }
.privacy-banner p { max-width: 500px; margin: 6px 0 0; color: rgba(255,255,255,.62); font-size: 10px; line-height: 1.6; }
.privacy-actions { display: flex; gap: 8px; flex-shrink: 0; }
.privacy-actions .button { min-height: 42px; padding-inline: 15px; font-size: 10px; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .mobile-nav { position: fixed; top: 78px; right: 0; left: 0; display: grid; gap: 0; padding: 12px 20px 24px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .3s; }
  .menu-open .mobile-nav { transform: translateY(0); }
  .mobile-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 700; }
  .hero { min-height: 730px; }
  .stats { grid-template-columns: repeat(2, 1fr); width: min(580px, calc(100% - 40px)); }
  .stats > div:nth-child(2) { border-right: 0; }
  .stats > div:nth-child(-n+2) { padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.13); }
  .stats > div:nth-child(n+3) { padding-top: 14px; }
  .catalog-tools { grid-template-columns: 1fr auto; }
  .filter-chips { grid-column: 1 / -1; grid-row: 2; }
  .car-grid { grid-template-columns: repeat(2, 1fr); }
  .process-panel { grid-template-columns: repeat(2, 1fr); }
  .process-panel article:nth-child(2) { border-right: 0; }
  .process-panel article:nth-child(-n+2) { padding-bottom: 28px; }
  .process-panel article:nth-child(n+3) { padding-top: 28px; border-top: 1px solid var(--line); }
  .model-grid { grid-template-columns: repeat(3, 1fr); }
  .finance-wrap { gap: 40px; }
  .trust-banner { grid-template-columns: 1fr 1fr; }
  .trust-banner .button { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { height: 66px; }
  .brand strong { font-size: 20px; }
  .phone, .header-cta { display: none; }
  .mobile-nav { top: 66px; }
  .hero { min-height: 790px; background-position: 68% center; }
  .hero::after { background: linear-gradient(180deg, rgba(251,250,247,.98) 0%, rgba(251,250,247,.9) 37%, rgba(251,250,247,.13) 68%, rgba(17,21,22,.15) 100%); }
  .hero-content { padding-top: 55px; }
  .hero h1 { max-width: 380px; font-size: clamp(42px, 13vw, 57px); }
  .hero-copy { max-width: 380px; font-size: 14px; line-height: 1.55; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 310px; }
  .customer-note { max-width: 300px; line-height: 1.5; }
  .stats { right: 14px; bottom: 20px; width: calc(100% - 28px); padding: 18px 6px; }
  .stats > div { gap: 8px; padding-right: 9px; padding-left: 9px; }
  .stat-icon { font-size: 22px; }
  .stats strong { font-size: 14px; }
  .stats small { font-size: 8px; }
  .section { padding: 64px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 10px; margin-bottom: 22px; }
  .section-heading h2, .finance-copy h2, .trust-banner h2, .dialog-intro h2 { font-size: 32px; }
  .catalog-tools { display: flex; align-items: stretch; flex-direction: column; overflow: hidden; }
  .filter-chips { width: max-content; max-width: 100%; overflow-x: auto; padding-bottom: 3px; }
  .sort-box { display: flex; align-items: center; justify-content: space-between; }
  .car-grid { grid-template-columns: 1fr; }
  .car-card:nth-child(n+5) { display: none; }
  .showing-all .car-card:nth-child(n) { display: block; }
  .car-body { padding: 17px; }
  .process-panel { grid-template-columns: 1fr; padding: 10px 22px; }
  .process-panel article { padding: 26px 0 !important; border-top: 1px solid var(--line) !important; border-right: 0; }
  .process-panel article:first-child { border-top: 0 !important; }
  .model-grid { display: flex; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
  .model-card { min-width: 210px; scroll-snap-align: start; }
  .finance-wrap { grid-template-columns: 1fr; }
  .calculator { padding: 22px 17px; }
  .monthly { grid-template-columns: 1fr; }
  .monthly strong { grid-row: auto; margin: 5px 0; }
  .trust-banner { grid-template-columns: 1fr; gap: 28px; padding: 32px 22px; }
  .trust-banner .button { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; padding-bottom: 68px; }
  .mobile-sticky { position: fixed; z-index: 45; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: .8fr 1.2fr; gap: 8px; padding: 9px 14px max(9px, env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(251,250,247,.95); backdrop-filter: blur(15px); }
  .mobile-sticky a, .mobile-sticky button { min-height: 45px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 9px; background: white; font-size: 11px; font-weight: 800; }
  .mobile-sticky button { color: white; border-color: var(--gold); background: var(--gold); }
  .request-dialog { padding: 30px 20px 22px; }
  .request-dialog form { grid-template-columns: 1fr; }
  .request-dialog .full { grid-column: auto; }
  .toast { right: 14px; bottom: 74px; left: 14px; min-width: 0; }
  .privacy-banner { right: 14px; bottom: 74px; left: 14px; align-items: stretch; flex-direction: column; gap: 15px; padding: 19px; }
  .privacy-actions { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
