:root {
    --blue: #064f92;
    --blue-dark: #033a6d;
    --navy: #08213f;
    --green: #2faa35;
    --green-dark: #157d28;
    --gold: #caa014;
    --red: #ef5350;
    --text: #202637;
    --muted: #697386;
    --line: #e5eaf3;
    --soft: #f5f8fc;
    --soft-blue: #edf6ff;
    --white: #ffffff;
    --shadow: 0 18px 42px rgba(16, 31, 62, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.icon { width: 18px; height: 18px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}
.nav-wrap { height: 72px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: var(--blue); font-size: 20px; white-space: nowrap; }
.brand-word { display: inline-flex; align-items: baseline; letter-spacing: 0; }
.brand-blue { color: var(--blue); }
.brand-green { color: var(--green); }
.brand-i-mark {
    position: relative;
    width: .28em;
    height: .82em;
    display: inline-block;
    margin: 0 .02em;
    transform: translateY(.08em);
}
.brand-i-mark::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: .13em;
    height: .52em;
    border-radius: 999px;
    background: var(--blue);
    transform: translateX(-50%);
}
.brand-i-mark::after {
    content: "";
    position: absolute;
    top: -.03em;
    left: 50%;
    width: .17em;
    height: .17em;
    border-radius: 999px;
    background: var(--green);
    transform: translateX(-50%);
}
.brand-mark { width: 34px; height: 34px; display: inline-grid; place-items: center; border-radius: 999px; background: var(--blue); color: var(--white); }
.brand.light { color: var(--white); }
.brand.light .brand-mark { background: var(--white); color: var(--blue); }
.main-nav { display: flex; gap: 22px; font-weight: 650; color: var(--muted); }
.main-nav a.is-active, .main-nav a:hover { color: var(--blue); }
.global-search {
    margin-left: auto;
    width: min(380px, 35vw);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    min-height: 44px;
    border-radius: 8px;
    background: #f6f7fa;
    color: var(--muted);
}
.global-search input { width: 100%; border: 0; outline: 0; background: transparent; }
.avatar-link, .icon-button { width: 38px; height: 38px; display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: 999px; background: var(--soft-blue); color: var(--blue); }
.nav-account { display: flex; align-items: center; gap: 10px; }
.account-name { max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 800; color: var(--text); }
.logout-link { color: var(--muted); font-weight: 750; }
.login-link { min-height: 38px; padding: 0 14px; }
.nav-toggle { display: none; padding: 0; }
.nav-toggle span { width: 18px; height: 2px; background: currentColor; display: block; margin: 2px 0; }

.btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0 20px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 10px 20px rgba(6,79,146,.2); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-outline { border-color: #c8d6ec; color: #2f66c8; background: var(--white); }
.btn-muted { width: 100%; background: #f5f7fb; color: #536174; }
.btn-light { background: var(--white); color: var(--blue); }
.btn-ghost-light { background: rgba(255,255,255,.15); color: var(--white); border-color: rgba(255,255,255,.34); }
.btn-whatsapp { background: var(--green); color: var(--white); }
.btn.is-saved { border-color: #b8d2ff; background: var(--soft-blue); color: var(--blue); }
.full { width: 100%; }
.text-link { color: var(--blue); font-weight: 800; }
.eyebrow { display: inline-flex; align-items: center; width: fit-content; padding: 6px 12px; border-radius: 999px; background: var(--soft-blue); color: var(--blue); font-weight: 800; font-size: 13px; }

.hero { position: relative; min-height: 560px; color: var(--white); overflow: visible; }
.hero-media { position: absolute; inset: 0 0 72px; background: var(--navy); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,19,36,.88), rgba(11,19,36,.54), rgba(11,19,36,.18)); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .86; }
.hero-content { position: relative; z-index: 1; padding-top: 76px; max-width: 1180px; }
.hero h1 { max-width: 620px; margin: 22px 0 18px; font-size: 64px; line-height: 1.05; letter-spacing: 0; }
.hero p { max-width: 560px; color: rgba(255,255,255,.84); font-size: 19px; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-filter {
    position: relative;
    z-index: 2;
    margin-top: 46px;
    display: grid;
    grid-template-columns: repeat(4, 1fr) 180px;
    gap: 16px;
    padding: 22px;
    background: var(--white);
    color: var(--text);
    border-radius: 10px;
    box-shadow: var(--shadow);
}
label span, .filter-panel span { display: block; color: #4d5a6d; font-weight: 750; margin-bottom: 8px; }
input, select, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    min-height: 46px;
    padding: 0 13px;
    background: var(--white);
    color: var(--text);
    outline: 0;
}
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(6,79,146,.13); }
textarea { min-height: 124px; padding-top: 12px; resize: vertical; }
input[type="range"] { padding: 0; accent-color: var(--blue); }

.section { padding: 80px 0; }
.section-soft { background: var(--soft); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 34px; }
h1, h2, h3 { line-height: 1.15; margin-top: 0; letter-spacing: 0; }
h2 { font-size: 34px; margin-bottom: 10px; }
.section-head p, .page-intro p { color: var(--muted); margin: 0; }
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.promo-grid.two { grid-template-columns: repeat(2, 1fr); }
.promo-card {
    min-height: 190px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(16,31,62,.06);
}
.promo-card:nth-child(1) { background: #f0f5ff; }
.promo-card:nth-child(2) { background: #effbf4; }
.promo-card:nth-child(3) { background: #fff6ef; }
.mini-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 10px; background: var(--white); color: var(--blue); box-shadow: 0 10px 20px rgba(16,31,62,.08); }
.mini-icon.green { color: var(--green); }
.code-row { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; padding: 10px 12px; border-radius: 6px; background: rgba(255,255,255,.65); color: var(--blue); font-size: 13px; }
.code-row button { border: 0; background: transparent; color: var(--blue); font-weight: 850; cursor: pointer; }
.span-all { grid-column: 1 / -1; }

.vehicle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.vehicle-grid.compact { grid-template-columns: repeat(4, 1fr); }
.vehicle-card { overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: 0 10px 26px rgba(16,31,62,.06); }
.vehicle-image { position: relative; height: 235px; display: block; overflow: hidden; background: #eaf0f8; }
.compact .vehicle-image { height: 180px; }
.vehicle-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.vehicle-card:hover img { transform: scale(1.04); }
.badge { position: absolute; top: 14px; left: 14px; z-index: 1; padding: 5px 10px; border-radius: 999px; color: var(--white); font-size: 12px; font-weight: 850; background: var(--muted); }
.badge.benefit { top: 48px; background: var(--green); }
.badge.success { background: var(--green); }
.badge.danger { background: var(--red); }
.vehicle-body { padding: 22px; }
.vehicle-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; color: var(--blue); font-weight: 850; text-transform: uppercase; font-size: 13px; }
.vehicle-meta em { padding: 4px 9px; color: var(--muted); background: #f1f3f6; border-radius: 999px; font-style: normal; text-transform: none; font-size: 12px; }
.vehicle-card h3 { min-height: 48px; margin: 8px 0 16px; font-size: 21px; }
.spec-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 14px 0; border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line); color: #465468; font-size: 14px; }
.spec-row span { display: inline-flex; gap: 6px; align-items: center; }
.price-row { display: grid; gap: 4px; padding: 22px 0 14px; }
.price-row del { color: var(--muted); }
.price-row strong { font-size: 25px; }
.price-row small { color: var(--green); font-weight: 900; text-transform: uppercase; }
.center-actions { display: flex; justify-content: center; margin-top: 36px; }

.finance-banner {
    min-height: 360px;
    display: grid;
    grid-template-columns: 1.2fr .9fr;
    align-items: center;
    gap: 40px;
    padding: 62px;
    border-radius: 8px;
    background: var(--blue);
    color: var(--white);
    box-shadow: var(--shadow);
}
.finance-banner h2 { max-width: 440px; font-size: 44px; }
.finance-banner p { max-width: 500px; color: rgba(255,255,255,.82); }
.finance-widget { padding: 34px; border-radius: 10px; background: rgba(255,255,255,.14); box-shadow: 0 20px 40px rgba(0,0,0,.16); }
.finance-widget span { display: block; color: rgba(255,255,255,.78); font-weight: 800; }
.finance-widget strong { font-size: 30px; }
.progress-line { height: 8px; margin: 24px 0; border-radius: 999px; background: rgba(255,255,255,.24); }
.progress-line i { display: block; width: 62%; height: 100%; border-radius: inherit; background: var(--green); }
.finance-widget-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.finance-widget-grid small { padding: 18px; border-radius: 8px; background: rgba(255,255,255,.12); }
.stats-band { background: var(--navy); color: var(--white); padding: 46px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 22px; }
.stats-grid strong { display: block; color: var(--blue); font-size: 34px; }
.stats-grid span { color: #aeb9ca; }

.catalog-layout { display: grid; grid-template-columns: 280px 1fr; min-height: 700px; }
.filter-panel { border-right: 1px solid var(--line); background: #f8faff; padding: 30px 22px; }
.filter-panel form { position: sticky; top: 100px; display: grid; gap: 18px; }
.filter-title { display: flex; align-items: center; gap: 10px; }
.filter-title a { margin-left: auto; color: var(--blue); font-size: 13px; font-weight: 800; }
.switch-row { display: flex; align-items: center; justify-content: space-between; padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.switch-row span { margin: 0; }
.switch-row input { width: 42px; min-height: 22px; accent-color: var(--blue); }
.catalog-content { padding: 36px; max-width: 1120px; }
.breadcrumb { color: #7a8596; font-weight: 650; margin-bottom: 24px; }
.breadcrumb span { margin: 0 9px; }
.catalog-head { display: flex; justify-content: space-between; align-items: start; gap: 20px; margin-bottom: 24px; }
.catalog-head h1, .page-intro h1 { font-size: 42px; margin-bottom: 8px; }
.sort-form select { min-width: 180px; }
.catalog-tools { display: flex; align-items: center; gap: 12px; }
.view-switch { display: inline-flex; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--white); }
.view-switch a { min-height: 44px; display: grid; place-items: center; padding: 0 14px; color: var(--muted); font-weight: 800; }
.view-switch a.active { background: var(--soft-blue); color: var(--blue); }
.vehicle-grid.list-view { grid-template-columns: 1fr; }
.vehicle-grid.list-view .vehicle-card { display: grid; grid-template-columns: 300px 1fr; }
.vehicle-grid.list-view .vehicle-image { height: 100%; min-height: 230px; }
.chips { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.chips span { padding: 8px 12px; border: 1px solid #cbd8ec; border-radius: 999px; background: #f7fbff; color: #405370; font-weight: 750; }
.chips a { color: var(--red); font-weight: 800; }
.empty-state { padding: 70px; text-align: center; border: 1px dashed var(--line); border-radius: 8px; background: var(--soft); }
.pagination { display: flex; justify-content: center; align-items: center; gap: 10px; margin: 54px 0; }
.pagination span, .pagination a, .pagination strong { min-width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.pagination strong { background: var(--blue); color: var(--white); }
.assist-card { display: grid; grid-template-columns: 1fr 240px; align-items: center; gap: 28px; padding: 36px; border: 1px solid #cfe0fb; border-radius: 8px; background: #edf4ff; margin-top: 70px; }
.assist-card .btn { margin-right: 10px; }
.assist-visual { display: grid; place-items: center; height: 160px; border-radius: 8px; background: rgba(255,255,255,.5); color: var(--blue); }
.assist-visual .icon { width: 92px; height: 92px; }

.detail-page { padding: 38px 0 80px; }
.detail-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 42px; align-items: start; }
.detail-gallery { height: 500px; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: #eef3fa; }
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; }
.thumb-row { display: flex; gap: 18px; margin: 18px 0 34px; }
.thumb-row button { padding: 0; border: 2px solid transparent; border-radius: 8px; background: transparent; cursor: pointer; overflow: hidden; }
.thumb-row button.selected { border-color: var(--blue); }
.thumb-row img { width: 90px; height: 78px; object-fit: cover; }
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.spec-grid div { min-height: 112px; padding: 20px; border: 1px solid var(--line); border-radius: 8px; background: #f8fbff; }
.spec-grid .icon { color: var(--blue); }
.spec-grid span { display: block; color: var(--muted); font-size: 12px; font-weight: 850; text-transform: uppercase; margin-top: 12px; }
.purchase-panel { position: sticky; top: 96px; }
.purchase-panel h1 { font-size: 42px; margin: 10px 0; }
.rating { color: #f0b429; }
.rating span { color: var(--muted); }
.price-detail { padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 24px 0; }
.price-detail del { display: block; color: var(--muted); }
.price-detail strong { color: var(--blue); font-size: 36px; margin-right: 12px; }
.price-detail small { font-weight: 900; }
.price-detail p { margin: 0; color: var(--muted); }
.variant-list { display: grid; gap: 12px; margin-bottom: 22px; }
.variant-list label { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 18px; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; }
.variant-list label.selected { border: 2px solid var(--blue); background: #f7fbff; }
.variant-list input { width: auto; min-height: auto; }
.variant-list small { display: block; color: var(--muted); }
.variant-list em { color: var(--blue); font-size: 13px; font-style: normal; font-weight: 800; }
.swatches { display: flex; gap: 14px; margin: 10px 0 28px; }
.swatches button { width: 34px; height: 34px; border-radius: 999px; border: 3px solid var(--white); box-shadow: 0 0 0 2px #d5deeb; cursor: pointer; }
.swatches button.selected { box-shadow: 0 0 0 3px var(--blue); }
.benefit-box, .help-panel, .secure-box { margin-top: 18px; padding: 20px; border: 1px dashed #a9c7f7; border-radius: 8px; background: #f7fbff; }
.credit-box { display: grid; grid-template-columns: 1fr .9fr; gap: 28px; margin: 72px 0; padding: 30px; border-radius: 8px; background: #edf4ff; }
.credit-box label { display: block; margin: 18px 0; }
.credit-box label strong { float: right; color: var(--blue); }
.credit-result { padding: 30px; border-radius: 8px; color: var(--white); background: var(--blue); }
.credit-result > span { display: block; text-align: center; color: rgba(255,255,255,.78); }
.credit-result > strong { display: block; text-align: center; font-size: 38px; margin: 8px 0 24px; }
.credit-result div { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.25); }
.detail-bottom { display: grid; grid-template-columns: 1fr 330px; gap: 42px; }
details { padding: 18px 0; border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 850; }

.simulation-page, .profile-page, .admin-page { padding: 44px 0 80px; }
.page-intro { margin-bottom: 42px; }
.simulation-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 46px; align-items: start; }
.calculator-form { display: grid; gap: 24px; }
.readonly-price { display: flex; justify-content: space-between; align-items: center; min-height: 64px; padding: 0 22px; border: 1px dashed var(--line); border-radius: 8px; background: #fbfcff; }
.split-inputs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.simulation-result { overflow: hidden; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); background: var(--white); }
.result-head { padding: 28px; background: var(--blue); color: var(--white); }
.result-head span { display: block; font-weight: 850; text-transform: uppercase; }
.result-head strong { font-size: 42px; }
.simulation-result h3, .simulation-result dl, .simulation-result .total-row, .simulation-result .button-row, .simulation-result > .btn { margin-left: 30px; margin-right: 30px; }
.simulation-result h3 { margin-top: 30px; }
dl { display: grid; grid-template-columns: 1fr auto; gap: 18px; }
dt { color: var(--muted); }
dd { margin: 0; font-weight: 800; }
.total-row { display: flex; justify-content: space-between; padding: 20px; border-radius: 8px; background: var(--soft-blue); color: var(--blue); font-weight: 850; }
.button-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; margin-bottom: 20px; }
.simulation-result > .btn { margin-bottom: 30px; width: calc(100% - 60px); }
.next-steps { margin-top: 90px; padding-top: 56px; border-top: 1px solid var(--line); text-align: center; }
.next-steps > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin-top: 40px; }
.next-steps article span { width: 58px; height: 58px; display: inline-grid; place-items: center; border-radius: 999px; background: var(--soft-blue); color: var(--blue); }

.auth-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px 0;
    background:
        radial-gradient(circle at 16% 16%, rgba(47,170,53,.14), transparent 32%),
        radial-gradient(circle at 86% 18%, rgba(6,79,146,.14), transparent 30%),
        linear-gradient(135deg, #f7fbff 0%, #f3fbf5 100%);
}
.auth-shell {
    width: min(1180px, calc(100% - 40px));
    min-height: min(740px, calc(100vh - 28px));
    display: grid;
    grid-template-columns: .94fr 1.06fr;
    border: 1px solid rgba(6,79,146,.1);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 58px rgba(8,33,63,.14);
    background: var(--white);
}
.auth-panel { padding: 50px; }
.auth-brand {
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(145deg, rgba(8,33,63,.96), rgba(6,79,146,.94) 58%, rgba(21,125,40,.92));
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.auth-brand::before {
    content: "";
    position: absolute;
    inset: 26px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    pointer-events: none;
}
.auth-brand::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -140px;
    width: 430px;
    height: 430px;
    border: 46px solid rgba(255,255,255,.14);
    border-radius: 999px;
}
.auth-logo-link {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1.58 / 1;
    display: block;
    padding: 0;
    border-radius: 14px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 18px 34px rgba(0,0,0,.16);
    overflow: hidden;
}
.auth-logo-link img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center 52%;
    transform: translate(-50%, -50%);
}
.auth-brand h1 {
    position: relative;
    z-index: 1;
    margin-top: auto;
    margin-bottom: 16px;
    max-width: 500px;
    font-size: 40px;
}
.auth-brand p,
.auth-brand ul {
    position: relative;
    z-index: 1;
    max-width: 500px;
    color: rgba(255,255,255,.84);
}
.auth-brand ul {
    padding: 0;
    margin: 24px 0 0;
}
.auth-brand li { list-style: none; margin-top: 16px; display: flex; gap: 12px; align-items: center; }
.auth-brand li .icon { color: #bdf1c2; }
.auth-form {
    align-self: center;
    padding-left: 62px;
    padding-right: 62px;
}
.auth-form-head {
    margin-bottom: 26px;
}
.auth-form h2 {
    margin-bottom: 8px;
    font-size: 30px;
    color: var(--navy);
}
.auth-form p {
    margin-top: 0;
    color: var(--muted);
}
.auth-form .btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    box-shadow: 0 12px 24px rgba(47,170,53,.22);
}
.auth-form .btn-primary:hover {
    background: linear-gradient(135deg, #38b940, #116f23);
}
.auth-form form { display: grid; gap: 18px; }
.divider { display: flex; align-items: center; gap: 12px; margin: 24px 0; color: var(--muted); text-transform: uppercase; font-weight: 850; font-size: 13px; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.check-row { display: flex; align-items: center; gap: 10px; }
.check-row input { width: auto; min-height: auto; }
.check-row span { margin: 0; }
.auth-note { text-align: center; color: var(--muted); margin-top: 30px; }

.profile-page { display: grid; grid-template-columns: 270px 1fr; gap: 38px; align-items: start; }
.profile-menu { display: grid; gap: 10px; }
.profile-menu > strong { text-transform: uppercase; color: var(--muted); letter-spacing: 0; }
.profile-menu a { display: flex; align-items: center; gap: 12px; padding: 15px 18px; border-radius: 8px; color: var(--muted); font-weight: 750; }
.profile-menu a.active { background: var(--blue); color: var(--white); }
.verified-box { margin-top: 28px; padding: 20px; border: 1px solid #cfe0fb; border-radius: 8px; background: var(--soft-blue); color: var(--blue); }
.verified-box p { margin-bottom: 0; color: #5f79a7; }
.profile-card, .activity-card { border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: 0 12px 30px rgba(16,31,62,.06); }
.profile-cover { height: 150px; background: var(--blue); border-radius: 8px 8px 0 0; }
.profile-main { display: grid; grid-template-columns: 150px 1fr auto; gap: 24px; align-items: center; padding: 0 34px 24px; }
.photo-placeholder { width: 130px; height: 130px; margin-top: -65px; display: grid; place-items: center; border: 6px solid var(--white); border-radius: 999px; background: var(--soft-blue); color: var(--blue); box-shadow: 0 10px 24px rgba(16,31,62,.14); }
.photo-placeholder .icon { width: 54px; height: 54px; }
.profile-main h1 { margin: 0; font-size: 38px; }
.profile-main p { margin: 4px 0 0; color: var(--muted); }
.profile-main p span { padding: 4px 9px; border-radius: 6px; background: #eef0f4; color: #7b8391; font-weight: 800; }
.profile-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; padding: 0 34px 34px; }
.profile-info-grid div { display: grid; grid-template-columns: 32px 1fr; column-gap: 14px; padding: 22px; border-radius: 8px; background: #fbfcff; }
.profile-info-grid .icon { grid-row: span 2; color: var(--blue); }
.profile-info-grid span { color: var(--muted); text-transform: uppercase; font-weight: 800; }
.activity-card { margin-top: 36px; padding: 30px; }
.activity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.activity-grid div { min-height: 96px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 8px; }
.activity-grid strong { color: var(--blue); font-size: 34px; }
.activity-grid span { color: var(--muted); }

.help-hero { padding: 80px 0 120px; text-align: center; background: var(--navy); color: var(--white); }
.help-hero h1 { margin: 24px auto 18px; max-width: 980px; font-size: 56px; }
.help-hero p { max-width: 660px; margin: 0 auto; color: #c8d1df; font-size: 19px; }
.contact-page { margin-top: -70px; padding-bottom: 80px; }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.support-grid article { padding: 28px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: 0 12px 28px rgba(16,31,62,.08); }
.support-grid article:nth-child(1) { background: #f0f5ff; }
.support-grid article:nth-child(3) { background: #effbf4; }
.support-grid small { display: block; margin: 24px 0; color: var(--muted); }
.faq-layout { display: grid; grid-template-columns: 1fr 390px; gap: 42px; margin-top: 60px; }
.guide-box { margin-top: 34px; padding: 24px; border: 1px dashed var(--line); border-radius: 8px; }
.guide-box a { display: inline-flex; flex-direction: column; min-width: 260px; margin: 8px 10px 0 0; padding: 16px; border: 1px solid var(--line); border-radius: 8px; }
.guide-box span { color: var(--muted); }
.request-card { padding: 28px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: 0 12px 28px rgba(16,31,62,.06); }
.request-card form { display: grid; gap: 16px; }
.notice-box { margin-top: 28px; padding: 20px; border-radius: 8px; background: #fff4e8; color: #a15a10; }
.form-alert { margin-bottom: 22px; padding: 14px 16px; border: 1px solid #b9dcff; border-radius: 8px; background: #edf6ff; color: #1d5fbf; font-weight: 800; }
.muted { color: var(--muted); }
.settings-form, .admin-form { display: grid; gap: 16px; }
.favorite-list { display: grid; gap: 12px; }
.favorite-list a { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border: 1px solid var(--line); border-radius: 8px; background: #fbfcff; }

.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }
.admin-stats article { padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: 0 10px 22px rgba(16,31,62,.06); }
.admin-stats span { color: var(--muted); }
.admin-stats strong { display: block; color: var(--blue); font-size: 36px; }
.admin-grid { display: grid; grid-template-columns: 1fr 330px; gap: 28px; align-items: start; }
.admin-table-card, .admin-side section { padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.table-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 18px; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 14px 12px; border-bottom: 1px solid var(--line); text-align: left; }
th { color: var(--muted); font-size: 13px; text-transform: uppercase; }
.status-pill { display: inline-flex; padding: 5px 10px; border-radius: 999px; font-weight: 850; font-size: 12px; background: #eef2f7; }
.status-pill.available { background: #e9fbf0; color: #168447; }
.status-pill.sold_out { background: #fff0ef; color: #ba3431; }
.admin-side { display: grid; gap: 22px; }
.admin-promo { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); }
.admin-promo span { color: var(--blue); font-weight: 850; }
.admin-forms { display: grid; gap: 28px; margin-top: 28px; }
.admin-body { min-height: 100vh; display: grid; grid-template-columns: 280px 1fr; background: #f4f7fb; }
.admin-sidebar { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; padding: 24px; background: var(--navy); color: var(--white); }
.admin-sidebar-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 34px; }
.admin-brand { margin-bottom: 0; color: var(--white); }
.admin-sidebar nav { display: grid; gap: 8px; }
.admin-sidebar nav a { display: flex; align-items: center; gap: 12px; min-height: 44px; padding: 0 14px; border-radius: 8px; color: #c5d0e1; font-weight: 800; }
.admin-sidebar nav a.active, .admin-sidebar nav a:hover { background: rgba(6,79,146,.22); color: var(--white); }
.admin-sidebar-foot { margin-top: auto; display: grid; gap: 8px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.admin-sidebar-foot a { color: #c5d0e1; font-weight: 800; }
.admin-main { min-width: 0; }
.admin-topbar { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 34px; border-bottom: 1px solid var(--line); background: var(--white); }
.admin-topbar span { display: block; color: var(--muted); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.admin-topbar strong { font-size: 18px; }
.admin-content { width: min(1280px, calc(100% - 48px)); margin: 0 auto; padding: 34px 0 70px; }
.admin-page-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 26px; }
.admin-page-head h1 { margin: 12px 0 8px; font-size: 40px; }
.admin-page-head p { margin: 0; color: var(--muted); }
.admin-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.admin-dashboard-grid { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }
.admin-form + .table-wrap { margin-top: 24px; }
.admin-filter { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.admin-filter input, .admin-filter select { width: auto; min-width: 160px; }
.table-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.table-actions a, .table-actions button { border: 0; padding: 0; background: transparent; color: var(--blue); font-weight: 850; cursor: pointer; }
.action-icon {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border: 1px solid #cfe0fb !important;
    border-radius: 10px;
    background: #f7fbff !important;
    color: var(--blue) !important;
    box-shadow: 0 8px 18px rgba(16,31,62,.06);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.action-icon .icon { width: 17px; height: 17px; }
.action-icon:hover {
    transform: translateY(-2px);
    border-color: #9bbcf4 !important;
    background: var(--soft-blue) !important;
    box-shadow: 0 14px 28px rgba(6,79,146,.16);
}
.action-icon.danger { border-color: #ffd2d2 !important; background: #fff5f5 !important; color: #c93434 !important; }
.action-icon.danger:hover { background: #ffecec !important; border-color: #f3aaaa !important; }
.action-icon.success { border-color: #bfeccc !important; background: #f0fff5 !important; color: #158447 !important; }
.inline-form { display: flex; align-items: center; gap: 8px; }
.inline-form select { width: auto; min-width: 130px; }
.stacked-checks { display: grid; align-content: center; gap: 10px; }
.status-pill.new, .status-pill.draft { background: #eef2f7; color: #536174; }
.status-pill.contacted, .status-pill.queued { background: #edf4ff; color: #1e62c9; }
.status-pill.qualified, .status-pill.sent { background: #e9fbf0; color: #168447; }
.status-pill.closed { background: #fff4e8; color: #a15a10; }
.status-pill.draft { background: #f2f4f8; color: #637083; }

/* Interface polish */
body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
h1, h2, h3, .brand, .btn, th {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
h1 { font-weight: 900; }
h2, h3 { font-weight: 850; }
.site-header { box-shadow: 0 10px 28px rgba(16,31,62,.04); }
.brand-mark, .mini-icon, .photo-placeholder, .next-steps article span {
    transition: transform .22s ease, box-shadow .22s ease;
}
.brand:hover .brand-mark, .support-grid article:hover .mini-icon, .next-steps article:hover span {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(6,79,146,.18);
}
.main-nav a, .admin-sidebar nav a, .footer-grid a, .text-link, .logout-link {
    transition: color .18s ease, background .18s ease, transform .18s ease;
}
.main-nav a:hover, .footer-grid a:hover, .logout-link:hover { transform: translateY(-1px); }
.btn {
    box-shadow: 0 1px 0 rgba(255,255,255,.35) inset, 0 10px 18px rgba(16,31,62,.06);
}
.btn:hover {
    box-shadow: 0 1px 0 rgba(255,255,255,.35) inset, 0 14px 28px rgba(16,31,62,.12);
}
.btn:active { transform: translateY(0); }
.btn-outline:hover, .btn-muted:hover {
    border-color: #9cbcf2;
    background: #f7fbff;
}
.btn-whatsapp:hover { background: var(--green-dark); }
input, select, textarea {
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.hero h1 { font-size: 64px; }
.hero-media img { transform: scale(1.02); animation: heroSettle .9s ease both; }
.hero-content, .hero-filter, .section-head, .vehicle-card, .promo-card, .finance-banner, .catalog-content, .detail-grid, .credit-box, .support-grid article, .profile-card, .activity-card, .admin-table-card, .admin-side section, .admin-stats article {
    animation: surfaceIn .46s ease both;
}
.vehicle-card, .promo-card, .support-grid article, .profile-card, .activity-card, .admin-table-card, .admin-side section {
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.vehicle-card:hover, .promo-card:hover, .support-grid article:hover, .admin-table-card:hover, .admin-side section:hover {
    transform: translateY(-3px);
    border-color: #c7d7ef;
    box-shadow: 0 18px 40px rgba(16,31,62,.10);
}
.vehicle-card h3 a:hover, .table-actions a:hover, .table-actions button:hover { color: var(--blue-dark); }
.badge { box-shadow: 0 8px 18px rgba(16,31,62,.16); }
.finance-banner, .credit-result, .result-head, .profile-cover {
    background-image: linear-gradient(135deg, var(--blue), #0b6f96);
}
.finance-widget { backdrop-filter: blur(10px); }
.progress-line i { animation: progressGrow .8s ease both; }
details[open] summary { color: var(--blue); }
summary { transition: color .18s ease; }
tr { transition: background .16s ease; }
tbody tr:hover { background: #f8fbff; }
.status-pill { text-transform: capitalize; }
.form-alert { box-shadow: 0 10px 22px rgba(6,79,146,.08); }
.confirm-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    place-items: center;
    padding: 20px;
    background: rgba(9, 17, 32, .48);
    backdrop-filter: blur(8px);
}
.confirm-modal.is-open { display: grid; animation: surfaceIn .18s ease both; }
.confirm-dialog {
    width: min(420px, 100%);
    padding: 26px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 28px 70px rgba(6,13,30,.28);
}
.confirm-dialog h2 { margin: 18px 0 8px; font-size: 24px; }
.confirm-dialog p { color: var(--muted); margin: 0; }
.confirm-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }

.admin-body {
    transition: grid-template-columns .22s ease;
}
.admin-sidebar {
    box-shadow: 18px 0 42px rgba(6,13,30,.12);
    transition: width .22s ease, padding .22s ease;
}
.admin-sidebar::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(6,79,146,.18), transparent 38%);
}
.admin-sidebar > * { position: relative; z-index: 1; }
.admin-sidebar nav a .icon { flex: 0 0 auto; }
.admin-sidebar nav a:hover { transform: translateX(2px); }
.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 10px 26px rgba(16,31,62,.04);
}
.admin-topbar-left { display: flex; align-items: center; gap: 14px; }
.admin-sidebar-toggle {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    color: var(--blue);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.admin-sidebar-toggle:hover {
    background: var(--soft-blue);
    box-shadow: 0 12px 24px rgba(6,79,146,.14);
}
.admin-sidebar-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    margin: 2px 0;
    border-radius: 999px;
    background: currentColor;
}
.admin-collapsed { grid-template-columns: 88px 1fr; }
.admin-collapsed .admin-sidebar { padding: 22px 14px; }
.admin-collapsed .admin-sidebar-head { justify-content: center; }
.admin-collapsed .admin-brand { display: none; }
.admin-collapsed .admin-sidebar-foot {
    display: none;
}
.admin-collapsed .admin-sidebar nav a {
    justify-content: center;
    padding: 0;
    font-size: 0;
}
.admin-collapsed .admin-sidebar nav a .icon {
    width: 21px;
    height: 21px;
}
.admin-collapsed .admin-sidebar nav a:hover { transform: translateY(-1px); }
.admin-collapsed .admin-sidebar-toggle { transform: rotate(180deg); }
.admin-page-head, .table-head { animation: surfaceIn .36s ease both; }
.admin-stats article strong { animation: numberPop .42s ease both; }

@keyframes surfaceIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroSettle {
    from { opacity: .72; transform: scale(1.06); }
    to { opacity: .86; transform: scale(1.02); }
}
@keyframes progressGrow {
    from { width: 0; }
}
@keyframes numberPop {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

.site-footer { background: var(--navy); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 60px; padding: 62px 0; }
.footer-grid p, .footer-grid a { color: #aeb9ca; }
.footer-grid a { display: block; margin: 8px 0; }
.footer-grid h3 { font-size: 17px; }
.footer-bottom { padding: 22px; text-align: center; border-top: 1px solid rgba(255,255,255,.08); color: #7f8ca2; }

@media (max-width: 1080px) {
    .global-search { display: none; }
    .vehicle-grid, .vehicle-grid.compact { grid-template-columns: repeat(2, 1fr); }
    .catalog-layout, .detail-grid, .simulation-grid, .detail-bottom, .faq-layout, .admin-grid, .admin-dashboard-grid { grid-template-columns: 1fr; }
    .admin-body { grid-template-columns: 240px minmax(0, 1fr); }
    .admin-sidebar { position: sticky; top: 0; height: 100vh; }
    .admin-sidebar nav { grid-template-columns: 1fr; }
    .filter-panel { border-right: 0; border-bottom: 1px solid var(--line); }
    .filter-panel form, .purchase-panel { position: static; }
    .profile-page { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .container { width: min(100% - 28px, 1180px); }
    .nav-wrap { height: auto; min-height: 68px; flex-wrap: wrap; gap: 12px; padding: 12px 0; }
    .nav-toggle { display: inline-grid; margin-left: auto; }
    .main-nav { display: none; width: 100%; flex-direction: column; padding: 12px 0; }
    .main-nav.is-open { display: flex; }
    .avatar-link { display: none; }
    .nav-account { width: 100%; justify-content: flex-end; }
    .hero { min-height: 720px; }
    .hero-content { padding-top: 58px; }
    .hero h1 { font-size: 42px; }
    .hero-filter { grid-template-columns: 1fr; margin-top: 34px; }
    .section { padding: 58px 0; }
    .section-head, .catalog-head { display: block; }
    .promo-grid, .promo-grid.two, .vehicle-grid, .vehicle-grid.compact, .finance-banner, .stats-grid, .spec-grid, .credit-box, .split-inputs, .next-steps > div, .auth-shell, .profile-info-grid, .activity-grid, .support-grid, .admin-stats, .footer-grid { grid-template-columns: 1fr; }
    .admin-content { width: min(100% - 28px, 1280px); }
    .admin-page-head, .table-head, .admin-topbar { display: block; }
    .admin-sidebar nav { grid-template-columns: 1fr; }
    .admin-filter, .inline-form { align-items: stretch; flex-direction: column; }
    .admin-filter input, .admin-filter select, .inline-form select { width: 100%; }
    .finance-banner { padding: 34px; }
    .finance-banner h2, .help-hero h1 { font-size: 36px; }
    .catalog-content { padding: 28px 14px; }
    .catalog-tools { align-items: stretch; flex-direction: column; }
    .vehicle-grid.list-view .vehicle-card { grid-template-columns: 1fr; }
    .assist-card { grid-template-columns: 1fr; padding: 26px; }
    .detail-gallery { height: 320px; }
    .purchase-panel h1, .catalog-head h1, .page-intro h1 { font-size: 32px; }
    .price-detail strong { font-size: 30px; }
    .credit-result > strong, .result-head strong { font-size: 30px; }
    .profile-main { grid-template-columns: 1fr; text-align: center; }
    .photo-placeholder { margin: -65px auto 0; }
    .auth-body {
        place-items: start center;
        padding: 12px 0;
    }
    .auth-shell {
        width: min(100% - 28px, 520px);
        min-height: auto;
        border-radius: 12px;
    }
    .auth-panel { padding: 22px; }
    .auth-brand {
        min-height: auto;
        gap: 10px;
    }
    .auth-brand::before { inset: 14px; border-radius: 12px; }
    .auth-brand::after {
        right: -160px;
        bottom: -180px;
        width: 330px;
        height: 330px;
        border-width: 36px;
    }
    .auth-logo-link {
        width: 100%;
        aspect-ratio: 1.58 / 1;
        padding: 0;
        border-radius: 10px;
    }
    .auth-logo-link img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 52%;
        transform: translate(-50%, -50%);
    }
    .auth-brand h1 {
        margin: 8px 0 0;
        font-size: 22px;
    }
    .auth-brand p,
    .auth-brand ul {
        display: none;
    }
    .auth-form {
        padding: 24px 22px 26px;
    }
    .auth-form h2 {
        font-size: 23px;
    }
    .auth-form-head {
        margin-bottom: 18px;
    }
    .auth-form form {
        gap: 14px;
    }
    .divider {
        margin: 18px 0;
        font-size: 11px;
    }
    .auth-note {
        margin-top: 16px;
        font-size: 12.5px;
    }
    .footer-grid { gap: 26px; }
}

@media (max-width: 1080px) {
    .admin-body {
        grid-template-columns: 240px minmax(0, 1fr);
    }
    .admin-body.admin-collapsed {
        grid-template-columns: 56px minmax(0, 1fr);
    }
    .admin-sidebar {
        position: sticky;
        top: 0;
        height: 100vh;
        padding: 18px 14px;
    }
    .admin-sidebar-head {
        justify-content: space-between;
        margin-bottom: 24px;
    }
    .admin-brand {
        display: inline-flex;
        font-size: 16px;
    }
    .admin-sidebar-foot {
        display: grid;
    }
    .admin-sidebar nav {
        grid-template-columns: 1fr;
    }
    .admin-sidebar nav a {
        justify-content: flex-start;
        padding: 0 12px;
        font-size: 14px;
    }
    .admin-sidebar nav a .icon {
        width: 21px;
        height: 21px;
    }
    .admin-topbar {
        display: flex;
        align-items: center;
        padding: 0 18px;
    }
    .admin-topbar-left {
        min-width: 0;
    }
    .admin-content {
        width: min(100% - 24px, 1280px);
        padding-top: 22px;
    }
    .admin-body.admin-collapsed .admin-sidebar {
        padding: 14px 7px;
    }
    .admin-body.admin-collapsed .admin-sidebar-head {
        justify-content: center;
    }
    .admin-body.admin-collapsed .admin-brand,
    .admin-body.admin-collapsed .admin-sidebar-foot {
        display: none;
    }
    .admin-body.admin-collapsed .admin-sidebar nav {
        display: grid;
        gap: 8px;
        margin-top: 8px;
    }
    .admin-body.admin-collapsed .admin-sidebar nav a {
        justify-content: center;
        min-height: 42px;
        padding: 0;
        font-size: 0;
    }
    .admin-body.admin-collapsed .admin-sidebar nav a .icon {
        width: 21px;
        height: 21px;
    }
}

@media (max-width: 760px) {
    .admin-body {
        grid-template-columns: 210px minmax(0, 1fr);
    }
    .admin-body.admin-collapsed {
        grid-template-columns: 52px minmax(0, 1fr);
    }
    .admin-sidebar {
        padding: 14px 10px;
    }
    .admin-sidebar-head {
        gap: 8px;
    }
    .admin-brand {
        max-width: 140px;
        overflow: hidden;
        gap: 8px;
        font-size: 13px;
    }
    .admin-brand .brand-mark {
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
    }
    .admin-sidebar nav a {
        min-height: 42px;
        border-radius: 12px;
        font-size: 13px;
    }
    .admin-body.admin-collapsed .admin-sidebar nav {
        margin-top: 10px;
    }
    .admin-body.admin-collapsed .admin-sidebar nav a {
        min-height: 40px;
        border-radius: 10px;
    }
    .admin-body.admin-collapsed .admin-sidebar nav a .icon {
        width: 20px;
        height: 20px;
    }
    .admin-sidebar-toggle {
        width: 38px;
        height: 38px;
    }
    .admin-topbar {
        min-height: 64px;
        display: flex;
        align-items: center;
        padding: 0 12px;
    }
    .admin-topbar .btn {
        min-height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }
    .admin-topbar span {
        font-size: 11px;
    }
    .admin-topbar strong {
        display: block;
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 14px;
    }
    .admin-page-head {
        display: grid;
        gap: 14px;
    }
    .admin-page-head h1 {
        font-size: 24px;
    }
    .admin-table-card, .admin-side section {
        padding: 18px;
    }
    .admin-content table {
        min-width: 0;
    }
    .admin-content table thead {
        display: none;
    }
    .admin-content table, .admin-content table tbody, .admin-content table tr, .admin-content table td {
        display: block;
        width: 100%;
    }
    .admin-content table tr {
        margin-bottom: 14px;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: var(--white);
        box-shadow: 0 8px 18px rgba(16,31,62,.05);
    }
    .admin-content table td {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        padding: 9px 0;
        border-bottom: 1px solid #eef2f7;
        word-break: break-word;
    }
    .admin-content table td::before {
        content: attr(data-label);
        min-width: 92px;
        color: var(--muted);
        font-size: 12px;
        font-weight: 850;
        text-transform: uppercase;
    }
    .admin-content table td:empty::before {
        display: none;
    }
    .admin-content table td:last-child {
        border-bottom: 0;
    }
    .table-actions {
        justify-content: flex-end;
    }
    .inline-form {
        width: 100%;
    }
}

.vehicle-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.form-alert.danger {
    border-color: #ffd3d3;
    background: #fff5f5;
    color: #b83232;
}
.danger-text {
    border-color: #ffd2d2 !important;
    color: #c93434 !important;
    background: #fff8f8 !important;
}
.with-actions {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}
.application-page {
    padding: 44px 0 86px;
}
.application-layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 34px;
    align-items: start;
}
.application-summary,
.application-form-card,
.application-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 32px rgba(16,31,62,.07);
    animation: surfaceIn .42s ease both;
}
.application-summary {
    position: sticky;
    top: 96px;
    overflow: hidden;
}
.application-summary > img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: #eef3fa;
}
.application-summary > div {
    padding: 24px;
}
.application-summary h1 {
    margin: 14px 0 10px;
    font-size: 34px;
}
.application-summary strong {
    display: block;
    color: var(--blue);
    font-size: 28px;
    margin-bottom: 8px;
}
.application-status-card {
    margin: 0 24px 24px;
    padding: 18px;
    border: 1px dashed #b9d2f8;
    border-radius: 8px;
    background: #f7fbff;
}
.application-status-card > span {
    display: block;
    color: var(--muted);
    font-weight: 850;
    margin-bottom: 8px;
}
.application-form-card {
    padding: 28px;
}
.compact-head {
    margin-bottom: 22px;
}
.input-title {
    display: block;
    color: #4d5a6d;
    font-weight: 750;
    margin-bottom: 8px;
}
.choice-list {
    margin-bottom: 0;
}
.color-choice-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.color-choice-list label {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    cursor: pointer;
    font-weight: 800;
    color: #48566a;
}
.color-choice-list label.selected {
    border-color: var(--blue);
    background: var(--soft-blue);
    color: var(--blue);
}
.color-choice-list input {
    width: auto;
    min-height: auto;
}
.color-choice-list.compact {
    margin-bottom: 20px;
}
.detail-application-form {
    display: grid;
    gap: 14px;
    margin-bottom: 12px;
}
.detail-credit-inputs {
    align-items: end;
}
.mini-finance-result,
.application-finance-result {
    border: 1px solid #cfe0fb;
    border-radius: 8px;
    background: #f7fbff;
}
.mini-finance-result {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
}
.mini-finance-result span,
.application-finance-result span {
    color: var(--muted);
    font-weight: 800;
}
.mini-finance-result strong,
.application-finance-result strong {
    color: var(--blue);
}
.application-finance-result {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    background: #cfe0fb;
}
.application-finance-result div {
    padding: 16px;
    background: #f7fbff;
}
.application-finance-result strong {
    display: block;
    margin-top: 6px;
    font-size: 20px;
}
.application-actions {
    margin: 0;
}
.cancel-application-form {
    margin-top: 14px;
}
.application-list {
    display: grid;
    gap: 18px;
}
.application-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    overflow: hidden;
}
.application-item.highlight {
    border-color: #9bbcf4;
    box-shadow: 0 18px 42px rgba(6,79,146,.14);
}
.application-item > img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    background: #eef3fa;
}
.application-item-main {
    padding: 22px;
}
.application-item-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}
.application-item-head span {
    color: var(--blue);
    font-weight: 850;
    font-size: 13px;
}
.application-item h2 {
    margin: 6px 0 0;
    font-size: 25px;
}
.application-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 20px 0;
}
.application-meta-grid div,
.application-detail-stack div {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfcff;
}
.application-meta-grid span,
.application-detail-stack span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.application-meta-grid strong,
.application-detail-stack strong {
    display: block;
    color: var(--text);
}
.status-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 0;
    margin: 0 0 18px;
    list-style: none;
}
.status-timeline li {
    position: relative;
    min-height: 38px;
    display: grid;
    place-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: #eef2f7;
    color: #6a7483;
    font-size: 12px;
    font-weight: 850;
    text-align: center;
}
.status-timeline li.done {
    background: var(--soft-blue);
    color: var(--blue);
}
.admin-note {
    padding: 14px 16px;
    border-radius: 8px;
    background: #fff8ec;
    color: #79531d;
}
.application-actions-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.application-actions-row form {
    margin: 0;
}
.applications-admin-grid {
    grid-template-columns: 1fr 380px;
}
.application-detail-stack {
    display: grid;
    gap: 12px;
    margin: 18px 0;
}
.application-detail-stack small {
    display: block;
    color: var(--muted);
    margin-top: 4px;
}
.status-pill.danger {
    background: #fff0ef;
    color: #ba3431;
}
.admin-form-grid,
.admin-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    align-items: start;
}
.admin-upload-panel {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px dashed #b8cdec;
    border-radius: 12px;
    background: #f8fbff;
}
.admin-upload-panel > span {
    color: #4d5a6d;
    font-weight: 850;
}
.admin-upload-panel img,
.admin-detail-image {
    width: 100%;
    border-radius: 12px;
    background: #eef3fa;
    object-fit: cover;
}
.admin-upload-panel img {
    aspect-ratio: 4 / 3;
}
.admin-detail-image {
    max-height: 420px;
}
.admin-detail-title {
    margin-top: 18px;
}
.admin-detail-title h2 {
    margin: 12px 0 8px;
}

/* Compact admin typography */
.admin-content {
    padding-top: 22px;
}
.admin-page-head {
    align-items: center;
    margin-bottom: 18px;
}
.admin-page-head .eyebrow {
    padding: 4px 8px;
    font-size: 11px;
}
.admin-page-head h1 {
    margin: 7px 0 4px;
    font-size: 24px;
    line-height: 1.2;
}
.admin-page-head p {
    max-width: 760px;
    font-size: 13px;
    line-height: 1.45;
}
.admin-table-card,
.admin-side section {
    padding: 18px;
}
.admin-table-card h2,
.admin-side section h2,
.table-head h2,
.admin-detail-title h2 {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 1.25;
}
.admin-detail-title p,
.admin-table-card p,
.admin-side section p {
    font-size: 13px;
}
.admin-stats article {
    padding: 18px;
}
.admin-stats strong {
    font-size: 26px;
}
.admin-body .btn {
    min-height: 38px;
    gap: 7px;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 850;
    box-shadow: 0 1px 0 rgba(255,255,255,.35) inset, 0 8px 16px rgba(16,31,62,.06);
}
.admin-body .btn:hover {
    box-shadow: 0 1px 0 rgba(255,255,255,.35) inset, 0 12px 22px rgba(16,31,62,.1);
}
.admin-body .btn-primary {
    box-shadow: 0 1px 0 rgba(255,255,255,.28) inset, 0 10px 20px rgba(6,79,146,.2);
}
.admin-body .btn .icon {
    width: 16px;
    height: 16px;
}
.admin-actions {
    gap: 8px;
}
.admin-page-head .admin-actions .btn {
    min-height: 38px;
    padding: 0 16px;
}
.admin-topbar .btn {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
}
.admin-filter {
    gap: 8px;
}
.admin-filter input,
.admin-filter select,
.inline-form select {
    min-height: 38px;
    font-size: 13px;
}
.admin-filter .btn,
.inline-form .btn {
    min-height: 38px;
    padding: 0 14px;
}
.table-actions {
    gap: 6px;
}
.action-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    box-shadow: 0 6px 14px rgba(16,31,62,.05);
}
.action-icon .icon {
    width: 15px;
    height: 15px;
}
.action-icon:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(6,79,146,.13);
}
.admin-sidebar-toggle {
    width: 40px;
    height: 40px;
    border-radius: 9px;
}

@media (max-width: 760px) {
    .admin-content {
        padding-top: 18px;
    }
    .admin-page-head {
        gap: 10px;
        margin-bottom: 16px;
    }
    .admin-page-head h1 {
        font-size: 21px;
        line-height: 1.22;
    }
    .admin-page-head p {
        font-size: 12.5px;
    }
    .admin-table-card,
    .admin-side section {
        padding: 16px;
    }
    .admin-table-card h2,
    .admin-side section h2,
    .table-head h2,
    .admin-detail-title h2 {
        font-size: 18px;
    }
    .admin-body .btn {
        min-height: 36px;
        padding: 0 12px;
        font-size: 12.5px;
    }
    .admin-page-head .admin-actions {
        gap: 8px;
    }
    .admin-page-head .admin-actions .btn,
    .admin-topbar .btn,
    .admin-filter .btn,
    .inline-form .btn {
        min-height: 36px;
        padding: 0 12px;
    }
    .admin-filter input,
    .admin-filter select,
    .inline-form select {
        min-height: 36px;
        font-size: 12.5px;
    }
    .action-icon {
        width: 32px;
        height: 32px;
    }
    .action-icon .icon {
        width: 14px;
        height: 14px;
    }
    .admin-sidebar-toggle {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 1080px) {
    .application-layout,
    .applications-admin-grid,
    .admin-form-grid,
    .admin-detail-grid {
        grid-template-columns: 1fr;
    }
    .application-summary {
        position: static;
    }
}

@media (max-width: 760px) {
    .with-actions,
    .application-item-head,
    .application-actions-row {
        align-items: stretch;
        flex-direction: column;
    }
    .application-form-card,
    .application-item-main {
        padding: 18px;
    }
    .application-finance-result,
    .application-meta-grid,
    .status-timeline {
        grid-template-columns: 1fr;
    }
    .application-item {
        grid-template-columns: 1fr;
    }
    .application-item > img {
        min-height: 190px;
        height: 190px;
    }
    .vehicle-card-actions,
    .application-actions {
        grid-template-columns: 1fr;
    }
    .mini-finance-result {
        display: grid;
    }
}

/* Compact marketplace layout for catalog and vehicle detail */
.catalog-layout {
    grid-template-columns: 306px minmax(0, 1fr);
    background: #f6f7f9;
}
.filter-panel {
    background: var(--white);
    border-right: 1px solid #e7eaf0;
    box-shadow: 8px 0 22px rgba(16,31,62,.045);
    padding: 0;
}
.filter-panel form {
    top: 86px;
    gap: 0;
    padding-bottom: 22px;
}
.filter-title,
.filter-section {
    padding: 20px 22px;
    border-bottom: 1px solid #edf0f5;
}
.filter-title {
    min-height: 66px;
}
.filter-title strong,
.filter-section h3 {
    color: #0d1b3d;
    font-size: 16px;
    letter-spacing: 0;
}
.filter-section h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 14px;
}
.filter-section label {
    display: block;
    margin-top: 13px;
}
.filter-section label span,
.filter-panel span {
    color: #5c6678;
    font-size: 13px;
    font-weight: 700;
}
.filter-panel input,
.filter-panel select {
    min-height: 40px;
    border-radius: 7px;
    font-size: 14px;
}
.filter-panel .btn {
    width: calc(100% - 44px);
    margin: 20px 22px 0;
}
.switch-row {
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 7px;
}
.catalog-content {
    max-width: 1360px;
    padding: 24px 34px 54px;
}
.catalog-banner {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    padding: 24px 30px;
    border-radius: 0 0 16px 16px;
    background: linear-gradient(120deg, var(--blue), #4c9bca);
    color: var(--white);
    overflow: hidden;
}
.catalog-banner span {
    display: block;
    font-size: 13px;
    font-weight: 800;
    opacity: .82;
}
.catalog-banner strong {
    display: block;
    max-width: 620px;
    margin-top: 4px;
    font-size: 24px;
    line-height: 1.2;
}
.catalog-banner .icon {
    width: 72px;
    height: 72px;
    opacity: .26;
}
.catalog-head {
    align-items: center;
    margin-bottom: 18px;
}
.catalog-head h1 {
    font-size: 24px;
    margin-bottom: 6px;
}
.catalog-head p {
    color: #667085;
    font-size: 14px;
}
.catalog-sort-tabs {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e6e9ef;
    overflow-x: auto;
}
.catalog-sort-tabs a {
    position: relative;
    flex: 0 0 auto;
    padding: 0 0 14px;
    color: #515b6f;
    font-size: 15px;
    font-weight: 750;
}
.catalog-sort-tabs a.active {
    color: var(--blue);
}
.catalog-sort-tabs a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: var(--blue);
}
.view-switch a {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
}
.vehicle-grid {
    gap: 22px;
}
.vehicle-card {
    border-color: #e7eaf0;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(16,31,62,.075);
}
.vehicle-image {
    height: 220px;
    background: #edf1f6;
}
.badge {
    top: 12px;
    left: 12px;
    padding: 4px 9px;
    font-size: 11px;
}
.badge.benefit {
    top: 40px;
}
.favorite-dot {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--white);
    background: rgba(12, 19, 36, .26);
    backdrop-filter: blur(8px);
}
.vehicle-body {
    padding: 18px 20px 20px;
}
.vehicle-meta {
    font-size: 12px;
}
.vehicle-meta em {
    font-size: 11px;
}
.vehicle-card h3 {
    min-height: 44px;
    margin: 8px 0 12px;
    color: #0d1b3d;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 850;
}
.spec-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 12px 0;
    color: #838a96;
    font-size: 12px;
}
.spec-row .icon {
    width: 16px;
    height: 16px;
    color: #8a9099;
}
.price-row {
    padding: 16px 0 10px;
}
.price-row del {
    font-size: 13px;
}
.price-row strong {
    color: var(--blue);
    font-size: 22px;
    line-height: 1.1;
}
.price-row small {
    color: #1f9b52;
    font-size: 11px;
}
.installment-strip {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 8px 0 14px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f4f6f8;
    color: #1c2740;
    font-size: 12px;
}
.installment-strip span {
    color: #5e6674;
    font-weight: 750;
}
.installment-strip strong {
    font-size: 12px;
}
.vehicle-card-actions {
    grid-template-columns: .92fr 1.08fr;
}
.vehicle-card-actions .btn,
.catalog-layout .btn,
.detail-page .btn {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 13px;
}
.vehicle-grid.list-view .vehicle-card {
    grid-template-columns: 260px 1fr;
}
.vehicle-grid.list-view .vehicle-image {
    min-height: 240px;
}
.assist-card {
    margin-top: 38px;
    padding: 24px;
}
.assist-card h2 {
    font-size: 24px;
}

.detail-page {
    width: min(100% - 40px, 1500px);
    padding: 28px 0 70px;
}
.detail-grid {
    grid-template-columns: minmax(0, 1.55fr) 390px;
    gap: 30px;
}
.detail-gallery {
    height: 430px;
    border: 0;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 10px 28px rgba(16,31,62,.08);
}
.thumb-row {
    gap: 12px;
    margin: 14px 0 30px;
    overflow-x: auto;
}
.thumb-row button {
    flex: 0 0 auto;
    border-radius: 7px;
}
.thumb-row img {
    width: 120px;
    height: 72px;
}
.detail-spec-card {
    padding: 26px 28px;
    border: 1px solid #e7eaf0;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(16,31,62,.06);
}
.detail-spec-card h2 {
    margin-bottom: 22px;
    color: #0d1b3d;
    font-size: 24px;
}
.detail-page .spec-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 36px;
}
.detail-page .spec-grid div {
    min-height: 54px;
    display: grid;
    grid-template-columns: 24px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}
.detail-page .spec-grid span {
    margin: 0;
    color: #5d6574;
    font-size: 13px;
    text-transform: none;
}
.detail-page .spec-grid strong {
    color: #0d1b3d;
    font-size: 13px;
    text-align: right;
}
.purchase-panel {
    top: 88px;
    overflow: hidden;
    padding: 0 24px 24px;
    border: 1px solid #e7eaf0;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(16,31,62,.08);
}
.detail-promo-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 -24px 22px;
    padding: 13px 20px;
    background: linear-gradient(120deg, var(--blue), #0b6f96);
    color: var(--white);
    font-size: 13px;
}
.detail-promo-strip span {
    font-size: 12px;
    font-weight: 800;
    opacity: .86;
}
.purchase-panel .eyebrow {
    padding: 4px 9px;
    font-size: 11px;
}
.purchase-panel h1 {
    margin: 12px 0 8px;
    color: #0d1b3d;
    font-size: 22px;
    line-height: 1.28;
}
.rating {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: #5f6a7a;
    font-size: 13px;
}
.rating .icon {
    width: 16px;
    height: 16px;
    color: var(--blue);
}
.price-detail {
    margin: 18px 0;
    padding: 18px 0;
}
.price-detail del {
    font-size: 13px;
}
.price-detail strong {
    display: block;
    margin: 2px 0;
    font-size: 26px;
}
.price-detail p {
    font-size: 12px;
}
.detail-application-form {
    gap: 12px;
}
.detail-application-form h3 {
    margin: 2px 0 0;
    color: #0d1b3d;
    font-size: 14px;
}
.detail-application-form .variant-list {
    gap: 8px;
}
.detail-application-form .variant-list label {
    padding: 12px;
    border-radius: 9px;
}
.detail-application-form .variant-list span {
    font-size: 13px;
}
.detail-application-form .variant-list small {
    font-size: 11px;
}
.color-choice-list label {
    min-height: 36px;
    padding: 0 11px;
    font-size: 12px;
}
.detail-credit-inputs {
    gap: 12px;
}
.detail-credit-inputs label {
    font-size: 13px;
}
.detail-credit-inputs input,
.detail-credit-inputs select {
    min-height: 40px;
    font-size: 13px;
}
.mini-finance-result {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 12px;
    padding: 14px 16px;
    border: 0;
    border-radius: 14px;
    background: #f6f6f4;
}
.mini-finance-result span,
.mini-finance-result small {
    color: #5e6674;
    font-size: 12px;
    font-weight: 750;
}
.mini-finance-result strong {
    color: #0d1b3d;
    font-size: 16px;
}
.mini-finance-result small {
    grid-column: 1 / -1;
}
.benefit-box,
.help-panel,
.secure-box {
    padding: 16px;
    border-radius: 12px;
    font-size: 13px;
}
.detail-bottom {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 30px;
    margin-top: 28px;
}
.detail-bottom h2 {
    font-size: 24px;
}

@media (max-width: 1080px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    .filter-panel {
        border-right: 0;
        box-shadow: none;
    }
    .filter-panel form {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }
    .filter-title {
        grid-column: 1 / -1;
    }
    .filter-panel .btn {
        width: auto;
        margin: 20px 22px;
    }
    .detail-grid,
    .detail-bottom {
        grid-template-columns: 1fr;
    }
    .purchase-panel {
        position: static;
    }
}

@media (max-width: 760px) {
    .catalog-content {
        padding: 18px 14px 42px;
    }
    .catalog-banner {
        min-height: 86px;
        padding: 18px;
        border-radius: 12px;
    }
    .catalog-banner strong {
        font-size: 18px;
    }
    .filter-panel form {
        grid-template-columns: 1fr;
    }
    .filter-title,
    .filter-section {
        padding: 16px;
    }
    .catalog-sort-tabs {
        gap: 20px;
    }
    .vehicle-image {
        height: 205px;
    }
    .spec-row {
        grid-template-columns: repeat(3, 1fr);
    }
    .detail-page {
        width: min(100% - 28px, 1500px);
    }
    .detail-gallery {
        height: 300px;
        border-radius: 12px;
    }
    .thumb-row img {
        width: 88px;
        height: 62px;
    }
    .detail-spec-card,
    .purchase-panel {
        border-radius: 12px;
    }
    .detail-page .spec-grid {
        grid-template-columns: 1fr;
    }
    .detail-credit-inputs {
        grid-template-columns: 1fr;
    }
    .detail-bottom {
        margin-top: 22px;
    }
}

@media print {
    .site-header, .site-footer, .btn, .next-steps { display: none !important; }
    body { background: white; }
    .simulation-result { box-shadow: none; }
}

/* Catalog mobile controls and price range */
.catalog-filter-mobile-head,
.catalog-mobile-actions,
.catalog-mobile-sort-sheet,
.catalog-filter-reset {
    display: none;
}
.filter-helper {
    margin: 0 0 14px;
    color: #536174;
    font-size: 13px;
}
.price-preset-grid {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}
.price-preset-grid button {
    min-height: 54px;
    border: 1px solid #edf0f5;
    border-radius: 12px;
    background: #f6f6f7;
    color: #071533;
    cursor: pointer;
    font-weight: 750;
}
.price-preset-grid button.active,
.price-preset-grid button:hover {
    border-color: #bfeccc;
    background: #f0fff5;
    color: var(--green);
}
.desktop-price-range {
    display: grid;
    gap: 10px;
}
.desktop-price-range input {
    padding: 0;
    accent-color: var(--green);
}
.desktop-price-range div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #071533;
    font-size: 13px;
    font-weight: 850;
}
.desktop-price-range span,
.desktop-price-range strong {
    margin: 0;
}
.price-range-fields {
    display: none;
    grid-template-columns: 1fr;
    gap: 10px;
}
.price-range-fields label {
    margin: 0;
}
.catalog-filter-actions {
    display: grid;
    gap: 10px;
}
.catalog-mobile-sort-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 96;
    padding: 12px 20px calc(18px + env(safe-area-inset-bottom));
    border-radius: 22px 22px 0 0;
    background: var(--white);
    box-shadow: 0 -18px 44px rgba(16,31,62,.18);
    transform: translateY(110%);
    transition: transform .24s ease;
}
.catalog-mobile-sort-sheet::before {
    content: "";
    display: block;
    width: 48px;
    height: 5px;
    margin: 0 auto 14px;
    border-radius: 999px;
    background: #d7dae0;
}
.catalog-mobile-sort-sheet.is-open {
    transform: translateY(0);
}
.catalog-mobile-sort-sheet > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.catalog-mobile-sort-sheet button {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: #f4f5f7;
}
.catalog-mobile-sort-sheet .catalog-sort-option {
    min-height: 72px;
    display: grid;
    grid-template-columns: 52px 1fr 24px;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 0;
    color: #071533;
    font-weight: 800;
}
.catalog-sort-option span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #f3f4f6;
    color: #232a38;
}
.catalog-sort-option .icon {
    width: 20px;
    height: 20px;
}
.catalog-sort-option strong {
    font-size: 14px;
    font-weight: 800;
}
.catalog-sort-option i {
    width: 22px;
    height: 22px;
    display: block;
    border: 1px solid #d9dee7;
    border-radius: 999px;
}
.catalog-sort-option.active i {
    border: 6px solid var(--green);
}
.catalog-mobile-sort-sheet .catalog-sort-option.active {
    color: #071533;
}
body.catalog-sort-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 92;
    background: rgba(8,33,63,.38);
}

@media (max-width: 760px) {
    .catalog-layout {
        display: block;
        padding-bottom: 74px;
        background: #fff;
    }
    .catalog-layout .filter-panel {
        position: fixed;
        inset: 0;
        z-index: 88;
        display: block;
        overflow-y: auto;
        border: 0;
        background: var(--white);
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(100%);
        transition: opacity .2s ease, transform .26s ease, visibility .2s ease;
    }
    .catalog-layout .filter-panel.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    body.catalog-filter-open,
    body.catalog-sort-open {
        overflow: hidden;
    }
    .catalog-layout .filter-panel form {
        position: static;
        display: block;
        padding: 0;
    }
    .catalog-filter-mobile-head {
        position: sticky;
        top: 0;
        z-index: 2;
        min-height: 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        border-bottom: 1px solid #edf0f5;
        background: rgba(255,255,255,.96);
        backdrop-filter: blur(12px);
    }
    .catalog-filter-mobile-head strong {
        font-size: 18px;
    }
    .catalog-filter-mobile-head button {
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        border: 0;
        border-radius: 999px;
        background: #f4f5f7;
        color: #111827;
    }
    .catalog-layout .filter-title {
        display: none;
    }
    .catalog-layout .filter-section {
        padding: 18px 20px;
    }
    .catalog-layout .filter-section h3 {
        font-size: 15px;
    }
    .price-preset-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .desktop-price-range {
        display: none;
    }
    .price-preset-grid button {
        min-height: 104px;
        border-radius: 18px;
        font-size: 14px;
    }
    .price-range-fields {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .price-range-fields input {
        min-height: 54px;
        border-radius: 12px;
        background: #f4f4f5;
    }
    .catalog-filter-actions {
        position: sticky;
        bottom: 0;
        z-index: 3;
        display: grid;
        grid-template-columns: 64px 1fr;
        gap: 12px;
        align-items: center;
        padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
        border-top: 1px solid #edf0f5;
        background: rgba(255,255,255,.97);
        backdrop-filter: blur(12px);
    }
    .catalog-filter-reset {
        display: inline-flex;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        border: 0;
        background: transparent;
        color: #4b5565;
        font-weight: 800;
    }
    .catalog-filter-actions .btn {
        min-height: 52px;
        border-radius: 999px;
        background: var(--green);
    }
    .catalog-content {
        padding: 18px 22px 28px;
    }
    .catalog-banner,
    .catalog-tools,
    .assist-card,
    .pagination {
        display: none;
    }
    .catalog-head {
        display: block;
        margin-bottom: 10px;
    }
    .catalog-head h1 {
        font-size: 18px;
    }
    .catalog-head p {
        display: none;
    }
    .catalog-sort-tabs {
        gap: 12px;
        margin: 8px -22px 16px 0;
        padding-left: 0;
        border-bottom: 0;
    }
    .catalog-sort-tabs a {
        padding: 10px 18px;
        border-radius: 999px;
        background: #f5f6f8;
        color: #071533;
        font-size: 14px;
    }
    .catalog-sort-tabs a.active {
        background: var(--green);
        color: #fff;
    }
    .catalog-sort-tabs a.active::after {
        display: none;
    }
    .catalog-content .vehicle-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .catalog-mobile-actions {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 70;
        min-height: 62px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border-top: 1px solid #e6e9ef;
        background: rgba(255,255,255,.96);
        backdrop-filter: blur(12px);
    }
    .catalog-mobile-actions button,
    .catalog-mobile-actions a {
        display: grid;
        justify-items: center;
        align-content: center;
        gap: 4px;
        border: 0;
        background: transparent;
        color: #344054;
        font-size: 11px;
        font-weight: 750;
    }
    .catalog-mobile-actions button.active,
    .catalog-mobile-actions a.active {
        color: var(--green);
    }
    .catalog-mobile-actions .icon {
        width: 20px;
        height: 20px;
    }
    .catalog-mobile-sort-sheet {
        display: block;
    }
}

/* Home marketplace header and content hub */
.home-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid #edf0f5;
    box-shadow: 0 8px 22px rgba(16,31,62,.06);
    backdrop-filter: blur(14px);
}
.home-nav-wrap {
    min-height: 68px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}
.home-brand {
    color: var(--blue);
}
.home-brand .brand-mark {
    background: var(--blue);
    color: var(--white);
}
.home-center-nav,
.home-right-nav {
    display: flex;
    align-items: center;
}
.home-center-nav {
    justify-content: center;
    gap: 46px;
}
.home-center-nav a {
    display: grid;
    justify-items: center;
    gap: 2px;
    color: #7d8492;
    font-size: 12px;
    font-weight: 750;
}
.home-center-nav .icon {
    width: 20px;
    height: 20px;
    color: #1d2740;
}
.home-right-nav {
    justify-content: flex-end;
    gap: 26px;
    color: #071533;
    font-size: 13px;
    font-weight: 750;
}
.home-icon-link {
    position: relative;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
}
.home-icon-link .icon {
    width: 20px;
    height: 20px;
}
.home-icon-link b {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 15px;
    height: 15px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #e5252a;
    color: var(--white);
    font-size: 10px;
}
.home-market {
    padding: 12px 0 70px;
    background: #fff;
}
.home-mobile-search-trigger,
.home-filter-mobile-head,
.home-mobile-keyword,
.home-filter-close {
    display: none;
}
.home-search-panel {
    width: min(960px, calc(100% - 70px));
    min-height: 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr) 120px;
    align-items: center;
    gap: 0;
    position: sticky;
    top: 82px;
    z-index: 24;
    margin: 0 auto 32px;
    padding: 0 12px 0 26px;
    border-radius: 999px;
    background: var(--white);
    box-shadow: 0 10px 26px rgba(16,31,62,.12);
}
.home-search-panel label {
    min-width: 0;
    padding: 0 22px;
    border-right: 1px solid #edf0f5;
}
.home-search-panel label:last-of-type {
    border-right: 0;
}
.home-search-panel span {
    display: block;
    margin-bottom: 3px;
    color: #9aa1ad;
    font-size: 11px;
    font-weight: 800;
}
.home-search-panel select {
    min-height: 24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #0d1b3d;
    background: transparent;
    font-size: 13px;
    font-weight: 750;
}
.home-search-panel select:focus {
    box-shadow: none;
}
.home-search-panel .btn {
    min-height: 46px;
    border-radius: 999px;
    padding: 0 22px;
    background: var(--green);
    box-shadow: none;
    font-size: 13px;
}
.home-filter-actions {
    display: contents;
}
.home-content-stage {
    position: relative;
    margin-bottom: 28px;
}
.home-main-banner {
    position: relative;
    overflow: hidden;
    width: min(100%, 1180px);
    height: auto;
    min-height: 0;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    background: #f4f6fa;
}
.home-main-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 1;
    transform: scale(1);
    transition: opacity .28s ease, transform .42s ease, filter .28s ease;
}
.home-content-stage.is-switching .home-main-banner img {
    opacity: .22;
    filter: blur(2px);
    transform: translateX(-18px) scale(.985);
}
.home-banner-dots {
    position: absolute;
    left: 22px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.home-banner-dots span,
.home-banner-dots i {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.62);
    cursor: pointer;
    transition: width .24s ease, background .24s ease, transform .24s ease;
}
.home-banner-dots i,
.home-banner-dots .active {
    width: 38px;
    background: var(--white);
    transform: translateY(-1px);
}
.home-carousel-control {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid #edf0f5;
    border-radius: 999px;
    background: var(--white);
    color: #101828;
    box-shadow: 0 8px 20px rgba(16,31,62,.12);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.home-carousel-control:hover {
    background: #fff7f7;
    box-shadow: 0 14px 32px rgba(16,31,62,.16);
    transform: translateY(-50%) scale(1.05);
}
.home-carousel-control.prev {
    left: -21px;
}
.home-carousel-control.next {
    right: -21px;
}
.home-quick-nav {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin: 24px 0 42px;
}
.home-quick-nav a {
    display: grid;
    justify-items: center;
    gap: 10px;
    color: #071533;
    font-size: 12px;
    font-weight: 750;
    transition: color .18s ease, transform .18s ease;
}
.home-quick-nav span {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #f2f3f5;
    color: var(--green);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.home-quick-nav .icon {
    width: 23px;
    height: 23px;
}
.home-quick-nav a:hover span {
    background: #f0fff5;
    box-shadow: 0 12px 26px rgba(36,199,101,.14);
    transform: translateY(-2px);
}
.home-quick-nav a:hover {
    color: var(--green);
    transform: translateY(-1px);
}
.home-content-panel,
.home-featured {
    margin-top: 38px;
}
.home-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}
.home-section-head span {
    display: block;
    color: var(--green);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}
.home-section-head h1,
.home-section-head h2 {
    margin: 5px 0 0;
    color: #0d1b3d;
    font-size: 24px;
}
.home-section-head a {
    color: var(--blue);
    font-size: 13px;
    font-weight: 850;
}
.submission-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.submission-steps article {
    min-height: 168px;
    padding: 20px;
    border: 1px solid #e7eaf0;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(16,31,62,.065);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.submission-steps article:hover {
    transform: translateY(-3px);
    border-color: #bfeccc;
    box-shadow: 0 16px 34px rgba(16,31,62,.11);
}
.submission-steps span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #f0fff5;
    color: var(--green);
    font-weight: 900;
}
.submission-steps strong {
    display: block;
    color: #0d1b3d;
    font-size: 16px;
}
.submission-steps p {
    margin: 8px 0 0;
    color: #667085;
    font-size: 13px;
}
.home-featured .vehicle-grid.compact {
    grid-template-columns: repeat(4, 1fr);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .48s ease, transform .48s ease;
    transition-delay: var(--reveal-delay, 0ms);
}
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.home-search-panel {
    animation: homePanelIn .52s ease both;
}
.home-brand .brand-mark {
    animation: homeBrandPulse 2.8s ease-in-out infinite;
}

@keyframes homePanelIn {
    from { opacity: 0; transform: translateY(-10px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes homeBrandPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(6,79,146,.22); }
    50% { box-shadow: 0 0 0 7px rgba(6,79,146,0); }
}

@media (max-width: 1080px) {
    .home-nav-wrap {
        grid-template-columns: 1fr auto;
    }
    .home-center-nav {
        order: 3;
        grid-column: 1 / -1;
        padding-bottom: 10px;
    }
    .home-search-panel {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        border-radius: 18px;
        padding: 16px;
        gap: 12px;
    }
    .home-search-panel label {
        padding: 0;
        border-right: 0;
    }
    .home-search-panel .btn {
        grid-column: 1 / -1;
    }
    .home-main-banner {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
    .home-quick-nav,
    .home-featured .vehicle-grid.compact {
        grid-template-columns: repeat(3, 1fr);
    }
    .submission-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-brand .brand-mark,
    .home-search-panel {
        animation: none !important;
    }
    .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 760px) {
    .home-nav-wrap {
        min-height: 62px;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        padding: 10px 0;
        align-items: center;
    }
    .home-brand {
        font-size: 17px;
    }
    .home-center-nav {
        width: 100%;
        justify-content: space-around;
        gap: 0;
    }
    .home-right-nav {
        margin-left: auto;
        gap: 12px;
    }
    .home-right-nav > a:not(.home-icon-link) {
        display: none;
    }
    .home-market {
        padding-top: 14px;
    }
    .home-mobile-search-trigger {
        position: sticky;
        top: 112px;
        z-index: 24;
        width: 100%;
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin: 0 0 22px;
        border: 0;
        border-radius: 999px;
        background: var(--white);
        color: #535c6c;
        box-shadow: 0 10px 26px rgba(16,31,62,.13);
        font-size: 14px;
        cursor: pointer;
    }
    .home-mobile-search-trigger .icon {
        width: 22px;
        height: 22px;
        color: #071533;
    }
    .home-search-panel {
        position: fixed;
        inset: 0;
        z-index: 80;
        width: 100%;
        min-height: 100vh;
        display: grid;
        grid-template-columns: 1fr;
        align-content: start;
        gap: 16px;
        margin: 0;
        padding: 28px 24px 106px;
        border-radius: 0;
        background: var(--white);
        box-shadow: none;
        opacity: 0 !important;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(100%) !important;
        animation: none !important;
        transition: opacity .22s ease, transform .28s ease;
        overflow-y: auto;
    }
    .home-search-panel.is-open {
        opacity: 1 !important;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) !important;
    }
    body.home-filter-open {
        overflow: hidden;
    }
    .home-filter-mobile-head {
        display: block;
        margin-bottom: 18px;
    }
    .home-filter-mobile-head > div {
        display: flex;
        justify-content: center;
        gap: 58px;
        color: #a3a8b1;
        font-size: 14px;
        font-weight: 750;
    }
    .home-filter-mobile-head strong,
    .home-filter-mobile-head span {
        display: grid;
        justify-items: center;
        gap: 4px;
        margin: 0;
    }
    .home-filter-mobile-head strong {
        color: #1d2638;
    }
    .home-filter-mobile-head .icon {
        width: 21px;
        height: 21px;
    }
    .home-filter-mobile-head > button {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        border: 0;
        border-radius: 999px;
        background: #f4f5f7;
        color: #596273;
    }
    .home-mobile-keyword {
        display: block;
    }
    .home-search-panel label {
        min-height: 70px;
        display: grid;
        align-content: center;
        padding: 0 30px;
        border: 0;
        border-radius: 999px;
        background: #f4f4f5;
    }
    .home-search-panel label span {
        margin-bottom: 2px;
        color: #6f7785;
        font-size: 12px;
        font-weight: 750;
    }
    .home-search-panel select,
    .home-search-panel input {
        min-height: 28px;
        padding: 0;
        border: 0;
        background: transparent;
        color: #071533;
        font-size: 15px;
        font-weight: 750;
    }
    .home-search-panel select:focus,
    .home-search-panel input:focus {
        box-shadow: none;
    }
    .home-filter-actions {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        grid-template-columns: 76px 1fr;
        gap: 14px;
        align-items: center;
        padding: 16px 16px calc(16px + env(safe-area-inset-bottom));
        border-top: 1px solid #edf0f5;
        background: rgba(255,255,255,.96);
        backdrop-filter: blur(12px);
    }
    .home-filter-close {
        display: inline-flex;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        border: 0;
        background: transparent;
        color: #535d6d;
        font-weight: 750;
    }
    .home-filter-actions .btn {
        grid-column: auto;
        min-height: 52px;
        width: 100%;
        border-radius: 999px;
        background: var(--green);
    }
    .home-main-banner {
        height: 220px;
        aspect-ratio: auto;
        border-radius: 14px;
    }
    .home-carousel-control {
        width: 34px;
        height: 34px;
    }
    .home-carousel-control.prev {
        left: -8px;
    }
    .home-carousel-control.next {
        right: -8px;
    }
    .home-quick-nav {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px 12px;
        margin-bottom: 30px;
    }
    .home-quick-nav span {
        width: 54px;
        height: 54px;
    }
    .home-section-head {
        display: block;
    }
    .home-featured .vehicle-grid.compact {
        display: flex;
        grid-template-columns: none;
        gap: 14px;
        overflow-x: auto;
        padding: 2px 4px 16px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .home-featured .vehicle-grid.compact::-webkit-scrollbar {
        display: none;
    }
    .home-featured .vehicle-card {
        flex: 0 0 82%;
        scroll-snap-align: start;
    }
    .submission-steps {
        grid-template-columns: 1fr;
    }
}
