:root {
    --navy: #020b18;
    --navy-2: #07182c;
    --red: #e30613;
    --text: #07162b;
    --muted: #5b677a;
    --line: #e5eaf0;
    --soft: #f5f7fa;
    --white: #ffffff;
    --container: 1400px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    background: var(--white);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    overflow-x: hidden;
}

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

img,
svg {
    display: block;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.site-container {
    width: min(var(--container), calc(100% - 52px));
    margin: 0 auto;
}

.site-header {
    height: 78px;
    background: var(--navy);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-row {
    display: grid;
    grid-template-columns: 185px 1fr 228px;
    align-items: center;
    height: 78px;
}

.logo {
    display: inline-flex;
    align-items: center;
    width: max-content;
}

.logo img {
    display: block;
    width: 160px;
    height: auto;
    padding: 4px 6px;
    border-radius: 4px;
    background: var(--white);
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 2vw, 38px);
    height: 100%;
    font-size: 14px;
    font-weight: 800;
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.9);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    border-radius: 10px;
    background: var(--red);
    transform: translateX(-50%);
    transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav .is-active::after {
    width: 29px;
}

.main-nav .is-service-active {
    color: var(--red);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 8px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
    will-change: transform;
}

.button:not(:disabled):hover,
.button:not(:disabled):focus-visible {
    transform: translateY(-2px);
}

.button:focus-visible {
    outline: 3px solid rgba(227, 6, 19, 0.28);
    outline-offset: 3px;
}

.button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.button-red {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(227, 6, 19, 0.24);
}

.button-red:not(:disabled):hover,
.button-red:not(:disabled):focus-visible {
    background: #f20a18;
    box-shadow: 0 18px 38px rgba(227, 6, 19, 0.34);
}

.button-dark {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.04);
}

.button-dark:not(:disabled):hover,
.button-dark:not(:disabled):focus-visible {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 34px rgba(2, 11, 24, 0.24);
}

.header-button {
    justify-self: end;
    min-width: 208px;
    height: 44px;
    font-size: 16px;
}

.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    cursor: pointer;
    transition:
        background-color 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.42);
    transform: translateY(-1px);
}

.mobile-menu-toggle:focus-visible {
    outline: 3px solid rgba(227, 6, 19, 0.28);
    outline-offset: 3px;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
        transform 0.18s ease,
        opacity 0.18s ease;
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 800px;
    overflow: hidden;
    background:
        url("../images/home-hero.webp?v=20260717-stk-building") right 64% / cover no-repeat,
        var(--navy);
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 11, 24, 0.42) 0%, rgba(2, 11, 24, 0.26) 36%, rgba(2, 11, 24, 0.04) 72%, rgba(2, 11, 24, 0) 100%),
        linear-gradient(180deg, rgba(2, 11, 24, 0) 0%, rgba(2, 11, 24, 0.28) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 96px;
}

.hero-copy {
    width: 900px;
}

.hero h1 {
    margin: 0;
    color: var(--white);
    font-size: clamp(54px, 4.55vw, 70px);
    font-weight: 950;
    line-height: 1.02;
    letter-spacing: -0.4px;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--red);
}

.hero-copy p {
    width: 600px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    gap: 30px;
    margin-top: 32px;
}

.hero-actions .button {
    height: 56px;
    padding: 0 30px;
    font-size: 18px;
}

.hero .hero-actions .button.hero-contact-button {
    border-color: #07182c;
    background: #07182c;
    background-color: #07182c;
}

.hero .hero-actions .button.hero-contact-button:not(:disabled):hover,
.hero .hero-actions .button.hero-contact-button:not(:disabled):focus-visible {
    border-color: #07182c;
    background: #07182c;
    background-color: #07182c;
}

.hero-benefits-wrap {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 11, 24, 0.62);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    height: 134px;
}

.hero-benefits article {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0 34px;
    border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-benefits article:last-child {
    border-right: 0;
}

.hero-benefits svg {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--white);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

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

.hero-benefits strong {
    font-size: 20px;
    font-weight: 900;
}

.hero-benefits span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
}

.service-overlap {
    position: relative;
    z-index: 5;
    margin-top: -18px;
    padding-bottom: 42px;
}

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

.service-card {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 22px;
    min-height: 164px;
    padding: 31px 32px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(2, 11, 24, 0.12);
}

.service-icon {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 9px;
    background: var(--navy);
    color: var(--white);
}

.service-icon svg,
.service-card a svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.service-icon svg {
    width: 43px;
    height: 43px;
}

.service-card h2 {
    margin: 0 0 9px;
    font-size: 26px;
    font-weight: 950;
    line-height: 1.1;
}

.service-card p {
    margin: 0;
    color: var(--text);
    font-size: 16px;
    font-weight: 650;
    line-height: 1.45;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: #0a66d8;
    font-size: 15px;
    font-weight: 900;
}

.service-card a svg {
    width: 15px;
    height: 15px;
}

.process-section {
    padding: 0 0 40px;
    text-align: center;
}

.process-section h2 {
    margin: 0 0 23px;
    font-size: 21px;
    font-weight: 950;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
}

.process-step {
    display: grid;
    align-content: start;
    min-width: 0;
    min-height: 174px;
    padding: 24px 20px;
    border: 1px solid #07182c;
    border-radius: 12px;
    background: #07182c;
    color: var(--white);
    box-shadow: 0 12px 26px rgba(2, 11, 24, 0.08);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.process-step:hover {
    transform: translateY(-3px);
    border-color: rgba(227, 6, 19, 0.26);
    background: var(--white);
    box-shadow: 0 18px 36px rgba(2, 11, 24, 0.12);
    color: var(--text);
}

.process-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: transparent;
    color: var(--white);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.process-step:hover .process-icon {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}

.process-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.process-step strong {
    display: block;
    font-size: 14px;
    font-weight: 950;
}

.process-step p {
    max-width: 180px;
    margin: 6px auto 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.32;
    transition: color 0.2s ease;
}

.process-step:hover p {
    color: #4e5f76;
}

.process-arrow {
    display: none;
}

.process-arrow::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 13px;
    right: 13px;
    height: 2px;
    background: #9db1c9;
}

.process-arrow::after {
    content: "";
    position: absolute;
    top: 23px;
    right: 12px;
    width: 11px;
    height: 11px;
    border-top: 2px solid #9db1c9;
    border-right: 2px solid #9db1c9;
    transform: rotate(45deg);
}

.reminder-section {
    padding: 0 0 26px;
}

.reminder-panel {
    display: grid;
    grid-template-columns: 118px minmax(270px, 360px) minmax(0, 1fr);
    grid-template-areas:
        "icon copy fields"
        "icon copy consent"
        "icon copy benefits";
    align-items: center;
    column-gap: 24px;
    row-gap: 16px;
    min-height: 144px;
    padding: 24px 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(2, 11, 24, 0.08);
}

.reminder-icon {
    grid-area: icon;
    display: grid;
    place-items: center;
    width: 118px;
    height: 118px;
    border-radius: 12px;
    background: #f8fafc;
    box-shadow: 0 8px 22px rgba(2, 11, 24, 0.08);
    color: var(--navy);
}

.reminder-icon svg {
    width: 69px;
    height: 69px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.reminder-copy {
    grid-area: copy;
    min-width: 0;
    padding-right: 26px;
    border-right: 1px solid var(--line);
}

.reminder-copy span {
    display: block;
    color: var(--red);
    font-size: 16px;
    font-weight: 950;
    line-height: 1;
    text-transform: uppercase;
}

.reminder-copy h2 {
    margin: 12px 0 0;
    color: var(--text);
    font-size: 26px;
    font-weight: 950;
    line-height: 1.08;
}

.reminder-copy p {
    margin: 13px 0 0;
    color: #1d2f49;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.45;
}

.reminder-fields {
    grid-area: fields;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: 18px;
    align-items: start;
    min-width: 0;
}

.reminder-vehicle-fields,
.reminder-contact-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    min-width: 0;
}

.reminder-fields label,
.reminder-contact-fields {
    min-width: 0;
}

.reminder-fields label {
    color: var(--text);
    font-size: 15px;
    font-weight: 950;
}

.reminder-fields input,
.reminder-fields select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 62px;
    margin-top: 10px;
    border: 1px solid #d9e1eb;
    border-radius: 8px;
    background: var(--white);
    color: #52627a;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    outline: none;
}

.reminder-fields input {
    padding: 0 16px;
}

.reminder-fields select {
    appearance: none;
    padding: 0 42px 0 16px;
    background-image:
        linear-gradient(45deg, transparent 50%, #52627a 50%),
        linear-gradient(135deg, #52627a 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 21px,
        calc(100% - 13px) 21px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.reminder-fields input[type="date"] {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 62px;
    min-height: 62px;
    padding: 0 16px;
    appearance: none;
    -webkit-appearance: none;
    color-scheme: light;
    min-width: 100%;
    line-height: 62px;
}

.reminder-fields input[type="date"]::-webkit-datetime-edit {
    display: block;
    width: 100%;
    padding: 0;
}

.reminder-fields input[type="date"]::-webkit-date-and-time-value {
    min-height: 62px;
    line-height: 62px;
    text-align: left;
}

.reminder-fields input[type="date"]::-webkit-calendar-picker-indicator {
    margin-left: auto;
}

.reminder-fields input:focus,
.reminder-fields select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.08);
}

.reminder-contact-fields .button {
    width: 100%;
    min-height: 62px;
    margin-top: 30px;
    border: 0;
    font-size: 15px;
    cursor: pointer;
}

.reminder-consent {
    grid-area: consent;
    display: inline-flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    min-width: 0;
    padding: 4px 0 0;
    color: #24334d;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.4;
}

.reminder-consent input {
    flex: 0 0 auto;
    width: 19px;
    height: 19px;
    margin: 1px 0 0;
    accent-color: var(--red);
    cursor: pointer;
}

.reminder-consent span {
    min-width: 0;
}

.reminder-consent a {
    color: var(--red);
    font-weight: 950;
    text-decoration: none;
}

.reminder-consent a:hover {
    text-decoration: underline;
}

.reminder-benefits {
    grid-area: benefits;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, max-content));
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    width: 100%;
    min-width: 0;
}

.reminder-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #24334d;
    font-size: 16px;
    font-weight: 850;
    white-space: nowrap;
}

.reminder-benefits svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: #1d2f49;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.price-section {
    padding-bottom: 26px;
}

.price-band {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 705px) minmax(260px, 1fr);
    min-height: 254px;
    overflow: hidden;
    border-radius: 10px;
    background:
        linear-gradient(90deg, rgba(2, 11, 24, 0.98) 0%, rgba(3, 18, 34, 0.94) 42%, rgba(3, 18, 34, 0.48) 67%, rgba(2, 11, 24, 0.18) 100%),
        linear-gradient(180deg, rgba(2, 11, 24, 0.18), rgba(2, 11, 24, 0.42)),
        url("/images/price-band-bg.webp") center right / cover no-repeat;
    color: var(--white);
    box-shadow: 0 12px 30px rgba(2, 11, 24, 0.14);
}

.price-content {
    display: grid;
    justify-items: center;
    padding: 28px 0 26px 31px;
    max-width: 672px;
}

.price-content h2,
.price-content > p,
.price-table {
    justify-self: stretch;
}

.price-content h2 {
    margin: 0;
    font-size: 21px;
    font-weight: 950;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.price-content > p {
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    font-weight: 600;
}

.price-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 672px;
    margin-top: 9px;
}

.price-table article {
    display: grid;
    grid-template-rows: 55px 18px 39px 1fr;
    align-items: start;
    min-height: 93px;
    padding: 0 44px 0 33px;
    border-right: 2px solid rgba(255, 255, 255, 0.16);
    text-align: center;
}

.price-table article:first-child {
    padding-left: 0;
}

.price-table article:last-child {
    border-right: 0;
}

.price-table strong,
.price-table b,
.price-table span {
    display: block;
}

.price-table strong {
    display: flex;
    align-items: end;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
}

.price-table b {
    margin-top: 0;
    font-size: 38px;
    line-height: 1;
}

.price-table .price-prefix {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.2px;
    line-height: 1;
    text-transform: uppercase;
}

.price-table span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
}

.price-button {
    width: 195px;
    height: 37px;
    margin: 24px auto 0;
    font-size: 14px;
}

.home-local-section {
    padding: 0 0 28px;
}

.home-local-card {
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(2, 11, 24, 0.07);
}

.home-local-card h2 {
    margin: 8px 0 0;
    color: var(--text);
    font-size: 24px;
    font-weight: 950;
    line-height: 1.18;
}

.home-local-card p {
    margin: 12px 0 0;
    color: #4e5f76;
    font-size: 16px;
    font-weight: 650;
    line-height: 1.58;
}

.home-local-card .button {
    min-height: 50px;
}

.reviews-faq-section {
    padding: 0 0 29px;
}

.reviews-faq-grid {
    display: grid;
    grid-template-columns: 1fr 577px;
    gap: 44px;
    align-items: stretch;
}

.reviews,
.faq {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.reviews h2,
.faq h2 {
    margin: 0 0 8px;
    font-size: 21px;
    font-weight: 950;
    letter-spacing: 0.15px;
    text-transform: uppercase;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.rating-row strong {
    font-size: 34px;
    line-height: 1;
}

.stars {
    display: flex;
    gap: 4px;
    color: var(--red);
}

.stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: currentColor;
}

.stars .star-muted {
    color: #d8dee8;
}

.rating-row small {
    margin-left: 18px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.reviews-status {
    margin: -7px 0 15px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.reviews-status-error {
    padding: 13px 15px;
    border: 1px solid rgba(227, 6, 19, 0.18);
    border-radius: 8px;
    background: rgba(227, 6, 19, 0.06);
    color: #8f111b;
    line-height: 1.45;
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 44px;
}

.review-cards article {
    display: flex;
    flex-direction: column;
    min-height: 118px;
    padding: 18px 19px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 26px rgba(2, 11, 24, 0.07);
}

.review-cards p {
    margin: 10px 0 0;
    color: var(--text);
    font-size: 12px;
    font-weight: 760;
    line-height: 1.45;
}

.review-card-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    color: var(--red);
}

.review-card-stars svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
    stroke: currentColor;
}

.review-card-stars .star-muted {
    color: #d8dee8;
}

.review-cards .review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
}

.review-cards .review-author span,
.review-cards .review-author img {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex: 0 0 22px;
}

