﻿:root {
    --bg: #f5f3ef;
    --surface: #ffffff;
    --ink: #171717;
    --muted: #68645d;
    --line: #ded8ce;
    --accent: #f4b400;
    --accent-strong: #d99500;
    --green: #1f6f61;
    --dark: #191919;
    --dark-soft: #242424;
    --radius: 8px;
    --shadow: 0 18px 48px rgba(23, 23, 23, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
    overflow-x: hidden;
}

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

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

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 76px;
    padding: 14px clamp(18px, 4vw, 54px);
    color: var(--ink);
    transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 168px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #111;
    background: var(--accent);
    font-weight: 800;
}

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.05;
}

.brand small {
    color: currentColor;
    opacity: 0.72;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 1.45vw, 22px);
    flex: 1;
    font-size: clamp(13px, 0.95vw, 15px);
}

.site-nav a {
    opacity: 0.86;
}

.site-nav a:hover {
    opacity: 1;
}

.header-phone {
    white-space: nowrap;
    font-weight: 700;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
}

.hero {
    position: relative;
    min-height: 760px;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: 140px clamp(18px, 6vw, 82px) 56px;
    color: var(--ink);
    background: #eeeef0;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.respect-hero .hero-media {
    object-fit: contain;
    object-position: right bottom;
}

.respect-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(238, 238, 240, 0.98) 0%, rgba(238, 238, 240, 0.9) 35%, rgba(238, 238, 240, 0.36) 58%, rgba(238, 238, 240, 0) 78%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(100%, 560px);
    min-width: 0;
    max-width: 560px;
    overflow-wrap: break-word;
}

.hero-title-row {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    margin-bottom: 26px;
}

.hero-logo {
    width: 112px;
    height: 114px;
    object-fit: contain;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent-strong);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    width: 460px;
    max-width: 100%;
    margin-bottom: 0;
    font-size: 65px;
    line-height: 0.98;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.2;
}

.hero-lead {
    width: 460px;
    max-width: 100%;
    margin-bottom: 34px;
    color: #202020;
    font-size: 28px;
    font-weight: 300;
    line-height: 1.1;
}

.hero-actions,
.footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.respect-hero .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 800;
    cursor: pointer;
}

.btn-primary {
    color: #121212;
    background: var(--accent);
}

.btn-primary:hover {
    background: #ffc727;
}

.hero-request {
    width: 460px;
    min-width: 0;
    min-height: 48px;
    padding-inline: 28px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 300;
    font-variant: normal;
    letter-spacing: 0;
}

.hero-phone-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 7px 23px 10px;
    border-radius: 999px;
    color: #fff;
    background: #020202;
    font-size: clamp(40px, 4vw, 58px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.btn-secondary {
    color: var(--ink);
    border-color: rgba(0, 0, 0, 0.28);
    background: rgba(255, 255, 255, 0.72);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.94);
}

.hero-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    width: min(100%, 780px);
    margin-top: 72px;
    background: rgba(255, 255, 255, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.hero-panel div {
    padding: 22px;
    background: rgba(0, 0, 0, 0.28);
}

.hero-panel strong,
.hero-panel span {
    display: block;
}

.hero-panel strong {
    font-size: 34px;
    line-height: 1;
}

.hero-panel span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
}

