:root {
    --orange: #ff6000;
    --orange-d: #e35400;
    --blue: #0060a8;
    --blue-d: #004890;
    --navy: #183048;
    --ink: #1b2a3a;
    --muted: #5e6c7b;
    --cloud: #a8d8f0;
    --cloud-50: #eaf3fb;
    --bg: #ffffff;
    --bg-soft: #f6f9fc;
    --line: #e7edf3;
    --shadow-sm: 0 1px 2px rgba(24, 48, 72, .05), 0 1px 3px rgba(24, 48, 72, .06);
    --shadow-md: 0 10px 24px -10px rgba(24, 48, 72, .18), 0 4px 10px -6px rgba(24, 48, 72, .10);
    --shadow-lg: 0 26px 50px -18px rgba(24, 48, 72, .30), 0 10px 22px -12px rgba(24, 48, 72, .16);
    --r: 18px;
    --maxw: 1140px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -.01em;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    padding: .85em 1.5em;
    line-height: 1;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    white-space: nowrap;
}

.btn-orange {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 6px 16px -6px rgba(255, 96, 0, .55);
}

.btn-orange:hover {
    background: var(--orange-d);
    transform: translateY(-2px);
    box-shadow: 0 12px 22px -8px rgba(255, 96, 0, .55);
}

.btn-orange:active {
    transform: translateY(0);
}

.btn-ghost {
    background: transparent;
    color: var(--blue);
    border: 1.5px solid transparent;
    padding-left: .6em;
    padding-right: .6em;
}

.btn-ghost:hover {
    color: var(--blue-d);
}

.btn-outline {
    background: #fff;
    color: var(--navy);
    border: 1.5px solid var(--line);
}

.btn-outline:hover {
    border-color: var(--cloud);
    background: var(--cloud-50);
}

.btn-sm {
    padding: .62em 1.15em;
    font-size: .92rem;
}

/* ---------- Navbar ---------- */
header.nav {
    position: relative;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 168px;
}

.nav-side {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.logo {
    justify-self: center;
    align-self: center;
}

.logo img {
    height: 144px;
    width: auto;
}

.nav-right .btn {
    font-size: 1.18rem;
    padding: .9em 1.7em;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
    padding: 78px 0 84px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--cloud-50);
    color: var(--blue-d);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .5em 1em;
    border-radius: 999px;
}

.eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
}

h1.hero-title {
    font-size: clamp(2.5rem, 5.4vw, 4rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.025em;
    color: var(--navy);
    margin: 22px 0 0;
}

h1.hero-title .hl {
    color: var(--orange);
}

.hero-sub {
    font-size: 1.18rem;
    color: var(--muted);
    max-width: 30em;
    margin-top: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 34px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--navy);
    font-weight: 600;
    font-size: .95rem;
}

.trust-item svg {
    width: 19px;
    height: 19px;
    color: var(--blue);
    flex: none;
}

/* hero visual */
.hero-visual {
    position: relative;
}

.hero-panel {
    position: absolute;
    inset: -6% -8% -10% 6%;
    background: var(--cloud-50);
    border-radius: 36px;
    z-index: 0;
}

.hero-shot {
    position: relative;
    z-index: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-shot image-slot,
.hero-shot img {
    width: 100%;
    height: 440px;
    display: block;
    object-fit: cover;
}

.price-chip {
    position: absolute;
    z-index: 2;
    right: -14px;
    bottom: 34px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid var(--line);
}

.price-chip .ic {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.price-chip .ic svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.price-chip .lab {
    font-size: .78rem;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.2;
}

.price-chip .val {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
}

.price-chip .val span {
    color: var(--orange);
}

/* ---------- Catalog ---------- */
.catalog {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    padding: 72px 0 90px;
}

.cat-head {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 34px;
}

.cat-head .lead .kicker {
    color: var(--blue);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: .82rem;
}

.cat-head h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--navy);
    margin-top: 6px;
}

.cat-head p {
    color: var(--muted);
    margin-top: 8px;
    max-width: 34em;
}

.cat-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    padding: .7em 1.15em;
    flex: 1;
    min-width: 260px;
    max-width: 380px;
    transition: border-color .16s ease, box-shadow .16s ease;
}

.search:focus-within {
    border-color: var(--cloud);
    box-shadow: 0 0 0 4px var(--cloud-50);
}

.search svg {
    width: 19px;
    height: 19px;
    color: var(--muted);
    flex: none;
}

.search input {
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    color: var(--ink);
    width: 100%;
}

.search input::placeholder {
    color: var(--muted);
}

.search input::-webkit-search-cancel-button {
    cursor: pointer;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter {
    font-family: inherit;
    font-weight: 700;
    font-size: .96rem;
    color: var(--navy);
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    padding: .62em 1.25em;
    cursor: pointer;
    transition: all .16s ease;
}

.filter:hover {
    border-color: var(--cloud);
    background: var(--cloud-50);
}

.filter.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 8px 18px -8px rgba(0, 96, 168, .55);
}

.category {
    margin-top: 54px;
}

.category:first-of-type {
    margin-top: 8px;
}

.cat-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.cat-title .badge {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.cat-title .badge svg {
    width: 24px;
    height: 24px;
    color: var(--blue);
}

.cat-title h3 {
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--navy);
}

.cat-title .count {
    font-weight: 600;
    color: var(--muted);
    font-size: .95rem;
    background: #fff;
    border: 1px solid var(--line);
    padding: .2em .7em;
    border-radius: 999px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--cloud);
}

