@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg: #060606;
    --bg-2: #0b0b0d;
    --surface: #121214;
    --surface-2: #17171a;
    --line: rgba(255,255,255,0.08);
    --line-2: rgba(255,255,255,0.14);
    --txt: #f4f4f5;
    --txt-2: #a1a1aa;
    --txt-3: #6b6b73;
    
    /* Signature Orange Theme */
    --primary: #E8430A;
    --primary-2: #FF6B00;
    --grad: linear-gradient(100deg, #FF6B00 0%, #E8430A 100%);
    --primary-glow: rgba(255, 107, 0, 0.2);
    
    --maxw: 1280px;
    --ease: cubic-bezier(.22,.61,.36,1);
    --transition: all 0.3s var(--ease);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--txt);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-2);
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.section {
    padding: 100px 0;
    position: relative;
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--txt);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Base Cards */
.card-base {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
    overflow: hidden;
}

.card-base:hover {
    transform: translateY(-5px);
    border-color: var(--line-2);
    box-shadow: 0 20px 40px rgba(232, 67, 10, 0.08);
}

/* Sticky Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    background: rgba(6, 6, 6, 0.72);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, background .3s;
}

.header.scrolled {
    border-bottom-color: var(--line);
    background: rgba(6, 6, 6, 0.9);
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: var(--transition);
}

.header.scrolled .nav-wrap {
    height: 80px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--txt);
    text-transform: uppercase;
}

.brand-logo span {
    color: var(--primary-2);
}

.nav-menu {
    display: flex;
    gap: 4px;
    list-style: none;
}

.nav-link {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--txt-2);
    text-decoration: none;
    padding: 9px 15px;
    border-radius: 9px;
    transition: color .2s, background .2s;
}

.nav-link:hover {
    color: var(--txt);
    background: rgba(255, 255, 255, 0.05);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.01em;
    color: var(--txt);
    text-decoration: none;
    background: rgba(255, 107, 0, 0.04);
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-phone span {
    color: var(--primary-2);
    font-size: 16px;
    transition: var(--transition);
    animation: phonePulse 2s infinite alternate;
}

.nav-phone:hover {
    color: #fff;
    background: var(--grad);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(232, 67, 10, 0.4);
}

.nav-phone:hover span {
    color: #fff;
}

@keyframes phonePulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.15); opacity: 1; filter: drop-shadow(0 0 4px var(--primary-2)); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    padding: 14px 24px;
    line-height: 1;
    letter-spacing: -0.01em;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 6px 24px -6px rgba(232, 67, 10, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px -8px rgba(232, 67, 10, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--txt);
    border: 1px solid var(--line-2);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.28);
}

.btn-lg {
    padding: 18px 34px;
    font-size: 17px;
    border-radius: 14px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background-color: var(--txt);
    transition: var(--transition);
}

@media (max-width: 1024px) {
    .nav-menu, .nav-actions {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}

/* Mobile Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(6, 6, 6, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    padding: 120px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    transition: right 0.4s var(--ease);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav .nav-link {
    font-size: 1.1rem;
    padding: 10px 15px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 70px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
      radial-gradient(900px 520px at 78% 40%, rgba(232,67,10,.14), transparent 60%),
      radial-gradient(700px 500px at 8% 0%, rgba(42,127,212,.08), transparent 55%);
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .4;
    background-image:
      linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 75%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line-2);
    color: var(--txt-2);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-2);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.18);
}

.hero-badge b {
    color: var(--txt);
}

.hero-title {
    font-size: 60px;
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 22px;
    letter-spacing: -0.03em;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }
}

.hero-desc {
    font-size: 18px;
    color: var(--txt-2);
    max-width: 520px;
    margin-bottom: 36px;
}

@media (max-width: 992px) {
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .hero-actions {
        justify-content: center;
    }
}

.hero-trust {
    margin-top: 30px;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .hero-trust {
        justify-content: center;
    }
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    color: var(--txt-2);
    font-weight: 500;
}

.hero-trust .chk {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(232, 67, 10, 0.14);
    display: grid;
    place-items: center;
}

.hero-trust .chk svg {
    width: 11px;
    height: 11px;
}

.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
}

.car-stage {
    position: relative;
    width: 100%;
}

.car-glow {
    position: absolute;
    left: 50%;
    bottom: 6%;
    transform: translateX(-50%);
    width: 80%;
    height: 90px;
    z-index: 0;
    background: radial-gradient(ellipse at center, rgba(232,67,10,.75), rgba(255,107,0,.2) 45%, transparent 70%);
    filter: blur(25px);
    opacity: 0.85;
}

.car-reflect {
    position: absolute;
    left: 50%;
    bottom: 2%;
    transform: translateX(-50%);
    width: 65%;
    height: 14px;
    border-radius: 50%;
    z-index: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,.6), transparent 70%);
    filter: blur(8px);
}

.car-img {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 25px 30px rgba(0,0,0,.55));
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* Sections Header */
.sec-head {
    margin-bottom: 56px;
    text-align: left;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary-2);
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--grad);
    border-radius: 2px;
}