.section {
    scroll-margin-top: 84px;
    padding: 58px clamp(18px, 6vw, 82px);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.car-grid,
.intro-grid,
.tariff-grid,
.process-grid {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.car-grid,
.intro-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cars-section {
    background:
        linear-gradient(180deg, #eeeef0 0%, #f5f3ef 24%, #f8f4ec 100%);
}

.car-card {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 520px;
    min-width: 0;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(23, 23, 23, 0.1);
    border-radius: 20px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        conic-gradient(from var(--angle, 0deg), rgba(244, 180, 0, 0), rgba(244, 180, 0, 0.95), rgba(31, 111, 97, 0.7), rgba(244, 180, 0, 0)) border-box;
    box-shadow: 0 18px 44px rgba(23, 23, 23, 0.08);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

@property --angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

@keyframes border-spin {
    to {
        --angle: 360deg;
    }
}

.car-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: 19px;
    background:
        radial-gradient(circle at 100% 0%, rgba(244, 180, 0, 0.16), rgba(244, 180, 0, 0.07) 10%, rgba(255, 255, 255, 0) 24%),
        radial-gradient(circle at 0% 100%, rgba(31, 111, 97, 0.1), rgba(31, 111, 97, 0.045) 10%, rgba(255, 255, 255, 0) 24%),
        #fff;
}

.car-card:hover {
    animation: border-spin 2.4s linear infinite;
    transform: translateY(-8px);
    border-color: rgba(244, 180, 0, 0.62);
    box-shadow: 0 28px 70px rgba(23, 23, 23, 0.16);
}

.car-card-head h3 {
    margin-bottom: 2px;
    font-size: 34px;
}

.car-card-head p {
    margin: 0;
    color: var(--muted);
    font-size: 20px;
    font-weight: 700;
}

.car-image {
    display: grid;
    place-items: center;
    min-height: 300px;
    min-width: 0;
    margin: 18px -8px 10px;
}

.car-image img {
    width: 100%;
    min-width: 0;
    max-height: 280px;
    object-fit: contain;
    transition: transform 260ms ease;
}

.car-card:hover .car-image img {
    transform: translateY(-6px) scale(1.03);
}

.car-spec {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    gap: 10px;
    color: var(--ink);
    font-size: 17px;
    min-width: 0;
}

.car-spec span {
    min-width: 0;
    font-size: 22px;
    font-weight: 800;
}

.car-spec i {
    min-width: 18px;
    height: 1px;
    margin-bottom: 6px;
    background-image: linear-gradient(to right, rgba(23, 23, 23, 0.32) 35%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 8px 1px;
    background-repeat: repeat-x;
}

.car-spec strong {
    white-space: nowrap;
    font-size: 22px;
}

.car-cta {
    width: 100%;
    margin-top: 22px;
}

.compare-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 12%, rgba(244, 180, 0, 0.1), rgba(244, 180, 0, 0) 28%),
        linear-gradient(180deg, #ffffff 0%, #f6f4ef 100%);
}

.compare-section::before {
    content: "";
    position: absolute;
    inset: 56px auto auto 50%;
    width: min(820px, 70vw);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(244, 180, 0, 0), rgba(244, 180, 0, 0.75), rgba(31, 111, 97, 0.55), rgba(244, 180, 0, 0));
    animation: compare-shine 4.2s ease-in-out infinite;
}

.compare-section .section-heading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.compare-section .section-heading h2 {
    font-size: clamp(46px, 7vw, 92px);
}

@keyframes compare-shine {
    0%,
    100% {
        opacity: 0.22;
        filter: blur(0);
    }

    50% {
        opacity: 0.78;
        filter: blur(1px);
    }
}

.compare-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    width: min(100%, 1120px);
    max-width: 1120px;
    margin-inline: auto;
    padding: 18px;
    border: 1px solid rgba(23, 23, 23, 0.08);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 40px rgba(23, 23, 23, 0.07);
    backdrop-filter: blur(16px);
}

.compare-grid::before {
    content: "";
    position: absolute;
    inset: 18px 50% 18px auto;
    width: 1px;
    background: linear-gradient(180deg, rgba(23, 23, 23, 0), rgba(23, 23, 23, 0.12), rgba(23, 23, 23, 0));
}

.compare-head,
.compare-cell {
    border: 1px solid transparent;
}

.compare-head {
    position: sticky;
    top: 86px;
    z-index: 2;
    padding: 24px 26px;
    border-radius: 22px;
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.compare-cell {
    display: grid;
    position: relative;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    min-height: 92px;
    padding: 20px 24px;
    overflow: hidden;
    border-radius: 18px;
    font-size: 19px;
    line-height: 1.3;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.compare-cell::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 -40%;
    width: 32%;
    transform: skewX(-18deg);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
    opacity: 0;
    pointer-events: none;
}

.compare-cell:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(23, 23, 23, 0.08);
}

.compare-cell:hover::after {
    animation: row-glint 900ms ease forwards;
}

@keyframes row-glint {
    from {
        left: -40%;
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    to {
        left: 108%;
        opacity: 0;
    }
}

.compare-cell p {
    margin: 0;
}

.compare-grid .compare-cell:nth-last-child(2) {
    border-radius: 18px 18px 18px 24px;
}

.compare-grid .compare-cell:last-child {
    border-radius: 18px 18px 24px 18px;
}

.compare-us {
    border-color: rgba(31, 111, 97, 0.16);
    background: linear-gradient(135deg, rgba(237, 248, 243, 0.94), rgba(255, 255, 255, 0.78));
}

.compare-them {
    border-color: rgba(177, 50, 50, 0.14);
    background: linear-gradient(135deg, rgba(255, 241, 241, 0.94), rgba(255, 255, 255, 0.78));
}

.compare-head.compare-us {
    background: linear-gradient(135deg, #145d4e, #1f8a6d);
}

.compare-head.compare-them {
    background: linear-gradient(135deg, #8e2f2b, #d54a40);
}

.compare-icon {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    font-size: 23px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 10px 20px rgba(23, 23, 23, 0.12);
}

.compare-check {
    background: #1f8a6d;
}

.compare-cross {
    background: #d54a40;
}

.compare-section {
    padding-top: 52px;
    padding-bottom: 52px;
    background: linear-gradient(180deg, #f8f4ec 0%, #fbf7ef 54%, #f8f4ec 100%);
}

.compare-section + .compare-section {
    padding-top: 28px;
    background: #f8f4ec;
}

.compare-section::before {
    display: none;
}

.compare-panel {
    width: min(100%, 1160px);
    margin-inline: auto;
    padding: clamp(42px, 6vw, 70px) clamp(34px, 6vw, 72px);
    border: 1px solid rgba(196, 158, 96, 0.24);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 252, 247, 0.82)),
        radial-gradient(circle at 0% 0%, rgba(244, 180, 0, 0.08), rgba(255, 255, 255, 0) 32%);
    box-shadow: 0 18px 38px rgba(48, 39, 28, 0.07);
    overflow: hidden;
}

.compare-panel .section-heading {
    max-width: none;
    margin-bottom: 34px;
    text-align: center;
}

.compare-panel .section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(38px, 4.4vw, 56px);
    line-height: 1.08;
}

.compare-grid {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding: 0;
    gap: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.compare-grid::before {
    inset: 0 50% 0 auto;
    background: linear-gradient(180deg, rgba(196, 158, 96, 0), rgba(196, 158, 96, 0.28), rgba(196, 158, 96, 0));
}

.compare-head {
    position: static;
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 112px;
    padding: 0 26px 22px;
    border: 0;
    border-bottom: 1px solid rgba(48, 39, 28, 0.12);
    border-radius: 0;
    color: var(--ink);
    background: transparent;
    box-shadow: none;
    min-width: 0;
}

.compare-head.compare-us,
.compare-head.compare-them {
    background: transparent;
}

.compare-head-icon {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
}

.compare-us .compare-head-icon {
    color: #efa900;
    background: rgba(244, 180, 0, 0.12);
}

.compare-them .compare-head-icon {
    color: #5f5b55;
    background: rgba(23, 23, 23, 0.06);
}

.compare-us .compare-logo-icon {
    background: transparent;
}

.compare-logo-icon img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: contain;
}

.compare-car-icon svg {
    display: block;
    width: 28px;
    height: 28px;
}

.compare-head strong,
.compare-head small {
    display: block;
}

.compare-head strong {
    font-size: 24px;
    line-height: 1.1;
}

.compare-head small {
    margin-top: 8px;
    color: #7c756b;
    font-size: 13px;
    font-weight: 400;
}

.compare-cell {
    grid-template-columns: 44px minmax(0, 1fr);
    min-width: 0;
    min-height: 58px;
    padding: 16px 26px;
    border: 0;
    border-bottom: 1px solid rgba(48, 39, 28, 0.11);
    border-radius: 0;
    background: transparent;
    font-size: 14px;
    box-shadow: none;
    transition: background 180ms ease;
}

.compare-cell p {
    overflow-wrap: anywhere;
}

.compare-cell:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: none;
}

.compare-cell::after {
    display: none;
}

.compare-grid .compare-cell:nth-last-child(2),
.compare-grid .compare-cell:last-child {
    border-bottom: 0;
    border-radius: 0;
}

.compare-us,
.compare-them {
    border-color: rgba(48, 39, 28, 0.11);
    background: transparent;
}

.compare-icon {
    width: 24px;
    height: 24px;
    color: #efa900;
    background: transparent;
    font-size: 22px;
    box-shadow: none;
}

.compare-cross {
    color: #77716a;
    background: transparent;
}

.compare-check {
    color: #efa900;
    background: transparent;
}

.calculator-section {
    padding-top: 54px;
    padding-bottom: 58px;
    background: linear-gradient(180deg, #f8f4ec 0%, #fbf7ef 55%, #f8f4ec 100%);
}

.calculator-panel {
    width: min(100%, 1160px);
    margin-inline: auto;
    padding: clamp(42px, 6vw, 70px) clamp(28px, 5vw, 64px);
    border: 1px solid rgba(196, 158, 96, 0.24);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 252, 247, 0.84)),
        radial-gradient(circle at 100% 0%, rgba(244, 180, 0, 0.1), rgba(255, 255, 255, 0) 34%);
    box-shadow: 0 18px 38px rgba(48, 39, 28, 0.07);
    overflow: hidden;
}

