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

:root {
    --color-bg: #FAFAF8;
    --color-white: #FFFFFF;
    --color-primary: #212E38;
    --color-primary-light: #2F3BA2;
    --color-accent: #FFCA62;
    --color-text: #212E38;
    --color-text-secondary: #6B7280;
    --color-border: #E5E7F1;
    --color-overlay: rgba(0, 0, 0, 0.35);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 7px 25px rgba(60, 60, 60, 0.1);
    --container-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.header--scrolled {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}

.header__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__logo-img {
    width: 32px;
    height: auto;
}

.header__logo-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    transition: color 0.3s ease;
}

.header--scrolled .header__logo-text {
    color: var(--color-primary);
}

.header__nav {
    display: flex;
    gap: 32px;
}

.header__nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-white);
    transition: color 0.3s ease;
}

.header--scrolled .header__nav-link {
    color: var(--color-text);
}

.header__nav-link:hover {
    color: var(--color-primary-light);
}

.header__actions {
    display: flex;
    gap: 8px;
}

.header__action-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: var(--radius-sm);
    color: var(--color-white);
    transition: all 0.3s ease;
}

.header__action-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.header--scrolled .header__action-btn {
    background: var(--color-primary);
    color: var(--color-white);
}

.header__action-btn:hover {
    opacity: 0.85;
}

.header__menu-toggle {
    display: none;
}

.mobile-menu,
.mobile-menu-backdrop {
    display: none;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.hero__title {
    font-size: 56px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin: 0;
}

.hero__subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0;
    line-height: 1.6;
}

.hero__downloads {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 16px;
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    background: var(--color-white);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    transition: all 0.2s;
    width: 202px;
    height: 60px;
}

.store-btn__img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.store-btn__text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-btn__small {
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
}

.store-btn__large {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 2px;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: var(--color-white);
    transition: all 0.2s;
    animation: bounce 2s infinite;
}

.hero__scroll:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn_primary {
    background: var(--color-accent);
    color: var(--color-primary);
}

.btn_primary:hover {
    background: #f5c14e;
    transform: translateY(-1px);
}

.section {
    padding: 64px 24px;
}

.section__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 63px;
}

.section__title {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0;
}

.section__title_center {
    text-align: center;
    margin-bottom: 40px;
}

.section__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--color-accent);
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
}

.section__link:hover {
    background: #f5c14e;
    transform: translateY(-1px);
}

.posts-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.posts-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.posts-arrow:hover {
    transform: translateX(3px);
}

.posts-btn {
    display: block;
    width: 100%;
    padding: 10px 24px;
    margin-top: 24px;
    background: var(--color-accent);
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    transition: all 0.2s;
}

.posts-btn:hover {
    background: #f5c14e;
    transform: translateY(-1px);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    flex: 1;
}

.post-card__image-wrap {
    position: relative;
    width: 100%;
    padding-top: 64%;
    overflow: hidden;
    background: #e8e8e4;
    border-radius: 12px;
    box-shadow: 0 5px 12px rgba(7, 17, 36, 0.08);
}

.post-card {
    background: transparent;
    border-radius: 12px;
    overflow: visible;
    box-shadow: none;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.post-card:hover {
    box-shadow: none;
    transform: none;
}

.post-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card__type-icon {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: 50%;
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.post-card__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.post-card__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--color-text);
    margin-top: auto;
}

.post-card__days,
.post-card__distance {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.type-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s;
}

.type-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.type-card__image-wrap {
    width: 100%;
    padding-top: 56%;
    overflow: hidden;
    position: relative;
}

.type-card__image-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
    pointer-events: none;
}

.type-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.type-card__label {
    position: absolute;
    bottom: 16px;
    left: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    z-index: 1;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.location-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s;
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.location-card__image-wrap {
    width: 100%;
    padding-top: 40%;
    overflow: hidden;
    position: relative;
}

.location-card__image-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
    pointer-events: none;
}

.location-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-card__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.location-card__label {
    position: absolute;
    bottom: 16px;
    left: 20px;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-white);
    z-index: 1;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.section_download {
    padding: 80px 24px;
    /*background-image: url('/site/img/DownloadBlock.png');*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*background-color: #212E38;*/
    background-color: #D2D2BB;
}

/*
.section_download--light {
    background-color: #F3F3EA;
}
*/

.section_download--light .download-block__title,
.section_download--light .download-block__text {
    color: var(--color-text);
}

/*
.section_download--dark {
    background-color: #D2D2BB;
}
*/

.download-block {
    display: flex;
    align-items: center;
    gap: 64px;
    color: var(--color-white);
}

.download-block__phones {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-block__phones-img {
    width: 724px;
    height: 546px;
    max-width: 100%;
}

.download-block__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.download-block__title {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.3;
    margin: 0;
}

.download-block__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.download-block__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.download-block__qr {
    width: 136px;
    height: 136px;
    flex-shrink: 0;
    background: #fff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-block__buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    background: var(--color-white);
    color: var(--color-primary);
    border-radius: 8px;
    transition: all 0.2s;
    width: 202px;
    height: 60px;
}

.download-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.download-btn__img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.download-btn__text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.download-btn__small {
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-text-secondary);
}