.review-cards .review-author span {
    background: linear-gradient(135deg, #0b2a4d, #e30613);
    color: var(--white);
    font-size: 8px;
    font-weight: 900;
}

.review-cards .review-author img {
    object-fit: cover;
    background: #eef3f9;
}

.review-cards .review-author strong {
    font-size: 11px;
    font-weight: 900;
}

.review-cards .review-author a {
    color: inherit;
    text-decoration: none;
}

.review-cards .review-author a:hover {
    color: #0a66d8;
}

.review-cards .review-error-card {
    border-color: rgba(227, 6, 19, 0.18);
    background: linear-gradient(180deg, #fff, #fff8f8);
}

.review-cards .review-error-card span {
    background: #e30613;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0a66d8;
    font-size: 14px;
    font-weight: 900;
}

.text-link svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.reviews-link {
    float: none;
    align-self: flex-end;
    margin-top: auto;
    padding-top: 15px;
}

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

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(2, 11, 24, 0.04);
    transition:
        height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease;
    will-change: height;
}

.faq-list details[open] {
    border-color: rgba(227, 6, 19, 0.2);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 18px 38px rgba(2, 11, 24, 0.1);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 47px;
    padding: 0 19px;
    cursor: pointer;
    color: var(--text);
    font-size: 14px;
    font-weight: 900;
    list-style: none;
    transition: color 0.22s ease, background 0.22s ease;
}

.faq-list details[open] summary {
    color: var(--red);
    background: rgba(2, 11, 24, 0.015);
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #20324f;
    border-bottom: 2px solid #20324f;
    flex: 0 0 auto;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.faq-list details[open] summary::after {
    border-color: var(--red);
    transform: rotate(225deg) translate(-2px, -2px);
}

.faq-list p {
    margin: 0;
    padding: 16px 19px 18px;
    border-top: 1px solid rgba(2, 11, 24, 0.08);
    background: linear-gradient(180deg, rgba(244, 247, 250, 0.85), rgba(255, 255, 255, 0.96));
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.55;
}

.faq-list details[open] p {
    animation: faq-answer-open 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes faq-answer-open {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-list details {
        transition: border-color 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
    }

    .faq-list details[open] p {
        animation: none;
    }
}

.faq-link {
    float: none;
    align-self: flex-end;
    margin-top: auto;
    padding-top: 14px;
}

.faq-page {
    background: #f4f7fa;
}

.faq-hero {
    position: relative;
    min-height: 360px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(2, 11, 24, 0.98) 0%, rgba(2, 11, 24, 0.88) 42%, rgba(2, 11, 24, 0.34) 100%),
        url("../images/faq-hero.webp?v=20260514-faq") center right / cover no-repeat;
    color: var(--white);
}

.faq-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 34%, rgba(227, 6, 19, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(2, 11, 24, 0.18), rgba(2, 11, 24, 0.08));
}

.faq-hero-content {
    position: relative;
    z-index: 1;
    padding: 54px 0 62px;
}

.faq-hero .breadcrumbs {
    margin-bottom: 34px;
}

.faq-hero h1 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(48px, 7vw, 76px);
    font-weight: 950;
    line-height: 0.98;
    letter-spacing: 0;
    text-transform: uppercase;
}

.faq-hero p {
    max-width: 660px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 21px;
    font-weight: 650;
    line-height: 1.5;
}

.faq-page-content {
    padding: 34px 0 42px;
}

.faq-page-grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.faq-category-card,
.faq-group {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(2, 11, 24, 0.07);
}

.faq-category-card {
    position: sticky;
    top: 22px;
    padding: 26px 24px;
}

.faq-category-card h2 {
    margin: 0 0 18px;
    color: var(--text);
    font-size: 22px;
    font-weight: 950;
}

.faq-category-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 56px;
    padding: 0 14px;
    border: 1px solid rgba(2, 11, 24, 0.08);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.faq-category-card a + a {
    margin-top: 10px;
}

.faq-category-card a:hover {
    transform: translateY(-2px);
    border-color: rgba(227, 6, 19, 0.24);
    background: #f8fafc;
}

.faq-category-card span {
    font-size: 15px;
    font-weight: 950;
}

.faq-category-card small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.faq-groups {
    display: grid;
    gap: 24px;
}

.faq-group {
    padding: 30px;
}

.faq-group-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: 30px;
    font-weight: 950;
    line-height: 1.1;
}

.faq-group-heading p {
    max-width: 720px;
    margin: 12px 0 0;
    color: #243752;
    font-size: 16px;
    font-weight: 650;
    line-height: 1.65;
}

.faq-page .faq-list {
    margin-top: 24px;
}

.reservation-strip-section {
    padding-bottom: 15px;
}

.reservation-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 96px;
    padding: 0 194px 0 132px;
    border-radius: 9px;
    background: linear-gradient(135deg, #020b18, #07182c);
    color: var(--white);
}

.reservation-copy {
    display: flex;
    align-items: center;
    gap: 34px;
}

.reservation-copy > svg {
    width: 50px;
    height: 50px;
    fill: none;
    stroke: var(--white);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.reservation-copy h2 {
    margin: 0;
    font-size: 27px;
    font-weight: 950;
    text-transform: uppercase;
}

.reservation-copy p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    font-weight: 600;
}

.reservation-button {
    width: 252px;
    height: 50px;
    font-size: 16px;
}

.site-footer {
    background: var(--navy);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 220px 125px 135px max-content max-content 170px;
    gap: 22px;
    justify-content: space-between;
    min-height: 212px;
    padding-top: 30px;
}

.footer-address-column,
.footer-contact-column {
    width: max-content;
    max-width: 210px;
}

.footer-hours-column {
    width: max-content;
    max-width: 210px;
}

.site-footer .footer-hours-line {
    margin-top: 13px;
    white-space: nowrap;
}

.footer-logo img {
    width: 176px;
}

.site-footer p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
}

.site-footer h3 {
    margin: 0 0 20px;
    font-size: 14px;
    font-weight: 950;
    text-transform: uppercase;
}

.site-footer a:not(.logo) {
    display: block;
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
}

.site-footer .footer-text-line {
    display: block;
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
}

.site-footer p a:not(.logo),
.contact-info-card p a {
    display: inline;
    margin-top: 0;
    color: inherit;
    font-size: inherit;
    text-decoration: none;
}

.site-footer p a:hover,
.contact-info-card p a:hover {
    color: var(--red);
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 21px;
}

.socials a,
.socials span {
    display: grid !important;
    place-items: center;
    width: 24px;
    height: 24px;
    margin: 0 !important;
    border-radius: 4px;
    background: var(--white);
    color: var(--navy) !important;
    font-size: 16px !important;
    font-weight: 950;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    color: rgba(255, 255, 255, 0.52);
    text-align: center;
    font-size: 14px;
}

.site-footer .footer-bottom a {
    display: inline;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: inherit;
    font-weight: 800;
    text-decoration: none;
}

.site-footer .footer-bottom a:hover {
    color: var(--red);
}

.service-page {
    background: var(--white);
}

.sub-hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
}

.sub-hero-stk {
    background:
        url("../images/stk-hero-inspection.webp?v=20260511-inspection") center right / cover no-repeat,
        var(--navy);
}

.sub-hero-ek {
    min-height: 430px;
    background:
        url("../images/ek-hero-emissions.webp?v=20260511-ek-hero") center right / cover no-repeat,
        var(--navy);
}

.sub-hero-ek .sub-hero-overlay {
    background:
        linear-gradient(90deg, #020b18 0%, #020b18 43%, rgba(2, 11, 24, 0.84) 54%, rgba(2, 11, 24, 0.16) 78%),
        linear-gradient(180deg, rgba(2, 11, 24, 0.08) 0%, rgba(2, 11, 24, 0.18) 100%);
}

.sub-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #020b18 0%, rgba(2, 11, 24, 0.98) 34%, rgba(2, 11, 24, 0.56) 48%, rgba(2, 11, 24, 0.05) 74%),
        linear-gradient(180deg, rgba(2, 11, 24, 0.12) 0%, rgba(2, 11, 24, 0.16) 100%);
}

.sub-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 34px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 700;
}

.breadcrumbs span {
    width: 8px;
    height: 8px;
    border-top: 2px solid rgba(255, 255, 255, 0.75);
    border-right: 2px solid rgba(255, 255, 255, 0.75);
    transform: rotate(45deg);
}

.breadcrumbs strong {
    font-weight: 800;
}

.sub-hero h1 {
    margin: 32px 0 0;
    color: var(--white);
    font-size: 72px;
    font-weight: 950;
    line-height: 0.92;
    letter-spacing: -0.8px;
}

.sub-hero-stk h1 {
    margin-top: 28px;
    max-width: 780px;
    font-size: 58px;
    line-height: 1;
}

.sub-hero-stk h2 {
    margin-top: 18px;
    font-size: 30px;
    line-height: 1.18;
}

.sub-hero-stk p {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.5;
}

.sub-hero h2 {
    margin: 24px 0 0;
    max-width: 500px;
    color: var(--white);
    font-size: 33px;
    font-weight: 920;
    line-height: 1.22;
}

.sub-hero p {
    margin: 32px 0 0;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    font-weight: 570;
    line-height: 1.55;
}

.sub-hero-ek h1 {
    margin-top: 28px;
    font-size: 58px;
}

.sub-hero-ek h2 {
    margin-top: 18px;
    max-width: 760px;
    font-size: 28px;
    line-height: 1.18;
}

.sub-hero-ek p {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.5;
}

.service-feature-overlap {
    position: relative;
    z-index: 4;
    margin-top: -55px;
    padding-bottom: 44px;
}

.service-feature-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 188px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 16px 34px rgba(2, 11, 24, 0.13);
}

.service-feature-panel article {
    display: grid;
    place-items: center;
    align-content: center;
    min-width: 0;
    padding: 0 22px;
    text-align: center;
    border-right: 1px solid var(--line);
}

.service-feature-panel article:last-child {
    border-right: 0;
}

.service-feature-panel div {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #f0f3f7;
    color: var(--text);
}

.service-feature-panel svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

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

.service-feature-panel strong {
    font-size: 17px;
    font-weight: 950;
}

.service-feature-panel span {
    margin-top: 13px;
    color: #1f2f49;
    font-size: 16px;
    font-weight: 560;
    line-height: 1.5;
}

.stk-detail-section {
    padding: 0 0 38px;
}

.stk-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
}

.stk-detail-main {
    min-width: 0;
    padding: 0 17px;
}

.stk-detail-main h2,
.reservation-card h2 {
    margin: 0;
    color: var(--text);
    font-size: 24px;
    font-weight: 950;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 112px;
    row-gap: 32px;
    max-width: 980px;
    margin-top: 38px;
}

.check-grid span {
    display: flex;
    align-items: center;
    gap: 25px;
    color: #12233e;
    font-size: 17px;
    font-weight: 700;
}

.check-grid svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    fill: none;
    stroke: #001d56;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.stk-divider {
    height: 1px;
    margin: 55px 0 33px;
    background: var(--line);
}

.compact-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 35px;
}

.compact-benefits article {
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 16px;
    align-items: start;
}

.compact-benefits div {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f0f3f7;
    color: var(--text);
}

.compact-benefits svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.compact-benefits strong {
    display: block;
    grid-column: 2;
    margin-top: 2px;
    color: var(--text);
    font-size: 14px;
    font-weight: 950;
}

.compact-benefits span {
    display: block;
    grid-column: 2;
    margin-top: 4px;
    color: #1c2b45;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.35;
}

.reservation-card {
    min-height: 420px;
    padding: 26px 31px 27px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(2, 11, 24, 0.08);
}

.reservation-card p {
    margin: 4px 0 25px;
    color: #243752;
    font-size: 16px;
    font-weight: 650;
}

.reservation-card label {
    display: block;
    margin-top: 19px;
    color: #10213b;
    font-size: 13px;
    font-weight: 900;
}

.reservation-card label span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 43px;
    margin-top: 9px;
    padding: 0 16px;
    border: 1px solid #dce3ec;
    border-radius: 6px;
    color: #34435a;
    font-size: 15px;
    font-weight: 600;
}

.reservation-card label svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.3;
    transform: rotate(90deg);
}

.reservation-card .button {
    width: 100%;
    height: 49px;
    margin-top: 23px;
    font-size: 16px;
}

.sub-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
}

.sub-hero-actions .button {
    min-width: 220px;
    height: 52px;
}

.stk-seo-section,
.stk-check-section,
.stk-vehicle-section,
.stk-reservation-section,
.stk-prep-section,
.stk-when-section,
.stk-fail-section,
.stk-process-section,
.stk-result-section,
.stk-faq-section,
.local-seo-section,
.ek-fuel-section {
    padding: 0 0 34px;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.72s ease var(--reveal-delay, 0ms),
        transform 0.72s ease var(--reveal-delay, 0ms);
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--red);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.section-heading-wide {
    max-width: 920px;
    margin-bottom: 26px;
}

.section-heading-wide h2,
.stk-text-card h2,
.stk-vehicle-card h2,
.documents-card h2,
.prep-grid h2,
.stk-when-card h2,
.stk-fail-card h2,
.result-copy h2,
.faq-seo-grid h2,
.local-seo-card h2 {
    margin: 0;
    color: var(--text);
    font-size: 28px;
    font-weight: 950;
    line-height: 1.12;
    letter-spacing: 0.1px;
}

.section-heading-wide p,
.stk-text-card p,
.stk-vehicle-card p,
.documents-card p,
.prep-grid p,
.stk-when-card p,
.stk-fail-card p,
.result-copy p,
.faq-seo-grid > div:first-child p,
.local-seo-card p {
    color: #243752;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
}

.section-heading-wide p {
    margin: 14px 0 0;
}

.stk-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: stretch;
}

.stk-text-card,
.stk-fact-card,
.stk-vehicle-card,
.documents-card,
.prep-grid,
.stk-when-card,
.stk-fail-card,
.result-copy,
.local-seo-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(2, 11, 24, 0.07);
}

.stk-text-card {
    padding: 34px 36px;
}

.stk-two-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.stk-two-columns p,
.stk-vehicle-card p,
.documents-card p,
.prep-grid p,
.stk-when-card p,
.stk-fail-card p,
.result-copy p,
.faq-seo-grid > div:first-child p,
.local-seo-card p {
    margin: 0;
}

.stk-two-columns p + p,
.stk-vehicle-card p + p,
.local-seo-card p + p {
    margin-top: 14px;
}

