body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: sans-serif;
    background-color: #f0f0f0;
}

.main-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.main-header .logo img {
    height: 32px;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.main-nav ul li {
    margin-right: 28px;
}

.main-nav ul li:last-child {
    margin-right: 0;
}

.nav-link {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    font-size: 15px;
    transition: color 0.2s ease;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
    display: inline-block;
}

.nav-link:hover,
.nav-link--active {
    color: #e63946;
    border-bottom-color: #e63946;
}

/* Dropdown Каталог */
.nav-item--catalog {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 6px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 20px;
    min-width: 400px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1000;
}

.nav-item--catalog:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    background: #f8f8f8;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.nav-dropdown__item:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-dropdown__img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.nav-dropdown__label {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    color: #333;
}

.nav-dropdown__badge {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 10px;
    font-weight: bold;
    background: #e63946;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Переключатель языка (флаги RU / UZ) */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-option {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.lang-option:hover {
    border-color: #e63946;
    color: #333;
}

.lang-option--active {
    border-color: #e63946;
    background: #fff5f5;
    color: #e63946;
}

.lang-option__flag {
    width: 22px;
    height: 16px;
    border-radius: 3px;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.lang-option__flag--ru {
    background: linear-gradient(to bottom, #fff 0 33.33%, #0039a6 33.33% 66.66%, #d52b1e 66.66% 100%);
}

.lang-option__flag--uz {
    background: url(assets/img/flag-uz.svg) center / cover no-repeat;
}

@media (max-width: 768px) {
    .lang-option__label {
        display: none;
    }
    .lang-option {
        padding: 8px;
    }
}

.phone-number {
    color: #e63946;
    font-weight: bold;
    font-size: 18px;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    position: relative;
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    position: relative;
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Top banner — слайдер, десктоп 2:1, мобилка 3:4 */
.top-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    z-index: 1;
}

.top-banner__slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.top-banner__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: none;
}

.top-banner__slide--active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

.top-banner__bg {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.top-banner__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 35%;
    display: block;
}

.top-banner__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 48px 56px;
    box-sizing: border-box;
}

.top-banner__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin: 0;
    font-size: clamp(20px, 4vw, 32px);
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
    max-width: 520px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.25);
}

.top-banner__logo {
    height: 48px;
    width: auto;
    display: block;
}

.top-banner__text {
    margin-top: 20px;
    max-width: 520px;
}

.top-banner__text p {
    margin: 0 0 12px 0;
    font-size: clamp(14px, 2vw, 18px);
    color: #fff;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.25);
}

.top-banner__text p:last-child {
    margin-bottom: 0;
}

.top-banner__dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 10px;
}

.top-banner__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, border-color 0.2s;
}

.top-banner__dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.top-banner__dot--active {
    background: #fff;
    border-color: #fff;
}

@media (max-width: 768px) {
    .top-banner {
        aspect-ratio: 3 / 4;
    }
    .top-banner__slide {
        align-items: flex-start;
        justify-content: center;
    }
    .top-banner__bg-img {
        object-position: 50% 40%;
    }
    .top-banner__content {
        padding: 20px;
        min-height: 20%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        overflow: visible;
    }
    .top-banner__title {
        max-width: 100%;
        align-items: center;
        text-align: center;
        width: 100%;
        margin: 0;
        padding-top: 20px;
        line-height: 1.5;
    }
    .top-banner__text {
        max-width: 100%;
        text-align: center;
        width: 100%;
        margin-top: 8px;
    }
    .top-banner__text p {
        text-align: center;
        font-size: clamp(12px, 1.5vw, 14px);
        margin-bottom: 6px;
    }
    .top-banner__dots {
        bottom: 16px;
    }
}

/* Main content styles */
.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    width: 100%;
}