.download-btn__large {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 2px;
    color: var(--color-primary);
}

.section_pro {
    padding: 80px 24px;
    background: var(--color-bg);
}

.pro-block {
    display: flex;
    align-items: center;
    gap: 64px;
}

.pro-block__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pro-block__title {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
}

.pro-block__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin: 0;
}

.pro-block__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.4;
}

.pro-block__feature svg,
.pro-block__check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.pro-block__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: var(--color-accent);
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    width: fit-content;
    transition: all 0.2s;
}

.pro-block__btn:hover {
    background: #f5c14e;
    transform: translateY(-1px);
}

.pro-block__phones {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-block__phones-img {
    max-width: 100%;
    height: auto;
}

.footer {
    background: #3C3C3C;
    color: var(--color-white);
    padding: 64px 24px 24px;
}

.footer__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__logo-img {
    width: 32px;
    height: auto;
}

.footer__logo-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-accent);
}

.footer__heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}

.footer__link:hover {
    color: var(--color-white);
}

.footer__email {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}

.footer__email:hover {
    color: var(--color-white);
}

.footer__tg {
    display: inline-flex;
    width: 32px;
    height: 32px;
    transition: opacity 0.2s;
}

.footer__tg:hover {
    opacity: 0.8;
}

.footer__tg-img {
    width: 100%;
    height: auto;
}

.footer__heading + .footer__apps {
    margin-top: -6px;
}

.footer__apps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__app-btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 0 0 20px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    font-size: 14px;
    color: var(--color-white);
    transition: background 0.2s;
    width: 187px;
    height: 52px;
}