.stk-fact-card {
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 32px 30px;
    background: linear-gradient(145deg, #020b18 0%, #07182c 100%);
    color: var(--white);
}

.stk-fact-card svg {
    width: 46px;
    height: 46px;
    fill: none;
    stroke: var(--red);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.stk-fact-card strong {
    font-size: 24px;
    font-weight: 950;
}

.stk-fact-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.65;
}

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

.stk-control-grid article {
    min-height: 225px;
    padding: 25px 23px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(2, 11, 24, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-page-stk .stk-control-grid article,
.service-page-ek .stk-control-grid article {
    border-color: #07182c;
    background: #07182c;
    color: var(--white);
}

.stk-control-grid article:hover {
    transform: translateY(-3px);
    border-color: rgba(227, 6, 19, 0.28);
    box-shadow: 0 18px 36px rgba(2, 11, 24, 0.11);
}

.service-page-stk .stk-control-grid article:hover,
.service-page-ek .stk-control-grid article:hover {
    border-color: rgba(227, 6, 19, 0.28);
    background: var(--white);
}

.stk-control-grid svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: #07182c;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.service-page-stk .stk-control-grid article svg,
.service-page-ek .stk-control-grid article svg {
    stroke: var(--white);
    transition: stroke 0.2s ease;
}

.service-page-stk .stk-control-grid article:hover svg,
.service-page-ek .stk-control-grid article:hover svg {
    stroke: #07182c;
}

.stk-control-grid h3 {
    margin: 18px 0 0;
    color: var(--text);
    font-size: 17px;
    font-weight: 950;
    line-height: 1.2;
    transition: color 0.2s ease;
}

.stk-control-grid p {
    margin: 12px 0 0;
    color: #4e5f76;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
    transition: color 0.2s ease;
}

.service-page-stk .stk-control-grid article h3,
.service-page-stk .stk-control-grid article p,
.service-page-ek .stk-control-grid article h3,
.service-page-ek .stk-control-grid article p {
    color: var(--white);
}

.service-page-stk .stk-control-grid article:hover h3,
.service-page-ek .stk-control-grid article:hover h3 {
    color: var(--text);
}

.service-page-stk .stk-control-grid article:hover p,
.service-page-ek .stk-control-grid article:hover p {
    color: #4e5f76;
}

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

.stk-vehicle-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 34px;
    align-items: center;
    padding: 34px 36px;
}

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

.vehicle-chip-grid span {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    border: 1px solid rgba(2, 11, 24, 0.08);
    border-radius: 8px;
    background: #f4f7fa;
    color: #10213b;
    font-size: 15px;
    font-weight: 900;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.vehicle-chip-grid span:hover {
    transform: translateY(-4px);
    border-color: rgba(227, 6, 19, 0.26);
    background: var(--white);
    box-shadow: 0 16px 32px rgba(2, 11, 24, 0.1);
}

.stk-reservation-grid {
    display: grid;
    grid-template-columns: 370px minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

.stk-documents-grid {
    display: grid;
    grid-template-columns: 1fr;
    min-width: 0;
}

.documents-card {
    width: 100%;
    min-width: 0;
    padding: 30px 32px;
}

.service-page-stk .documents-card,
.service-page-ek .documents-card {
    border-color: #07182c;
    background: #07182c;
    color: var(--white);
}

.service-page-stk .documents-card h2,
.service-page-stk .documents-card p,
.service-page-stk .document-checklist span,
.service-page-ek .documents-card h2,
.service-page-ek .documents-card p,
.service-page-ek .document-checklist span {
    color: var(--white);
}

.service-page-stk .documents-card .section-kicker,
.service-page-ek .documents-card .section-kicker {
    color: var(--red);
}

.service-page-stk .documents-card .documents-button,
.service-page-ek .documents-card .documents-button {
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: var(--red);
    color: var(--white);
}

.service-page-stk .document-checklist svg,
.service-page-ek .document-checklist svg {
    stroke: var(--red);
}

.document-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 24px;
    margin-top: 23px;
}

.document-checklist span,
.prep-short-grid span {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #142641;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.document-checklist svg,
.prep-short-grid svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-top: 2px;
    fill: none;
    stroke: #002f8e;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.5;
}

.documents-button {
    width: max-content;
    min-height: 52px;
    margin-top: 25px;
    padding: 0 24px;
}

.prep-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 34px;
    align-items: stretch;
    padding: 34px 36px;
    overflow: hidden;
}

.prep-grid img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    border-radius: 10px;
}

.prep-short-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 22px;
    margin-top: 24px;
}

.prep-details {
    margin-top: 24px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #f8fafc;
    overflow: hidden;
}

.prep-details summary,
.prep-details-heading {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    color: var(--text);
    cursor: pointer;
    font-size: 15px;
    font-weight: 950;
    list-style: none;
}

.prep-details-heading {
    cursor: default;
}

.prep-details summary::-webkit-details-marker {
    display: none;
}

.prep-details summary::after {
    content: "";
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--text);
    border-bottom: 2px solid var(--text);
    transform: rotate(45deg) translateY(-2px);
}

.prep-details[open] summary::after {
    transform: rotate(225deg) translate(-2px, -2px);
}

.prep-details > div:not(.prep-details-heading) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 22px;
    padding: 0 18px 18px;
}

.prep-details.is-always-open > div:not(.prep-details-heading) {
    padding-top: 0;
}

.prep-details span {
    color: #4e5f76;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.45;
}

.prep-check-item {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 13px;
    border: 1px solid rgba(2, 11, 24, 0.08);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.prep-check-item input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.prep-check-item span {
    color: #4e5f76;
    transition: color 0.18s ease;
}

.prep-check-item:hover {
    border-color: rgba(0, 124, 72, 0.24);
    box-shadow: 0 8px 18px rgba(2, 11, 24, 0.08);
}

.prep-check-item:has(input:checked) {
    border-color: rgba(13, 125, 76, 0.45);
    background: #0d7d4c;
    box-shadow: 0 10px 22px rgba(13, 125, 76, 0.18);
}

.prep-check-item:has(input:checked) span {
    color: var(--white);
}

.stk-when-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 30px;
    align-items: center;
    padding: 34px 36px;
    background: linear-gradient(135deg, #ffffff 0%, #f4f7fa 100%);
}

.stk-when-card p + p {
    margin-top: 14px;
}

.stk-when-card .button {
    justify-self: end;
    min-width: 228px;
    min-height: 56px;
    padding: 0 28px;
    font-size: 16px;
}

.stk-when-card svg {
    width: 18px;
    height: 18px;
}

.stk-fail-card {
    padding: 34px 36px;
    background: linear-gradient(135deg, #07182c 0%, #020b18 100%);
    color: var(--white);
}

.stk-fail-card .section-heading-wide {
    max-width: 1040px;
}

.stk-fail-card h2,
.stk-fail-card p {
    color: var(--white);
}

.stk-fail-card p {
    max-width: 1000px;
}

.stk-fail-card p + p {
    margin-top: 12px;
}

.stk-fail-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.stk-fail-grid article {
    min-height: 112px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 13px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.055);
    text-align: center;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.stk-fail-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(227, 6, 19, 0.36);
    background: rgba(255, 255, 255, 0.11);
}

.stk-fail-grid svg {
    width: 33px;
    height: 33px;
    fill: none;
    stroke: var(--red);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.stk-fail-grid strong {
    color: var(--white);
    font-size: 14px;
    font-weight: 950;
}

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

.process-seo-grid article {
    min-height: 190px;
    padding: 24px 22px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(2, 11, 24, 0.06);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-page-stk .process-seo-grid article,
.service-page-ek .process-seo-grid article {
    border-color: #07182c;
    background: #07182c;
    color: var(--white);
}

.service-page-stk .process-seo-grid article:hover,
.service-page-ek .process-seo-grid article:hover {
    transform: translateY(-3px);
    border-color: rgba(227, 6, 19, 0.28);
    background: var(--white);
    box-shadow: 0 18px 36px rgba(2, 11, 24, 0.11);
}

.process-seo-grid span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: 18px;
    font-weight: 950;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.service-page-stk .process-seo-grid span,
.service-page-ek .process-seo-grid span {
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: transparent;
    color: var(--white);
}

.service-page-stk .process-seo-grid article:hover span,
.service-page-ek .process-seo-grid article:hover span {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}

.process-seo-grid h3 {
    margin: 18px 0 0;
    color: var(--text);
    font-size: 17px;
    font-weight: 950;
    transition: color 0.2s ease;
}

.process-seo-grid p {
    margin: 10px 0 0;
    color: #4e5f76;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.55;
    transition: color 0.2s ease;
}

.service-page-stk .process-seo-grid h3,
.service-page-stk .process-seo-grid p,
.service-page-ek .process-seo-grid h3,
.service-page-ek .process-seo-grid p {
    color: var(--white);
}

.service-page-stk .process-seo-grid article:hover h3,
.service-page-ek .process-seo-grid article:hover h3 {
    color: var(--text);
}

.service-page-stk .process-seo-grid article:hover p,
.service-page-ek .process-seo-grid article:hover p {
    color: #4e5f76;
}

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

.result-copy {
    padding: 32px 34px;
}

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

.result-card-grid article {
    min-height: 150px;
    padding: 24px 24px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(2, 11, 24, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.result-card-grid article:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(2, 11, 24, 0.14);
}

.result-card-grid .is-ok:hover {
    border-color: #0d7d4c;
    background: #0d7d4c;
}

.result-card-grid .is-warning:hover {
    border-color: #d79012;
    background: #d79012;
}

.result-card-grid .is-danger:hover {
    border-color: #e30613;
    background: #e30613;
}

.result-card-grid article::before {
    content: "";
    display: block;
    width: 42px;
    height: 5px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #0d7d4c;
}

.result-card-grid .is-warning::before {
    background: #d79012;
}

.result-card-grid .is-danger::before {
    background: var(--red);
}

.result-card-grid strong {
    color: var(--text);
    font-size: 19px;
    font-weight: 950;
}

.result-card-grid p {
    margin: 10px 0 0;
    color: #4e5f76;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.55;
}

.result-card-grid article:hover strong,
.result-card-grid article:hover p {
    color: var(--white);
}

.result-card-grid article:hover::before {
    background: rgba(255, 255, 255, 0.78);
}

.ek-fuel-grid {
    margin-top: 0;
}

.ek-fuel-grid article {
    min-height: 258px;
}

.ek-fuel-grid article::before {
    display: none;
}

.ek-fuel-grid article > svg {
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    fill: none;
    stroke: #07182c;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.ek-fuel-grid article:hover strong {
    color: var(--text);
}

.ek-fuel-grid article:hover p {
    color: #4e5f76;
}

.ek-fuel-grid .text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: #0067d8;
    font-weight: 950;
    text-decoration: none;
}

.ek-fuel-grid .text-link svg {
    width: 15px;
    height: 15px;
    margin: 0;
    stroke: currentColor;
}

.faq-seo-grid {
    display: grid;
    grid-template-columns: 0.55fr minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.local-seo-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 30px;
    align-items: center;
    padding: 34px 36px;
    background: linear-gradient(135deg, #ffffff 0%, #f4f7fa 100%);
}

.local-seo-card a:not(.button) {
    color: #0a66d8;
    font-weight: 900;
}

.local-seo-card .button {
    justify-self: end;
    width: 240px;
}

.service-page-stk .local-seo-card .button,
.service-page-ek .local-seo-card .button {
    height: 50px;
}

.service-combo-section {
    padding: 0 0 27px;
}

.service-combo {
    display: grid;
    grid-template-columns: 1.25fr repeat(2, 1fr);
    align-items: center;
    gap: 26px;
    min-height: 122px;
    padding: 0 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, #020b18, #07182c);
    color: var(--white);
}

.service-combo h2 {
    margin: 0;
    font-size: 19px;
    font-weight: 900;
}

.service-combo p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
}

.service-combo a {
    display: grid;
    grid-template-columns: 63px 1fr;
    align-items: center;
    min-height: 78px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.service-combo a > span {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.service-combo svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: var(--white);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.service-combo strong {
    align-self: end;
    font-size: 16px;
    font-weight: 950;
}

.service-combo small {
    align-self: start;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 650;
}

.ek-feature-overlap {
    position: relative;
    z-index: 5;
    margin-top: -60px;
    padding-bottom: 25px;
}

.ek-feature-panel {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    min-height: 126px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 15px 32px rgba(2, 11, 24, 0.12);
}

.ek-feature-panel article {
    display: grid;
    place-items: center;
    align-content: center;
    min-width: 0;
    padding: 0 15px;
    text-align: center;
    border-right: 1px solid var(--line);
}

.ek-feature-panel article:last-child {
    border-right: 0;
}

.ek-feature-panel svg {
    width: 39px;
    height: 39px;
    margin-bottom: 16px;
    fill: none;
    stroke: #07182c;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

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

.ek-feature-panel strong {
    color: var(--text);
    font-size: 14px;
    font-weight: 900;
}

.ek-feature-panel span {
    margin-top: 3px;
    color: #1b2b44;
    font-size: 14px;
    font-weight: 560;
    line-height: 1.25;
}

.ek-detail-section {
    padding: 0 0 32px;
}

.ek-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 0.55fr;
    gap: 30px;
    align-items: stretch;
}

.ek-vehicle-card,
.ek-info-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(2, 11, 24, 0.08);
}

.ek-vehicle-card {
    min-height: 416px;
    padding: 33px 31px;
    background: var(--white);
}

.ek-vehicle-card h2,
.ek-vehicle-card h3,
.ek-info-card h2 {
    margin: 0;
    color: var(--text);
    font-size: 23px;
    font-weight: 950;
    text-transform: uppercase;
}

.ek-vehicle-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 38px;
}

.ek-vehicle-types div {
    min-width: 0;
}

.ek-vehicle-types svg {
    width: 41px;
    height: 41px;
    fill: none;
    stroke: #07182c;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.ek-vehicle-types strong,
.ek-vehicle-types span {
    display: block;
}

.ek-vehicle-types strong {
    margin-top: 21px;
    color: var(--text);
    font-size: 15px;
    font-weight: 900;
}

.ek-vehicle-types span {
    margin-top: 4px;
    color: #142641;
    font-size: 14px;
    line-height: 1.45;
}

.ek-card-divider,
.ek-info-divider {
    height: 1px;
    background: var(--line);
}

.ek-card-divider {
    margin: 36px 0 25px;
}

.ek-vehicle-card h3 {
    font-size: 21px;
}

.ek-check-list {
    display: grid;
    gap: 16px;
    margin-top: 23px;
}

.ek-check-list span {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #142641;
    font-size: 15px;
    font-weight: 620;
}

.ek-check-list svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: #002f8e;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.5;
}

.ek-reservation-card {
    min-height: 416px;
}

.ek-info-card {
    min-height: 416px;
    padding: 30px 30px;
    background: #f4f7fb;
}

.ek-info-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #dbe8ff;
    color: #0f66ff;
}

.ek-info-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.ek-info-card h2 {
    margin-top: 45px;
    font-size: 16px;
}

.ek-info-card p {
    margin: 17px 0 0;
    color: #172842;
    font-size: 15px;
    font-weight: 560;
    line-height: 1.62;
}

.ek-info-divider {
    margin: 63px 0 25px;
}

.ek-info-note {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    align-items: center;
}

.ek-info-note svg {
    width: 45px;
    height: 45px;
    fill: none;
    stroke: #07182c;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.ek-info-note span {
    color: #172842;
    font-size: 15px;
    font-weight: 620;
    line-height: 1.42;
}

.ek-recommend-section {
    padding: 0 0 27px;
}

.ek-recommend {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 1fr);
    align-items: center;
    gap: 26px;
    min-height: 122px;
    padding: 0 31px 0 49px;
    border-radius: 9px;
    background: linear-gradient(135deg, #020b18, #07182c);
    color: var(--white);
}

.ek-recommend h2 {
    margin: 0;
    font-size: 21px;
    font-weight: 950;
    text-transform: uppercase;
}

.ek-recommend p {
    margin: 11px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
}

.ek-recommend a {
    position: relative;
    display: grid;
    grid-template-columns: 74px 1fr 28px;
    align-items: center;
    min-height: 79px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.ek-recommend a > span {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.ek-recommend svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.ek-recommend strong {
    align-self: end;
    font-size: 19px;
    font-weight: 950;
}

.ek-recommend small {
    align-self: start;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 650;
}

.ek-recommend .ek-card-arrow {
    grid-row: 1 / span 2;
    grid-column: 3;
    width: 20px;
    height: 20px;
    justify-self: end;
}

.pricing-hero {
    position: relative;
    min-height: 405px;
    overflow: visible;
    background:
        url("../images/cennik-hero.webp?v=20260512-cennik") center right / cover no-repeat,
        var(--navy);
    color: var(--white);
}

.pricing-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #020b18 0%, rgba(2, 11, 24, 0.98) 38%, rgba(2, 11, 24, 0.62) 58%, rgba(2, 11, 24, 0.08) 100%),
        linear-gradient(180deg, rgba(2, 11, 24, 0.02) 0%, rgba(2, 11, 24, 0.24) 100%);
}

.pricing-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 78px;
}

.pricing-hero h1 {
    margin: 0;
    max-width: 650px;
    color: var(--white);
    font-size: 58px;
    font-weight: 950;
    line-height: 1.04;
    letter-spacing: -0.4px;
    text-transform: none;
}

.pricing-hero p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    font-weight: 720;
}

.pricing-benefits-wrap {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: -72px;
}

.pricing-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    min-height: 0;
}