.sec-head h2 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-top: 16px;
    line-height: 1.08;
}

@media (max-width: 768px) {
    .sec-head h2 {
        font-size: 32px;
    }
}

.sec-head p {
    margin-top: 14px;
    color: var(--txt-2);
    font-size: 18px;
    max-width: 560px;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 30px 26px;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-2);
}

.stat-card .num {
    font-size: 46px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-card .num .u {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-card .lbl {
    margin-top: 12px;
    color: var(--txt-2);
    font-size: 15px;
    font-weight: 500;
}

/* Regions Section */
.dir-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 992px) {
    .dir-grid {
        grid-template-columns: 1fr;
    }
}

.dir-card {
    position: relative;
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px;
    overflow: hidden;
    text-decoration: none;
    transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}

.dir-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    pointer-events: none;
    background: radial-gradient(420px 200px at 80% -10%, rgba(255, 107, 0, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity .4s;
}

.dir-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 0, 0.35);
    box-shadow: 0 25px 50px -15px rgba(232, 67, 10, 0.15);
}

.dir-card:hover::after {
    opacity: 1;
}

.dir-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 120px;
    margin: 10px 0 22px;
}

.dir-banner svg {
    display: block;
    width: 200px;
    height: 120px;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,.55));
}

.dir-card h3 {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 0;
}

.dir-card .dir-sub {
    color: var(--txt-3);
    font-size: 14px;
    margin-top: 4px;
    font-weight: 500;
}

.dir-link {
    margin-top: 26px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--primary-2);
    transition: gap .25s;
}

.dir-card:hover .dir-link {
    gap: 13px;
}

/* Catalog Controls */
.catalog-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.catalog-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 5px;
    gap: 5px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--txt-2);
    padding: 10px 22px;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 9px;
    transition: color .2s, background .2s;
}

.tab-btn:hover {
    color: var(--txt);
}

.tab-btn.active {
    background: var(--grad);
    color: #fff;
}

.catalog-filters {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.search-input, .sort-select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 20px;
    color: var(--txt);
    font-family: inherit;
    font-size: 14px;
    transition: border-color .2s, background .2s;
}

.search-input {
    min-width: 250px;
}

.search-input:focus, .sort-select:focus {
    outline: none;
    border-color: rgba(255, 107, 0, 0.5);
    background: rgba(255, 255, 255, 0.06);
}

.sort-select {
    cursor: pointer;
}

.sort-select option {
    background: var(--bg);
    color: var(--txt);
}

/* Catalog Grid & Cards */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
}

@media (max-width: 576px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }
}

.car-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}

.car-card:hover {
    transform: translateY(-5px);
    border-color: var(--line-2);
    box-shadow: 0 20px 40px rgba(232, 67, 10, 0.08);
}

.car-card-header {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #0d0d10;
}

.car-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.car-card:hover .car-card-img {
    transform: scale(1.05);
}

.car-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 6px 12px;
    background: rgba(6, 6, 6, 0.8);
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--txt);
    font-size: 12px;
    font-weight: 700;
}

.car-badge.in-stock {
    border-color: rgba(74, 222, 128, 0.4);
    color: #4ade80;
}

.car-card-body {
    padding: 26px;
}

.car-card-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

.car-card-title span {
    font-weight: 400;
    color: var(--txt-3);
}

.car-card-price {
    font-size: 24px;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 22px;
}

.car-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    margin-bottom: 22px;
}

.car-spec-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.car-spec-label {
    font-size: 11px;
    color: var(--txt-3);
    font-weight: 600;
    text-transform: uppercase;
}

.car-spec-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--txt-2);
}

.car-spec-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 4px;
}

.car-spec-fill {
    height: 100%;
    background: var(--grad);
    border-radius: 2px;
}

.car-card-footer {
    display: flex;
    gap: 12px;
}

.car-card-footer .btn {
    flex: 1;
}

/* Timeline (Process) Section */
.how-section {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.steps-container {
    position: relative;
    margin-top: 60px;
}

.steps-container::before {
    content: "";
    position: absolute;
    top: 46px;
    left: 7%;
    right: 7%;
    height: 2px;
    z-index: 0;
    background-image: linear-gradient(90deg, var(--line-2) 0 8px, transparent 8px 18px);
    background-size: 18px 2px;
}

@media (max-width: 1024px) {
    .steps-container::before {
        display: none;
    }
}

.step-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .step-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .step-row {
        grid-template-columns: 1fr;
    }
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 22px;
    transition: transform .3s var(--ease), border-color .3s;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--line-2);
}

.step-card .snum {
    font-size: 52px;
    font-weight: 800;
    line-height: .9;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, rgba(255,107,0,.55), rgba(232,67,10,.12));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.step-card h4 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-top: 16px;
}

.step-card p {
    font-size: 13.5px;
    color: var(--txt-2);
    margin-top: 8px;
    line-height: 1.55;
}

/* Calculator Section */
.calc-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    margin-top: 56px;
}

@media (max-width: 992px) {
    .calc-grid {
        grid-template-columns: 1fr;
    }
}