.hero-section {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.hero-text {
    flex: 1;
    padding: 20px 40px;
}

.hero-text h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.hero-text hr {
    width: 60px;
    border: none;
    border-top: 3px solid #e63946;
    margin-left: 0;
    margin-bottom: 20px;
}

.hero-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-text ul li {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.hero-text ul li::before {
    content: '•';
    color: #e63946;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Модуль: фото на всю ширину, текст белым справа (как баннер) */
.module-control {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    margin-top: 40px;
}

.module-control__bg {
    position: absolute;
    inset: 0;
    background-image: url(assets/img/mod3.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.module-control__content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 48px 56px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
}

.module-control__text {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 40%;
}

.module-control__text li {
    font-size: clamp(16px, 1.8vw, 16px);
    color: #fff;
    margin-bottom: 14px;
    position: relative;
    padding-left: 25px;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.25);
}

.module-control__text li::before {
    content: '•';
    color: #fff;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* App Section */
.app-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 0 20px;
    box-sizing: border-box;
    text-align: center;
}

.app-section__title {
    font-size: 36px;
    color: #333;
    margin: 50px 0 10px;
}

.app-showcase {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    padding-bottom: 0;
}

.app-showcase__phone {
    width: 300px;
    z-index: 1;
}

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

.app-card {
    position: absolute;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 240px;
    text-align: left;
    z-index: 2;
}

.app-card__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

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

.app-card__text {
    font-size: 14px;
    color: #444;
    line-height: 1.3;
    font-weight: 500;
}

/* Позиционирование карточек вокруг телефона */
.app-card--top-left {
    top: 10%;
    left: 0;
}

.app-card--top-right {
    top: 25%;
    right: 0;
}

.app-card--bottom-left {
    bottom: 20%;
    left: 0;
}

.app-card--bottom-right {
    bottom: 25%;
    right: 0;
}

/* Video Section */
.video-section {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.video-section__content {
    position: relative;
    z-index: 1;
    width: 45%;
    padding: 60px 56px;
    box-sizing: border-box;
    margin-left: 56px;
}

.video-section__title {
    font-size: clamp(24px, 3.5vw, 36px);
    color: #fff;
    margin: 0 0 20px 0;
    font-weight: bold;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.25);
}

.video-section__text {
    font-size: clamp(14px, 2vw, 18px);
    color: #fff;
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* Download Section */
.download-section {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
}

.download-section__title {
    font-size: 36px;
    color: #333;
    margin: 0 0 40px 0;
    font-weight: bold;
}

.download-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-button {
    display: inline-block;
    background: #fff;
    border-radius: 12px;
    padding: 12px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    cursor: pointer;
}

.download-button:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.download-button__icon {
    display: block;
    height: 50px;
    width: auto;
    max-width: 150px;
}

/* FAQ Section */
.faq-section {
    width: 100%;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.faq-section__title {
    font-size: 36px;
    color: #333;
    margin: 0 0 50px 0;
    font-weight: bold;
    line-height: 1.3;
}

.faq-accordion {
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 16px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: #f8f8f8;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: normal;
    transition: background 0.2s ease, font-weight 0.2s ease;
}

.faq-item__question:hover {
    background: #f0f0f0;
}

.faq-item__question[aria-expanded="true"] {
    background: #e9ecef;
    font-weight: bold;
    border-bottom: 1px solid #dee2e6;
}

.faq-item__icon {
    flex-shrink: 0;
    margin-left: 16px;
    font-size: 12px;
    color: #666;
    transition: transform 0.3s ease;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
    background: #f8f9fa;
}

.faq-item__question[aria-expanded="true"] + .faq-item__answer {
    max-height: 800px;
    padding: 20px 24px;
    background: #f8f9fa;
}

.faq-item__answer p {
    margin: 0;
    color: #333;
    line-height: 1.6;
    font-size: 15px;
    font-weight: normal;
}

.faq-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-top: 10px;
}

.faq-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

/* Lazy YouTube: превью + Play, iframe только по клику */
.faq-video--lazy {
    cursor: pointer;
    background: #000;
}

.faq-video--lazy img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.faq-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    z-index: 1;
    transition: transform 0.2s ease;
}

.faq-video__play svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.faq-video--lazy:hover .faq-video__play {
    transform: translate(-50%, -50%) scale(1.1);
}

.faq-video--lazy.faq-video--loaded .faq-video__play,
.faq-video--lazy.faq-video--loaded img {
    display: none;
}

.faq-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.faq-button {
    display: inline-block;
    background: #c0392b;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: background 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.faq-button:hover {
    background: #a93226;
    transform: translateY(-1px);
}

/* Mobile styles */
@media (max-width: 768px) {
    /*
     * Единый зазор под фиксированный хедер (все страницы, без отдельных margin у баннеров / main).
     * 60px ≈ min-height шапки + 16px «воздух» + safe-area под вырез.
     */
    html {
        scroll-padding-top: calc(60px + env(safe-area-inset-top, 0px) + 16px);
    }

    body {
        padding-top: calc(60px + env(safe-area-inset-top, 0px) + 16px);
    }

    .main-header {
        flex-direction: row;
        flex-wrap: nowrap;
        padding: 14px 15px;
        min-height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10001;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        align-items: center;
        justify-content: space-between;
    }

    .main-header .logo {
        flex: 0 1 auto;
        text-align: center;
        display: block !important;
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 10002;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        padding: 8px 0 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .main-nav ul li {
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-item--catalog {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-item--catalog > .nav-link {
        text-align: left;
        padding: 14px 20px;
        font-weight: 600;
        color: #1e293b;
    }

    /* Каталог на мобилке: классический текстовый список без сетки картинок */
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin: 0 16px 8px;
        min-width: 0;
        width: auto;
        padding: 0;
        box-shadow: none;
        background: #fff;
        border: 1px solid #e8e8e8;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        gap: 0;
        overflow: hidden;
    }

    .nav-dropdown__item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        padding: 14px 16px;
        width: 100%;
        box-sizing: border-box;
        border-radius: 0;
        background: #fff;
        border-bottom: 1px solid #eee;
        text-align: left;
    }

    .nav-dropdown__item:last-child {
        border-bottom: none;
    }

    .nav-dropdown__item:hover {
        background: #f8fafc;
        box-shadow: none;
    }

    .nav-dropdown__img {
        display: none !important;
    }

    .nav-dropdown__label {
        font-size: 15px;
        font-weight: 500;
        text-align: left;
        flex: 1;
        line-height: 1.35;
        color: #334155;
        order: 1;
    }

    .nav-dropdown__badge {
        position: static;
        flex-shrink: 0;
        margin-left: auto;
        order: 2;
        font-size: 9px;
        letter-spacing: 0.04em;
        padding: 3px 7px;
    }

    .nav-item:not(.nav-item--catalog) .nav-link {
        display: block;
        text-align: left;
        padding: 14px 20px;
        width: 100%;
        box-sizing: border-box;
        font-weight: 500;
    }

    .nav-link {
        border-bottom: none;
    }

    .nav-link--active {
        border-bottom: none;
        color: #e63946;
    }

    .hamburger-menu {
        display: flex;
        order: 1;
        flex: 0 0 auto;
        z-index: 10001;
        position: relative;
    }

    .lang-switcher {
        display: flex;
        order: 3;
        flex: 0 0 auto;
        margin-left: auto;
    }

    .lang-option--active {
        display: none !important;
    }

    .phone-number {
        display: none !important;
    }

    .hero-section {
        flex-direction: column;
    }

    .module-control {
        aspect-ratio: 3 / 4;
        margin-top: 24px;
        justify-content: center;
        align-items: flex-start;
    }

    .module-control__bg {
        background-image: url(assets/img/mod3_mob.webp);
        border-radius: 16px;
    }

    .module-control__content {
        padding: 24px 18px 0;
        margin-top: 30px;
        justify-content: center;
        align-items: center;
        height: 25%;
        min-height: 25%;
        max-height: 25%;
    }

    .module-control__text {
        width: 100%;
        text-align: center;
    }

    .module-control__text li {
        text-align: center;
        padding-left: 0;
    }

    .module-control__text li::before {
        position: static;
        display: inline-block;
        margin-right: 8px;
        left: auto;
        top: auto;
        transform: translateY(-1px);
    }

    .hero-image,
    .hero-text {
        padding: 20px;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 28px;
    }

    .hero-text hr {
        margin: 0 auto 20px auto;
    }

    .hero-text ul li {
        text-align: left;
        padding-left: 25px;
    }

    /* App Section Mobile */
    .app-section {
        margin: 0 auto;
    }

    .app-section__title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .app-showcase {
        flex-direction: column;
        min-height: auto;
        gap: 18px;
        align-items: center;
    }

    .app-showcase__phone {
        width: min(340px, 78vw);
        order: -1;
        margin-bottom: 8px;
        transform: rotate(-14deg);
        transform-origin: 50% 60%;
        filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.18));
        will-change: transform;
    }

    .app-showcase__phone img {
        display: block;
        width: 100%;
        height: auto;
    }

    .app-card {
        position: static;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        border-radius: 16px;
        padding: 16px 18px;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
        gap: 14px;
    }

    .app-card__icon {
        width: 36px;
        height: 36px;
    }

    .video-section {
        aspect-ratio: 3 / 4;
        align-items: flex-start;
        flex-direction: column;
        margin-top: 110px;
        overflow: visible;
    }

    .video-section__video {
        border-radius: 16px;
        order: 2;
    }

    .video-section__content {
        position: relative;
        text-align: center;
        width: 100%;
        padding: 20px 18px;
        margin-left: 0;
        margin-top: -70px;
        margin-bottom: 0;
        box-sizing: border-box;
        background: #a9a298;
        height: 160px;
        min-height: 160px;
        max-height: 160px;
        border-radius: 24px 24px 0 0;
        order: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
    }

    .video-section__title {
        font-size: clamp(18px, 4vw, 22px);
        margin-bottom: 8px;
        text-shadow: none;
    }

    .video-section__text {
        font-size: clamp(13px, 3vw, 15px);
        text-shadow: none;
        line-height: 1.4;
    }

    .download-section {
        margin: 40px auto;
        padding: 0 20px;
    }

    .download-section__title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .faq-section {
        margin: 40px auto;
        padding: 0 20px;
    }

    .faq-section__title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .faq-item__question {
        padding: 16px 20px;
        font-size: 15px;
    }

    .faq-item__answer {
        padding: 0 20px;
    }

    .faq-item__question[aria-expanded="true"] + .faq-item__answer {
        padding: 0 20px 16px 20px;
        max-height: 600px;
    }

    .faq-video {
        margin-top: 8px;
    }

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

    .faq-button {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
    }

    .download-buttons {
        gap: 15px;
    }

    .download-button {
        padding: 10px 20px;
    }

    .download-button__icon {
        height: 45px;
        max-width: 130px;
    }
}

/* Фиксированная кнопка звонка */
.call-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: visible;
}

.call-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.call-button:active {
    transform: scale(0.95);
}

.call-button__icon {
    position: relative;
    z-index: 2;
    width: 28px;
    height: 28px;
}

.call-button__pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .call-button {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .call-button__icon {
        width: 24px;
        height: 24px;
    }
}

/* Footer */
.footer {
    background-color: #e63946;
    color: #fff;
    padding: 60px 0 40px;
    margin-top: 80px;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer__map {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.footer__map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer__logo {
    margin-bottom: 8px;
}

.footer__logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

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

.footer__title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 12px 0;
    color: #fff;
}

.footer__phone {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: #fff;
}

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

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

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.footer__social-link:hover {
    opacity: 0.8;
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.footer__social-link svg {
    width: 24px;
    height: 24px;
}

.footer__social-link--store {
    width: auto;
    height: auto;
    min-height: 40px;
    padding: 4px 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
}

.footer__social-link--store img {
    display: block;
    height: 32px;
    width: auto;
    max-width: 120px;
}

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

.footer__youtube-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__youtube-links li {
    margin: 0;
}

.footer__youtube-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer__youtube-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer__youtube-links a::before {
    content: '▶';
    font-size: 12px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer {
        padding: 44px 0 calc(88px + env(safe-area-inset-bottom, 0));
        margin-top: 40px;
    }

    .footer__container {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 24px;
        box-sizing: border-box;
    }

    .footer__map {
        height: 300px;
        max-width: 100%;
    }

    .footer__info {
        gap: 20px;
        align-items: flex-start;
    }

    .footer__contact {
        gap: 14px;
        width: 100%;
    }

    .footer__social {
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        gap: 12px 14px;
        margin-top: 8px;
        row-gap: 12px;
    }

    .footer__logo img {
        height: 50px;
    }

    .footer__title {
        font-size: 18px;
    }

    .footer__phone {
        font-size: 20px;
    }

    .footer__address {
        font-size: 14px;
    }
}
