/* Базовые стили на основе референса */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    padding-top: 68px;
    color: #333333; /* Менее контрастный, чем чистый черный */
    background-color: #ffffff;
    width: 100%;
    max-width: 100%;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(10px, 2vw, 20px); /* Responsive padding */
    box-sizing: border-box;
}

.screen {
    width: 100%;
}

/* Типография по референсу */
h1, h2, h3, h4, h5, h6 {
    color: #151515;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title {
    margin-bottom: 30px; /* XL в шкале отступов */
    font-size: 24px; /* XL в шкале размеров */
    text-align: center;
}

.main-title {
    font-size: 44px;
    margin-bottom: 16px;
}

.subtitle {
    color: #FFFFFF;
    font-size: 20px;
    margin: 12px 12px 12px 0;
    font-weight: 600;
}

.description, .benefit-desc, .show-desc, .details-desc, .steps-desc {
    color: rgba(23, 23, 23, 0.95); /* Текст с пониженной непрозрачностью */
    font-size: 16px; /* MD в шкале размеров */
    margin-bottom: 20px; /* MD в шкале отступов */
}

/* Шапка */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    height: 68px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    display: block;
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* Стили для десктопной навигации */
.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }
    .burger-menu {
        display: none;
    }
    .desktop-nav-link {
        color: #05c7dc;
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
        padding: 8px 20px;
        border-radius: 8px;
        transition: background 0.2s;
    }
    .desktop-nav-link:hover {
        background: #e3f5f7;
    }
}

/* Стили для бургер-меню */
.burger-menu {
    width: 30px;
    height: 26px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #3D405B;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.burger-menu span:first-child {
    top: 0;
}

.burger-menu span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.burger-menu span:last-child {
    bottom: 0;
}