.pricing-benefits article {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    gap: 16px;
    min-width: 0;
    min-height: 136px;
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 16px 34px rgba(2, 11, 24, 0.13);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.pricing-benefits article:hover {
    transform: translateY(-4px);
    border-color: rgba(227, 6, 19, 0.32);
    box-shadow: 0 22px 42px rgba(2, 11, 24, 0.16);
}

.pricing-benefits svg {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    padding: 12px;
    border-radius: 50%;
    background: #f0f3f7;
    fill: none;
    stroke: #07182c;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.pricing-benefits strong,
.pricing-benefits span {
    display: block;
}

.pricing-benefits strong {
    color: var(--text);
    font-size: 18px;
    font-weight: 950;
    line-height: 1.1;
}

.pricing-benefits span {
    margin-top: 7px;
    color: #52627a;
    font-size: 16px;
    font-weight: 620;
}

.pricing-content {
    padding: 0 0 34px;
}

.pricing-layout {
    display: block;
}

.price-list-card,
.pricing-reservation-card,
.pricing-info-grid article {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(2, 11, 24, 0.08);
}

.price-list-card {
    overflow: hidden;
}

.price-list-card h2,
.pricing-reservation-card h2 {
    margin: 0;
    color: var(--text);
    font-size: 23px;
    font-weight: 950;
    letter-spacing: 0.1px;
    text-transform: uppercase;
}

.price-list-card h2 {
    padding: 26px 28px 8px;
}

.pricing-validity {
    margin: 0;
    padding: 0 28px 20px;
    color: #52627a;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.45;
}

.pricing-search {
    padding: 0 28px 24px;
}

.pricing-search label {
    display: block;
    margin-bottom: 9px;
    color: var(--text);
    font-size: 14px;
    font-weight: 950;
}

.pricing-search-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.pricing-search input {
    width: 100%;
    height: 48px;
    border: 1px solid #d8e0ea;
    border-radius: 9px;
    padding: 0 16px;
    color: #0a1a2f;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    outline: none;
}

.pricing-search input:focus {
    border-color: #e30613;
    box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.1);
}

.pricing-search button {
    display: none;
    min-width: 104px;
    height: 48px;
    border: 1px solid #d8e0ea;
    border-radius: 9px;
    background: #f8fafc;
    color: #0a1a2f;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
}

.pricing-search button.is-visible {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pricing-search button:hover {
    border-color: #e30613;
    color: #e30613;
}

.prices-table {
    color: #10223a;
}

.prices-head,
.prices-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px 95px;
}

.prices-head {
    min-height: 44px;
    align-items: center;
    padding: 0 31px;
    background: #f1f3f6;
    color: #172842;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
}

.prices-section-title,
.prices-row {
    border-top: 1px solid var(--line);
}

.prices-section-title {
    grid-column: 1 / -1;
    min-height: 42px;
    padding: 14px 31px 9px;
    font-size: 17px;
    font-weight: 950;
}

.prices-row {
    min-height: 35px;
    align-items: center;
    font-size: 15px;
    font-weight: 620;
    transition: background 0.16s ease, box-shadow 0.16s ease;
}

.prices-row:hover,
.prices-row:focus {
    background: #eef5ff;
    box-shadow: inset 5px 0 0 #e30613;
    outline: none;
}

.prices-row:hover em,
.prices-row:hover strong,
.prices-row:focus em,
.prices-row:focus strong {
    background: #eef5ff;
}

.prices-row.is-hidden,
.prices-section-title.is-hidden,
.prices-note.is-hidden {
    display: none;
}

.prices-row span,
.prices-row em {
    height: 100%;
    padding: 7px 31px;
}

.prices-row em {
    display: flex;
    align-items: center;
    border-left: 1px solid var(--line);
    color: #52627a;
    font-style: normal;
    font-weight: 700;
}

.prices-row strong {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 7px 20px;
    border-left: 1px solid var(--line);
    color: #07162b;
    font-size: 17px;
    font-weight: 950;
}

.prices-note {
    padding: 13px 31px;
    border-top: 1px solid var(--line);
    background: #f8fafc;
    color: #172842;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

.pricing-reservation-card {
    min-height: 720px;
    padding: 30px 30px;
}

.pricing-reservation-card > p {
    margin: 8px 0 32px;
    color: #52627a;
    font-size: 16px;
    font-weight: 620;
}

.pricing-reservation-card label {
    display: block;
    margin-top: 23px;
    color: var(--text);
    font-size: 14px;
    font-weight: 950;
}

.pricing-reservation-card label span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 49px;
    margin-top: 10px;
    padding: 0 16px;
    border: 1px solid #d8e0ea;
    border-radius: 8px;
    color: #42506a;
    font-size: 16px;
    font-weight: 590;
}

.pricing-reservation-card label svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #42506a;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.pricing-reservation-card .button {
    width: 100%;
    height: 55px;
    margin-top: 33px;
    font-size: 16px;
}

.pricing-reservation-benefits {
    display: grid;
    gap: 24px;
    margin-top: 47px;
}

.pricing-reservation-benefits span {
    display: flex;
    align-items: center;
    gap: 17px;
    color: #172842;
    font-size: 16px;
    font-weight: 650;
}

.pricing-reservation-benefits svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #001e56;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.5;
}

.pricing-info-section {
    padding: 0 0 31px;
}

.pricing-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 29px;
}

.pricing-info-grid article {
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    min-height: 115px;
    padding: 0 25px;
}

.pricing-info-grid svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: #07182c;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.pricing-info-grid strong,
.pricing-info-grid span {
    display: block;
}

.pricing-info-grid strong {
    color: var(--text);
    font-size: 16px;
    font-weight: 950;
}

.pricing-info-grid span {
    margin-top: 4px;
    color: #52627a;
    font-size: 15px;
    font-weight: 620;
    line-height: 1.3;
}

.contact-page {
    background: #f4f7fa;
}

.contact-hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background:
        url("../images/contact-hero.webp?v=20260512-contact-new") center right / cover no-repeat,
        var(--navy);
    color: var(--white);
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #020b18 0%, rgba(2, 11, 24, 0.98) 36%, rgba(2, 11, 24, 0.64) 58%, rgba(2, 11, 24, 0.1) 100%),
        linear-gradient(180deg, rgba(2, 11, 24, 0.03) 0%, rgba(2, 11, 24, 0.18) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 56px;
}

.contact-breadcrumbs {
    margin-bottom: 30px;
}

.contact-breadcrumbs strong {
    color: var(--red);
}

.contact-hero h1 {
    margin: 0;
    color: var(--white);
    font-size: clamp(56px, 5.8vw, 82px);
    font-weight: 950;
    line-height: 0.96;
    letter-spacing: 0;
}

.contact-hero p {
    max-width: 620px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 19px;
    font-weight: 720;
    line-height: 1.5;
}

.contact-overlap {
    position: relative;
    z-index: 4;
    margin-top: -62px;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    padding: 21px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 22px 55px rgba(2, 11, 24, 0.16);
}

.contact-action-card {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    min-height: 192px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 10px 26px rgba(2, 11, 24, 0.05);
}

.contact-card-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 8px;
    background: #07182c;
    color: var(--white);
    box-shadow: 0 10px 22px rgba(2, 11, 24, 0.17);
}

.contact-card-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.contact-action-card h2 {
    margin: 4px 0 0;
    color: var(--text);
    font-size: 19px;
    font-weight: 950;
}

.contact-action-card p {
    margin: 11px 0 0;
    color: #34445d;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.45;
}

.contact-action-card p a {
    color: inherit;
    text-decoration: none;
}

.contact-action-card p a:hover {
    color: var(--red);
}

.contact-card-link {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 42px;
    margin-top: 10px;
    border: 1px solid var(--line);
    border-radius: 7px;
    color: #33445e;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.contact-card-link:hover {
    transform: translateY(-2px);
    border-color: rgba(227, 6, 19, 0.32);
    color: var(--red);
    box-shadow: 0 10px 22px rgba(2, 11, 24, 0.08);
}

.contact-card-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.contact-content {
    padding: 28px 0 50px;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 34px;
    align-items: stretch;
}

.contact-form-stack {
    display: contents;
}

.contact-form-card {
    grid-column: 1;
    grid-row: 1;
}

.contact-map-card {
    grid-column: 2;
    grid-row: 1;
}

.contact-form-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(2, 11, 24, 0.06);
}

.contact-form-card h2 {
    margin: 0;
    color: var(--text);
    font-size: 23px;
    font-weight: 950;
}

.contact-form-card > p {
    margin: 8px 0 20px;
    color: #52627a;
    font-size: 15px;
    font-weight: 650;
}

.contact-form-card {
    padding: 30px;
}

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

.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select {
    width: 100%;
    border: 1px solid #dce3ec;
    border-radius: 8px;
    background: var(--white);
    color: var(--text);
    font: inherit;
    font-size: 18px;
    font-weight: 560;
    outline: none;
}

.contact-form-card input,
.contact-form-card select {
    height: 51px;
    padding: 0 15px;
}

.contact-form-card input[name="email"],
.contact-form-card select,
.contact-form-card textarea {
    grid-column: 1 / -1;
}

.contact-form-card select {
    appearance: none;
    background:
        linear-gradient(45deg, transparent 50%, #4e5f76 50%) right 18px center / 8px 8px no-repeat,
        linear-gradient(135deg, #4e5f76 50%, transparent 50%) right 12px center / 8px 8px no-repeat,
        var(--white);
}

.contact-form-card textarea {
    min-height: 108px;
    resize: vertical;
    padding: 15px;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.08);
}

.contact-consent {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    color: #52627a;
    font-size: 14px;
    font-weight: 750;
}

.contact-consent input {
    width: 18px;
    height: 18px;
    accent-color: var(--red);
}

.contact-consent a {
    color: var(--red);
    text-decoration: none;
}

.contact-form-card .button {
    width: 100%;
    height: 56px;
    margin-top: 18px;
    border: 0;
    font-size: 17px;
    cursor: pointer;
}

.contact-reminder-panel {
    grid-column: 1 / -1;
    grid-row: 2;
    border-radius: 12px;
}

.contact-map-card {
    display: flex;
    height: 100%;
    min-height: 430px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(2, 11, 24, 0.06);
}

.contact-map {
    position: relative;
    flex: 1;
    min-height: 430px;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background:
        linear-gradient(27deg, transparent 0 46%, rgba(251, 196, 63, 0.85) 46.3% 47.4%, transparent 47.7%),
        linear-gradient(145deg, rgba(255, 255, 255, 0) 0 42%, rgba(185, 206, 222, 0.7) 42.2% 42.7%, transparent 43%),
        linear-gradient(33deg, transparent 0 58%, rgba(214, 224, 232, 0.8) 58.2% 58.8%, transparent 59%),
        linear-gradient(120deg, rgba(211, 234, 186, 0.55) 0 7%, transparent 7.2% 38%, rgba(211, 234, 186, 0.55) 38.2% 44%, transparent 44.2%),
        repeating-linear-gradient(35deg, rgba(255, 255, 255, 0) 0 34px, rgba(203, 214, 224, 0.58) 35px 37px),
        repeating-linear-gradient(130deg, rgba(255, 255, 255, 0) 0 42px, rgba(203, 214, 224, 0.45) 43px 45px),
        #eef1ec;
}

.contact-map::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.38);
}

.contact-google-map {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 10px;
}

.contact-google-map[hidden] {
    display: none;
}

.contact-map.is-google-map-ready {
    background: #eef2f7;
}

.contact-map.is-google-map-ready::after {
    display: none;
}

.contact-map.is-google-map-ready .map-road,
.contact-map.is-google-map-ready .map-pin {
    display: none;
}

.contact-map.is-google-map-ready .map-label,
.contact-map.is-google-map-ready .map-bottom-info {
    z-index: 4;
}

.map-label {
    position: absolute;
    z-index: 2;
    left: 48%;
    top: 28%;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 12px;
    align-items: center;
    width: 290px;
    min-height: 118px;
    padding: 0 25px;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 12px 26px rgba(2, 11, 24, 0.17);
    transform: translate(-50%, -50%);
    text-decoration: none;
}

.map-label::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 24px;
    height: 24px;
    background: var(--white);
    transform: translateX(-50%) rotate(45deg);
}

.map-label svg {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    fill: var(--red);
    stroke: var(--red);
    stroke-width: 1.5;
}

.map-label div {
    position: relative;
    z-index: 2;
}

.map-label strong,
.map-label span {
    display: block;
}

.map-label strong {
    color: var(--text);
    font-size: 19px;
    font-weight: 950;
}

.map-label span {
    margin-top: 7px;
    color: #1c2b45;
    font-size: 18px;
    font-weight: 560;
    line-height: 1.35;
    text-decoration: none;
}

.map-label:hover strong,
.map-label:hover span {
    color: var(--red);
}

.map-pin {
    position: absolute;
    z-index: 2;
    left: 51%;
    top: 49%;
    color: var(--red);
    filter: drop-shadow(0 6px 12px rgba(2, 11, 24, 0.28));
}

.map-pin svg {
    width: 46px;
    height: 46px;
    fill: var(--red);
    stroke: var(--red);
}

.map-controls {
    position: absolute;
    z-index: 3;
    right: 18px;
    bottom: 104px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 24px rgba(2, 11, 24, 0.12);
}

.map-controls span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: #34445d;
    font-size: 24px;
    font-weight: 850;
}

.map-controls span + span {
    border-top: 1px solid var(--line);
}

.map-bottom-info {
    position: absolute;
    z-index: 3;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
}

.map-bottom-info article {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    align-items: center;
    min-height: 72px;
    padding: 12px 18px;
}

.map-bottom-info article + article {
    border-left: 1px solid var(--line);
}

.map-bottom-info svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: #07182c;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.map-bottom-info strong,
.map-bottom-info span {
    display: block;
}

.map-bottom-info strong {
    color: var(--text);
    font-size: 13px;
    font-weight: 950;
}

.map-bottom-info span {
    margin-top: 3px;
    color: #52627a;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.35;
}

.contact-directions,
.contact-region-section {
    margin-top: 30px;
}

.contact-directions h2,
.contact-region-section h2 {
    margin: 0 0 16px;
    color: var(--text);
    font-size: 22px;
    font-weight: 950;
}

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

.direction-grid article,
.region-grid article {
    position: relative;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 15px;
    align-items: center;
    min-height: 82px;
    padding: 15px 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(2, 11, 24, 0.07);
}

.direction-grid article:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -37px;
    width: 22px;
    height: 22px;
    border-top: 1px solid #cfd8e5;
    border-right: 1px solid #cfd8e5;
    transform: translateY(-50%) rotate(45deg);
}

.direction-grid span,
.region-grid span,
.contact-faq-title span {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #f0f5fb;
    color: #07182c;
}

.direction-grid svg,
.region-grid svg,
.contact-faq-title svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.direction-grid strong,
.region-grid strong {
    color: var(--text);
    font-size: 15px;
    font-weight: 950;
}

.direction-grid p,
.region-grid small {
    margin: 4px 0 0;
    color: #52627a;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.35;
}

.contact-faq-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 88px;
    margin-top: 28px;
    padding: 14px 20px;
    border-radius: 9px;
    background: linear-gradient(135deg, #020b18 0%, #07182c 100%);
    color: var(--white);
}

.contact-faq-title {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 240px;
}

.contact-faq-title span {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
}

.contact-faq-title h2 {
    margin: 0;
    color: var(--white);
    font-size: 18px;
    font-weight: 950;
}

.contact-faq-title p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 600;
}