.calculator-panel .section-heading {
    max-width: none;
    margin-bottom: 42px;
    text-align: center;
}

.calculator-panel .section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(38px, 4.4vw, 56px);
    line-height: 1.08;
}

.income-control {
    max-width: 880px;
    margin: 0 auto 34px;
}

.income-slider {
    width: 100%;
    height: 36px;
    margin: 0;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

.income-slider::-webkit-slider-runnable-track {
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(244, 180, 0, 0.9), rgba(23, 23, 23, 0.14));
}

.income-slider::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
    margin-top: -10px;
    appearance: none;
    border: 5px solid #fff;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 10px 24px rgba(48, 39, 28, 0.24);
}

.income-slider::-moz-range-track {
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(244, 180, 0, 0.9), rgba(23, 23, 23, 0.14));
}

.income-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border: 5px solid #fff;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 10px 24px rgba(48, 39, 28, 0.24);
}

.income-ticks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 6px;
    color: #5f5b55;
    font-size: 14px;
    font-weight: 800;
}

.income-ticks span {
    position: relative;
    text-align: center;
}

.income-ticks span:first-child {
    text-align: left;
}

.income-ticks span:last-child {
    text-align: right;
}

.calculator-lead {
    max-width: 780px;
    margin: 0 auto 34px;
    color: #30271c;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.25;
    text-align: center;
}

.calculator-lead strong {
    color: var(--accent-strong);
    white-space: nowrap;
}

.income-result-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.income-card {
    position: relative;
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(196, 158, 96, 0.34);
    border-radius: 20px;
    background:
        radial-gradient(circle at 100% 0%, rgba(244, 180, 0, 0.14), rgba(244, 180, 0, 0) 42%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 252, 246, 0.9));
    box-shadow: 0 12px 26px rgba(48, 39, 28, 0.06);
    overflow: hidden;
}

.income-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.72) 42%, transparent 62%);
    opacity: 0;
    transform: translateX(-70%);
    transition: opacity 180ms ease, transform 620ms ease;
}

.income-card:hover::before {
    opacity: 1;
    transform: translateX(70%);
}

.income-card-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.income-card-kicker {
    display: block;
    margin-bottom: 6px;
    color: var(--accent-strong);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.income-card h3 {
    margin-bottom: 0;
    font-size: 30px;
    line-height: 1.05;
}

.income-card-head img {
    width: 104px;
    height: 72px;
    object-fit: contain;
}

.income-card-body {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.income-metric {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(48, 39, 28, 0.1);
}

.income-metric span {
    color: #70685f;
    font-size: 14px;
}

.income-metric strong {
    color: var(--ink);
    font-size: 24px;
    line-height: 1;
    white-space: nowrap;
}

.income-metric strong span {
    color: inherit;
    font-size: inherit;
}

.income-cta {
    position: relative;
    z-index: 1;
    width: 100%;
}

.choice-cta {
    position: relative;
    min-height: 440px;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: 72px clamp(18px, 6vw, 82px);
    color: #fff;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.52) 42%, rgba(0, 0, 0, 0.12) 100%),
        var(--choice-bg, url("/assets/img/chto_zakazat.jpg")) center / cover fixed;
}

.choice-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 42%, rgba(244, 180, 0, 0.22), rgba(244, 180, 0, 0) 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.18));
}

