:root {
    --page: #f2f6f7;
    --surface: #ffffff;
    --ink: #172026;
    --muted: #65717a;
    --line: #dde3e8;
    --accent: #0f766e;
    --accent-dark: #0b5f59;
    --accent-soft: #e2f4f1;
    --warning: #f59e0b;
    --danger: #c2410c;
    --shadow: 0 18px 45px rgba(23, 32, 38, 0.12);
    --radius: 8px;
    --container: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        linear-gradient(118deg, rgba(8, 145, 133, 0.34) 0%, rgba(15, 118, 110, 0.18) 22%, transparent 42%),
        linear-gradient(242deg, rgba(245, 158, 11, 0.3) 0%, rgba(251, 191, 36, 0.13) 24%, transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(232, 250, 247, 0.94) 46%, rgba(249, 252, 253, 0.98) 100%);
    background-attachment: fixed;
    color: var(--ink);
    font-family: Arial, "Helvetica Neue", sans-serif;
    line-height: 1.5;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(253, 255, 254, 0.82);
    border-bottom: 1px solid rgba(175, 205, 202, 0.78);
    box-shadow: 0 16px 42px rgba(15, 118, 110, 0.08);
    backdrop-filter: blur(18px);
}

.top-nav {
    width: min(100% - 32px, var(--container));
    min-height: 66px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--accent);
    position: relative;
    box-shadow: 0 8px 22px rgba(15, 118, 110, 0.25);
}

.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    background: #ffffff;
}

.brand-mark::before {
    width: 19px;
    height: 7px;
    border-radius: 7px 7px 2px 2px;
    left: 7px;
    top: 10px;
}

.brand-mark::after {
    width: 23px;
    height: 5px;
    border-radius: 5px;
    left: 5px;
    top: 18px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    color: var(--muted);
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--ink);
}

.hero {
    width: min(100% - 32px, var(--container));
    min-height: calc(100vh - 130px);
    margin: 0 auto;
    padding: 64px 0 44px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    align-items: center;
    gap: 46px;
}

.hero-content {
    max-width: 620px;
}

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

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(38px, 7vw, 78px);
    line-height: 0.96;
    letter-spacing: 0;
}

.hero-text {
    max-width: 560px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 20px;
}

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

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 13px 20px;
    font-weight: 800;
    letter-spacing: 0;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button:focus-visible,
.choice-card:focus-visible,
.edit-jump button:focus-visible,
.upload-area:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(15, 118, 110, 0.28);
    outline-offset: 3px;
}

.button-primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 118, 110, 0.25);
}

.button-primary:hover {
    background: var(--accent-dark);
}

.button-secondary {
    background: #ffffff;
    color: var(--ink);
    border-color: var(--line);
}

.hero-visual {
    position: relative;
    min-height: 360px;
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(226, 244, 241, 0.9)),
        repeating-linear-gradient(90deg, rgba(23, 32, 38, 0.04) 0, rgba(23, 32, 38, 0.04) 1px, transparent 1px, transparent 44px);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-photo {
    min-height: 410px;
    background: #dce5ea;
}

.hero-photo::before {
    display: none;
}

.hero-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 410px;
    object-fit: cover;
    object-position: center;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: auto 32px 60px;
    height: 10px;
    border-radius: 999px;
    background: rgba(23, 32, 38, 0.12);
}

.car-body {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 104px;
    height: 88px;
    border-radius: 54px 68px 24px 24px;
    background: #26323a;
    box-shadow: 0 28px 36px rgba(23, 32, 38, 0.18);
}

.car-window {
    position: absolute;
    left: 27%;
    right: 24%;
    bottom: 176px;
    height: 76px;
    border-radius: 54px 54px 10px 10px;
    background: #d7edf2;
    border: 11px solid #26323a;
}

.car-wheel {
    position: absolute;
    bottom: 82px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #11181d;
    border: 13px solid #3a474f;
    box-shadow: inset 0 0 0 8px #b7c3cb;
}

.car-wheel-left {
    left: 21%;
}

.car-wheel-right {
    right: 21%;
}

.car-light {
    position: absolute;
    bottom: 132px;
    width: 42px;
    height: 12px;
    border-radius: 999px;
}

.car-light-front {
    right: 11%;
    background: #fde68a;
}

.car-light-back {
    left: 11%;
    background: #f97316;
}

.car-plate {
    position: absolute;
    left: 50%;
    bottom: 126px;
    z-index: 2;
    transform: translateX(-50%);
    min-width: 76px;
    padding: 5px 12px;
    border-radius: 5px;
    background: #f8fafc;
    color: #26323a;
    text-align: center;
    font-size: 13px;
    font-weight: 900;
}