.contact-faq-strip details {
    position: relative;
    min-width: 0;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.contact-faq-strip summary {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 14px;
    color: var(--white);
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
    list-style: none;
}

.contact-faq-strip summary::-webkit-details-marker {
    display: none;
}

.contact-faq-strip summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.78);
    border-bottom: 2px solid rgba(255, 255, 255, 0.78);
    transform: rotate(45deg) translateY(-2px);
}

.contact-faq-strip p {
    margin: 0;
    padding: 0 14px 13px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.45;
}

.contact-faq-strip .button {
    min-width: 184px;
    height: 48px;
    border: 0;
}

.contact-region-section > p {
    margin: -5px 0 20px;
    color: #52627a;
    font-size: 15px;
    font-weight: 650;
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.region-grid article {
    min-height: 78px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.region-grid article:hover {
    transform: translateY(-3px);
    border-color: rgba(227, 6, 19, 0.24);
    box-shadow: 0 18px 34px rgba(2, 11, 24, 0.11);
}

.region-grid .is-active {
    border-color: #07182c;
    background: #07182c;
}

.region-grid .is-active strong,
.region-grid .is-active small {
    color: var(--white);
}

.region-grid .is-active span {
    background: rgba(255, 255, 255, 0.12);
    color: var(--red);
}

@media (max-width: 1180px) {
    .main-nav {
        gap: 16px;
    }

    .header-row {
        grid-template-columns: 160px 1fr 210px;
    }

    .hero-copy {
        width: 700px;
    }

    .hero h1 {
        font-size: clamp(48px, 5vw, 58px);
    }

    .hero-copy p {
        width: 520px;
        font-size: 20px;
    }

    .hero-benefits article {
        gap: 18px;
        padding: 0 22px;
    }

    .hero-benefits strong {
        font-size: 18px;
    }

    .hero-benefits span {
        font-size: 15px;
    }

    .price-band,
    .reviews-faq-grid {
        grid-template-columns: 1fr;
    }

    .reservation-strip {
        padding: 0 48px;
    }

    .reminder-panel {
        grid-template-columns: 112px minmax(0, 1fr);
        grid-template-areas:
            "icon copy"
            "fields fields"
            "consent consent"
            "benefits benefits";
        column-gap: 24px;
    }

    .reminder-icon {
        width: 112px;
        height: 112px;
    }

    .reminder-icon svg {
        width: 66px;
        height: 66px;
    }

    .reminder-copy {
        padding-right: 24px;
    }

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

    .reminder-benefits {
        grid-template-columns: repeat(4, minmax(0, max-content));
        justify-content: space-between;
        gap: 18px;
    }

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

    .sub-hero h1 {
        font-size: 64px;
    }

    .sub-hero h2 {
        font-size: 30px;
    }

    .service-feature-panel strong {
        font-size: 16px;
    }

    .check-grid {
        column-gap: 48px;
    }

    .compact-benefits {
        gap: 18px;
    }

    .compact-benefits article {
        grid-template-columns: 44px 1fr;
        column-gap: 12px;
    }

    .compact-benefits div {
        width: 44px;
        height: 44px;
    }

    .service-combo {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .stk-intro-grid,
    .stk-vehicle-card,
    .stk-reservation-grid,
    .stk-documents-grid,
    .prep-grid,
    .stk-when-card,
    .faq-seo-grid,
    .local-seo-card {
        grid-template-columns: 1fr;
    }

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

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

    .local-seo-card .button {
        justify-self: start;
    }

    .stk-when-card .button {
        justify-self: start;
    }

    .ek-feature-panel {
        grid-template-columns: repeat(3, 1fr);
    }

    .ek-feature-panel article {
        min-height: 126px;
        border-bottom: 1px solid var(--line);
    }

    .ek-feature-panel article:nth-last-child(-n + 3) {
        border-bottom: 0;
    }

    .ek-feature-panel article:nth-child(3n) {
        border-right: 0;
    }

    .ek-detail-grid {
        grid-template-columns: 1fr;
    }

    .ek-vehicle-card,
    .ek-info-card {
        min-height: 0;
    }

    .ek-info-card h2 {
        margin-top: 30px;
    }

    .ek-info-divider {
        margin-top: 34px;
    }

    .ek-recommend {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .pricing-benefits article {
        padding: 20px;
    }

    .pricing-layout {
        grid-template-columns: 1fr;
    }

    .pricing-reservation-card {
        min-height: 0;
    }

    .pricing-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-page-grid {
        grid-template-columns: 1fr;
    }

    .faq-category-card {
        position: static;
    }

    .contact-grid {
        grid-template-columns: 350px 1fr;
        gap: 28px;
    }

    .contact-reservation-strip {
        padding: 0 60px;
    }
}

@media (min-width: 921px) and (max-width: 1060px) {
    .header-row {
        grid-template-columns: 145px minmax(0, 1fr) 188px;
        gap: 12px;
    }

    .logo img {
        width: 145px;
    }

    .main-nav {
        gap: 10px;
        font-size: 12px;
    }

    .header-button {
        min-width: 188px;
        font-size: 14px;
    }
}

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

    .site-header,
    .header-row {
        height: auto;
    }

    .header-row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px 16px;
        padding: 18px 0;
    }

    .logo {
        grid-column: 1;
        grid-row: 1;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }

    html.js .main-nav {
        grid-column: 1 / -1;
        grid-row: 3;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        height: auto;
        overflow: hidden;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        background: rgba(7, 24, 44, 0.98);
        box-shadow: 0 18px 40px rgba(2, 11, 24, 0.28);
    }

    html.js .site-header.is-menu-open .main-nav {
        display: flex;
    }

    html.js .main-nav a {
        min-height: 42px;
        align-items: center;
        padding: 0 12px;
        border-radius: 8px;
    }

    html.js .main-nav a:hover,
    html.js .main-nav .is-active {
        background: rgba(255, 255, 255, 0.06);
    }

    html.js .main-nav a::after {
        left: 12px;
        bottom: 6px;
        transform: none;
    }

    .header-button {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        min-width: 0;
        justify-self: stretch;
    }

    .hero {
        min-height: auto;
        padding-bottom: 0;
    }

    .hero-overlay {
        background: linear-gradient(90deg, #020b18 0%, rgba(2, 11, 24, 0.9) 62%, rgba(2, 11, 24, 0.5) 100%);
    }

    .hero-content {
        padding: 48px 0 34px;
    }

    .hero-copy,
    .hero-copy p {
        width: min(100%, 560px);
    }

    .hero-benefits-wrap {
        position: relative;
    }

    .hero-benefits,
    .service-grid,
    .review-cards,
    .pricing-benefits,
    .pricing-info-grid {
        grid-template-columns: 1fr;
    }

    .hero-benefits {
        height: auto;
    }

    .hero-benefits article {
        min-height: 92px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .pricing-hero {
        min-height: auto;
    }

    .pricing-hero-content {
        padding: 54px 0 42px;
    }

    .pricing-hero h1 {
        font-size: clamp(42px, 11vw, 58px);
    }

    .pricing-hero p {
        font-size: 20px;
    }

    .pricing-benefits-wrap {
        position: relative;
        bottom: auto;
        margin-top: 0;
        padding: 0 0 28px;
        background: transparent;
    }

    .pricing-benefits {
        min-height: 0;
    }

    .pricing-benefits article {
        min-height: 112px;
    }

    .pricing-benefits article:last-child {
        border-bottom: 1px solid var(--line);
    }

    .pricing-content {
        padding-top: 28px;
    }

    .faq-hero {
        min-height: 320px;
    }

    .faq-hero-content {
        padding: 42px 0 50px;
    }

    .faq-group {
        padding: 24px;
    }

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

    .contact-hero-content {
        padding: 58px 0 40px;
    }

    .contact-hero h1 {
        font-size: clamp(42px, 11vw, 58px);
    }

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

    .contact-info-card article {
        min-height: 96px;
    }

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

    .contact-reservation-strip {
        display: grid;
        gap: 20px;
        justify-items: start;
        padding: 28px 34px;
    }

    .pricing-layout {
        gap: 24px;
    }

    .price-list-card {
        min-height: 0;
    }

    .prices-head,
    .prices-row {
        grid-template-columns: minmax(0, 1fr) 120px 86px;
    }

    .pricing-info-grid {
        gap: 16px;
    }

    .service-overlap {
        margin-top: 0;
        padding-top: 24px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .process-arrow {
        display: none;
    }

    .price-table {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .price-table article {
        padding: 0;
        border-right: 0;
    }

    .price-button {
        margin: 18px auto 0;
    }

    .reminder-panel {
        grid-template-columns: 1fr;
        grid-template-areas:
            "icon"
            "copy"
            "fields"
            "consent"
            "benefits";
        justify-items: start;
        padding: 24px;
    }

    .reminder-copy {
        width: 100%;
        padding-right: 0;
        border-right: 0;
    }

    .reminder-fields {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reminder-benefits {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: start;
        row-gap: 16px;
    }

    .reminder-benefits span {
        white-space: normal;
    }

    .reservation-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        padding: 28px;
    }

    .sub-hero {
        min-height: auto;
    }

    .sub-hero-stk {
        background-position: center right 28%;
    }

    .sub-hero-overlay {
        background: linear-gradient(90deg, #020b18 0%, rgba(2, 11, 24, 0.92) 68%, rgba(2, 11, 24, 0.58) 100%);
    }

    .sub-hero-content {
        padding: 38px 0 96px;
    }

    .service-feature-overlap {
        margin-top: -46px;
        padding-bottom: 34px;
    }

    .service-feature-panel,
    .stk-detail-grid,
    .check-grid,
    .compact-benefits,
    .stk-two-columns,
    .document-checklist,
    .prep-short-grid,
    .prep-details > div:not(.prep-details-heading),
    .result-card-grid {
        grid-template-columns: 1fr;
    }

    .stk-text-card,
    .stk-vehicle-card,
    .documents-card,
    .prep-grid,
    .result-copy,
    .local-seo-card {
        padding: 26px 24px;
    }

    .stk-control-grid,
    .process-seo-grid {
        grid-template-columns: 1fr;
    }

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

    .prep-grid img {
        min-height: 240px;
    }

    .service-feature-panel article {
        min-height: 145px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .service-feature-panel article:last-child {
        border-bottom: 0;
    }

    .stk-detail-main {
        padding: 0;
    }

    .check-grid {
        gap: 22px;
    }

    .compact-benefits {
        gap: 20px;
    }

    .reservation-card {
        order: -1;
    }

    .sub-hero-ek {
        background-position: center right;
    }

    .ek-feature-overlap {
        margin-top: -46px;
    }

    .ek-feature-panel,
    .ek-vehicle-types {
        grid-template-columns: 1fr;
    }

    .ek-feature-panel article,
    .ek-feature-panel article:nth-last-child(-n + 3) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .ek-feature-panel article:last-child {
        border-bottom: 0;
    }

    .ek-vehicle-types {
        gap: 24px;
    }
}

@media (max-width: 560px) {
    .logo img {
        width: 144px;
    }

    .header-row {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .reservation-button {
        width: 100%;
        min-width: 0;
    }

    .header-button {
        width: 100%;
        min-width: 0;
        height: 42px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-copy p {
        font-size: 18px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 14px;
    }

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

    .rating-row {
        flex-wrap: wrap;
    }

    .rating-row small {
        width: 100%;
        margin-left: 0;
    }

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

    .contact-content {
        padding-top: 24px;
    }

    .contact-info-card,
    .contact-form-card {
        border-radius: 10px;
    }

    .contact-info-card {
        padding: 0 22px;
    }

    .contact-info-card article {
        grid-template-columns: 46px 1fr;
        gap: 14px;
        padding: 23px 0 21px;
    }

    .contact-info-card svg {
        width: 36px;
        height: 36px;
    }

    .contact-info-card p,
    .map-label span {
        font-size: 16px;
    }

    .contact-form-card {
        padding: 24px 22px;
    }

    .contact-form-card input,
    .contact-form-card textarea {
        font-size: 16px;
    }

    .map-label {
        width: min(280px, calc(100% - 42px));
        grid-template-columns: 46px 1fr;
        padding: 0 20px;
    }

    .contact-reservation-strip {
        margin-bottom: 16px;
        padding: 24px 22px;
    }

    .contact-reservation-strip .reservation-strip-copy {
        gap: 18px;
    }

    .contact-reservation-strip h2 {
        font-size: 20px;
    }

    .contact-reservation-strip .reservation-button {
        width: 100%;
    }

    .reminder-panel {
        padding: 20px;
    }

    .reminder-copy h2 {
        font-size: 24px;
    }

    .reminder-fields,
    .reminder-consent,
    .reminder-benefits {
        grid-template-columns: 1fr;
    }

    .reminder-contact-fields .button {
        margin-top: 2px;
    }

    .breadcrumbs {
        font-size: 14px;
    }

    .sub-hero h1 {
        font-size: 56px;
    }

    .sub-hero h2 {
        font-size: 27px;
    }

    .sub-hero p {
        font-size: 18px;
    }

    .sub-hero-actions {
        flex-direction: column;
    }

    .sub-hero-actions .button,
    .documents-button,
    .stk-when-card .button,
    .local-seo-card .button {
        width: 100%;
        min-width: 0;
    }

    .documents-button {
        padding-top: 14px;
        padding-bottom: 14px;
        line-height: 1.25;
        text-align: center;
        white-space: normal;
    }

    .section-heading-wide h2,
    .stk-text-card h2,
    .stk-vehicle-card h2,
    .documents-card h2,
    .prep-grid h2,
    .stk-when-card h2,
    .stk-fail-card h2,
    .result-copy h2,
    .faq-seo-grid h2,
    .local-seo-card h2 {
        font-size: 24px;
    }

    .stk-when-card,
    .stk-fail-card {
        padding: 26px 22px;
    }

    .stk-fail-grid {
        grid-template-columns: 1fr;
    }

    .reservation-card {
        padding: 24px 22px;
    }

    .service-combo a {
        grid-template-columns: 55px 1fr;
        padding: 12px 14px;
    }

    .ek-vehicle-card,
    .ek-info-card {
        padding: 24px 22px;
    }

    .ek-recommend a {
        grid-template-columns: 58px 1fr 22px;
        padding: 12px 14px;
    }

    .price-list-card h2,
    .pricing-reservation-card {
        padding-left: 22px;
        padding-right: 22px;
    }

    .prices-head {
        grid-template-columns: minmax(0, 1fr) 80px 55px;
        padding: 0 18px;
        font-size: 12px;
    }

    .prices-section-title {
        padding-left: 18px;
        padding-right: 18px;
    }

    .pricing-validity {
        padding-left: 22px;
        padding-right: 22px;
    }

    .pricing-search {
        padding-left: 22px;
        padding-right: 22px;
    }

    .pricing-search-box {
        grid-template-columns: 1fr;
    }

    .pricing-search button.is-visible {
        width: 100%;
    }

    .prices-row {
        grid-template-columns: minmax(0, 1fr) 82px;
        font-size: 14px;
    }

    .prices-row span {
        order: 1;
    }

    .prices-row strong {
        order: 2;
    }

    .prices-row em {
        order: 3;
        grid-column: 1 / -1;
        min-height: 32px;
        border-top: 1px solid var(--line);
        border-left: 0;
        background: #f8fafc;
    }

    .prices-row em:empty {
        display: none;
    }

    .prices-row span,
    .prices-row em,
    .prices-row strong {
        padding-left: 18px;
        padding-right: 18px;
    }

    .prices-note {
        padding-left: 18px;
        padding-right: 18px;
    }

    .pricing-info-grid article {
        grid-template-columns: 54px 1fr;
        min-height: 104px;
        padding: 0 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.reservation-page {
    background: #f4f7fa;
}

.reservation-hero {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(2, 11, 24, 0.98) 0%, rgba(2, 11, 24, 0.9) 42%, rgba(2, 11, 24, 0.3) 100%),
        url("../images/stk-hero-inspection.webp?v=20260511-reservation") center right / cover no-repeat;
    color: var(--white);
}

.reservation-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 86% 28%, rgba(227, 6, 19, 0.15), transparent 30%),
        linear-gradient(180deg, rgba(2, 11, 24, 0.04), rgba(2, 11, 24, 0.32));
}

.reservation-hero-content {
    position: relative;
    z-index: 1;
    padding: 54px 0 82px;
}

.reservation-hero h1 {
    margin: 0;
    max-width: 740px;
    color: var(--white);
    font-size: clamp(52px, 6vw, 82px);
    font-weight: 950;
    line-height: 0.95;
    text-transform: uppercase;
}

.reservation-hero h2 {
    max-width: 710px;
    margin: 26px 0 0;
    color: var(--white);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 950;
    line-height: 1.2;
}

.reservation-hero p {
    max-width: 670px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    font-weight: 650;
    line-height: 1.55;
}

.reservation-wizard-section {
    margin-top: -54px;
    padding: 0 0 46px;
}

.reservation-wizard-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 22px 55px rgba(2, 11, 24, 0.16);
}

.reservation-submit-message {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    margin: 26px 34px 0;
    padding: 26px;
    overflow: hidden;
    border: 1px solid #b7ebcf;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(8, 122, 61, 0.1), rgba(255, 255, 255, 0) 52%),
        #f3fbf6;
    box-shadow: 0 18px 45px rgba(6, 55, 127, 0.09);
}

.reservation-submit-message::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: #087a3d;
}

.reservation-submit-message__icon {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: #087a3d;
    box-shadow: 0 12px 26px rgba(8, 122, 61, 0.24);
}

.reservation-submit-message__icon::before {
    content: "";
    width: 18px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 0 3px 3px;
    transform: rotate(-45deg) translate(1px, -1px);
}

.reservation-submit-message__content {
    display: grid;
    gap: 9px;
}

.reservation-submit-message__eyebrow {
    color: #087a3d;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.reservation-submit-message h2 {
    margin: 0;
    color: #06377f;
    font-size: 28px;
    font-weight: 950;
    line-height: 1.15;
}

.reservation-submit-message p {
    max-width: 820px;
    margin: 0;
    color: #1d3428;
    font-size: 17px;
    font-weight: 720;
    line-height: 1.5;
}

.reservation-submit-message__note {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    margin-top: 4px;
    padding: 10px 13px;
    border: 1px solid #b7ebcf;
    border-radius: 8px;
    background: #ffffff;
    color: #087a3d !important;
    font-size: 15px !important;
    font-weight: 850 !important;
    line-height: 1.35 !important;
}

.reservation-submit-message__login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    min-height: 44px;
    margin-top: 3px;
    padding: 10px 16px;
    border: 2px solid #07182c;
    border-radius: 6px;
    background: #07182c;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
}

.reservation-submit-message__login:hover,
.reservation-submit-message__login:focus-visible {
    border-color: #e30613;
    background: #e30613;
    color: #ffffff;
}

.reservation-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 0;
    padding: 26px 34px 25px;
    border-bottom: 1px solid var(--line);
    background: #edf3fb;
    list-style: none;
}

.reservation-steps li {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 10px;
    color: #6b7280;
    font-size: 19px;
    font-weight: 800;
    text-align: center;
}

.reservation-steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 24px;
    left: calc(50% + 36px);
    width: calc(100% - 72px);
    height: 2px;
    background: #9aa8b9;
}

.reservation-steps span {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #969696;
    color: var(--white);
    font-size: 24px;
    font-weight: 950;
}

.reservation-steps .is-active,
.reservation-steps .is-complete {
    color: #06377f;
}

.reservation-steps .is-active span,
.reservation-steps .is-complete span {
    background: #06377f;
}

.reservation-step-panel {
    display: none;
    padding: 36px 40px 32px;
}

.reservation-step-panel.is-active {
    display: block;
}

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

.reservation-panel-heading span {
    display: block;
    color: var(--red);
    font-size: 14px;
    font-weight: 950;
    text-transform: uppercase;
}

.reservation-panel-heading h2 {
    margin: 8px 0 0;
    color: var(--text);
    font-size: 30px;
    font-weight: 950;
    line-height: 1.1;
}

.reservation-panel-heading p {
    max-width: 850px;
    margin: 12px 0 0;
    color: #020b18;
    font-size: 16px;
    font-weight: 650;
    line-height: 1.55;
}

.vehicle-choice-list {
    display: grid;
    gap: 18px;
}

.vehicle-choice {
    display: grid;
    grid-template-columns: 42px 78px 1fr auto;
    align-items: center;
    min-height: 92px;
    padding: 0 28px 0 22px;
    border: 2px solid transparent;
    border-radius: 7px;
    background: #eaf2fd;
    color: #083675;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.vehicle-choice:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(2, 11, 24, 0.09);
}

.vehicle-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-radio {
    width: 35px;
    height: 35px;
    border: 4px solid #474747;
    border-radius: 50%;
    background: var(--white);
}

.vehicle-choice > svg {
    width: 62px;
    height: 50px;
    fill: #083675;
    stroke: #083675;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.1;
    filter: drop-shadow(0 4px 10px rgba(8, 54, 117, 0.12));
}

.vehicle-choice strong {
    font-size: 23px;
    font-weight: 950;
    line-height: 1.15;
}

.vehicle-choice small {
    display: block;
    margin-top: 4px;
    font-size: 17px;
    font-weight: 650;
}

.choice-check {
    opacity: 0;
    color: var(--white);
}

.choice-check svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.vehicle-choice.is-selected {
    background: #06377f;
    color: var(--white);
}

.vehicle-choice.is-selected .choice-radio {
    border-color: var(--white);
    box-shadow: inset 0 0 0 7px #06377f, inset 0 0 0 11px var(--white);
}

.vehicle-choice.is-selected > svg {
    fill: var(--white);
    stroke: var(--white);
}

.vehicle-choice.is-selected .choice-check {
    opacity: 1;
}

.vehicle-choice-call {
    cursor: default;
}

.vehicle-choice-call:hover {
    transform: none;
}

.vehicle-choice-call .choice-radio {
    border-color: #9aa8bb;
    background: #f8fafc;
}

.vehicle-choice-call a {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 7px;
    background: #07182c;
    color: var(--white);
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.vehicle-choice-call a:hover {
    background: var(--red);
    transform: translateY(-1px);
}

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

.inspection-choice {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 18px;
    align-items: center;
    min-height: 82px;
    padding: 18px 22px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #f8fafc;
    color: var(--text);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.inspection-choice[hidden],
.inspection-choice.is-hidden {
    display: none !important;
}

.inspection-choice:hover {
    border-color: rgba(227, 6, 19, 0.26);
    background: var(--white);
    box-shadow: 0 12px 28px rgba(2, 11, 24, 0.07);
}

.inspection-choice.is-disabled {
    cursor: not-allowed;
    opacity: 0.62;
}

.inspection-choice.is-disabled:hover {
    border-color: var(--line);
    background: #f8fafc;
    box-shadow: none;
}

.inspection-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.inspection-choice span {
    width: 30px;
    height: 30px;
    border: 3px solid #97a4b8;
    border-radius: 8px;
    background: var(--white);
}

.inspection-choice strong {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.3;
}

.inspection-choice small {
    display: block;
    margin-top: 3px;
    color: #020b18;
    font-size: 14px;
}

.inspection-choice.is-selected {
    border-color: #06377f;
    background: #07182c;
    color: var(--white);
}

.inspection-choice.is-selected span {
    border-color: var(--white);
    background:
        linear-gradient(135deg, transparent 0 46%, var(--white) 46% 58%, transparent 58%),
        linear-gradient(45deg, transparent 0 42%, var(--white) 42% 54%, transparent 54%),
        #06377f;
}

.inspection-choice.is-selected small {
    color: rgba(255, 255, 255, 0.76);
}

.reservation-hint {
    display: none;
    margin-top: 16px;
    color: var(--red);
    font-weight: 850;
}

.reservation-hint.is-visible {
    display: block;
}

.reservation-date-grid {
    display: grid;
    width: 100%;
    max-width: 1260px;
    grid-template-columns: minmax(330px, 390px) minmax(0, 1fr);
    justify-content: center;
    gap: 36px;
    align-items: start;
    margin: 0 auto;
    padding: 24px;
    border-radius: 10px;
    background: #eaf2fd;
}

.reservation-date-grid > div {
    min-width: 0;
}

.date-kicker,
.selected-date-title {
    margin: 0 0 18px;
    color: #666;
    font-size: 19px;
    font-weight: 700;
    text-align: center;
}

.reservation-calendar {
    min-height: 420px;
    padding: 30px 28px;
    border-radius: 7px;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(2, 11, 24, 0.23);
}

.calendar-head {
    display: grid;
    grid-template-columns: 38px 1fr 38px;
    align-items: center;
    margin-bottom: 22px;
}

.calendar-head strong {
    text-align: center;
    color: #444;
    font-size: 21px;
    font-weight: 950;
}

.calendar-head button {
    border: 0;
    background: transparent;
    color: #0071c8;
    font-size: 42px;
    font-weight: 950;
    line-height: 1;
    cursor: pointer;
}

.calendar-head button.is-disabled,
.calendar-head button:disabled {
    color: #b9c4cf;
    cursor: default;
}

.calendar-weekdays,
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}

.calendar-weekdays {
    padding-bottom: 14px;
    border-bottom: 3px solid #d0d4d7;
    color: #666;
    font-size: 18px;
    font-weight: 950;
}

.calendar-days {
    row-gap: 15px;
    padding-top: 20px;
}

.calendar-days button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 42px;
    height: 42px;
    margin: 0 auto;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #004d9f;
    font: inherit;
    font-size: 19px;
    font-weight: 950;
    cursor: pointer;
}

.calendar-day-number {
    line-height: 1;
}

.calendar-day-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.calendar-day-dot.is-high {
    background: #16a34a;
}

.calendar-day-dot.is-low {
    background: #f59e0b;
}

.calendar-day-dot.is-full {
    background: #e30613;
}

.calendar-days button.is-muted {
    color: #969696;
    cursor: default;
}

.calendar-days button.is-selected {
    background: #004db7;
    color: var(--white);
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(4, 92px);
    justify-content: center;
    gap: 18px;
}

.time-grid.has-technicians {
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(auto-fit, minmax(224px, 1fr));
    align-items: start;
    gap: 18px;
}

.time-grid.is-empty,
.time-grid.is-loading {
    grid-template-columns: minmax(0, 1fr);
}

.time-grid button {
    height: 58px;
    border: 0;
    border-radius: 7px;
    background: var(--white);
    color: #0071c8;
    font: inherit;
    font-size: 21px;
    font-weight: 950;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.time-grid button:hover,
.time-grid button.is-selected {
    background: #06377f;
    color: var(--white);
    transform: translateY(-1px);
}

.time-technician-column {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.time-technician-title {
    display: block;
    min-height: 24px;
    color: #020b18;
    font-size: 15px;
    font-weight: 950;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
}

.time-technician-slots {
    display: grid;
    grid-template-columns: repeat(3, 68px);
    justify-content: center;
    column-gap: 10px;
    row-gap: 12px;
}

.time-grid.has-technicians button {
    width: 100%;
}

.time-grid.has-technicians .time-technician-empty {
    grid-column: 1 / -1;
    margin: 0;
    min-height: 58px;
    padding: 14px 12px;
    border: 1px dashed rgba(0, 77, 183, 0.28);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.7);
    color: #243752;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.35;
    text-align: center;
}

.time-grid.has-technicians .time-empty {
    grid-column: 1 / -1;
}

.time-empty {
    margin: 0;
    padding: 18px;
    border-radius: 7px;
    background: var(--white);
    color: #555;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.45;
    text-align: center;
}

.time-grid.is-loading .time-empty {
    color: #0071c8;
}

.reservation-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    margin-bottom: 34px;
}

.reservation-summary-card,
.reservation-summary-box {
    padding: 26px;
    border-radius: 10px;
    background: #eaf2fd;
}

.summary-title {
    display: grid;
    grid-template-columns: 60px 1fr;
    align-items: center;
    min-height: 74px;
    margin-bottom: 18px;
    background: #06377f;
    color: var(--white);
}

.summary-title svg {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.summary-title strong {
    font-size: 24px;
    font-weight: 950;
}

.reservation-summary-card p,
.reservation-summary-box p {
    margin: 8px 0 0;
    color: #666;
    font-size: 20px;
    font-weight: 650;
}

.reservation-summary-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: #0071c8;
    font-size: 19px;
    font-weight: 950;
}

.reservation-summary-card a svg {
    width: 24px;
    height: 24px;
    fill: #0071c8;
    stroke: #0071c8;
}

.reservation-summary-box {
    display: grid;
    align-content: start;
    gap: 8px;
}

.reservation-summary-box strong {
    color: #666;
}

.reservation-summary-box > div:not(.summary-title) {
    justify-self: end;
    display: inline-flex;
    gap: 34px;
    align-items: center;
    min-width: 285px;
    min-height: 76px;
    margin-top: 18px;
    padding: 0 32px;
    border-radius: 7px;
    background: #f7aa00;
    color: #666;
    font-size: 24px;
    font-weight: 950;
}

.reservation-summary-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.reservation-summary-card .summary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    margin-top: 0;
    padding: 0 16px;
    border: 1px solid #07182c;
    border-radius: 8px;
    background: #07182c;
    color: var(--white);
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.reservation-summary-card .summary-button:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-1px);
}

.reservation-summary-card .summary-button-outline {
    background: var(--white);
    color: #07182c;
}

.reservation-summary-card .summary-button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
}

.personal-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 28px;
    align-items: start;
}