.footer__app-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.footer__app-icon-wrap {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer__app-icon {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer__copy {
    margin: 0;
}

.footer__policy {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.footer__policy:hover {
    color: var(--color-white);
}

.footer__lang-select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-family);
}

.footer__lang-select option {
    background: #3C3C3C;
    color: var(--color-white);
}

@media (max-width: 1024px) {
    .posts-row {
        flex-direction: column;
    }

    .posts-arrow {
        align-self: center;
    }

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

    .hero__title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    /* ====== HEADER ====== */
    .header__nav {
        display: none;
    }

    .header__actions {
        display: none;
    }

    .header__container {
        padding: 0 16px;
        height: 56px;
    }

    .header__menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .header__menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--color-primary);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .header--scrolled .header__menu-toggle span,
    .feed ~ .header .header__menu-toggle span {
        background: var(--color-primary);
    }

    /* ====== MOBILE MENU ====== */
    .mobile-menu-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 200;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-menu-backdrop--open {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        z-index: 201;
        padding: 60px 24px 32px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .mobile-menu--open {
        transform: translateX(0);
        box-shadow: var(--shadow-lg);
    }

    .mobile-menu__close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        color: var(--color-primary);
        cursor: pointer;
        border-radius: var(--radius-sm);
    }

    .mobile-menu__close:hover {
        background: var(--color-bg);
    }

    .mobile-menu__links {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .mobile-menu__link {
        font-size: 18px;
        font-weight: 600;
        color: var(--color-primary);
        padding: 8px 0;
    }

    .mobile-menu__apps {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: auto;
    }

    .mobile-menu__app-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0 16px;
        height: 48px;
        background: var(--color-bg);
        border-radius: var(--radius-sm);
        font-size: 15px;
        font-weight: 600;
        color: var(--color-primary);
    }

    .mobile-menu__app-icon {
        width: 28px;
        height: 28px;
        object-fit: contain;
    }

    /* ====== HERO ====== */
    .hero__title {
        font-size: 28px;
    }

    .hero__subtitle {
        font-size: 15px;
    }

    .hero__content {
        gap: 20px;
        padding: 0 16px;
    }

    .hero__downloads {
        flex-direction: column;
        gap: 24px;
        margin-top: 0;
    }

    .hero__qr {
        display: none;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 12px;
    }

    .store-btn {
        width: 100%;
        max-width: 280px;
        height: 52px;
    }

    .store-btn__img {
        width: 28px;
        height: 28px;
    }

    .store-btn__small {
        font-size: 10px;
    }

    .store-btn__large {
        font-size: 15px;
    }

    .hero__scroll {
        bottom: 16px;
        width: 40px;
        height: 40px;
    }

    /* ====== SECTIONS (general) ====== */
    .section {
        padding: 40px 16px;
    }

    .section__title {
        font-size: 22px;
    }

    .section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 24px;
    }

    /* ====== СВЕЖИЕ МАРШРУТЫ — горизонтальный скролл ====== */
    .posts-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .posts-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 8px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .posts-grid::-webkit-scrollbar {
        display: none;
    }

    .posts-arrow {
        display: none;
    }

    .post-card {
        flex-direction: column;
        min-width: 242px;
        max-width: 242px;
        scroll-snap-align: start;
        gap: 12px;
    }

    .post-card__image-wrap {
        width: 100%;
        height: 156px;
        padding-top: 0;
        min-height: 0;
    }

    .post-card__info {
        padding: 0;
        gap: 8px;
    }

    .posts-btn {
        display: block;
        width: 100%;
        padding: 12px 24px;
        margin-top: 24px;
        font-size: 16px;
    }

    /* ====== ТИПЫ ПУТЕШЕСТВИЙ — квадратные карточки ====== */
    .types-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .type-card {
        border-radius: 12px;
    }

    .type-card__image-wrap {
        padding-top: 0;
        aspect-ratio: 1;
        width: 100%;
    }

    .type-card__label {
        display: flex;
        align-items: center;
        bottom: 16px;
        left: 16px;
        font-size: 16px;
    }

    .type-card__label::after {
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px;
        margin-left: 5px;
        flex-shrink: 0;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    /* ====== ЛОКАЦИИ — карточки 214px ====== */
    .locations-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .location-card {
        border-radius: 12px;
    }

    .location-card__image-wrap {
        padding-top: 0;
        height: 214px;
    }

    .location-card__label {
        display: flex;
        align-items: center;
        bottom: 16px;
        left: 16px;
        font-size: 18px;
    }

    .location-card__label::after {
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px;
        margin-left: 5px;
        flex-shrink: 0;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    /* ====== СКАЧАТЬ ПРИЛОЖЕНИЕ — тёмный фон ====== */
    .section_download {
        background: #3C3C3C;
        padding: 48px 16px;
    }

    .download-block {
        flex-direction: column;
        gap: 32px;
    }

    .download-block__phones {
        order: -1;
    }

    .download-block__phones-img {
        max-width: 100%;
        height: auto;
    }

    .download-block__content {
        align-items: stretch;
    }

    .download-block__title {
        color: #ffffff;
        font-size: 22px;
    }

    .section_download--light .download-block__title {
        color: #ffffff;
    }

    .download-block__text {
        color: rgba(255, 255, 255, 0.8);
    }

    .section_download--light .download-block__text {
        color: rgba(255, 255, 255, 0.8);
    }

    .download-block__actions {
        flex-direction: row;
        gap: 12px;
        justify-content: center;
    }

    .download-block__qr--mobile-hide {
        display: none;
    }

    .download-block__buttons {
        flex-direction: row;
        gap: 12px;
        width: 100%;
    }

    .download-btn {
        flex: 1;
        width: auto;
        height: 48px;
        padding: 0 8px;
    }

    .download-btn__img {
        width: 24px;
        height: 24px;
    }

    .download-btn__small {
        font-size: 9px;
    }

    .download-btn__large {
        font-size: 13px;
    }

    /* ====== PRO-ПОДПИСКА ====== */
    .section_pro {
        padding: 48px 16px;
    }

    .pro-block {
        flex-direction: column;
        gap: 32px;
    }

    .pro-block__content {
        align-items: stretch;
        gap: 24px;
    }

    .pro-block__title {
        font-size: 22px;
    }

    .pro-block__features {
        gap: 14px;
    }

    .pro-block__feature {
        font-size: 15px;
    }

    .pro-block__btn {
        width: 100%;
        padding: 12px 24px;
    }

    .pro-block__phones {
        display: none;
    }

    /* ====== FOOTER — перестановка через display:contents ====== */
    .footer {
        padding: 40px 16px 16px;
    }

    .footer__top {
        display: flex;
        flex-direction: column;
        gap: 28px;
        padding-bottom: 32px;
        text-align: left;
    }

    .footer__col {
        display: contents;
    }

    .footer__logo {
        order: 1;
    }

    .footer__col:last-child .footer__heading {
        order: 2;
    }

    .footer__apps {
        order: 3;
        flex-direction: row;
        gap: 12px;
    }

    .footer__app-btn {
        flex: 1;
        width: auto;
        height: 44px;
    }

    .footer__email {
        order: 4;
    }

    .footer__tg {
        order: 5;
    }

    .footer__col:first-child .footer__links {
        order: 6;
    }

    .footer__col:nth-child(2) .footer__links {
        order: 7;
    }

    .footer__bottom {
        order: 8;
        flex-direction: column;
        gap: 10px;
        text-align: left;
        align-items: flex-start;
    }

    .footer__links {
        gap: 10px;
    }

    .footer__link {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 24px;
    }

    .store-btn {
        height: 48px;
    }

    .store-btn__large {
        font-size: 14px;
    }

    .download-btn {
        height: 44px;
    }

    .download-btn__large {
        font-size: 12px;
    }

    .section__title {
        font-size: 20px;
    }
}
