:root {
    --navy: #173754;
    --navy2: #0d2236;
    --gold: #c49a45;
    --cream: #f6f2e9;
    --text: #17212b;
    --muted: #66717d;
    --white: #fff;
    --line: #dfe4e8;
    --shadow: 0 18px 45px rgba(13, 34, 54, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.55
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto
}

.topbar {
    background: var(--navy2);
    color: #fff;
    font-size: .88rem
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 9px 0
}

.header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #edf0f2
}

.nav {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo img {
    width: 190px
}

.menu {
    display: flex;
    align-items: center;
    gap: 26px;
    font-weight: 700
}

.menu a:hover,
.menu a.active {
    color: var(--gold)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--gold);
    color: #fff;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    transition: .2s
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(196, 154, 69, .28)
}

.btn.secondary {
    background: var(--navy)
}

.btn.ghost {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--navy)
}

.hamb {
    display: none;
    font-size: 28px;
    background: none;
    border: 0
}

.hero {
    min-height: 690px;
    color: #fff;
    background: linear-gradient(90deg, rgba(8, 27, 43, .9), rgba(8, 27, 43, .34)), url('./images/img1.jpg') center/cover;
    display: flex;
    align-items: center
}

.hero-inner {
    max-width: 760px;
    padding: 100px 0
}

.eyebrow {
    font-size: .82rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--gold)
}

h1,
h2,
h3 {
    line-height: 1.1;
    margin: 0 0 18px
}

h1 {
    font-size: clamp(2.7rem, 6vw, 5.4rem)
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem)
}

h3 {
    font-size: 1.35rem
}

.hero p {
    font-size: 1.18rem;
    max-width: 650px;
    color: #e5edf2
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px
}

.stats {
    margin-top: -55px;
    position: relative;
    z-index: 4
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow);
    overflow: hidden
}

.stat {
    padding: 28px;
    text-align: center;
    border-right: 1px solid var(--line)
}

.stat:last-child {
    border: 0
}

.stat strong {
    display: block;
    font-size: 1.8rem;
    color: var(--navy)
}

section {
    padding: 100px 0
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 42px
}

.section-head p {
    max-width: 590px;
    color: var(--muted)
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 26px rgba(13, 34, 54, .05)
}

.icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: var(--cream);
    display: grid;
    place-items: center;
    font-size: 25px;
    margin-bottom: 20px
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px
}

.image-panel {
    min-height: 520px;
    border-radius: 28px;
    background: url('./images/img2.jpg') center/cover;
    box-shadow: var(--shadow)
}

.checklist {
    display: grid;
    gap: 14px;
    margin: 26px 0
}

.check {
    display: flex;
    gap: 12px
}

.check b {
    color: var(--gold)
}

.light {
    background: var(--cream)
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.car {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 28px rgba(13, 34, 54, .08)
}

.car-img {
    height: 220px;
    background-size: cover;
    background-position: center
}

.car-body {
    padding: 24px
}

.price {
    font-size: 1.55rem;
    font-weight: 900;
    color: var(--navy)
}

.meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 18px 0;
    color: var(--muted);
    font-size: .9rem
}

.process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    counter-reset: step
}

.step {
    position: relative;
    padding: 32px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--line)
}

.step:before {
    counter-increment: step;
    content: '0' counter(step);
    font-size: 2.4rem;
    font-weight: 900;
    color: rgba(196, 154, 69, .35)
}

.cta {
    background: linear-gradient(135deg, var(--navy2), var(--navy));
    color: #fff;
    border-radius: 30px;
    padding: 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.input,
select,
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 12px;
    font: inherit;
    background: #fff
}

textarea {
    min-height: 130px
}

.full {
    grid-column: 1/-1
}

.page-hero {
    background: var(--navy2);
    color: #fff;
    padding: 95px 0 75px
}

.page-hero p {
    max-width: 700px;
    color: #d5e0e8
}

.footer {
    background: #091a29;
    color: #c9d5dd;
    padding: 70px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 35px
}

.footer img {
    width: 190px;
    margin-bottom: 20px
}

.footer h3 {
    color: #fff;
    font-size: 1rem
}

.footer a {
    display: block;
    margin: 9px 0
}

.copy {
    border-top: 1px solid #294052;
    margin-top: 45px;
    padding-top: 20px;
    font-size: .86rem
}

.wa {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25d366;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 26px;
    z-index: 20;
    box-shadow: var(--shadow)
}

@media(max-width:900px) {
    .topbar {
        display: none
    }

    .hamb {
        display: block
    }

    .menu {
        position: absolute;
        top: 88px;
        left: 0;
        right: 0;
        background: #fff;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 20px;
        border-bottom: 1px solid var(--line)
    }

    .menu.open {
        display: flex
    }

    .hero {
        min-height: 620px
    }

    .stats-grid,
    .cards,
    .car-grid,
    .process {
        grid-template-columns: 1fr 1fr
    }

    .split {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column
    }

    .cta {
        align-items: flex-start;
        flex-direction: column
    }
}

@media(max-width:600px) {
    .container {
        width: min(100% - 26px, 1180px)
    }

    .logo img {
        width: 150px
    }

    .nav {
        height: 76px
    }

    .menu {
        top: 76px
    }

    .hero-inner {
        padding: 70px 0
    }

    .stats {
        margin-top: 0
    }

    .stats-grid,
    .cards,
    .car-grid,
    .process,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .stat {
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    section {
        padding: 72px 0
    }

    .cta {
        padding: 32px 24px
    }

    .meta {
        grid-template-columns: 1fr 1fr
    }

    .image-panel {
        min-height: 360px
    }

    .full {
        grid-column: auto
    }
}

.form-grid label span {
    display: block;
    margin-bottom: 7px;
    font-weight: 700
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.privacy-check input {
    margin-top: 5px
}

.privacy-check span {
    margin: 0;
    font-weight: 400
}

.privacy-check a {
    text-decoration: underline;
    color: var(--navy)
}

.form-message {
    padding: 16px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 700
}

.form-message.success {
    background: #e8f7ed;
    color: #176c35;
    border: 1px solid #b9e3c6
}

.form-message.error {
    background: #fff0f0;
    color: #9b2424;
    border: 1px solid #efc2c2
}

.hp-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important
}