.road-line {
    position: absolute;
    left: 60px;
    right: 60px;
    bottom: 46px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--warning), transparent);
}

.benefits,
.location-section,
.reviews-section,
.application-section {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 16px 0 56px;
}

.benefit {
    min-height: 160px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 10px 26px rgba(23, 32, 38, 0.06);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 32px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
}

.benefit h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.benefit p,
.section-heading p {
    margin: 0;
    color: var(--muted);
}

.location-section,
.reviews-section {
    padding: 22px 0 56px;
}

.location-section {
    padding-bottom: 80px;
}

.map-card {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    min-height: 430px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.map-frame {
    position: relative;
    min-height: 430px;
    background:
        linear-gradient(135deg, rgba(241, 245, 249, 0.9), rgba(226, 244, 241, 0.78)),
        repeating-linear-gradient(45deg, rgba(23, 32, 38, 0.05) 0 1px, transparent 1px 18px);
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;
    border: 0;
}

.map-panel {
    display: grid;
    align-content: center;
    gap: 18px;
    padding: clamp(24px, 4vw, 36px);
    border-left: 1px solid var(--line);
}

.map-kicker {
    margin: 0;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.map-panel h3 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.05;
    letter-spacing: 0;
}

.map-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.map-rating strong {
    font-size: 32px;
    line-height: 1;
}

.map-rating span:last-child {
    color: var(--muted);
    font-weight: 800;
}

.map-details {
    display: grid;
    gap: 12px;
}

.map-details p {
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.map-details span {
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.map-details a,
.map-details strong {
    display: block;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.35;
}

.map-details a {
    color: var(--accent);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.reviews-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
    margin-bottom: 18px;
}

.rating-summary {
    min-width: 210px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(23, 32, 38, 0.06);
}

.rating-summary strong {
    display: block;
    font-size: 48px;
    line-height: 1;
}

.rating-summary span:last-child {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-weight: 800;
}

.stars {
    color: #f8c400;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1;
}

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

.review-card {
    min-width: 0;
    min-height: 220px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(23, 32, 38, 0.06);
}

.review-card p {
    margin: 14px 0 0;
    color: #2b363d;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.review-meta strong {
    min-width: 0;
    font-size: 17px;
    line-height: 1.2;
}

.review-meta span {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.application-section {
    padding: 22px 0 80px;
}

.section-heading {
    max-width: 660px;
    margin-bottom: 24px;
}

.section-heading h2 {
    margin: 0 0 10px;
    font-size: clamp(30px, 5vw, 46px);
    line-height: 1.05;
    letter-spacing: 0;
}

.form-shell {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.progress-block {
    padding: 22px 24px 18px;
    border-bottom: 1px solid var(--line);
    background: #fbfcfd;
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.progress-track {
    height: 9px;
    border-radius: 999px;
    background: #e8edf1;
    overflow: hidden;
}

.progress-bar {
    width: 20%;
    height: 100%;
    border-radius: inherit;
    background: var(--accent);
    transition: width 0.22s ease;
}

.application-form,
.summary-screen,
.success-screen {
    padding: 30px 24px 26px;
}

.form-step {
    display: none;
    animation: stepIn 0.2s ease;
}

.form-step.is-active {
    display: block;
}

@keyframes stepIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step h3,
.summary-screen h3,
.success-screen h3 {
    margin: 0 0 22px;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: 0;
}

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

.field,
.choice-group {
    min-width: 0;
    margin: 0 0 18px;
}

label,
legend {
    display: block;
    margin-bottom: 8px;
    color: #25313a;
    font-weight: 800;
}

fieldset {
    padding: 0;
    border: 0;
}

input,
select,
textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid #cfd8df;
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--ink);
    padding: 12px 14px;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

textarea {
    resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
    border-color: #afbcc6;
}

#citySelect,
[data-custom-city] {
    max-width: 420px;
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
    border-color: var(--danger);
    background: #fff7ed;
}

.input-with-suffix {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    border: 1px solid #cfd8df;
    border-radius: var(--radius);
    background: #ffffff;
    overflow: hidden;
}

.input-with-suffix:focus-within {
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
    border-color: var(--accent);
}

.input-with-suffix input {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.input-with-suffix span {
    padding: 0 14px;
    color: var(--muted);
    font-weight: 800;
}

.hint,
.field-error {
    min-height: 21px;
    margin: 6px 0 0;
    font-size: 14px;
}

.hint {
    color: var(--muted);
}

.field-error {
    color: var(--danger);
    font-weight: 700;
}

.check-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0 0;
    color: var(--muted);
    font-weight: 700;
}

.check-line input {
    width: 20px;
    height: 20px;
    min-height: 20px;
    accent-color: var(--accent);
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.consent-box {
    margin: 24px 0 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fbfcfd;
}

.consent-line {
    align-items: flex-start;
    margin: 0;
    color: var(--ink);
}

.consent-line-extra {
    margin-top: 14px;
}

.consent-line a,
.cookie-banner a,
.legal-document a {
    color: var(--accent);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.submit-error {
    min-height: 22px;
    margin: 8px 0 0;
    color: var(--danger);
    font-weight: 800;
}

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

.choice-grid-small {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.choice-grid-compact {
    max-width: 420px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-card {
    min-height: 64px;
    border: 1px solid #cfd8df;
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--ink);
    padding: 14px 16px;
    font-weight: 800;
    text-align: center;
    transition: background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.choice-card:hover {
    border-color: var(--accent);
    transform: translateY(-1px);
}

.choice-card.is-selected {
    border-color: var(--accent);
    background: var(--accent-soft);
    box-shadow: inset 0 0 0 1px var(--accent);
    color: var(--accent-dark);
}

.choice-card.is-invalid {
    border-color: var(--danger);
    background: #fff7ed;
}

.conditional-field {
    max-height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.22s ease, opacity 0.22s ease, margin 0.22s ease;
}

.conditional-field.is-visible {
    max-height: 360px;
    margin: 0 0 18px;
    opacity: 1;
    pointer-events: auto;
}

.vehicle-id-block {
    max-width: 620px;
}

.plate-grid {
    grid-template-columns: minmax(0, 1fr) minmax(110px, 160px);
}

.upload-area {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 154px;
    border: 2px dashed #b7c3cb;
    border-radius: var(--radius);
    background: #fbfcfd;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.16s ease, background 0.16s ease;
}

.upload-area:hover,
.upload-area.is-dragover,
.upload-area:focus-within {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.upload-area input {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-area strong {
    display: block;
    font-size: 18px;
}

.upload-area span {
    color: var(--muted);
}

.photo-status {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.photo-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, 82px);
    gap: 10px;
    margin: 0 0 12px;
}

.photo-list.is-empty {
    display: none;
}

.photo-item {
    position: relative;
    width: 82px;
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: #ffffff;
}

.photo-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background: var(--accent-soft);
    color: var(--accent-dark);
    padding: 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
}

.photo-item button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 50%;
    background: rgba(23, 32, 38, 0.84);
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.photo-item button:hover {
    background: var(--danger);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
}

.summary-body {
    display: grid;
    gap: 16px;
}

.summary-title {
    margin: 0;
    font-size: 24px;
    font-weight: 900;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
}

.summary-row {
    min-width: 0;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.summary-row span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.summary-row strong {
    display: block;
    margin-top: 3px;
    overflow-wrap: anywhere;
}

.edit-jump {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0 10px;
}

.edit-jump button {
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    padding: 8px 13px;
    color: var(--muted);
    font-weight: 800;
}

.edit-jump button:hover {
    color: var(--ink);
    border-color: var(--accent);
}

.success-screen {
    text-align: center;
}

.success-screen p {
    max-width: 520px;
    margin: 0 auto 24px;
    color: var(--muted);
}

.success-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 900;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #ffffff;
}

.footer-inner {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    color: var(--muted);
    font-size: 14px;
}

.footer-inner a:hover {
    color: var(--ink);
}

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 40;
    width: min(calc(100% - 32px), 980px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.cookie-banner p {
    margin: 5px 0 0;
    color: var(--muted);
}

.legal-page {
    width: min(100% - 32px, 920px);
    margin: 0 auto;
    padding: 54px 0 80px;
}

.legal-document {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    padding: clamp(24px, 5vw, 46px);
    box-shadow: var(--shadow);
}

.legal-document h1 {
    margin: 0 0 28px;
    font-size: clamp(34px, 6vw, 54px);
    line-height: 1;
}

.legal-document h2 {
    margin: 30px 0 10px;
    font-size: 24px;
}

.legal-document p,
.legal-document li {
    color: var(--muted);
}

.legal-document code {
    padding: 2px 5px;
    border-radius: 5px;
    background: #eef3f6;
    color: var(--ink);
}

[hidden] {
    display: none !important;
}

@media (max-width: 860px) {
    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 42px;
    }

    .hero-visual {
        min-height: 280px;
    }

    .hero-photo,
    .hero-photo img {
        min-height: 300px;
    }

    .benefits,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .reviews-head {
        grid-template-columns: 1fr;
    }

    .map-card {
        grid-template-columns: 1fr;
    }

    .map-panel {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .field-grid,
    .summary-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 560px) {
    .top-nav {
        width: min(100% - 24px, var(--container));
        min-height: 58px;
    }

    .nav-links {
        gap: 10px;
        font-size: 13px;
    }

    .brand {
        font-size: 15px;
    }

    .brand-mark {
        width: 30px;
        height: 30px;
    }

    .hero,
    .benefits,
    .location-section,
    .reviews-section,
    .application-section {
        width: min(100% - 24px, var(--container));
    }

    .hero {
        padding: 34px 0 30px;
        gap: 28px;
    }

    h1 {
        font-size: 42px;
    }

    .hero-text {
        font-size: 17px;
    }

    .hero-actions,
    .form-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-visual {
        min-height: 230px;
    }

    .hero-photo,
    .hero-photo img {
        min-height: 240px;
    }

    .map-frame,
    .map-frame iframe {
        min-height: 320px;
    }

    .car-body {
        bottom: 82px;
        height: 64px;
    }

    .car-window {
        bottom: 133px;
        height: 56px;
        border-width: 8px;
    }

    .car-wheel {
        bottom: 65px;
        width: 52px;
        height: 52px;
        border-width: 10px;
    }

    .car-light {
        bottom: 103px;
    }

    .car-plate {
        bottom: 100px;
    }

    .choice-grid,
    .choice-grid-small {
        grid-template-columns: 1fr;
    }

    .application-form,
    .summary-screen,
    .success-screen {
        padding: 24px 16px 20px;
    }

    .progress-block {
        padding: 18px 16px 16px;
    }

    .progress-meta {
        flex-direction: column;
        gap: 4px;
    }

    .cookie-banner {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .top-nav {
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 0 12px;
    }

    .nav-links {
        width: 100%;
        justify-content: space-between;
    }
}
/* Production experiment: premium animated reviews */
.reviews-section {
    position: relative;
    overflow: hidden;
}

.reviews-section .reviews-head {
    position: relative;
    z-index: 2;
}

.reviews-section .rating-summary {
    border-color: rgba(15, 118, 110, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 252, 250, 0.94)),
        #ffffff;
    box-shadow: 0 18px 44px rgba(15, 118, 110, 0.11);
}

.reviews-section .review-grid {
    position: relative;
    display: block;
    min-height: 650px;
    margin-top: 26px;
    isolation: isolate;
}

.reviews-section .review-card {
    position: absolute;
    width: min(100%, 430px);
    min-height: 0;
    border-radius: 24px;
    border-color: rgba(15, 118, 110, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 253, 252, 0.88)),
        #ffffff;
    box-shadow: 0 22px 58px rgba(23, 32, 38, 0.12);
    backdrop-filter: blur(16px);
    will-change: transform;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.reviews-section .review-card:hover {
    z-index: 4;
    border-color: rgba(15, 118, 110, 0.34);
    box-shadow: 0 30px 76px rgba(23, 32, 38, 0.16);
}

.reviews-section .review-card:nth-child(1) {
    left: 0;
    top: 18px;
    width: 43%;
}

.reviews-section .review-card:nth-child(2) {
    right: 7%;
    top: 86px;
    width: 45%;
}

.reviews-section .review-card:nth-child(3) {
    left: 7%;
    top: 355px;
    width: 48%;
}

.reviews-section .review-card:nth-child(4) {
    right: 28%;
    top: 396px;
    width: 28%;
}

.reviews-section .review-card:nth-child(5) {
    right: 0;
    top: 432px;
    width: 34%;
}

.reviews-section .review-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.reviews-section .review-meta {
    align-items: flex-start;
}

.reviews-section .review-meta strong {
    color: #152329;
}

.reviews-section .review-meta span {
    color: #6f7d85;
}

.reviews-section .stars {
    color: #d89b20;
}

@media (max-width: 980px) {
    .reviews-section .review-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        min-height: 0;
    }

    .reviews-section .review-card,
    .reviews-section .review-card:nth-child(n) {
        position: relative;
        inset: auto;
        width: auto;
        transform: none !important;
    }
}

@media (max-width: 640px) {
    .reviews-section .review-grid {
        grid-template-columns: 1fr;
    }

    .reviews-section .review-card {
        border-radius: 20px;
    }
}

/* Reviews border cleanup 2026-09-05 */
.reviews-section .review-card,
.reviews-section .rating-summary {
    border-color: transparent;
    border-width: 0;
}

.reviews-section .review-card::before {
    box-shadow: none;
}
/* Reviews soft blend 2026-09-05 */
.reviews-section {
    width: min(100% - 32px, 1240px);
}

.reviews-section::before {
    content: "";
    position: absolute;
    inset: 116px -34px 18px;
    z-index: 0;
    border-radius: 48px;
    background:
        radial-gradient(circle at 16% 22%, rgba(15, 118, 110, 0.13), transparent 40%),
        radial-gradient(circle at 86% 72%, rgba(245, 158, 11, 0.1), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
    pointer-events: none;
}

.reviews-section .reviews-head,
.reviews-section .review-grid {
    position: relative;
    z-index: 1;
}

.reviews-section .review-grid {
    min-height: 620px;
    margin-top: 34px;
}

.reviews-section .review-card,
.reviews-section .rating-summary {
    border: 0 !important;
    outline: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.5)),
        rgba(255, 255, 255, 0.36);
    box-shadow:
        0 22px 54px rgba(15, 118, 110, 0.08),
        0 12px 28px rgba(23, 32, 38, 0.045);
    backdrop-filter: blur(18px);
}

.reviews-section .review-card {
    border-radius: 34px;
}

.reviews-section .rating-summary {
    border-radius: 22px;
}

.reviews-section .review-card:hover {
    box-shadow:
        0 26px 64px rgba(15, 118, 110, 0.1),
        0 14px 34px rgba(23, 32, 38, 0.055);
}

.reviews-section .review-card:nth-child(1) {
    left: 0;
    top: 18px;
    width: 41%;
}

.reviews-section .review-card:nth-child(2) {
    right: 6%;
    top: 88px;
    width: 43%;
}

.reviews-section .review-card:nth-child(3) {
    left: 6%;
    top: 340px;
    width: 47%;
}

.reviews-section .review-card:nth-child(4) {
    right: 31%;
    top: 390px;
    width: 29%;
}

.reviews-section .review-card:nth-child(5) {
    right: 0;
    top: 416px;
    width: 33%;
}

@media (max-width: 980px) {
    .reviews-section {
        width: min(100% - 32px, var(--container));
    }

    .reviews-section::before {
        inset: 96px -16px 24px;
        border-radius: 34px;
    }
}

@media (max-width: 640px) {
    .reviews-section {
        width: min(100% - 24px, var(--container));
    }

    .reviews-section .review-card {
        border-radius: 24px;
    }
}
/* Reviews background transition 2026-09-06 */
.reviews-section {
    overflow: visible;
}

.reviews-section::before {
    inset: -92px -42px -86px;
    border-radius: 96px;
    opacity: 0.92;
    background:
        radial-gradient(ellipse at 12% 28%, rgba(15, 118, 110, 0.18) 0%, rgba(15, 118, 110, 0.1) 32%, transparent 64%),
        radial-gradient(ellipse at 88% 32%, rgba(245, 158, 11, 0.16) 0%, rgba(245, 158, 11, 0.08) 34%, transparent 66%),
        radial-gradient(ellipse at 52% 76%, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.14) 44%, transparent 72%);
    filter: blur(18px);
    -webkit-mask-image: linear-gradient(
        180deg,
        transparent 0%,
        #000 18%,
        #000 78%,
        transparent 100%
    );
    mask-image: linear-gradient(
        180deg,
        transparent 0%,
        #000 18%,
        #000 78%,
        transparent 100%
    );
}

.reviews-section .review-grid {
    margin-top: 42px;
}

.reviews-section .review-card,
.reviews-section .rating-summary {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.44)),
        rgba(255, 255, 255, 0.32);
    box-shadow:
        0 24px 62px rgba(15, 118, 110, 0.065),
        0 10px 24px rgba(23, 32, 38, 0.035);
}

@media (max-width: 980px) {
    .reviews-section {
        overflow: hidden;
    }

    .reviews-section::before {
        inset: -70px -20px -62px;
        border-radius: 56px;
        filter: blur(14px);
    }
}

/* Reviews transparent section 2026-09-06 */
.reviews-section {
    background: transparent !important;
    overflow: visible;
}

.reviews-section::before {
    content: none !important;
    display: none !important;
    background: none !important;
    filter: none !important;
    opacity: 0 !important;
}

.reviews-section .reviews-head,
.reviews-section .review-grid {
    z-index: auto;
}

/* Reviews align with page container */
.reviews-section {
    width: min(100% - 32px, var(--container)) !important;
}
