@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap");

:root {
    --bg: #10151b;
    --bg-card: #1a2028;
    --bg-elevated: #222933;
    --bg-soft: #2b3440;
    --gold: #b59461;
    --gold-light: #ccb081;
    --red: #c1121f;
    --red-hover: #e11d2e;
    --text: #f2f4f6;
    --muted: #afb5be;
    --line: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(255, 255, 255, 0.13);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
    --radius-xl: 0px;
    --radius-lg: 0px;
    --radius-md: 0px;
    --radius-sm: 0px;
    --container: 1240px;
    --header-height: 92px;
    --font-display: "Playfair Display", Georgia, serif;
    --font-body: "Manrope", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 108px;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    font: 400 16px/1.65 var(--font-body);
    background:
        radial-gradient(circle at 18% 16%, rgba(181, 148, 97, 0.045), transparent 24%),
        radial-gradient(circle at 82% 0%, rgba(193, 18, 31, 0.08), transparent 18%),
        linear-gradient(180deg, #10151b 0%, #161d25 35%, #1e2630 100%);
}

body.no-scroll {
    overflow: hidden;
}

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

figure {
    margin: 0;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
    background: transparent;
    color: inherit;
}

ul,
ol {
    margin: 0;
    padding-left: 1.2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--font-display);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

p {
    margin: 0;
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

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

.section {
    padding: 42px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    text-align: center;
}

.section-head > div {
    width: 100%;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-label::before {
    content: "";
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.section-title {
    max-width: 720px;
    margin-inline: auto;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.04;
    text-wrap: balance;
}

.section-title--small {
    font-size: clamp(28px, 3.2vw, 40px);
}

.section-subtitle {
    max-width: 680px;
    margin-top: 12px;
    margin-inline: auto;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.52;
}

.section-head--center {
    margin-bottom: 0;
    justify-content: center;
    text-align: center;
}

.gold {
    color: var(--gold-light);
}

.surface {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 56%),
        var(--bg-card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 28px;
    border-radius: 0;
    border: 1px solid transparent;
    color: var(--text);
    font-weight: 700;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background-color 0.22s ease,
        color 0.22s ease,
        box-shadow 0.22s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    background: linear-gradient(180deg, #c51c22 0%, var(--red) 100%);
    box-shadow: 0 14px 28px rgba(179, 18, 23, 0.26);
}

.btn--primary:hover {
    background: linear-gradient(180deg, #db242c 0%, var(--red-hover) 100%);
}

.btn--ghost {
    border-color: var(--line-strong);
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.02);
}

.btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.045);
}

.btn--soft {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.btn--soft:hover {
    border-color: var(--line-strong);
}

.btn--small {
    min-height: 48px;
    padding: 0 18px;
    font-size: 15px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
    font-weight: 700;
}

.link-arrow::after {
    content: "→";
    transition: transform 0.2s ease;
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    height: var(--header-height);
    backdrop-filter: blur(22px);
    background: rgba(12, 16, 21, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
    height: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.logo__mark {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
}

.logo__title {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1;
}

.logo__title .gold {
    color: var(--gold);
}

.logo__subtitle {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    letter-spacing: 0.06em;
}

.nav {
    justify-self: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav__link {
    position: relative;
    color: var(--muted);
    font-size: 15px;
    font-weight: 600;
}

.nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--gold);
    transition: transform 0.2s ease;
}

.nav__link:hover,
.nav__link--active {
    color: var(--text);
}

.nav__link:hover::after,
.nav__link--active::after {
    transform: scaleX(1);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-contact__phone {
    font-size: 18px;
    font-weight: 800;
}

.header-contact__meta {
    color: var(--muted);
    font-size: 13px;
}

.header-contact__icon {
    position: relative;
    z-index: 2;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, #d3202d 0%, #b20f1a 100%);
    box-shadow:
        0 0 0 0 rgba(239, 35, 60, 0.72),
        0 0 26px rgba(211, 32, 45, 0.58),
        0 14px 30px rgba(179, 18, 23, 0.52);
    color: #fff;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: headerCallPulse 1.1s ease-out infinite;
}

.header-contact__icon::before {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 2px solid rgba(239, 35, 60, 0.72);
    animation: headerCallRing 1.1s ease-out infinite;
}

.header-contact__icon:hover {
    transform: translateY(-1px) scale(1.03);
    box-shadow:
        0 0 0 0 rgba(239, 35, 60, 0.82),
        0 0 34px rgba(211, 32, 45, 0.72),
        0 16px 34px rgba(179, 18, 23, 0.62);
}

@keyframes headerCallPulse {
    0% {
        box-shadow:
            0 0 0 0 rgba(239, 35, 60, 0.84),
            0 0 28px rgba(211, 32, 45, 0.62),
            0 14px 30px rgba(179, 18, 23, 0.56);
    }
    72% {
        box-shadow:
            0 0 0 14px rgba(239, 35, 60, 0),
            0 0 34px rgba(211, 32, 45, 0.22),
            0 16px 34px rgba(179, 18, 23, 0.64);
    }
    100% {
        box-shadow:
            0 0 0 0 rgba(239, 35, 60, 0),
            0 0 26px rgba(211, 32, 45, 0.58),
            0 14px 30px rgba(179, 18, 23, 0.52);
    }
}

@keyframes headerCallRing {
    0% {
        opacity: 0.86;
        transform: scale(0.9);
    }
    72% {
        opacity: 0;
        transform: scale(1.28);
    }
    100% {
        opacity: 0;
        transform: scale(1.28);
    }
}

.burger {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 0;
    background: var(--text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .burger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

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

.site-header.is-open .burger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    position: relative;
    padding: 34px 0 30px;
    background:
        radial-gradient(circle at 18% 22%, rgba(96, 122, 156, 0.05), transparent 28%),
        radial-gradient(circle at 92% 4%, rgba(193, 18, 31, 0.06), transparent 20%),
        linear-gradient(90deg, #0c1118 0%, #111823 42%, #182230 100%);
}

.hero::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 176px;
    background:
        linear-gradient(90deg, rgba(12, 17, 24, 0.96) 0%, rgba(12, 17, 24, 0.82) 18%, rgba(12, 17, 24, 0.3) 34%, rgba(12, 17, 24, 0) 46%, rgba(12, 17, 24, 0) 54%, rgba(12, 17, 24, 0.32) 66%, rgba(12, 17, 24, 0.82) 82%, rgba(12, 17, 24, 0.96) 100%),
        linear-gradient(180deg, rgba(12, 17, 24, 0.78) 0%, rgba(12, 17, 24, 0.18) 10%, rgba(12, 17, 24, 0) 22%, rgba(12, 17, 24, 0) 78%, rgba(12, 17, 24, 0.2) 90%, rgba(12, 17, 24, 0.78) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 740px;
    padding: 48px 52px 36px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background-color: transparent;
    filter: saturate(0.98) brightness(1);
}

.hero__grid::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(8, 11, 16, 0.92) 0%, rgba(8, 11, 16, 0.82) 24%, rgba(8, 11, 16, 0.5) 44%, rgba(8, 11, 16, 0.26) 63%, rgba(8, 11, 16, 0.34) 100%),
        radial-gradient(circle at 88% 48%, rgba(11, 16, 22, 0.1) 0%, rgba(11, 16, 22, 0.2) 40%, rgba(11, 16, 22, 0.46) 72%, rgba(11, 16, 22, 0.72) 100%),
        linear-gradient(180deg, rgba(10, 14, 20, 0.24) 0%, rgba(10, 14, 20, 0.34) 52%, rgba(10, 14, 20, 0.48) 100%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    min-width: 0;
    max-width: 690px;
    padding: 0;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    overflow: hidden;
}

.hero__media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero__media img {
    width: 108%;
    height: 100%;
    object-fit: cover;
    object-position: 82% 54%;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--red);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero__title {
    font-size: clamp(50px, 6vw, 84px);
    max-width: 760px;
    line-height: 1.02;
    text-wrap: balance;
}

.hero__title .gold {
    display: block;
    color: var(--text);
}

.hero__text {
    max-width: 620px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 22px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.hero__offer {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    margin-top: 24px;
    padding: 20px 22px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--red);
    background: linear-gradient(180deg, rgba(20, 23, 28, 0.92), rgba(14, 17, 22, 0.88));
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
    max-width: 660px;
}

.hero__offer svg {
    width: 30px;
    height: 30px;
    color: var(--red);
}

.hero__offer p {
    min-width: 0;
}

.shot {
    position: relative;
    overflow: hidden;
    border-radius: inherit;
    background-color: #111;
    background-repeat: no-repeat;
    background-size: cover;
}

.shot::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.14) 0%, rgba(5, 5, 5, 0.54) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.38));
}

.shot--hero {
    height: 100%;
    background-image: url("./assets/hero-master-optimized.jpg");
    background-position: 82% 34%;
    background-size: cover;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(100%, 1080px);
    margin: 14px auto 0;
    overflow: visible;
    border: 0;
    background: rgba(36, 46, 58, 0.72);
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 108px;
    padding: 18px 20px;
    border-right: 1px solid var(--line);
}

.stat-card:last-child {
    border-right: 0;
}

.stat-card__icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    color: #e0c28f;
}

.stat-card__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.stat-card__icon text {
    fill: currentColor;
    stroke: none;
    font: 700 13px/1 var(--font-display);
}

.stat-card__copy {
    min-width: 0;
    display: grid;
    gap: 4px;
    justify-items: center;
    text-align: center;
}

.stat-card__value {
    display: block;
    color: #f0d7ab;
    font-size: 16px;
    line-height: 1.08;
    font-weight: 700;
}

.stat-card__text {
    display: block;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.32;
    text-align: center;
}

@media (min-width: 761px) {
    .situation-card__text--desktop {
        display: block !important;
    }

    .stat-card__icon {
        color: #ebcf9f;
    }

    .stat-card__value {
        color: #f5ddb3;
    }

    .stat-card__text {
        color: #ffffff;
    }
}

.section--situations {
    padding-top: 28px;
}

.situations {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
}

.situations.surface {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.situations__intro {
    display: grid;
    align-content: start;
    gap: 14px;
    justify-items: center;
    text-align: center;
}

.situations__title {
    max-width: 720px;
    font-size: clamp(34px, 4.5vw, 54px);
    line-height: 1.04;
    text-wrap: balance;
}

.situations__text {
    max-width: 980px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.68;
}

.situations__media {
    min-height: 320px;
    border: 1px solid rgba(212, 160, 55, 0.18);
}

.shot--situations {
    background-image: url("./assets/service-price-entry.jpg");
    background-position: 48% 52%;
}

.situations__content {
    display: grid;
    align-content: start;
    gap: 16px;
}

.situations__grid {
    display: grid;
    gap: 14px;
}

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

.situations__grid--bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.situation-card {
    min-height: 168px;
    padding: 18px 18px 20px;
    border: 1px solid rgba(212, 160, 55, 0.24);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
        rgba(10, 10, 10, 0.94);
}

.situation-card__icon {
    width: 30px;
    height: 30px;
}

.situation-card__title {
    margin-top: 16px;
    font-size: 24px;
    line-height: 1.12;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.situation-card__text {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.situation-card__lead {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.situations__footer {
    display: flex;
    justify-content: center;
    padding-top: 4px;
}

.situations__footer .btn {
    min-width: 240px;
    min-height: 58px;
    padding: 0 28px;
}

.situations__footer--faq .btn {
    min-width: 0;
}

.situations__footer--faq {
    align-items: center;
}

.situations__footer--faq .section-head--center {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    transform: none;
}

.situations__footer--faq .section-head--center .section-title,
.situations__footer--faq .section-head--center .section-subtitle {
    margin-inline: 0;
}

.situations__footer--faq > .btn {
    width: auto;
    align-self: center;
    flex: 0 0 auto;
}

.showcase {
    display: grid;
    grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.24fr);
    gap: 24px;
    align-items: stretch;
}

.showcase--services-only {
    display: block;
}

.problem-card,
.service-card,
.why-card,
.review-card,
.travel-card,
.urgent-card,
.article-card,
.faq-card,
.article-body,
.article-sidebar__card,
.mini-article,
.callout,
.final-cta,
.footer-panel {
    border-radius: var(--radius-lg);
}

.problem-card {
    min-height: 100%;
    overflow: hidden;
}

.problem-card__media {
    min-height: 100%;
    height: 100%;
}

.shot--problems {
    background-image: url("./assets/problem-front-gold.jpg");
    background-position: 58% 50%;
}

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

.services-panel {
    display: flex;
    flex-direction: column;
    width: min(100%, 1160px);
    margin: 0 auto;
}

.service-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card__media {
    height: 160px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.service-card__media--lost img {
    object-position: 50% 44%;
}

.service-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px 20px 22px;
}

.service-card__title {
    font-size: 24px;
    line-height: 1.12;
}

.service-card__text {
    margin-top: 12px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.58;
}

.service-card__price {
    display: block;
    margin-top: auto;
    padding-top: 18px;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 34px;
    line-height: 1;
}

.shot--service-keys {
    background-image: url("./assets/service-price-keys.jpg");
    background-position: 50% 52%;
}

.shot--service-ignition {
    background-image: url("./assets/service-price-ignition.jpg");
    background-position: 52% 50%;
}

.shot--service-entry {
    background-image: url("./assets/service-price-entry.jpg");
    background-position: 62% 50%;
}

.shot--service-lost {
    background-image: url("./assets/service-price-all-keys-lost.jpg");
    background-position: 50% 50%;
}

.shot--service-programming {
    background-image: url("./assets/service-price-programming.jpg");
    background-position: 58% 52%;
}

.shot--service-locks {
    background-image: url("./assets/service-price-remote-repair.jpg");
    background-position: 50% 50%;
}

.service-note {
    display: block;
    max-width: 920px;
    margin: 22px auto 0;
    color: var(--gold-light);
    text-align: center;
    font-weight: 500;
    line-height: 1.6;
}

.service-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

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

.why-card {
    padding: 22px 20px;
}

.why-card__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--gold);
    background: rgba(212, 160, 55, 0.08);
}

.why-card__title {
    margin-top: 18px;
    font-size: 26px;
}

.why-card__text {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px 18px;
}

.faq-card {
    overflow: hidden;
}

.faq-card__trigger {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 22px 22px;
    cursor: pointer;
}

.faq-card__trigger span:last-child {
    color: var(--gold);
    font-size: 32px;
    line-height: 1;
}

.faq-card__content {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    color: var(--muted);
    transition: max-height 0.24s ease, padding-bottom 0.24s ease;
}

.faq-card.is-open .faq-card__content {
    padding-bottom: 22px;
}

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

.article-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.article-card__media {
    height: 220px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.article-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.article-card__media--inside img {
    object-position: 58% 48%;
}

.article-card__media--lost img {
    object-position: 50% 44%;
}

.article-card__media--battery img {
    object-position: 46% 40%;
}

.article-card__media--price img {
    object-position: 62% 30%;
}

.article-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px 18px 22px;
}

.article-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 0;
    border: 1px solid rgba(212, 160, 55, 0.32);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 700;
}

.article-card__title {
    margin-top: 14px;
    font-size: 30px;
}

.article-card__text {
    margin-top: 10px;
    color: var(--muted);
    font-size: 15px;
}

.article-card__cta {
    margin-top: auto;
    padding-top: 16px;
}

.shot--article-inside {
    background-image: url("./assets/car-handle.jpg");
    background-position: 58% 48%;
}

.shot--article-lost {
    background-image: url("./assets/service-price-all-keys-lost.jpg");
    background-position: 50% 50%;
}

.shot--article-battery {
    background-image: url("./assets/car-handle.jpg");
    background-position: 44% 38%;
}

.shot--article-price {
    background-image: url("./assets/hero-master.jpg");
    background-position: 62% 32%;
}

.brands-marquee {
    position: relative;
    overflow: hidden;
    margin-top: 8px;
    padding: 18px 0;
}

.brands-marquee::before,
.brands-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 72px;
    z-index: 2;
    pointer-events: none;
}

.brands-marquee::before {
    left: 0;
    background: linear-gradient(90deg, rgba(13, 13, 13, 1), rgba(13, 13, 13, 0));
}

.brands-marquee::after {
    right: 0;
    background: linear-gradient(270deg, rgba(13, 13, 13, 1), rgba(13, 13, 13, 0));
}

.brands-marquee__inner {
    display: flex;
    width: max-content;
    animation: brands-marquee 26s linear infinite;
}

.brands-marquee__group {
    display: flex;
    flex-shrink: 0;
    gap: 16px;
    padding-right: 16px;
}

.brand-chip {
    width: 174px;
    height: 92px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 22px;
    border-radius: 0;
    border: 1px solid rgba(212, 160, 55, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        rgba(255, 255, 255, 0.02);
}

.brand-chip img {
    max-width: 122px;
    max-height: 42px;
    width: auto;
    height: auto;
    opacity: 0.96;
    filter: brightness(0) saturate(100%) invert(84%) sepia(29%) saturate(817%) hue-rotate(352deg) brightness(96%) contrast(92%);
}

.brands-note {
    max-width: 840px;
    margin-top: 18px;
    color: var(--muted);
}

@keyframes brands-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.panel-title {
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.02;
}

.reviews-showcase,
.urgent-card,
.travel-card,
.trust-strip {
    padding: 28px 30px;
}

.reviews-showcase {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.reviews-showcase__head {
    text-align: center;
}

.reviews-showcase__head .panel-title,
.reviews-showcase__head .section-subtitle {
    margin-inline: auto;
}

.review-list {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

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

.review-card {
    position: relative;
    display: flex;
    min-height: 300px;
    flex-direction: column;
    padding: 22px 24px 18px;
    border: 1px solid rgba(212, 160, 55, 0.34);
    background:
        radial-gradient(circle at 88% 82%, rgba(212, 160, 55, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
        rgba(10, 10, 10, 0.95);
}

.review-card__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.review-card__quote {
    color: var(--gold);
    font-size: 36px;
    line-height: 1;
}

.review-card__name {
    margin-top: 16px;
    font-size: 26px;
}

.review-card__stars {
    color: var(--gold);
    font-size: 17px;
    letter-spacing: 0.08em;
}

.review-card__text {
    margin-top: 14px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}

.review-card__date {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(212, 160, 55, 0.28);
    color: rgba(245, 241, 232, 0.48);
    font-size: 14px;
}

.support-grid {
    display: grid;
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
    gap: 18px;
    margin-top: 18px;
}

.urgent-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px 24px 22px;
}

.urgent-card .section-subtitle {
    max-width: 500px;
    margin-inline: 0;
    text-align: left;
    font-size: 16px;
}

.urgent-card__phone-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
}

.urgent-card__phone-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(212, 160, 55, 0.44);
    color: var(--gold);
    font-size: 30px;
}

.urgent-card__phone {
    display: inline-block;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: clamp(24px, 2.5vw, 46px);
    line-height: 1.02;
    white-space: nowrap;
}

.messenger-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.messenger-row--support .btn {
    min-width: 220px;
}

.urgent-card__meta {
    color: var(--text);
    opacity: 0.8;
    font-size: 16px;
}

.travel-card__content {
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
    gap: 18px;
    align-items: stretch;
}

.travel-card {
    padding: 30px 30px 28px;
}

.travel-card__region {
    margin-top: 16px;
    color: var(--gold-light);
    font-size: 34px;
    line-height: 1.16;
}

.travel-card__region--overlay {
    position: absolute;
    top: 26px;
    left: 26px;
    right: 26px;
    margin-top: 0;
    font-family: var(--font-display);
    font-size: clamp(26px, 2.5vw, 40px);
    line-height: 1.08;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.42);
}

.travel-list {
    display: grid;
    gap: 16px;
    margin-top: 24px;
    padding: 0;
    list-style: none;
}

.travel-list li {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    color: var(--text);
    font-size: 19px;
    line-height: 1.5;
}

.travel-list--checks li::before {
    content: "◉";
    color: var(--gold);
    font-size: 15px;
    line-height: 1.6;
}

.travel-card__map {
    position: relative;
    min-height: 420px;
}

.shot--map {
    background-image: url("./assets/spb-map.jpg");
    background-position: 72% 50%;
}

.shot--map::after {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.22) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.14));
}