.calc-form-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 40px;
}

@media (max-width: 576px) {
    .calc-form-panel {
        padding: 30px 20px;
    }
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--txt-3);
}

.form-select, .form-input-text {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 20px;
    color: var(--txt);
    font-family: inherit;
    font-size: 14.5px;
    width: 100%;
    transition: var(--transition);
}

.form-select:focus, .form-input-text:focus {
    outline: none;
    border-color: rgba(255, 107, 0, 0.5);
    background: rgba(255, 255, 255, 0.06);
}

.form-select option {
    background: var(--bg);
    color: var(--txt);
}

.calc-sidebar {
    background: linear-gradient(150deg, rgba(232,67,10,.14), rgba(18,18,20,.4) 60%);
    border: 1px solid rgba(232,67,10,.28);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.calc-result-title {
    font-size: 14px;
    color: var(--txt-3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin-bottom: 12px;
}

.calc-result-value {
    font-size: 44px;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.calc-result-desc {
    font-size: 14px;
    color: var(--txt-2);
    line-height: 1.6;
}

/* Guarantees Section */
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 992px) {
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
}

.guarantee-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
}

.guarantee-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-2);
}

.guarantee-icon {
    font-size: 3rem;
    color: var(--primary-2);
    margin-bottom: 20px;
    display: inline-block;
}

.guarantee-title {
    font-size: 18px;
    margin-bottom: 12px;
}

.guarantee-desc {
    font-size: 14px;
    color: var(--txt-2);
}

/* Contacts Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 28px;
    margin-top: 56px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 40px;
}

@media (max-width: 576px) {
    .contact-card {
        padding: 30px 20px;
    }
}

.contact-card.accent {
    background: linear-gradient(150deg, rgba(232,67,10,.14), rgba(18,18,20,.4) 60%);
    border-color: rgba(232,67,10,.28);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ci-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.ci-row:first-child {
    padding-top: 0;
}

.ci-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ci-ico {
    width: 44px;
    height: 44px;
    flex: none;
    border-radius: 11px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--primary-2);
}

.ci-ico span {
    font-size: 20px;
}

.ci-row .ck {
    font-size: 13px;
    color: var(--txt-3);
    font-weight: 600;
}

.ci-row .cv {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-top: 3px;
    color: var(--txt);
    text-decoration: none;
}

.ci-row a.cv:hover {
    color: var(--primary-2);
}

.ci-row .cv.lg {
    font-size: 24px;
}

.msg-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 26px;
}

.msg-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line-2);
    border-radius: 14px;
    text-decoration: none;
    transition: transform .25s var(--ease), background .2s, border-color .2s;
}

.msg-btn:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.08);
}

.msg-btn .mi {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex: none;
    color: #fff;
}

.msg-btn .mi.wa { background: #25D366; }
.msg-btn .mi.tg { background: #2AABEE; }

.msg-btn .mt b {
    display: block;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--txt);
}

.msg-btn .mt span {
    font-size: 13px;
    color: var(--txt-2);
}

.msg-btn .arrow {
    margin-left: auto;
    color: var(--txt-3);
}

/* Footer */
.footer {
    border-top: 1px solid var(--line);
    padding: 60px 0;
}

.foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.foot .fl {
    color: var(--txt-3);
    font-size: 13.5px;
}

.foot-links {
    display: flex;
    gap: 22px;
}

.foot-links a {
    color: var(--txt-2);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s;
}

.foot-links a:hover {
    color: var(--txt);
}

/* Modal Overlay */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 6, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    max-width: 900px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: var(--surface-2);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
    transform: scale(0.92);
    transition: transform 0.4s var(--ease);
}

.modal.active .modal-container {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    color: var(--txt);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close-btn:hover {
    background: var(--primary-2);
    border-color: var(--primary-2);
    color: #fff;
}

.modal-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
}

@media (max-width: 768px) {
    .modal-content {
        grid-template-columns: 1fr;
    }
}

.modal-image-panel {
    position: relative;
    height: 100%;
    min-height: 350px;
    background: #0d0d10;
}

.modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-details-panel {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 576px) {
    .modal-details-panel {
        padding: 30px 20px;
    }
}

.modal-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 4px;
}

.modal-subtitle {
    color: var(--txt-3);
    font-size: 15px;
    margin-bottom: 12px;
}

.modal-price {
    font-size: 30px;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 24px;
}

.modal-specs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    border-top: 1px solid var(--line);
    padding-top: 20px;
}

.modal-spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
}

.modal-spec-lbl {
    color: var(--txt-3);
    font-weight: 500;
}

.modal-spec-val {
    color: var(--txt-2);
    font-weight: 700;
}

/* Reveal System Animations */
@keyframes revealIn {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: none; }
}

html.js .reveal {
    opacity: 0;
}

html.js .reveal.in {
    animation: revealIn .7s var(--ease) both;
}

@media (prefers-reduced-motion: reduce) {
    html.js .reveal { opacity: 1; }
    html.js .reveal.in { animation: none; }
}