/* Анимация бургер-меню */
.burger-menu.active span:first-child {
    transform: rotate(47deg);
    top: 13px;
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:last-child {
    transform: rotate(-45deg);
    bottom: 11px;
}

/* Стили для мобильного меню */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.mobile-nav-item {
    width: auto;
    padding: 20px 32px;
    background: none;
    border: none;
    border-radius: 14px;
    font-size: 1.2em;
    font-weight: 600;
    color: #151515;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, background-color 0.2s ease;
}

.mobile-menu.active .mobile-nav-item {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-nav-item:nth-child(1) {
    transition-delay: 0.2s;
}

.mobile-menu.active .mobile-nav-item:nth-child(2) {
    transition-delay: 0.4s;
}

.mobile-menu.active .mobile-nav-item:nth-child(3) {
    transition-delay: 0.6s;
}

.mobile-nav-item:hover {
    background-color: rgba(19, 131, 151, 0.1);
}

/* Обновленные стили для FAQ аккордеона */
.faq-item {
    margin-bottom: 16px;
    border-radius: 16px;
    background-color: #E3F5F7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #151515;
}

.faq-question:hover {
    background-color: rgba(19, 131, 151, 0.05);
}

.faq-icon {
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    box-sizing: border-box;
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    margin: 0;
    color: rgba(21, 21, 21, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

/* Улучшенные стили для кнопок */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.btn:active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: transform 0s ease, opacity 0.1s ease;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 767px) {
    .container {
        padding: 0px 20px;
    }

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

    .btn {
        width: 100%;
        padding: 12px 24px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .details-content {
        padding: 0 10px;
    }

    .activation-banner {
        padding: 20px;
    }

    .footer-logos {
        gap: 40px;
    }

    .hero {
        background-image: url('img/image_web_mobile_640.webp');
        min-height: 500px;
    }
    
    .image-placeholder {
        background-color: rgba(255, 255, 255, 0.15);
    }

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

    .hero-image {
        order: -1;
    }

    .section-title {
        font-size: clamp(18px, 5vw, 20px);
    }

    .main-title {
        font-size: clamp(24px, 7vw, 28px);
    }

    .activation-banner {
        padding: clamp(16px, 4vw, 24px);
    }

    .trust-elements {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .details-content {
        flex-direction: column;
    }

    .benefit-item {
        min-width: 100%;
        width: 100%;
    }

    .details-column {
        min-width: 100%;
        width: 100%;
    }

    .show-card {
        min-width: 200px;
        width: 200px;
    }

    .shows-carousel {
        padding: 10px 0;
        margin: 0;
        width: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .show-card {
        min-width: 180px;
        width: 180px;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .logo img {
        height: 48px;
    }

    .start-logo {
        height: 15px;
    }
    
    .main-title .start-logo {
        height: 18px;
    }
    
    .description .start-logo {
        height: 12px;
    }
    
    .details-title .start-logo,
    .activation-title .start-logo {
        height: 16.5px;
    }

    .catchers-logo {
        height: 40px;
        margin-left: 6px;
    }

    .premieres {
        padding: 40px 0;
    }

    .carousel-control {
        display: none;
    }

    /* Mobile menu fix */
    .mobile-menu {
        width: 100%;
        max-width: 100vw;
    }

    /* Ensure all sections stay within viewport */
    section {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Constrain badge position */
    .limited-offer-badge {
        right: 0;
    }

    /* Ensure hero image stays within bounds */
    .hero-image {
        width: 100%;
        max-width: 100%;
    }

    .image-placeholder {
        width: 100%;
        max-width: 100%;
    }

    .hero-text {
        padding-top: 30px; /* Slightly less padding on mobile */
    }
    
    .limited-offer-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .shark-money {
        position: static;
        display: block;
        margin: 24px auto 0 auto; /* space above, centered horizontally */
        top: auto;
        right: auto;
        left: auto;
        max-width: 120px;
        max-height: 120px;
    }

    .redirect-hint {
        font-size: 14px;
    }

    .header-content {
        padding: 10px 10px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 0 clamp(15px, 3vw, 20px);
    }

    .benefit-item {
        min-width: calc(50% - 20px);
        width: calc(50% - 20px);
    }

    .show-card {
        min-width: 220px;
        width: 220px;
    }

    .hero {
        background-image: url('img/image_web_mobile_1024.webp');
        /* min-height: 600px; */
    }
}

/* Улучшенные эффекты наведения */
.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.show-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Плавные переходы */
.benefit-item,
.show-card,
.faq-item,
.btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Кнопки по референсу */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border: none;
    border-radius: 14px;
    font-size: 14px; /* SM в шкале размеров */
    font-weight: 600; /* Semi-bold */
    line-height: 16.8px; /* Tight line height */
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn {
    background-color: #E27500;
    color: #FFFFFF;
}

/* Градиентная анимация для главной CTA кнопки */
#detailsPromoBtn,
#activationBtn {
    background: linear-gradient(45deg, #E27500, #FF8A1F, #E27500);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#detailsPromoBtn:hover,
#activationBtn:hover {
    animation: gradientShift 1.5s ease infinite;
    transform: scale(1.05);
}

.secondary-btn {
    background-color: #FFE72E;
    color: #0D2E3E;
}

.big-btn {
    padding: 16px 10px; /* SM/LG в шкале отступов */
    font-size: 16px; /* MD в шкале размеров */
}

.btn:hover {
    border-color: #ffd700;
    text-shadow: 0 0 2px #ffd700;
    box-shadow: 0 0 5px rgba(255, 217, 0, 0.9);
    transform: translateY(-2px);
}

/* Базовые стили для hero-секции */
.hero {
    padding: 50px 0;
    background-color: #0D2E3E;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Мобильные устройства */
@media (max-width: 767px) {
    .hero {
        background-image: url('img/image_web_mobile_640.webp');
        min-height: 500px;
    }
}

/* Планшеты */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero {
        background-image: url('img/image_web_mobile_1024.webp');
        /* min-height: 600px; */
    }
}

/* Десктопы */
@media (min-width: 1025px) {
    .hero {
        background-image: url('img/image_web_mobile_1920.webp');
        /* min-height: 700px; */
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(13, 46, 62, 0.5), rgba(13, 46, 62, 0.7));
    z-index: 1;
}

.hero-content {
    display: flex;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    color: #FFFFFF;
    position: relative;
    padding-top: 40px; /* Add space at top for badge */
}

.hero-text .subtitle,
.hero-text .main-title,
.hero-text .description {
    color: #FFFFFF;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.image-placeholder {
    height: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-align: center;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

.limited-offer-badge {
    position: absolute;
    top: 8px;
    right: 0;
    background-color: #138397;
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 600;
    transform: rotate(5deg);
    box-shadow: 0 4px 12px rgba(19, 131, 151, 0.3);
    z-index: 3;
}

.cta-wrapper {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 30px;
}

.cta-wrapper .btn.secondary-btn.learn-more-btn {
    background: transparent;
    border: 1px solid #ffd700;
    color: #ffd700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-wrapper .btn.secondary-btn.learn-more-btn:hover {
    border-color: #ffd700;
    color: #ffd700;
    text-shadow: 0 0 2px #ffd700;
    box-shadow: 0 0 5px rgba(255, 217, 0, 0.9);
}

.cta-wrapper .btn.secondary-btn.learn-more-btn:active {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* Блок преимуществ */
.benefits {
    padding: 10px 0; /* 4XL в шкале отступов */
    background-color: #FFFFFF;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 24px;
    text-align: center;
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    margin: 0 auto 20px; /* MD в шкале отступов */
    width: 100px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px; /* XL border radius */
    color: #138397; /* Teal accent */
    font-size: 24px; /* XL в шкале размеров */
}

.benefit-icon img {
    display: block;
    height: 30px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
}

.benefit-title {
    margin-bottom: 12px; /* XS в шкале отступов */
    font-size: 18px; /* LG в шкале размеров */
}

/* Блок премьер */
.premieres {
    padding: 60px 0;
    background-color: #F9F9F9;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.shows-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.shows-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    width: 100%;
    margin: 0 auto;
    -webkit-overflow-scrolling: touch;
}

.shows-carousel::-webkit-scrollbar {
    display: none;
}

.show-card {
    width: 240px;
    min-width: 240px;
    flex: 0 0 240px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #FFFFFF;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.show-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.show-poster {
    height: 240px;
    width: 240px;
    background-color: #E3F5F7;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.show-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #E3F5F7;
}

.show-genre {
    padding: 0 16px;
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin: 4px 0 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.show-badge {
    position: absolute;
    top: 8px; /* XXS в шкале отступов */
    right: 8px; /* XXS в шкале отступов */
    padding: 4px 8px;
    font-size: 12px; /* XS в шкале размеров */
    color: #FFFFFF;
    border-radius: 5px; /* Tiny border radius */
    font-weight: 600; /* Semi-bold */
}

.premiere {
    background-color: #E27500;
}

.exclusive {
    background-color: #138397;
}

.new-season {
    background-color: #FFC400;
}

.show-title {
    padding: 16px 16px 8px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.show-desc {
    padding: 0 16px 16px;
    font-size: 14px;
    color: rgba(51, 51, 51, 0.7);
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

/* CTA секция */
.cta-section {
    padding: 60px 0; /* 4XL in scale of padding */
    background-color: #FFFFFF;
}

.cta-banner {
    padding: 30px; /* XL in scale of padding */
    background: radial-gradient(#FFFFFF, #E3F5F7); /* Радиальный градиент из референса */
    border-radius: 16px; /* Card border radius */
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.cta-title {
    margin-bottom: 20px; /* MD in scale of padding */
    font-size: 24px; /* XL in scale of padding */
}

/* Детали предложения */
.offer-details {
    padding: 50px 0;
    background: radial-gradient(#57FFEE, #0D2E3E);
    position: relative;
}

.offer-details .section-title {
    color: #fff;
}

.details-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: clamp(20px, 4vw, 30px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.details-column {
    flex: 1;
    min-width: 250px;
    max-width: 100%;
}

.details-title {
    margin-bottom: 24px; /* SM in scale of padding */
    font-size: 24px; /* XL in scale of padding */
}

.details-cta {
    text-align: center;
}

.redirect-hint {
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    font-size: 16px;
    color: #138397;
    line-height: 1.2;
}

.redirect-text {
    display: inline-block;
    text-align: center;
}

.details-cta .btn.primary-btn,
.activation-cta .btn.primary-btn {
    font-size: 16px;
    letter-spacing: 1.3px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.details-cta .btn.primary-btn:hover,
.activation-cta .btn.primary-btn:hover {
    transform: scale(1.05);
}

.details-cta .btn.primary-btn::before,
.activation-cta .btn.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.details-cta .btn.primary-btn:hover::before,
.activation-cta .btn.primary-btn:hover::before {
    left: 100%;
}

.included-features {
    margin-top: 10px;
    background-color: #F9F9F9;
    border-radius: 14px;
    padding: 24px;
}

.features-title {
    margin-bottom: 16px;
    font-size: 18px;
    color: #151515;
}

.features-list {
    list-style-type: none;
}

.feature-item {
    margin-bottom: 6px; /* XS in scale of padding */
    font-size: 14px; /* MD in scale of size */
}

.terms-block {
    background-color: #F9F9F9;
    border-radius: 14px;
    padding: 24px;
}

.terms-title {
    margin-bottom: 16px;
    font-size: 18px;
    color: #151515;
}

.terms-item {
    margin-bottom: 16px;
}

.terms-item:last-child {
    margin-bottom: 0;
}

.terms-item p {
    font-size: 14px;
}

/* FAQ */
.faq {
    padding: 40px 0; /* 4XL in scale of padding */
    background-color: #F9F9F9;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

/* Анимация перехода между экранами */
.screen {
    transition: opacity 0.5s ease;
    opacity: 1;
}

.screen.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Стили для блока активации */
.activation {
    padding: 80px 0;
    background-color: #0D2E3E;
}

.activation-banner {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(19, 131, 151, 0.1);
    text-align: center;
    border: 3px solid #138397;
}

.activation-title {
    font-size: 28px;
    color: #151515;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.activation-subtitle {
    font-size: 18px;
    color: #151515;
    margin-bottom: 24px;
    font-weight: 500;
}

.activation-limit {
    display: inline-block;
    padding: 8px 20px;
    background-color: #0c6a7b;
    color: #FFFFFF;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    transform: rotate(-2deg);
    box-shadow: 0 4px 12px rgba(255, 51, 96, 0.2);
    animation: float 3s ease-in-out infinite;
}

.activation-info {
    background-color: #F9F9F9;
    border-radius: 16px;
    padding: 0 20px;
    margin-bottom: 10px;
    text-align: left;
}

.activation-steps {
    max-width: 600px;
    margin: 0 auto;
}

.steps-title {
    font-size: 18px;
    color: #151515;
    margin-bottom: 12px;
    font-weight: 600;
}

.steps-desc {
    font-size: 14px;
    color: rgba(21, 21, 21, 0.95);
    line-height: 1.6;
}

.activation-cta {
    margin-bottom: 24px;
}

.trust-elements {
    display: flex;
    justify-content: center;
    gap: 18px;
    color: rgba(21, 21, 21, 0.9);
    font-size: 14px;
    align-items: flex-start;
    margin-top: 24px; /* Add padding above trust items */
}

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

.trust-item img {
    height: 18px;
    width: auto;
    vertical-align: middle;
    margin-right: 2px;
}

/* Увеличим размер кнопки активации */
.activation-cta .btn.big-btn {
    font-size: 16px;
    letter-spacing: 1.3px;
    transform: scale(1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.activation-cta .btn.big-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(19, 131, 151, 0.3);
}

/* Добавим анимацию для баджа с ограниченным предложением */
@keyframes float {
    0% { transform: rotate(-2deg) translateY(0px); }
    50% { transform: rotate(-2deg) translateY(-5px); }
    100% { transform: rotate(-2deg) translateY(0px); }
}

/* Футер */
.footer {
    padding: 40px 0;
    background-color: #0D2E3E;
    color: #FFFFFF;
}

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-logo img {
    height: 30px;
    width: auto;
}

.footer-text {
    font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
    font-size: 38px;
    color: #FFFFFF;
    line-height: 30px;
    display: inline-block;
}

.copyright {
    text-align: center;
    font-size: 14px;
    color: #c5c5c5;
}

.start-logo {
    display: inline-block;
    height: 18px;
    width: auto;
    vertical-align: middle;
    margin: 0 2px;
    position: relative;
    top: -2px;
}

/* White color for hero section */
.hero .start-logo {
    filter: brightness(0) invert(1);
}

/* Black color for details and activation sections */
.details-title .start-logo,
.activation-title .start-logo {
    filter: brightness(0);
}

.main-title .start-logo {
    height: 24px;
}

.description .start-logo {
    height: 15px;
}

.details-title .start-logo {
    height: 21px;
}

.activation-title .start-logo {
    height: 21px;
}

.catchers-logo {
    display: inline-block;
    height: 36px;
    width: auto;
    vertical-align: middle;
    position: relative;
}

.no-scroll {
    overflow: hidden !important;
    height: 100vh;
}

.shark-money {
    position: absolute;
    right: 13%;
    top: 60px;
    max-width: 160px;
    max-height: 160px;
    width: 100%;
    height: auto;
    z-index: 2;
    pointer-events: none;
    display: block;
}

@media (max-width: 1000px) {
    .shark-money {
        position: static;
        display: block;
        margin: 10px auto 16px auto;
        top: auto;
        right: auto;
        left: auto;
        max-width: 100px;
        max-height: 100px;
    }
}