.map-badge {
    position: absolute;
    padding: 14px 18px;
    border: 1px solid rgba(212, 160, 55, 0.26);
    background: rgba(11, 11, 11, 0.82);
    color: var(--gold-light);
    font-size: 16px;
    line-height: 1.15;
}

.map-badge--city {
    right: 30px;
    bottom: 48px;
}

.map-badge--region {
    left: 26px;
    bottom: 18px;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.trust-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
}

.trust-item__icon {
    color: var(--gold);
    font-size: 32px;
    line-height: 1;
}

.trust-item__title {
    font-size: 17px;
    font-weight: 700;
}

.trust-item__text {
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.final-cta {
    padding: 30px;
    text-align: center;
}

.final-cta__title {
    font-size: clamp(38px, 4vw, 58px);
}

.final-cta__text {
    max-width: 720px;
    margin: 16px auto 0;
    color: var(--muted);
    font-size: 18px;
}

.final-cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.site-footer {
    padding: 22px 0 28px;
}

.footer-panel {
    padding: 22px 24px;
}

.footer-main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.footer-nav a {
    color: var(--muted);
    font-weight: 600;
}

.footer-contact {
    text-align: right;
}

.footer-contact__phone {
    display: block;
    font-size: 18px;
    font-weight: 800;
}

.footer-contact__meta {
    color: var(--muted);
    font-size: 13px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-link-button {
    padding: 0;
    color: var(--muted);
    cursor: pointer;
}

.footer-link-button:hover {
    color: var(--gold-light);
}

.article-page {
    padding: 34px 0 52px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumbs span::after {
    content: "›";
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.28);
}

.breadcrumbs span:last-child::after {
    display: none;
}

.article-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(290px, 0.58fr);
    gap: 22px;
    align-items: start;
}

.article-body {
    padding: 30px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 0;
    border: 1px solid rgba(212, 160, 55, 0.32);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 700;
}

.article-title {
    max-width: 760px;
    margin-inline: auto;
    font-size: clamp(40px, 5vw, 70px);
    color: var(--gold-light);
    line-height: 1.04;
    text-wrap: balance;
}

.article-intro {
    max-width: 850px;
    margin-top: 18px;
    margin-inline: auto;
    color: var(--muted);
    font-size: 20px;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 14px;
}

.article-cover {
    height: 420px;
    margin-top: 28px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

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

.article-cover--inside img {
    object-position: 56% 44%;
}

.article-cover--lost img {
    object-position: 50% 50%;
}

.article-cover--battery img {
    object-position: 46% 38%;
}

.article-cover--price img {
    object-position: 66% 36%;
}

.article-content {
    margin-top: 30px;
}

.article-content > * + * {
    margin-top: 28px;
}

.article-section-block h2 {
    margin-bottom: 12px;
    font-size: 34px;
}

.article-section-block p,
.article-section-block li {
    color: var(--muted);
    font-size: 17px;
}

.article-section-block ul,
.article-section-block ol {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.callout {
    padding: 22px;
    border: 1px solid var(--line-strong);
    background: linear-gradient(180deg, rgba(212, 160, 55, 0.08), rgba(212, 160, 55, 0.03));
}

.callout__text {
    color: var(--text);
    font-size: 18px;
}

.callout__actions {
    margin-top: 18px;
}

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

.article-sidebar {
    position: sticky;
    top: 116px;
    display: grid;
    gap: 16px;
}

.article-sidebar__card {
    padding: 22px;
}

.article-sidebar__title {
    font-size: 30px;
}

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

.mini-article {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 12px;
    padding: 12px;
}

.mini-article__thumb {
    height: 92px;
    border-radius: var(--radius-sm);
}

.mini-article__title {
    font-size: 20px;
}

.mini-article__meta {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
}

.mini-thumb--inside {
    background-image: url("./assets/car-handle.jpg");
    background-position: 54% 42%;
}

.mini-thumb--lost {
    background-image: url("./assets/service-price-all-keys-lost.jpg");
    background-position: 50% 50%;
}

.mini-thumb--battery {
    background-image: url("./assets/car-handle.jpg");
    background-position: 44% 36%;
}

.mini-thumb--price {
    background-image: url("./assets/hero-master.jpg");
    background-position: 66% 34%;
}

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

.check-list li {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 12px;
    color: var(--muted);
}

.check-list li::before {
    content: "•";
    color: var(--gold);
    font-size: 20px;
    line-height: 1;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.72);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
}

.modal__dialog {
    width: min(720px, 100%);
    max-height: calc(100vh - 40px);
    padding: 26px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
}

.modal__head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}

.modal__title {
    font-size: 34px;
}

.modal__close {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.modal__body {
    margin-top: 16px;
    color: var(--muted);
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding-right: 8px;
}

.modal__body > * + * {
    margin-top: 12px;
}

@media (max-width: 1240px) {
    .brand-chip {
        width: 160px;
    }

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

    .review-list--cards,
    .trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1080px) {
    .site-header__inner {
        grid-template-columns: auto auto;
    }

    .nav {
        position: fixed;
        top: calc(var(--header-height) + 10px);
        left: 16px;
        right: 16px;
        padding: 22px;
        border-radius: var(--radius-lg);
        background: rgba(7, 7, 7, 0.98);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    }

    .site-header.is-open .nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .header-contact__details {
        display: none;
    }

    .burger {
        display: inline-block;
    }

    .hero__grid,
    .situations,
    .showcase,
    .contact-grid,
    .article-shell {
        grid-template-columns: 1fr;
    }

    .hero__grid {
        min-height: 620px;
        padding: 28px 26px 110px;
        background-size: 112% auto;
        background-position: 88% 48%;
    }

    .hero__grid::before {
        background:
            linear-gradient(180deg, rgba(3, 3, 3, 0.82) 0%, rgba(3, 3, 3, 0.24) 44%, rgba(3, 3, 3, 0.52) 100%),
            radial-gradient(circle at 82% 46%, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.14) 44%, rgba(5, 5, 5, 0.5) 82%, rgba(5, 5, 5, 0.8) 100%),
            linear-gradient(90deg, rgba(3, 3, 3, 0.76) 0%, rgba(3, 3, 3, 0.38) 44%, rgba(3, 3, 3, 0.2) 100%);
    }

    .stats-strip,
    .service-grid,
    .articles-grid,
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .support-grid,
    .travel-card__content {
        grid-template-columns: 1fr;
    }

    .travel-card__map {
        min-height: 320px;
    }

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

    .stats-strip {
        width: 100%;
    }

    .stat-card {
        min-height: 98px;
        border-bottom: 1px solid var(--line);
    }

    .stat-card:nth-child(2n) {
        border-right: 0;
    }

    .stat-card:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .article-sidebar {
        position: static;
    }

    .footer-main,
    .footer-bottom {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .footer-contact {
        text-align: left;
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 78px;
    }

    html {
        scroll-padding-top: 92px;
    }

    .section {
        padding: 24px 0;
    }

    .section--situations {
        padding-top: 12px;
        scroll-margin-top: 92px;
    }

    .logo__title {
        font-size: 18px;
    }

    .logo__subtitle {
        margin-top: 2px;
        font-size: 10px;
        letter-spacing: 0.04em;
    }

    .header-contact {
        gap: 10px;
    }

    .header-contact__icon,
    .burger {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
    }

    .situations {
        padding: 14px;
    }

    .situations__title {
        font-size: clamp(34px, 9.2vw, 40px);
        line-height: 1.05;
    }

    .situations__text {
        display: block;
        max-width: 100%;
        font-size: clamp(15px, 4.5vw, 18px);
        line-height: 1.58;
    }

    .situations__grid--top,
    .situations__grid--bottom {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .situations__grid--top {
        margin-top: 10px;
    }

    .situations__grid--bottom {
        margin-top: 0;
    }


    .situation-card {
        min-height: 128px;
        padding: 10px 10px 12px;
        background: linear-gradient(180deg, rgba(24, 28, 34, 0.94) 0%, rgba(16, 19, 24, 0.98) 100%);
        border-color: rgba(200, 164, 93, 0.42);
        box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
    }

    .situation-card__title {
        margin-top: 8px;
        font-size: clamp(13px, 3.8vw, 16px);
        line-height: 1.16;
    }

    .situation-card__icon {
        width: 14px;
        height: 14px;
    }

    .situation-card__text,
    .situation-card__lead {
        display: none;
    }

    .situations__footer {
        padding-top: 4px;
        margin-top: 2px;
    }

    .situations__footer .btn {
        min-width: 220px;
        min-height: 48px;
        padding: 0 18px;
        font-size: 17px;
    }

    .problem-card__media {
        min-height: 240px;
    }

    .hero {
        padding-top: 18px;
    }

    .hero__eyebrow {
        margin-bottom: 12px;
        font-size: 11px;
        letter-spacing: 0.14em;
    }

    .hero__title {
        font-size: 31px;
        line-height: 1.02;
    }

    .hero__text {
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.5;
    }

    .hero__grid {
        min-height: auto;
        padding: 18px 14px 20px;
        background: linear-gradient(180deg, #11151b 0%, #141922 100%);
    }

    .hero__grid::before {
        display: none;
    }

    .hero__content {
        width: 100%;
        max-width: 100%;
        padding-top: 0;
    }

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 18px;
    }

    .hero__actions .btn {
        width: 100%;
    }

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

    .service-actions .btn {
        width: 100%;
    }

    .hero__text,
    .hero__offer p {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .hero__offer {
        grid-template-columns: 1fr;
        margin-top: 22px;
        padding: 14px 14px 16px;
    }

    .hero__media {
        position: relative;
        inset: auto;
        z-index: 0;
        display: block;
        min-height: 236px;
        margin-top: 16px;
        border-radius: var(--radius-lg);
    }

    .hero__media::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(11, 13, 16, 0.08) 0%, rgba(11, 13, 16, 0.22) 100%);
        pointer-events: none;
    }

    .hero__media img {
        width: 100%;
        height: 236px;
        object-fit: cover;
        object-position: center 16%;
    }

    .hero__offer svg {
        width: 24px;
        height: 24px;
    }

    .hero__offer p {
        font-size: 14px;
        line-height: 1.48;
    }

    .stats-strip,
    .faq-layout,
    .articles-grid,
    .why-grid,
    .related-grid,
    .review-list--cards,
    .trust-strip {
        grid-template-columns: 1fr;
    }

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

    .service-card {
        min-height: 108px;
    }

    .service-card__media {
        display: none;
    }

    .service-card__body {
        padding: 12px 12px 14px;
    }

    .service-card__title {
        font-size: 15px;
        line-height: 1.04;
    }

    .service-card__text {
        display: none;
    }

    .service-card__price {
        padding-top: 10px;
        font-size: 19px;
    }

    .service-note {
        max-width: 420px;
        margin-top: 14px;
        font-size: 12px;
        line-height: 1.4;
    }

    .service-actions {
        gap: 10px;
        margin-top: 16px;
    }

    .service-actions .btn {
        min-height: 50px;
    }

    .stat-card {
        min-height: 76px;
        padding: 14px 18px;
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        background: transparent;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .stats-strip {
        margin-top: 30px;
        background: rgba(32, 41, 54, 0.82);
        position: relative;
        z-index: 3;
    }

    .stat-card__icon {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
        color: #e7c68b;
    }

    .stat-card__copy {
        gap: 2px;
        justify-items: start;
        text-align: left;
    }

    .stat-card__value {
        font-size: 17px;
        color: #f5ddb3;
    }

    .stat-card__text {
        font-size: 12px;
        line-height: 1.2;
        text-align: left;
        color: #ffffff;
    }

    .brands-marquee {
        padding: 14px 0;
    }

    .brands-marquee::before,
    .brands-marquee::after {
        width: 34px;
    }

    .brands-marquee__inner {
        animation-duration: 22s;
    }

    .brand-chip {
        width: 138px;
        height: 76px;
        padding: 14px 16px;
    }

    .brand-chip img {
        max-width: 100px;
        max-height: 32px;
    }

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

    .stat-card:nth-last-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .stat-card:last-child {
        border-bottom: 0;
    }

    .stats-strip .stat-card,
    .stats-strip .stat-card:nth-child(2n),
    .stats-strip .stat-card:nth-last-child(-n + 2) {
        background: transparent !important;
    }

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

    .article-body,
    .article-sidebar__card,
    .travel-card,
    .urgent-card,
    .reviews-panel,
    .footer-panel,
    .final-cta {
        padding: 22px 18px;
    }

    .reviews-showcase,
    .trust-strip {
        padding: 22px 18px;
    }

    .urgent-card__phone-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .urgent-card__phone-icon {
        width: 58px;
        height: 58px;
        font-size: 28px;
    }

    .messenger-row--support .btn {
        min-width: 0;
        width: 100%;
    }

    .travel-card__region {
        font-size: 24px;
    }

    .travel-card__map {
        min-height: 260px;
    }

    .map-badge {
        padding: 10px 12px;
        font-size: 14px;
    }

    .map-badge--city {
        right: 16px;
        bottom: 18px;
    }

    .map-badge--region {
        left: 16px;
        bottom: 18px;
    }

    .article-cover,
    .travel-card__map {
        height: 280px;
    }

    .mini-article {
        grid-template-columns: 1fr;
    }

    .mini-article__thumb {
        height: 180px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .situation-card__text,
    .situation-card__lead {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .header-contact__icon,
    .header-contact__icon::before {
        animation: none;
    }

    .brands-marquee__inner {
        animation: none;
    }
}