.card-media {
    position: relative;
    background: var(--cloud-50);
    aspect-ratio: 4/3;
    overflow: hidden;
}

.card-media image-slot,
.card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    background: rgba(255, 255, 255, .92);
    color: var(--blue-d);
    font-weight: 700;
    font-size: .74rem;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: .32em .7em;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.card-body {
    padding: 22px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-body h4 {
    font-size: 1.24rem;
    font-weight: 700;
    letter-spacing: -.01em;
    color: var(--navy);
}

.card-body .desc {
    color: var(--muted);
    font-size: 1rem;
    margin-top: 7px;
    line-height: 1.5;
}

.card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 16px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
    align-content: start;
}

.stat {
    background: var(--bg-soft);
    padding: 10px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
}

.stat .sv {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.01em;
    line-height: 1.1;
}

.stat .sl {
    font-size: .7rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .03em;
}

.card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
}

.price {
    line-height: 1.1;
}

.price .from {
    display: block;
    font-size: .74rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.price .amt {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--navy);
}

.price .amt b {
    color: var(--orange);
}

.price .amt .per {
    font-size: .85rem;
    font-weight: 600;
    color: var(--muted);
}

/* ---------- Footer ---------- */
footer.foot {
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 56px 0 30px;
}

.foot-grid {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.foot-brand {
    max-width: 34em;
}

.foot-brand img {
    height: 78px;
    margin-bottom: 14px;
}

.foot-brand p {
    color: var(--muted);
    max-width: 26em;
    font-size: .97rem;
}

.foot-col h5 {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 14px;
}

.foot-col a,
.foot-col .li {
    display: block;
    color: var(--muted);
    font-size: .97rem;
    padding: 5px 0;
    transition: color .15s ease;
}

.foot-col a:hover {
    color: var(--blue);
}

.foot-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .9rem;
}

/* ---------- Rental form ---------- */
.rent {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    padding: 64px 0 90px;
}

.rent-head {
    margin-bottom: 30px;
}

.rent-head .kicker {
    color: var(--blue);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: .82rem;
}

.rent-head h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--navy);
    margin-top: 6px;
}

.rent-head p {
    color: var(--muted);
    margin-top: 8px;
    max-width: 36em;
}

.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: var(--shadow-sm);
    padding: 34px;
    max-width: 860px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 22px;
}

.form-span {
    grid-column: 1 / -1;
}

.rent .form-group {
    margin: 0;
}

.rent .form-group label {
    display: block;
    font-weight: 700;
    font-size: .95rem;
    color: var(--navy);
    margin-bottom: 7px;
}

.rent .form-control {
    display: block;
    width: 100%;
    height: auto;
    font-family: inherit;
    font-size: 1rem;
    color: var(--ink);
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: .72em 1em;
    box-shadow: none;
    transition: border-color .16s ease, box-shadow .16s ease;
}

.rent .form-control:focus {
    outline: none;
    border-color: var(--cloud);
    box-shadow: 0 0 0 4px var(--cloud-50);
}

.rent .form-control::placeholder {
    color: var(--muted);
    opacity: .8;
}

.rent select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235e6c7b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 42px;
}

.rent textarea.form-control {
    resize: vertical;
    min-height: 90px;
}

.rent textarea#inputMessage {
    min-height: 130px;
}

.form-hint {
    display: block;
    color: var(--muted);
    font-size: .85rem;
    margin-top: 6px;
}

.choice-group {
    background: var(--bg-soft);
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: 16px 18px;
}

.choice-label {
    font-weight: 700;
    font-size: .95rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.choice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

.choice input[type=radio],
.choice input[type=checkbox] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--orange);
    cursor: pointer;
    flex: none;
}

.choice label {
    font-weight: 500;
    color: var(--ink);
    margin: 0;
    cursor: pointer;
}

.form-errors:not(:empty) {
    margin-top: 20px;
    background: #fff3ed;
    border: 1.5px solid var(--orange);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--orange-d);
    font-weight: 600;
}

.btn-submit {
    margin-top: 24px;
    font-size: 1.08rem;
    padding: .95em 2em;
}

.form-success {
    text-align: center;
    padding: 60px 34px;
}

.form-success .success-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--cloud-50);
    color: var(--blue);
    margin-bottom: 18px;
}

.form-success .success-ic svg {
    width: 32px;
    height: 32px;
}

.form-success h1 {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--navy);
}

.form-success p {
    color: var(--muted);
    margin-top: 10px;
    font-size: 1.1rem;
}

/* ---------- Responsive ---------- */
@media (max-width:980px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 44px;
        padding: 54px 0 64px;
    }

    .hero-visual {
        order: -1;
        max-width: 560px;
    }

    .hero-shot image-slot,
    .hero-shot img {
        height: 340px;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width:760px) {
    .nav-inner {
        height: 110px;
    }

    .logo img {
        height: 90px;
    }

    .nav-right .btn {
        font-size: 1rem;
        padding: .8em 1.4em;
    }
}

@media (max-width:560px) {
    .wrap {
        padding: 0 20px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 24px 20px;
    }

    .hero-shot image-slot,
    .hero-shot img {
        height: 280px;
    }

    .price-chip {
        right: 8px;
        bottom: 16px;
    }

    .cat-head {
        align-items: flex-start;
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }
}