.choice-cta-content {
    position: relative;
    z-index: 1;
    width: min(100%, 1160px);
    margin-inline: auto;
    transform: none;
    min-width: 0;
}

.choice-cta .eyebrow {
    color: var(--accent);
}

.choice-cta h2 {
    max-width: 680px;
    margin-bottom: 20px;
    color: #fff;
    font-size: clamp(42px, 5.4vw, 76px);
    line-height: 1;
}

.choice-cta p:not(.eyebrow) {
    max-width: 560px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.25;
}

.choice-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.choice-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 10px;
    color: #fff;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(10px);
}

.choice-phone:hover {
    background: rgba(0, 0, 0, 0.58);
}

.conditions-section {
    padding-top: 54px;
    padding-bottom: 58px;
    background: linear-gradient(180deg, #f8f4ec 0%, #fbf7ef 55%, #f8f4ec 100%);
}

.conditions-panel {
    width: min(100%, 1160px);
    margin-inline: auto;
    padding: clamp(42px, 6vw, 70px) clamp(28px, 5vw, 64px);
    border: 1px solid rgba(196, 158, 96, 0.24);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 252, 247, 0.84)),
        radial-gradient(circle at 0% 0%, rgba(244, 180, 0, 0.1), rgba(255, 255, 255, 0) 34%);
    box-shadow: 0 18px 38px rgba(48, 39, 28, 0.07);
    overflow: hidden;
}

.conditions-panel .section-heading {
    max-width: none;
    margin-bottom: 36px;
    text-align: center;
}

.conditions-panel .section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(38px, 4.4vw, 56px);
    line-height: 1.08;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.condition-card {
    position: relative;
    min-height: 150px;
    padding: 24px;
    border: 1px solid rgba(196, 158, 96, 0.24);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0%, rgba(244, 180, 0, 0.12), rgba(244, 180, 0, 0) 42%),
        rgba(255, 255, 255, 0.58);
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.condition-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.72) 44%, transparent 66%);
    opacity: 0;
    transform: translateX(-80%);
    transition: opacity 180ms ease, transform 650ms ease;
}

.condition-card:hover {
    transform: translateY(-3px);
    border-color: rgba(244, 180, 0, 0.42);
    box-shadow: 0 18px 42px rgba(48, 39, 28, 0.09);
}

.condition-card:hover::after {
    opacity: 1;
    transform: translateX(80%);
}

.condition-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    border-radius: 50%;
    color: #111;
    background: var(--accent);
    font-size: 13px;
    font-weight: 900;
}

.condition-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #231f1a;
    font-size: 18px;
    line-height: 1.34;
}

.condition-card-wide {
    grid-column: span 3;
    min-height: 120px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
}

.condition-card-wide span {
    margin-bottom: 0;
}

.gifts-section {
    padding-top: 54px;
    padding-bottom: 58px;
    background: linear-gradient(180deg, #f8f4ec 0%, #fbf7ef 55%, #f8f4ec 100%);
}

.conditions-section + .gifts-section {
    padding-top: 30px;
}

.gifts-panel {
    width: min(100%, 1160px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(28px, 4vw, 52px);
    align-items: stretch;
    padding: clamp(32px, 5vw, 58px);
    border: 1px solid rgba(196, 158, 96, 0.24);
    border-radius: 18px;
    background:
        radial-gradient(circle at 0% 0%, rgba(244, 180, 0, 0.13), rgba(244, 180, 0, 0) 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 252, 247, 0.84));
    box-shadow: 0 18px 38px rgba(48, 39, 28, 0.07);
    overflow: hidden;
}

.gifts-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: 26px 4px;
}

.gifts-copy h2 {
    margin-bottom: 22px;
    font-size: clamp(40px, 4.8vw, 62px);
    line-height: 1.03;
}

.gifts-copy p:not(.eyebrow) {
    max-width: 420px;
    margin-bottom: 0;
    color: #4f4941;
    font-size: clamp(19px, 2vw, 26px);
    line-height: 1.28;
}

.gifts-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(112px, 1fr);
    gap: 10px;
}

.gift-photo {
    position: relative;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: #eee9dd;
    box-shadow: 0 14px 30px rgba(48, 39, 28, 0.08);
    overflow: hidden;
    cursor: pointer;
}

.gift-photo::after {
    content: "Открыть";
    position: absolute;
    inset: auto 10px 10px auto;
    padding: 7px 10px;
    border-radius: 999px;
    color: #111;
    background: rgba(244, 180, 0, 0.92);
    font-size: 12px;
    font-weight: 900;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.gift-photo:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.gift-photo img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 260ms ease, filter 260ms ease;
}

.gift-photo:hover img {
    transform: scale(1.04);
    filter: saturate(1.06) contrast(1.03);
}

.gift-photo-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.gallery-modal.is-open {
    display: flex;
}

.gallery-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.86);
    backdrop-filter: blur(8px);
}

.gallery-dialog {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: min(100%, 900px);
    color: #fff;
}