.personal-form-grid label {
    color: #666;
    font-size: 16px;
    font-weight: 850;
}

.personal-form-grid > .reservation-identifier-field {
    display: block;
    grid-column: auto;
    color: #666;
    font-size: 16px;
    font-weight: 850;
}

.reservation-identifier-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 12px;
    margin-bottom: 8px;
}

.reservation-identifier-heading > label:first-child {
    color: inherit;
    font: inherit;
}

.reservation-no-plate-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #020b18;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.2;
    white-space: nowrap;
}

.reservation-no-plate-inline input {
    width: 14px;
    height: 14px;
    accent-color: var(--red);
}

.personal-form-grid > label:not(.plate-label):not(.reservation-privacy-inline) input {
    width: 100%;
    height: 58px;
    margin-top: 8px;
    padding: 0 16px;
    border: 1px solid #cfd3d2;
    border-radius: 8px;
    background: var(--white);
    color: var(--text);
    font: inherit;
    font-size: 18px;
    outline: none;
}

.personal-form-grid > .reservation-identifier-field > input[type="text"] {
    width: 100%;
    height: 58px;
    padding: 0 16px;
    border: 1px solid #cfd3d2;
    border-radius: 8px;
    background: var(--white);
    color: var(--text);
    font: inherit;
    font-size: 18px;
    outline: none;
    text-transform: uppercase;
}

.reservation-privacy-inline {
    display: grid;
    grid-column: span 2;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid rgba(227, 6, 19, 0.22);
    border-radius: 10px;
    background: #fff7f7;
    color: #020b18;
}

.reservation-privacy-inline input {
    width: 20px;
    height: 20px;
    accent-color: var(--red);
}

.reservation-privacy-inline span {
    color: #020b18;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.reservation-privacy-inline a {
    color: #004eb6;
    font-weight: 950;
    text-decoration: none;
}

.reservation-privacy-inline a:hover {
    color: var(--red);
}

.personal-form-grid > label:not(.plate-label):not(.reservation-privacy-inline) {
    display: block;
    grid-column: auto;
}

.plate-label {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
}

.plate-inputs {
    display: grid;
    grid-template-columns: 50px 86px 26px 190px;
    align-items: center;
    width: max-content;
    overflow: hidden;
    border: 2px solid #7a7a7a;
    border-radius: 10px;
    background: #e5e7e7;
}

.plate-eu {
    display: grid;
    place-items: center;
    height: 56px;
    background: #6ca5dc;
    color: #f8d400;
    font-size: 15px;
    font-weight: 950;
}

.plate-inputs input {
    height: 48px;
    margin: 3px;
    border: 1px solid #d0d3d2;
    border-radius: 5px;
    background: var(--white);
    color: var(--text);
    font: inherit;
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
}

.plate-inputs b {
    height: 3px;
    background: #444;
}

.reservation-consent-card input,
.reservation-newsletter-card input {
    width: 30px;
    height: 30px;
    accent-color: #06377f;
}

.reservation-option-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.reservation-consent-card,
.reservation-newsletter-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 42px;
    gap: 18px;
    align-items: start;
    margin-top: 0;
    padding: 34px 38px;
    border: 4px solid #f7aa00;
    border-radius: 7px;
    background: var(--white);
    color: #666;
    cursor: pointer;
}

.reservation-newsletter-card {
    border-color: transparent;
    background: #8ec1e8;
}

.reservation-consent-card input,
.reservation-newsletter-card input {
    order: 2;
    justify-self: end;
}

.reservation-consent-card strong,
.reservation-newsletter-card strong {
    display: block;
    color: #666;
    font-size: 22px;
    font-weight: 950;
    line-height: 1.45;
}

.reservation-consent-card small,
.reservation-newsletter-card small {
    display: block;
    margin-top: 18px;
    color: #0071c8;
    font-size: 20px;
    font-weight: 950;
}

.reservation-privacy-note {
    margin: 32px 0 0;
    color: #666;
    font-size: 20px;
    font-weight: 650;
}

.reservation-controls {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 0 40px 38px;
}

.reservation-controls .button {
    min-width: 180px;
    height: 54px;
    border: 0;
    padding: 0 28px;
    font-size: 16px;
    cursor: pointer;
}

.reservation-controls .button:disabled {
    opacity: 0.72;
    cursor: default;
}

.reservation-controls .button.is-disabled {
    display: none;
    pointer-events: none;
}

.reservation-back-button {
    border: 2px solid #07182c !important;
    background: #020b18;
    color: var(--white);
}

.reservation-back-button:hover {
    background: #07182c;
    color: var(--white);
}

.reservation-cancel-button {
    border: 2px solid #d4001f !important;
    background: transparent;
    color: #d4001f;
    white-space: nowrap;
}

.reservation-cancel-button:hover {
    background: #d4001f;
    color: var(--white);
}

.reservation-hero {
    min-height: 390px;
}

.reservation-hero-content {
    padding: 46px 0 72px;
}

.reservation-hero h1 {
    font-size: clamp(46px, 5vw, 70px);
}

.reservation-hero h2 {
    max-width: 660px;
    margin-top: 22px;
    font-size: clamp(23px, 2.4vw, 31px);
}

.reservation-hero p {
    max-width: 650px;
    margin-top: 18px;
    font-size: 16px;
}

.reservation-steps {
    padding: 20px 30px;
}

.reservation-steps li {
    gap: 8px;
    font-size: 16px;
}

.reservation-steps li:not(:last-child)::after {
    top: 21px;
}

.reservation-steps span {
    width: 44px;
    height: 44px;
    font-size: 20px;
}

.reservation-step-panel {
    padding: 30px 36px 28px;
}

.reservation-panel-heading {
    margin-bottom: 20px;
}

.reservation-panel-heading h2 {
    font-size: 26px;
}

.reservation-panel-heading p {
    max-width: 800px;
    font-size: 15px;
}

.vehicle-choice-list {
    gap: 13px;
}

.vehicle-choice {
    grid-template-columns: 36px 72px 1fr 34px;
    min-height: 74px;
    padding: 0 22px 0 18px;
}

.vehicle-choice-call {
    grid-template-columns: 36px 72px 1fr auto;
}

.choice-radio {
    width: 29px;
    height: 29px;
    border-width: 3px;
}

.vehicle-choice > svg {
    width: 58px;
    height: 45px;
}

.vehicle-choice strong {
    font-size: 20px;
}

.vehicle-choice small {
    font-size: 15px;
}

.choice-check svg {
    width: 30px;
    height: 30px;
}

.inspection-choice-grid {
    gap: 12px;
}

.inspection-choice {
    min-height: 68px;
    padding: 15px 18px;
}

.inspection-choice strong {
    font-size: 16px;
}

.inspection-choice small {
    font-size: 13px;
}

.reservation-date-grid {
    max-width: 1220px;
    grid-template-columns: minmax(330px, 360px) minmax(0, 1fr);
    justify-content: center;
    gap: 28px;
    padding: 14px;
}

.time-selection {
    display: grid;
    justify-content: stretch;
    width: 100%;
    min-width: 0;
}

.date-kicker,
.selected-date-title {
    margin-bottom: 12px;
    font-size: 16px;
}

.reservation-calendar {
    min-height: 304px;
    padding: 17px 18px;
}

.calendar-head {
    margin-bottom: 12px;
}

.calendar-head strong {
    font-size: 17px;
}

.calendar-head button {
    font-size: 30px;
}

.calendar-weekdays {
    padding-bottom: 9px;
    border-bottom-width: 2px;
    font-size: 14px;
}

.calendar-days {
    row-gap: 6px;
    padding-top: 12px;
}

.calendar-days button {
    width: 29px;
    height: 29px;
    font-size: 14px;
}

.time-grid {
    grid-template-columns: repeat(4, 68px);
    gap: 10px;
}

.time-grid button {
    height: 42px;
    font-size: 16px;
}

.reservation-details-grid {
    gap: 24px;
    margin-bottom: 28px;
}

.reservation-summary-card,
.reservation-summary-box {
    padding: 22px;
}

.summary-title {
    grid-template-columns: 52px 1fr;
    min-height: 62px;
}

.summary-title strong {
    font-size: 20px;
}

.summary-title svg {
    width: 34px;
    height: 34px;
}

.reservation-summary-card p,
.reservation-summary-box p {
    font-size: 17px;
}

.reservation-summary-card a {
    font-size: 17px;
}

.personal-form-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #f8fafc;
}

.personal-form-grid label {
    font-size: 15px;
    font-weight: 850;
}

.personal-form-grid > label:not(.plate-label):not(.reservation-privacy-inline) {
    display: grid;
    grid-column: span 2;
    gap: 8px;
    align-items: start;
}

.personal-form-grid > .reservation-identifier-field {
    display: grid;
    grid-column: span 2;
    gap: 8px;
    align-items: start;
}

.plate-label {
    grid-column: span 2;
}

.plate-label {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
}

.personal-form-grid > label:not(.plate-label):not(.reservation-privacy-inline) input {
    height: 52px;
    margin-top: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0 14px;
    font-size: 17px;
}

.personal-form-grid > .reservation-identifier-field > input[type="text"] {
    width: 100%;
    height: 52px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0 14px;
    font-size: 17px;
}

.plate-inputs {
    grid-template-columns: 50px minmax(72px, 1fr) 28px minmax(120px, 1.45fr);
    width: 100%;
    border-width: 2px;
}

.plate-eu {
    height: 52px;
}

.plate-inputs input {
    height: 44px;
    border-width: 2px;
    font-size: 20px;
}

.reservation-checkbox-card {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 16px;
    align-items: start;
    margin-top: 16px;
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #f8fafc;
    color: var(--text);
}

.reservation-option-row .reservation-checkbox-card {
    margin-top: 0;
}

.reservation-checkbox-card input {
    order: 0;
    justify-self: start;
    width: 22px;
    height: 22px;
    margin-top: 3px;
    accent-color: #06377f;
}

.reservation-checkbox-card strong {
    display: block;
    color: var(--text);
    font-size: 17px;
    line-height: 1.35;
}

.reservation-checkbox-card small {
    display: block;
    margin-top: 8px;
    color: #020b18;
    font-size: 14px;
}

.reservation-privacy-note {
    margin-top: 22px;
    font-size: 16px;
}

.reservation-page,
.reservation-page .reservation-panel-heading p,
.reservation-page .date-kicker,
.reservation-page .selected-date-title,
.reservation-page .reservation-summary-card p,
.reservation-page .reservation-summary-box p,
.reservation-page .reservation-summary-box strong,
.reservation-page .personal-form-grid label,
.reservation-page .inspection-choice small,
.reservation-page .reservation-checkbox-card small,
.reservation-page .reservation-privacy-note {
    color: #020b18;
}

.reservation-page .inspection-choice.is-selected small {
    color: rgba(255, 255, 255, 0.76);
}

.reservation-summary-box .summary-title strong {
    color: var(--white);
}

.reservation-page input::placeholder {
    color: #334155;
}

@media (max-width: 1180px) {
    .reservation-date-grid,
    .reservation-details-grid {
        grid-template-columns: 1fr;
    }

    .time-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-width: 430px;
        margin: 0 auto;
    }

    .time-grid.has-technicians {
        width: 100%;
        max-width: 760px;
        grid-template-columns: repeat(auto-fit, minmax(224px, 1fr));
    }
}

@media (max-width: 920px) {
    .reservation-steps {
        grid-template-columns: 1fr 1fr;
        row-gap: 22px;
    }

    .reservation-steps li::after {
        display: none;
    }

    .reservation-step-panel {
        padding: 28px 22px;
    }

    .vehicle-choice {
        grid-template-columns: 36px 64px 1fr 28px;
        min-height: 86px;
        padding: 0 16px;
    }

    .vehicle-choice > svg {
        width: 54px;
    }

    .vehicle-choice strong {
        font-size: 19px;
    }

    .vehicle-choice small {
        font-size: 16px;
    }

    .vehicle-choice-call {
        grid-template-columns: 36px 64px 1fr;
    }

    .vehicle-choice-call a {
        grid-column: 2 / -1;
        justify-self: start;
        margin-top: 8px;
    }

    .inspection-choice-grid,
    .personal-form-grid,
    .personal-form-grid > label:not(.plate-label):not(.reservation-privacy-inline),
    .personal-form-grid > .reservation-identifier-field,
    .plate-label {
        grid-template-columns: 1fr;
    }

    .personal-form-grid > .reservation-identifier-field {
        grid-column: 1 / -1;
    }

    .personal-form-grid > .reservation-identifier-field > input[type="text"] {
        width: 100%;
    }

    .reservation-date-grid {
        padding: 16px;
    }

    .reservation-calendar {
        min-height: 0;
        padding: 28px 18px;
    }

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

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

    .plate-inputs {
        grid-template-columns: 46px 86px 26px 160px;
    }

    .reservation-summary-box div {
        justify-self: stretch;
        min-width: 0;
    }
}

@media (max-width: 560px) {
    .reservation-hero h1 {
        font-size: 44px;
    }

    .reservation-submit-message {
        grid-template-columns: 1fr;
        margin: 18px 16px 0;
        padding: 22px 20px;
    }

    .reservation-submit-message__icon {
        width: 46px;
        height: 46px;
    }

    .reservation-submit-message h2 {
        font-size: 24px;
    }

    .reservation-submit-message p {
        font-size: 16px;
    }

    .reservation-submit-message__note {
        width: 100%;
    }

    .reservation-steps {
        padding: 22px 16px;
    }

    .reservation-steps strong {
        font-size: 15px;
    }

    .reservation-steps span {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .calendar-days button {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .calendar-weekdays {
        font-size: 18px;
    }

    .time-grid.has-technicians {
        grid-template-columns: 1fr;
    }

    .plate-inputs {
        width: 100%;
        grid-template-columns: 44px 1fr 20px 1.6fr;
    }

    .reservation-controls {
        display: grid;
        padding: 0 22px 28px;
    }

    .reservation-controls .button {
        width: 100%;
    }

    .reservation-controls .button-red {
        order: 1;
    }

    .reservation-back-button {
        order: 2;
    }

    .reservation-cancel-button {
        order: 3;
    }
}

.price-list-card-modern {
    padding: 26px;
    overflow: visible;
    border-radius: 18px;
}

.pricing-card-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pricing-card-title span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    box-shadow: 0 12px 26px rgba(227, 6, 19, 0.2);
}

.pricing-card-title svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.price-list-card-modern h2 {
    padding: 0;
    font-size: 23px;
}

.price-list-card-modern .pricing-search {
    padding: 22px 0 24px;
}

.price-list-card-modern .pricing-search-box {
    position: relative;
    display: block;
}

.price-list-card-modern .pricing-search input {
    height: 52px;
    padding: 0 52px 0 18px;
}

.pricing-search-icon {
    position: absolute;
    top: 50%;
    right: 17px;
    color: #6b778c;
    transform: translateY(-50%);
    pointer-events: none;
}

.pricing-search-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.price-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.price-category-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(2, 11, 24, 0.07);
}

.price-category-card.is-hidden {
    display: none;
}

.price-category-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 68px;
    padding: 0 20px;
}

.price-category-heading span {
    display: grid;
    place-items: center;
    width: 33px;
    height: 33px;
    color: var(--navy-2);
}

.price-category-heading svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.1;
}

.price-category-heading h3 {
    margin: 0;
    color: var(--text);
    font-size: 19px;
    font-weight: 950;
    text-transform: uppercase;
}

.price-category-card.is-emissions .price-category-heading span,
.price-category-card.is-emissions .price-category-heading h3 {
    color: var(--red);
}

.price-category-card .prices-head,
.price-category-card .prices-row {
    grid-template-columns: minmax(0, 1fr) 128px 98px;
}

.price-category-card.is-emissions .prices-head,
.price-category-card.is-emissions .prices-row {
    grid-template-columns: minmax(0, 1fr) 104px;
}

.price-category-card .prices-head {
    min-height: 42px;
    padding: 0 17px;
    font-size: 12px;
}

.price-category-card .prices-row {
    min-height: 43px;
    font-size: 13px;
}

.price-category-card .prices-row span,
.price-category-card .prices-row em {
    padding: 10px 17px;
}

.price-category-card .prices-row strong {
    justify-content: flex-end;
    padding: 10px 17px;
    font-size: 15px;
}

.price-category-card .prices-row.is-collapsed {
    display: none;
}

.price-toggle-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 58px;
    border: 0;
    border-top: 1px solid var(--line);
    background: var(--white);
    color: #0a3a75;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: color 0.18s ease, background 0.18s ease;
}

.price-toggle-button:hover {
    background: #f8fafc;
    color: var(--red);
}

.price-toggle-button svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
    transform: rotate(90deg);
    transition: transform 0.18s ease;
}

.price-toggle-button.is-expanded svg {
    transform: rotate(-90deg);
}

.pricing-info-grid-card {
    margin-top: 26px;
    gap: 18px;
}

.pricing-info-grid-card article {
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    min-height: 146px;
    padding: 21px 18px;
    text-align: center;
}