.gallery-dialog img {
    width: min(86vw, 760px);
    max-height: 82vh;
    border-radius: 18px;
    object-fit: contain;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.48);
}

.gallery-close,
.gallery-nav {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, 0.46);
    cursor: pointer;
}

.gallery-close {
    top: -14px;
    right: 48px;
    width: 44px;
    height: 44px;
    font-size: 30px;
}

.gallery-nav {
    top: 50%;
    width: 54px;
    height: 54px;
    font-size: 42px;
    transform: translateY(-50%);
}

.gallery-prev {
    left: 0;
}

.gallery-next {
    right: 0;
}

.gallery-dialog p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.builder-section {
    padding-top: 34px;
    padding-bottom: 34px;
    background: linear-gradient(180deg, #f8f4ec 0%, #fbf7ef 55%, #f8f4ec 100%);
}

.builder-panel {
    width: min(100%, 1160px);
    margin-inline: auto;
    padding: clamp(38px, 5vw, 62px) clamp(24px, 5vw, 58px);
    border: 1px solid rgba(196, 158, 96, 0.24);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0%, rgba(244, 180, 0, 0.1), rgba(244, 180, 0, 0) 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 252, 247, 0.86));
    box-shadow: 0 18px 38px rgba(48, 39, 28, 0.07);
    overflow: hidden;
}

.builder-section-heading {
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: 34px;
    text-align: center;
}

.builder-section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(36px, 4.4vw, 56px);
    line-height: 1.08;
}

.builder-intro {
    margin: 18px auto 0;
    max-width: 660px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.55;
}

.builder-rows {
    display: grid;
    gap: 22px;
}

.builder-row {
    display: grid;
    grid-template-columns: repeat(var(--builder-columns), minmax(0, 1fr));
    gap: 18px;
}

.builder-column {
    display: grid;
    align-content: start;
    gap: 16px;
    min-width: 0;
}

.builder-text-block {
    color: #242424;
    font-size: 18px;
    line-height: 1.58;
}

.builder-text-block > *:first-child {
    margin-top: 0;
}

.builder-text-block > *:last-child {
    margin-bottom: 0;
}

.builder-text-block h2,
.builder-text-block h3,
.builder-text-block h4 {
    line-height: 1.12;
}

.builder-text-block a {
    color: var(--accent-strong);
    font-weight: 800;
}

.builder-image-block {
    display: flex;
    margin: 0;
}

.builder-image-block.is-left {
    justify-content: flex-start;
}

.builder-image-block.is-center {
    justify-content: center;
}

.builder-image-block.is-right {
    justify-content: flex-end;
}

.builder-image-block img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 18px 38px rgba(48, 39, 28, 0.11);
}

.builder-code-block {
    min-width: 0;
}

.faq-section {
    padding-top: 34px;
    padding-bottom: 58px;
    background: linear-gradient(180deg, #f8f4ec 0%, #fbf7ef 55%, #f8f4ec 100%);
}

.faq-panel {
    width: min(100%, 1160px);
    margin-inline: auto;
    padding: clamp(42px, 6vw, 70px) clamp(28px, 5vw, 64px);
    border: 1px solid rgba(196, 158, 96, 0.24);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0%, rgba(244, 180, 0, 0.12), rgba(244, 180, 0, 0) 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 252, 247, 0.84));
    box-shadow: 0 18px 38px rgba(48, 39, 28, 0.07);
    overflow: hidden;
}

.faq-panel .section-heading {
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: 36px;
    text-align: center;
}

.faq-panel .section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(38px, 4.4vw, 56px);
    line-height: 1.08;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    position: relative;
    border: 1px solid rgba(196, 158, 96, 0.24);
    border-radius: 16px;
    background:
        radial-gradient(circle at 100% 0%, rgba(244, 180, 0, 0.1), rgba(244, 180, 0, 0) 42%),
        rgba(255, 255, 255, 0.62);
    overflow: hidden;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-item::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.74) 44%, transparent 68%);
    opacity: 0;
    transform: translateX(-82%);
    transition: opacity 180ms ease, transform 720ms ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(244, 180, 0, 0.44);
    box-shadow: 0 16px 34px rgba(48, 39, 28, 0.08);
}

.faq-item:hover::after {
    opacity: 1;
    transform: translateX(82%);
}

.faq-question {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px;
    align-items: center;
    gap: 18px;
    width: 100%;
    padding: 22px 24px;
    border: 0;
    color: var(--ink);
    background: transparent;
    font: inherit;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.25;
    text-align: left;
    cursor: pointer;
}

.faq-question i {
    position: relative;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent);
}

.faq-question i::before,
.faq-question i::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 2px;
    border-radius: 99px;
    background: #111;
    transition: transform 220ms ease;
}

.faq-question i::after {
    transform: rotate(90deg);
}

.faq-item.is-open .faq-question i::after {
    transform: rotate(0deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 260ms ease;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
    padding: 0 24px;
    color: #4f4941;
    font-size: 17px;
    line-height: 1.5;
}

.faq-item.is-open .faq-answer-inner {
    padding-bottom: 22px;
}

.feature-card,
.tariff-card,
.process-step,
.lead-form {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.feature-card {
    padding: 30px;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 30px;
    border-radius: 50%;
    color: var(--ink);
    background: var(--accent);
    font-weight: 800;
}

.feature-card p,
.split-copy p,
.tariff-card p,
.process-step p,
.contact-copy p,
.site-footer p {
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    align-items: center;
    gap: clamp(36px, 6vw, 84px);
    background: #fff;
}

.split-copy {
    max-width: 560px;
}

.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--green);
}