.pricing-info-grid-card svg {
    width: 66px;
    height: 66px;
    padding: 16px;
    border-radius: 50%;
    background: #e8f1ff;
    box-sizing: border-box;
    stroke: #0a3568;
}

.pricing-info-grid-card article:nth-child(2) svg,
.pricing-info-grid-card article:nth-child(4) svg {
    background: #ffe3e5;
    stroke: var(--red);
}

.pricing-info-grid-card strong {
    margin-top: 14px;
}

.pricing-important-box {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    min-height: 142px;
    margin-top: 24px;
    overflow: hidden;
    border-radius: 13px;
    padding: 26px 34px;
    background:
        radial-gradient(circle at 95% 20%, rgba(227, 6, 19, 0.14), transparent 26%),
        linear-gradient(135deg, #020b18 0%, #07182c 100%);
    color: var(--white);
}

.pricing-important-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(227, 6, 19, 0.16);
    color: var(--red);
}

.pricing-important-icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.pricing-important-box strong {
    display: block;
    font-size: 17px;
    font-weight: 950;
}

.pricing-important-box p {
    max-width: 900px;
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.5;
}

.pricing-important-watermark {
    position: absolute;
    right: 54px;
    bottom: -14px;
    width: 118px;
    height: 118px;
    fill: none;
    stroke: rgba(255, 255, 255, 0.13);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.4;
    transform: rotate(8deg);
}

@media (max-width: 1180px) {
    .price-category-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .price-list-card-modern {
        padding: 20px;
    }

    .price-category-card .prices-head,
    .price-category-card .prices-row,
    .price-category-card.is-emissions .prices-head,
    .price-category-card.is-emissions .prices-row {
        grid-template-columns: minmax(0, 1fr) 96px;
    }

    .price-category-card .prices-head span:nth-child(2) {
        display: none;
    }

    .price-category-card.is-emissions .prices-head span:nth-child(2) {
        display: block;
    }

    .price-category-card .prices-row em {
        grid-column: 1 / -1;
        border-left: 0;
        border-top: 1px solid var(--line);
        background: #f8fafc;
    }

    .price-category-card .prices-row em:empty {
        display: none;
    }

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

    .pricing-important-box {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}

.privacy-page {
    background: #f4f7fa;
    color: #020b18;
}

.privacy-hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 24%, rgba(227, 6, 19, 0.24), transparent 24%),
        linear-gradient(115deg, #020b18 0%, #07182c 52%, #020b18 100%);
    color: var(--white);
}

.privacy-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -180px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.privacy-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 11, 24, 0.96), rgba(2, 11, 24, 0.64)),
        repeating-linear-gradient(135deg, transparent 0 38px, rgba(255, 255, 255, 0.035) 39px 40px);
}

.privacy-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 34px;
}

.privacy-hero .section-kicker {
    margin-top: 78px;
    color: var(--red);
    font-size: 16px;
    font-weight: 950;
    text-transform: uppercase;
}

.privacy-hero h1 {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--white);
    font-size: 58px;
    font-weight: 950;
    line-height: 1;
}

.privacy-hero-content > p:last-child {
    max-width: 720px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
    font-weight: 650;
    line-height: 1.55;
}

.privacy-intro-section {
    position: relative;
    z-index: 3;
    margin-top: -78px;
    padding-bottom: 34px;
}

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

.privacy-summary-card {
    min-height: 238px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(2, 11, 24, 0.12);
}

.privacy-summary-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: #07182c;
    color: var(--white);
}

.privacy-summary-icon svg,
.privacy-cookie-grid svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.privacy-summary-card h2 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 950;
}

.privacy-summary-card p {
    margin: 0;
    color: #142238;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.65;
}

.privacy-summary-card p + p {
    margin-top: 14px;
}

.privacy-summary-card a,
.privacy-document a {
    color: #004eb6;
    font-weight: 900;
    text-decoration: none;
}

.privacy-summary-card a:hover,
.privacy-document a:hover {
    color: var(--red);
}

.privacy-content-section {
    padding: 26px 0 78px;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.privacy-toc {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 8px;
    padding: 22px;
    border: 1px solid rgba(7, 24, 44, 0.12);
    border-radius: 14px;
    background: #07182c;
    box-shadow: 0 16px 34px rgba(2, 11, 24, 0.12);
}

.privacy-toc strong {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 18px;
    font-weight: 950;
}

.privacy-toc a {
    min-height: 36px;
    padding: 9px 10px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.privacy-toc a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.privacy-document {
    display: grid;
    gap: 18px;
}

.privacy-section-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 14px 32px rgba(2, 11, 24, 0.07);
}

.privacy-section-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--red);
}

.privacy-number {
    display: inline-grid;
    place-items: center;
    min-width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #07182c;
    color: var(--white);
    font-size: 18px;
    font-weight: 950;
}

.privacy-section-card h2,
.privacy-section-card h3,
.privacy-section-card h4 {
    color: #020b18;
    font-weight: 950;
    line-height: 1.16;
}

.privacy-section-card h2 {
    margin: 0 0 18px;
    font-size: 30px;
}

.privacy-section-card h3 {
    margin: 26px 0 10px;
    font-size: 20px;
}

.privacy-section-card h4 {
    margin: 12px 0 8px;
    font-size: 17px;
}

.privacy-section-card p,
.privacy-section-card li {
    color: #132238;
    font-size: 16px;
    font-weight: 650;
    line-height: 1.72;
}

.privacy-section-card p {
    margin: 0 0 14px;
}

.privacy-section-card ul {
    display: grid;
    gap: 9px;
    margin: 14px 0 20px;
    padding: 0;
    list-style: none;
}

.privacy-section-card li {
    position: relative;
    padding-left: 30px;
}

.privacy-section-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 5px rgba(227, 6, 19, 0.1);
}

.privacy-contact-box,
.privacy-authority-box {
    margin: 22px 0;
    padding: 22px;
    border: 1px solid rgba(7, 24, 44, 0.12);
    border-radius: 12px;
    background: #f4f7fa;
}

.privacy-purpose-grid,
.privacy-rights-grid,
.privacy-cookie-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.privacy-purpose-grid > div,
.privacy-rights-grid > div,
.privacy-cookie-grid > div {
    min-height: 100%;
    padding: 22px;
    border: 1px solid rgba(7, 24, 44, 0.12);
    border-radius: 12px;
    background: #f8fafc;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.privacy-purpose-grid > div:hover,
.privacy-rights-grid > div:hover,
.privacy-cookie-grid > div:hover {
    transform: translateY(-3px);
    border-color: rgba(227, 6, 19, 0.28);
    box-shadow: 0 16px 30px rgba(2, 11, 24, 0.09);
}

.privacy-cookie-grid svg {
    color: var(--red);
}

.privacy-effective-date {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    padding: 0 24px;
    border-radius: 10px;
    background: #07182c;
    color: var(--white) !important;
    font-size: 20px !important;
    font-weight: 950 !important;
}

@media (max-width: 1100px) {
    .privacy-intro-grid,
    .privacy-layout,
    .privacy-purpose-grid,
    .privacy-rights-grid,
    .privacy-cookie-grid {
        grid-template-columns: 1fr;
    }

    .privacy-toc {
        position: static;
    }
}

@media (max-width: 720px) {
    .privacy-hero {
        min-height: 430px;
    }

    .privacy-hero .section-kicker {
        margin-top: 54px;
    }

    .privacy-hero h1 {
        font-size: 38px;
    }

    .privacy-hero-content > p:last-child {
        font-size: 17px;
    }

    .privacy-intro-section {
        margin-top: -42px;
    }

    .privacy-summary-card,
    .privacy-section-card {
        padding: 24px;
    }

    .privacy-section-card h2 {
        font-size: 24px;
    }
}

.sub-hero,
.pricing-hero,
.contact-hero,
.faq-hero,
.reservation-hero,
.privacy-hero {
    min-height: 500px;
}

.sub-hero-content,
.pricing-hero-content,
.contact-hero-content,
.faq-hero-content,
.reservation-hero-content,
.privacy-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 34px;
    padding-bottom: 96px;
}

.contact-breadcrumbs,
.faq-hero .breadcrumbs {
    margin-bottom: 0;
}

.breadcrumbs strong,
.contact-breadcrumbs strong {
    color: var(--white);
}

.sub-hero h1,
.pricing-hero h1,
.contact-hero h1,
.faq-hero h1,
.reservation-hero h1,
.privacy-hero h1 {
    max-width: 780px;
    margin: 28px 0 0;
    color: var(--white);
    font-size: 58px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.8px;
    text-transform: none;
}

.sub-hero h2,
.pricing-hero h2,
.contact-hero h2,
.faq-hero h2,
.reservation-hero h2,
.privacy-hero h2,
.pricing-hero p,
.contact-hero p,
.faq-hero p {
    max-width: 560px;
    margin: 18px 0 0;
    color: var(--white);
    font-size: 30px;
    font-weight: 920;
    line-height: 1.18;
}

.sub-hero p,
.reservation-hero p,
.privacy-hero-content > p:last-child {
    max-width: 560px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 570;
    line-height: 1.5;
}

.privacy-hero::after,
.privacy-hero .section-kicker,
.faq-hero .section-kicker {
    display: none;
}

@media (max-width: 920px) {
    .sub-hero,
    .pricing-hero,
    .contact-hero,
    .faq-hero,
    .reservation-hero,
    .privacy-hero {
        min-height: auto;
    }

    .sub-hero-content,
    .pricing-hero-content,
    .contact-hero-content,
    .faq-hero-content,
    .reservation-hero-content,
    .privacy-hero-content {
        padding: 38px 0 92px;
    }

    .sub-hero h1,
    .pricing-hero h1,
    .contact-hero h1,
    .faq-hero h1,
    .reservation-hero h1,
    .privacy-hero h1 {
        font-size: 52px;
        line-height: 1.02;
    }

    .sub-hero h2,
    .pricing-hero h2,
    .contact-hero h2,
    .faq-hero h2,
    .reservation-hero h2,
    .privacy-hero h2,
    .pricing-hero p,
    .contact-hero p,
    .faq-hero p {
        font-size: 26px;
        line-height: 1.2;
    }
}

@media (max-width: 720px) {
    .sub-hero h1,
    .pricing-hero h1,
    .contact-hero h1,
    .faq-hero h1,
    .reservation-hero h1,
    .privacy-hero h1 {
        font-size: 42px;
        line-height: 1.04;
        letter-spacing: -0.4px;
    }

    .sub-hero h2,
    .pricing-hero h2,
    .contact-hero h2,
    .faq-hero h2,
    .reservation-hero h2,
    .privacy-hero h2,
    .pricing-hero p,
    .contact-hero p,
    .faq-hero p {
        font-size: 23px;
    }
}

.site-footer .footer-link-button {
    display: block;
    width: max-content;
    margin-top: 13px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    font: inherit;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.4;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.site-footer .footer-link-button:hover {
    color: var(--white);
}

.cookie-consent[hidden],
.cookie-consent-options[hidden],
.cookie-consent-actions [hidden] {
    display: none !important;
}

.cookie-consent {
    position: fixed;
    inset: auto 18px 18px;
    z-index: 2147483000;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.cookie-consent.is-visible {
    pointer-events: auto;
}

.cookie-consent-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px 28px;
    width: min(1120px, 100%);
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(7, 24, 44, 0.98), rgba(2, 11, 24, 0.98)),
        #020b18;
    box-shadow: 0 24px 70px rgba(2, 11, 24, 0.36);
    color: var(--white);
}

.cookie-consent-copy span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--red);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
}

.cookie-consent-copy h2 {
    margin: 0;
    color: var(--white);
    font-size: 22px;
    font-weight: 950;
    line-height: 1.15;
}

.cookie-consent-copy p {
    max-width: 760px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.55;
}

.cookie-consent-copy a {
    display: inline-flex;
    margin-top: 10px;
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.cookie-consent-copy a:hover {
    color: var(--red);
}

.cookie-consent-options {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.cookie-consent-options label {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    min-height: 92px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.cookie-consent-options input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--red);
}

.cookie-consent-options input:disabled {
    cursor: not-allowed;
}

.cookie-consent-options strong,
.cookie-consent-options small {
    display: block;
}

.cookie-consent-options strong {
    color: var(--white);
    font-size: 15px;
    font-weight: 950;
}

.cookie-consent-options small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.4;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 410px;
}

.cookie-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 950;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.cookie-button-red {
    border: 1px solid var(--red);
    background: var(--red);
    color: var(--white);
}

.cookie-button-dark {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.cookie-button-ghost {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
}

.cookie-button-dark:hover,
.cookie-button-ghost:hover {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

@media (max-width: 920px) {
    .cookie-consent-card,
    .cookie-consent-options {
        grid-template-columns: 1fr;
    }

    .cookie-consent-actions {
        justify-content: stretch;
        min-width: 0;
    }

    .cookie-button {
        flex: 1 1 150px;
    }
}

@media (max-width: 560px) {
    .cookie-consent {
        inset: auto 10px 10px;
        width: auto;
        max-width: none;
    }

    @supports (bottom: max(10px, env(safe-area-inset-bottom))) {
        .cookie-consent {
            right: max(10px, env(safe-area-inset-right));
            bottom: max(10px, env(safe-area-inset-bottom));
            left: max(10px, env(safe-area-inset-left));
        }
    }

    .cookie-consent-card {
        width: 100%;
        max-height: calc(100vh - 20px);
        max-height: calc(100dvh - 20px);
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        padding: 18px;
    }

    .cookie-button {
        flex-basis: 100%;
        width: 100%;
    }
}

@media (max-width: 520px) {
    .pricing-info-grid-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1180px) {
    .contact-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .contact-form-card {
        grid-column: 1;
        grid-row: 1;
    }

    .contact-map-card {
        grid-column: 1;
        grid-row: 2;
    }

    .contact-reminder-panel {
        grid-column: 1;
        grid-row: 3;
    }

    .contact-map-card {
        min-height: 430px;
    }

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

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

    .direction-grid article::after {
        display: none;
    }

    .contact-faq-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .contact-faq-title {
        grid-column: 1 / -1;
    }

    .contact-faq-strip .button {
        width: 100%;
    }

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

@media (max-width: 720px) {
    .contact-card-grid,
    .contact-form-fields,
    .map-bottom-info,
    .direction-grid,
    .contact-faq-strip,
    .region-grid {
        grid-template-columns: 1fr;
    }

    .contact-card-grid {
        padding: 16px;
    }

    .contact-action-card {
        min-height: 0;
    }

    .contact-map-card {
        min-height: 450px;
    }

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

    .contact-form-card input[name="email"],
    .contact-form-card select,
    .contact-form-card textarea {
        grid-column: auto;
    }

    .map-bottom-info article + article {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .contact-faq-title,
    .contact-faq-strip details,
    .contact-faq-strip .button {
        grid-column: auto;
    }
}

.public-form-feedback {
    position: fixed;
    z-index: 1000;
    right: 20px;
    bottom: 20px;
    width: min(420px, calc(100% - 40px));
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--text);
    box-shadow: 0 18px 60px rgba(7, 22, 43, 0.18);
}

.public-form-feedback strong {
    display: block;
    margin-bottom: 6px;
}

.public-form-feedback ul {
    margin: 8px 0 0;
    padding-left: 18px;
    color: var(--muted);
}

.public-form-feedback a {
    color: var(--red);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.public-form-feedback a:hover,
.public-form-feedback a:focus-visible {
    color: var(--navy-2);
}