.image-stack {
    position: relative;
    min-height: 520px;
}

.image-main,
.image-card {
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.image-main {
    width: 86%;
    height: 520px;
}

.image-card {
    position: absolute;
    right: 0;
    bottom: -34px;
    width: 48%;
    height: 260px;
    border: 10px solid #fff;
}

.dark-band {
    color: #fff;
    background: var(--dark);
}

.dark-band .section-heading .eyebrow {
    color: var(--accent);
}

.dark-band .section-heading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.tariff-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tariff-card {
    padding: 30px;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.13);
    background: var(--dark-soft);
}

.tariff-card.is-accent {
    color: var(--ink);
    background: var(--accent);
}

.price {
    margin-bottom: 18px;
    color: inherit;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.tariff-card p {
    color: rgba(255, 255, 255, 0.72);
}

.tariff-card.is-accent p {
    color: rgba(0, 0, 0, 0.68);
}

.tariff-card a {
    display: inline-block;
    margin-top: 18px;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.process {
    background: #ebe6dd;
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
    min-height: 230px;
    padding: 26px;
}

.process-step span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 34px;
    border-radius: 50%;
    color: #fff;
    background: var(--green);
    font-weight: 800;
}

.contact-section {
    padding-top: 54px;
    padding-bottom: 58px;
    background: linear-gradient(180deg, #f8f4ec 0%, #fbf7ef 55%, #f8f4ec 100%);
}

.contact-panel {
    width: min(100%, 1160px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(22px, 4vw, 42px);
    padding: clamp(34px, 5vw, 58px);
    border: 1px solid rgba(196, 158, 96, 0.24);
    border-radius: 18px;
    background:
        radial-gradient(circle at 0% 0%, rgba(244, 180, 0, 0.13), rgba(244, 180, 0, 0) 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 252, 247, 0.84));
    box-shadow: 0 18px 38px rgba(48, 39, 28, 0.07);
    overflow: hidden;
}

.contact-copy {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-width: 0;
}

.contact-copy .eyebrow {
    margin-bottom: 14px;
    color: var(--ink);
    font-size: 55px;
    font-weight: 900;
    line-height: 1;
    text-transform: none;
    transform: translateY(-8px);
}

.contact-copy p:not(.eyebrow) {
    max-width: 430px;
    margin-bottom: 26px;
    color: #4f4941;
    font-size: clamp(18px, 1.8vw, 23px);
    line-height: 1.32;
}

.contact-copy .btn {
    margin-top: auto;
    width: min(100%, 430px);
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact-card {
    position: relative;
    min-width: 0;
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 22px;
    border: 1px solid rgba(196, 158, 96, 0.24);
    border-radius: 16px;
    color: var(--ink);
    background:
        radial-gradient(circle at 100% 0%, rgba(244, 180, 0, 0.12), rgba(244, 180, 0, 0) 42%),
        rgba(255, 255, 255, 0.58);
    overflow: hidden;
}

.contact-card span {
    margin-bottom: 8px;
    color: var(--accent-strong);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-card strong {
    font-size: 22px;
    line-height: 1.16;
    overflow-wrap: anywhere;
}

.contact-schedule {
    display: grid;
    gap: 9px;
}

.contact-schedule strong {
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.18;
}

.contact-schedule strong + strong {
    padding-top: 9px;
    border-top: 1px solid rgba(196, 158, 96, 0.22);
}

.contact-map {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 400px;
    border: 1px solid rgba(196, 158, 96, 0.24);
    border-radius: 16px;
    background: #ece7dc;
    box-shadow: 0 12px 26px rgba(48, 39, 28, 0.06);
    overflow: hidden;
}

.contact-map > ymaps,
.contact-map iframe {
    display: block;
    width: 100% !important;
    border: 0;
}

.lead-form {
    display: grid;
    gap: 16px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.form-honeypot {
    position: absolute !important;
    left: -9999px;
    display: none !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0;
    pointer-events: none;
}

.lead-form label {
    display: grid;
    gap: 8px;
    color: #3d3934;
    font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: #faf9f6;
    font: inherit;
}

.lead-form textarea {
    resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: 3px solid rgba(244, 180, 0, 0.28);
    border-color: var(--accent-strong);
}

.form-status {
    min-height: 24px;
    margin: 0;
    color: var(--green);
    font-weight: 800;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.modal.is-open {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
}

.modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 470px);
    max-height: calc(100vh - 36px);
    overflow: auto;
    padding: 30px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.modal-dialog h2 {
    margin-bottom: 10px;
    font-size: 34px;
}

.modal-dialog p {
    color: var(--muted);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    background: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.modal-form {
    padding: 0;
    border: 0;
    box-shadow: none;
}

body.modal-open {
    overflow: hidden;
}

.site-footer {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 34px clamp(18px, 6vw, 82px);
    color: #fff;
    background: #101010;
}

.site-footer p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.62);
}

.footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
}

.copyright {
    white-space: nowrap;
}

@media (max-width: 1040px) {
    .site-nav {
        gap: 14px;
        font-size: 14px;
    }

    .header-phone {
        display: none;
    }

    .car-grid,
    .intro-grid,
    .tariff-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .image-main {
        width: 82%;
    }
}

@media (max-width: 760px) {
    .site-header {
        min-height: 68px;
        padding: 12px 18px;
    }

    .site-nav {
        position: fixed;
        top: 68px;
        left: 12px;
        right: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        color: var(--ink);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 13px 10px;
        border-radius: 6px;
    }

    .site-nav a:hover {
        background: #f5f3ef;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .hero {
        min-height: 700px;
        align-items: start;
        padding: 112px 24px 34px;
        background: #eeeef0;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero-title-row {
        grid-template-columns: 94px minmax(0, 1fr);
        gap: 18px;
        margin-bottom: 26px;
    }

    .hero-logo {
        width: 94px;
        height: 96px;
    }

    h1 {
        width: 230px;
        max-width: 100%;
        margin-bottom: 10px;
        font-size: clamp(37px, 9.6vw, 42px);
        line-height: 1;
        overflow-wrap: anywhere;
    }

    .hero-lead {
        width: min(100%, 380px);
        max-width: 100%;
        margin-bottom: 24px;
        font-size: clamp(18px, 5.3vw, 21px);
        white-space: nowrap;
    }

    .respect-hero .hero-actions {
        align-items: stretch;
        flex-direction: column;
        width: min(100%, 354px);
        gap: 18px;
    }

    .hero-request {
        min-width: 0;
        width: 100%;
        min-height: 60px;
        font-size: clamp(24px, 6.5vw, 28px);
    }

    .hero-phone-pill {
        width: 100%;
        min-height: 64px;
        padding: 6px 12px 9px;
        border: 2px solid #020202;
        background: #020202;
        font-size: clamp(29px, 8vw, 34px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
    }

    .respect-hero::before {
        background: linear-gradient(180deg, rgba(238, 238, 240, 1) 0%, rgba(238, 238, 240, 1) 58%, rgba(238, 238, 240, 0) 72%);
    }

    .respect-hero .hero-media {
        inset: auto 0 -26px auto;
        width: calc(100vw + 150px);
        height: auto;
        object-fit: contain;
        object-position: right bottom;
        transform: none;
    }

    .hero-panel {
        grid-template-columns: 1fr;
        margin-top: 48px;
    }

    .section {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .image-stack {
        min-height: auto;
    }

    .image-main,
    .image-card {
        position: static;
        width: 100%;
        height: 300px;
        border: 0;
        margin-top: 14px;
    }

    .process-grid,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .compare-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 8px;
        padding: 8px;
        border-radius: 22px;
    }

    .compare-head {
        position: static;
        padding: 15px 11px;
        border-radius: 16px;
        font-size: 19px;
    }

    .compare-cell {
        grid-template-columns: 26px minmax(0, 1fr);
        gap: 8px;
        min-height: 112px;
        padding: 14px 10px;
        font-size: 14px;
        line-height: 1.25;
        border-radius: 16px;
    }

    .compare-icon {
        width: 26px;
        height: 26px;
        font-size: 17px;
    }

    .car-card {
        width: clamp(280px, calc(100vw - 70px), 322px);
        max-width: 100%;
        min-height: auto;
        margin-inline: auto;
        padding: 24px 18px;
    }

    .car-grid {
        width: 100%;
        max-width: 100%;
        justify-items: center;
    }

    .car-card-head h3 {
        font-size: 32px;
    }

    .car-card-head p {
        font-size: 18px;
    }

    .car-image {
        min-height: 220px;
        margin: 14px 0 12px;
        overflow: hidden;
    }

    .car-image img {
        width: min(100%, 280px);
        max-height: 220px;
    }

    .car-spec {
        display: grid;
        grid-template-columns: minmax(0, auto) minmax(10px, 1fr) auto;
        gap: 3px;
        font-size: 13px;
        width: 100%;
        padding-right: 46px;
        box-sizing: border-box;
    }

    .car-spec span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .car-spec i {
        min-width: 10px;
    }

    .car-spec strong {
        min-width: max-content;
        font-size: 13px;
    }

    .car-spec span {
        font-size: 13px;
    }

    .copyright {
        white-space: normal;
    }
}

@media (max-width: 420px) {
    .brand {
        min-width: 0;
    }

    .brand small {
        display: none;
    }

    .btn {
        width: 100%;
    }

    .hero {
        padding-left: 22px;
        padding-right: 22px;
    }

    .modal-dialog {
        padding: 26px 18px;
    }
}

@media (max-width: 760px) {
    .compare-section {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .calculator-section {
        padding-top: 38px;
        padding-bottom: 44px;
    }

    .calculator-panel {
        padding: 30px 18px;
        border-radius: 16px;
    }

    .calculator-panel .section-heading {
        margin-bottom: 30px;
    }

    .calculator-panel .section-heading h2 {
        font-size: clamp(30px, 8vw, 36px);
    }

    .income-control {
        max-width: calc(100% - 20px);
        margin-bottom: 26px;
    }

    .income-ticks {
        gap: 6px;
        font-size: 11px;
    }

    .calculator-lead {
        margin-bottom: 24px;
        font-size: 18px;
        text-align: left;
    }

    .income-result-grid {
        grid-template-columns: 1fr;
    }

    .income-card {
        padding: 20px;
    }

    .income-card-head {
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 10px;
    }

    .income-card h3 {
        font-size: 27px;
    }

    .income-card-head img {
        width: 100px;
        height: 68px;
    }

    .choice-cta {
        min-height: 450px;
        padding: 54px 24px;
        width: 100%;
        max-width: 100vw;
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.48) 100%),
            var(--choice-bg, url("/assets/img/chto_zakazat.jpg")) center / cover no-repeat;
    }

    .choice-cta-content {
        width: min(100%, 340px);
        max-width: 340px;
    }

    .choice-cta h2 {
        font-size: clamp(34px, 10vw, 46px);
        overflow-wrap: break-word;
    }

    .choice-cta p:not(.eyebrow) {
        font-size: 19px;
        overflow-wrap: break-word;
    }

    .choice-actions,
    .choice-actions .btn,
    .choice-phone {
        min-width: 0;
        width: min(100%, 340px);
        max-width: 340px;
    }

    .conditions-section {
        padding-top: 38px;
        padding-bottom: 44px;
    }

    .conditions-panel {
        padding: 30px 18px;
        border-radius: 16px;
    }

    .conditions-panel .section-heading {
        margin-bottom: 24px;
    }

    .conditions-panel .section-heading h2 {
        font-size: clamp(30px, 8vw, 36px);
    }

    .conditions-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .condition-card,
    .condition-card-wide {
        grid-column: auto;
        min-height: 0;
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr);
        align-items: center;
        gap: 16px;
        padding: 18px;
    }

    .condition-card span,
    .condition-card-wide span {
        width: 38px;
        height: 38px;
        margin-bottom: 0;
    }

    .condition-card p {
        font-size: 15px;
        line-height: 1.32;
    }

    .gifts-section {
        padding-top: 38px;
        padding-bottom: 44px;
    }

    .conditions-section + .gifts-section {
        padding-top: 28px;
    }

    .gifts-panel {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 30px 18px;
        border-radius: 16px;
    }

    .gifts-copy {
        padding: 0;
    }

    .gifts-copy h2 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .gifts-copy p:not(.eyebrow) {
        font-size: 18px;
    }

    .gifts-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: auto;
        gap: 8px;
    }

    .gift-photo,
    .gift-photo-large {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 1;
    }

    .gift-photo::after {
        display: none;
    }

    .gallery-modal {
        padding: 14px;
    }

    .gallery-dialog img {
        width: calc(100vw - 28px);
        max-height: 78vh;
        border-radius: 14px;
    }

    .gallery-close {
        top: -52px;
        right: 0;
    }

    .gallery-nav {
        width: 44px;
        height: 44px;
        font-size: 34px;
    }

    .gallery-prev {
        left: 8px;
    }

    .gallery-next {
        right: 8px;
    }

    .builder-section {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .builder-panel {
        padding: 30px 18px;
        border-radius: 16px;
    }

    .builder-section-heading {
        margin-bottom: 24px;
    }

    .builder-section-heading h2 {
        font-size: clamp(30px, 8vw, 36px);
    }

    .builder-row {
        grid-template-columns: 1fr;
    }

    .builder-intro,
    .builder-text-block {
        font-size: 16px;
    }

    .faq-section {
        padding-top: 28px;
        padding-bottom: 44px;
    }

    .faq-panel {
        padding: 30px 18px;
        border-radius: 16px;
    }

    .faq-panel .section-heading {
        margin-bottom: 24px;
    }

    .faq-panel .section-heading h2 {
        font-size: clamp(30px, 8vw, 36px);
    }

    .faq-question {
        grid-template-columns: minmax(0, 1fr) 34px;
        gap: 12px;
        padding: 18px;
        font-size: 16px;
    }

    .faq-question i {
        width: 34px;
        height: 34px;
    }

    .faq-answer-inner {
        padding: 0 18px;
        font-size: 15px;
    }

    .faq-item.is-open .faq-answer-inner {
        padding-bottom: 18px;
    }

    .contact-section {
        padding-top: 38px;
        padding-bottom: 44px;
    }

    .contact-panel {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 30px 18px;
        border-radius: 16px;
    }

    .contact-copy p:not(.eyebrow) {
        font-size: 18px;
    }

    .contact-copy .eyebrow {
        margin-bottom: 14px;
        font-size: clamp(38px, 12vw, 48px);
        line-height: 1.05;
        transform: none;
    }

    .contact-copy .btn {
        margin-top: 0;
        width: 100%;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .contact-card {
        min-height: 0;
        padding: 18px;
    }

    .contact-card strong {
        font-size: 19px;
    }

    .contact-map {
        min-height: 360px;
    }

    .compare-panel {
        padding: 30px 18px;
        border-radius: 16px;
    }

    .compare-panel .section-heading {
        margin-bottom: 24px;
    }

    .compare-panel .section-heading h2 {
        font-size: clamp(28px, 7vw, 32px);
    }

    .compare-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 0;
        padding: 0;
        border-radius: 0;
        min-width: 0;
    }

    .compare-grid::before {
        inset: 0 50% 0 auto;
    }

    .compare-head {
        grid-template-columns: 1fr;
        gap: 10px;
        min-height: 118px;
        padding: 0 10px 16px;
        text-align: left;
    }

    .compare-head-icon {
        width: 42px;
        height: 42px;
        font-size: 23px;
    }

    .compare-logo-icon img {
        width: 42px;
        height: 42px;
    }

    .compare-car-icon svg {
        width: 22px;
        height: 22px;
    }

    .compare-head strong {
        font-size: 19px;
    }

    .compare-head small {
        font-size: 11px;
        line-height: 1.25;
    }

    .compare-cell {
        grid-template-columns: 24px minmax(0, 1fr);
        gap: 8px;
        min-height: 96px;
        padding: 13px 9px;
        font-size: 11px;
        line-height: 1.28;
    }

    .compare-icon {
        width: 20px;
        height: 20px;
        font-size: 18px;
    }
}

