:root {
    --primary: #00C2FF;  /* Неоново-синий */
    --dark: #000B2E;     /* Темно-синий */
    --light: #E6F8FF;    /* Светло-синий */
    --neon: #00F0FF;     /* Яркий неоновый синий */
    --white: #fff;
    --gradient: linear-gradient(135deg, #000B2E 0%, #001F5C 100%);
    
    /* Обновляем переменные для шрифтов */
    --heading-font: 'Orbitron', sans-serif;
    --body-font: 'Source Code Pro', monospace;
}

/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Code Pro', monospace;
    font-weight: 500;
    background: var(--gradient);
    color: var(--white);
    line-height: 1.5;
}

.container {
    width: min(1000px, 95%);
    margin-inline: auto;
    padding: 0 20px;
}

/* Современное меню */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 11, 46, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 194, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.nav-link,
.nav-icon {
    display: none;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    background: var(--primary);
    color: var(--dark);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
}

.btn-primary:hover {
    background: var(--neon);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.3);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

/* Современная hero секция */
.hero {
    min-height: 100vh; /* Минимальная высота равна высоте экрана */
    height: 100dvh; /* Динамическая высота viewport с учетом мобильных браузеров */
    padding: 0; /* Убираем padding, будем использовать внутренние отступы контейнера */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: url('../images/back.jpg') no-repeat center center;
    background-size: cover;
    animation: backgroundShift 20s ease infinite;
    background-size: 120% 120%;
}

/* Добавляем темный оверлей с градиентом */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 11, 46, 0.2),
        rgba(0, 31, 92, 0.5)
    );
    z-index: 1;
}

/* Добавляем эффект свечения */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 194, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 240, 255, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.hero .container {
  /*  width: 100%;*/
    padding-top: max(2rem, 10vh); /* Адаптивный отступ сверху */
    padding-bottom: max(2rem, 5vh); /* Адаптивный отступ снизу */
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(auto, 580px) 400px;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
}

/* Обновляем стили для контента */
.hero__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Добавляем анимацию для фона */
@keyframes backgroundShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Современный счетчик */
.spots-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 194, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    margin-bottom: min(2rem, 4vh);
    border: 1px solid rgba(0, 194, 255, 0.2);
    backdrop-filter: blur(5px);
}

.counter {
    color: var(--neon);
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.25rem);
}

/* Современные заголовки */
h1, h2, h3 {
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: min(1.5rem, 3vh);
    background: linear-gradient(to right, var(--white), var(--neon));
    -webkit-background-clip: text;
    color: transparent;
}

/* Применяем шрифт для заголовков */
h1, h2, h3, 
.hero__form h2,
.country-name,
.stat-value,
.logo-text,
.btn-primary {
    font-family: 'Orbitron', sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero__subtitle {
    position: relative;
    margin-bottom: 2rem;
    color: var(--text);
    font-size: 1rem;
}

.hero__subtitle-note {
    font-size: 0.7rem;
    color: rgba(0, 194, 255, 0.8); /* Изменяем цвет на более яркий */
    margin-top: 0.5rem;
    font-style: italic;
    letter-spacing: 0.02em;
    display: block !important; /* Принудительно показываем блок */
    text-transform: none;
    line-height: 1.4;
    font-family: 'Source Code Pro', monospace; /* Добавляем специальный шрифт */
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero__subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        color: var(--text);
    }

    .hero__subtitle-note {
        font-size: 0.65rem;
        margin-top: 0.4rem;
        color: rgba(0, 194, 255, 0.8);
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .hero__subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .hero__subtitle-note {
        font-size: 0.6rem;
        margin-top: 0.3rem;
        line-height: 1.2;
    }
}

/* Современное видео превью */
.video-preview {
    background: rgba(0, 194, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(0, 194, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.video-preview:hover {
    transform: translateY(-5px);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 0 30px rgba(0, 194, 255, 0.5);
    transition: all 0.3s;
}

/* Современное видео превью */
.hero__form {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 11, 46, 0.1);
    width: 400px;
    display: flex;
    flex-direction: column;
}

.hero__form h2 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--white);
    text-align: center;
}

.hero__form p {
    text-align: center;
    color: var(--light);
    opacity: 0.8;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

/* Обновляем стили формы */
.form-row {
    display: flex;
    flex-direction: column;
    /*gap: 1rem;
    margin-bottom: 1.5rem;*/
}

.input-group {
    position: relative;
    margin-bottom: 1rem;
}

/* Базовые стили для иконок */
.input-group .ph {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: rgb(85, 153, 166);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Стили для иконок при ошибке/успехе */
.input-group.error .ph {
    color: #ff4646 !important;
}

/* Отдельная анимация тряски */
.input-group.error .ph {
    animation: shakeIcon 0.5s ease;
}

/* Анимация тряски без изменения вертикального положения */
@keyframes shakeIcon {
    0% { transform: translateY(-50%) translateX(0); }
    25% { transform: translateY(-50%) translateX(-2px); }
    50% { transform: translateY(-50%) translateX(2px); }
    75% { transform: translateY(-50%) translateX(-2px); }
    100% { transform: translateY(-50%) translateX(0); }
}

.input-group.success .ph {
    color: #00ff9d !important;
}

.input-group input:focus + .ph {
    color: var(--neon);
    opacity: 1;
}

.input-group input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.input-group input:focus {
    border-color: var(--neon);
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

/* Обновляем стили для поля ввода телефона */
.phone-group {
    margin-bottom: 1rem;
}

.iti {
    width: 100%;
    display: block;
}

.iti__flag-container {
    max-width: 140px;
}

.iti__selected-dial-code {
    color: #5599a6 !important;
    font-weight: 500;
    margin-left: 8px;
    white-space: nowrap; /* Предотвращаем перенос текста */
}

/* Обновляем стили для основного текста */
.hero__subtitle,
.input-group input,
.phone-group input,
.country-label,
.stat-label {
    font-family: 'Source Code Pro', monospace;
    font-weight: 500;
}

.iti__selected-flag {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 0.5rem 0 0 0.5rem;
    transition: all 0.3s;
    padding: 0 18px 0 20px !important;
    gap: 10px;
    display: flex;
    align-items: center;
    max-width: 140px;
}

.iti__selected-flag:hover,
.iti__selected-flag:focus {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Добавляем свечение для кода страны */
.iti__selected-dial-code {
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

/* Обновляем стили для выпадающего списка стран */
.iti__country-list {
    background: var(--white); /* Меняем на белый фон */
    border: 1px solid rgba(0, 194, 255, 0.2);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    max-height: 200px;
    width: 290px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(0, 194, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 11, 46, 0.1);
}

.iti__country-list::-webkit-scrollbar {
    width: 6px;
}

.iti__country-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.iti__country-list::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.iti__country {
    transition: all 0.3s;
    padding: 8px 10px !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.iti__country:hover,
.iti__country.iti__active {
    background: rgba(0, 194, 255, 0.1) !important;
}

.iti__country-name {
    color: var(--dark) !important; /* Темно-синий цвет для названий стран */
    font-size: 14px;
    opacity: 0.9;
}

.iti__dial-code {
    color: var(--primary) !important; /* Бирюзовый для кода страны */
    font-size: 14px;
    margin-left: auto;
}

/* Исправляем стрелку */
.iti__arrow {
    margin-left: 8px !important;
    border-top: 4px solid #00c2ff !important;
    position: relative !important;
    right: -2px !important;
}

.phone-group input {
    padding-left: 145px !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: var(--white);
    height: 48px;
    font-size: 16px;
    caret-color: var(--primary);
}

.phone-group input:focus {
    border-color: var(--neon);
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.phone-group input.valid {
    border-color: #00ff9d;
}

.phone-group input.error {
    border-color: #ff4d4d;
}

/* Кнопка отправки */
.hero__form button {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero__form button:hover {
    background: var(--neon);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.3);
}

.hero__form button .ph {
    font-size: 1.25rem;
}

/* Улучшаем стили для мобильных устройств */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        height: auto;
        padding-top: 90px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem 0 2rem;
    }

    /* Скрываем подзаголовок на мобильных */
    .hero__subtitle {
        display: none;
    }

    .nav {
        display: flex;
    }

    .btn-primary {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }

    .hero__left {
        text-align: center;
    }

    .spots-counter {
        justify-content: center;
        margin: 0 auto 1.5rem;
    }

    .hero__form {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 80px; /* Еще немного уменьшаем отступ для маленьких экранов */
    }

    .spots-counter {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .hero__form {
        padding: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .flag-wrapper {
        width: 140px;
        height: 85px;
    }
}

/* Features Strip */
.features-strip {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.features-strip .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.feature img {
    width: 20px;
    height: 20px;
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.platform-icons img {
    height: 25px;
}

.hero__note {
    color: var(--white);
    text-align: center;
    font-size: 14px;
    margin: 0;
}

/* Стили для секции экспертов */
.experts {
    position: relative;
    padding-bottom: 5rem;
    padding-top: 3rem;
    background: var(--white);
    z-index: 1;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

/* Обновляем разделитель с более плавным градиентом */
.experts::after {
    content: '';
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    height: 500px;
    background: 
        linear-gradient(to bottom, 
            rgb(255, 255, 255) 0%,
            rgb(255, 255, 255) 10%,
            rgba(255, 255, 255, 0.95) 20%,
            rgba(255, 255, 255, 0.9) 30%,
            rgba(0, 11, 46, 0.2) 50%,
            rgba(0, 11, 46, 0.4) 60%,
            rgba(0, 11, 46, 0.6) 70%,
            rgba(0, 11, 46, 0.8) 80%,
            rgba(0, 11, 46, 0.95) 90%,
            rgba(0, 11, 46, 0.98) 100%
        );
    z-index: 1;
}

/* Дополнительный градиент для более мягкого перехода */
.experts::before {
    content: '';
    position: absolute;
    bottom: 200px;
    left: 0;
    right: 0;
    height: 600px; /* Увеличиваем высоту */
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 20%,
        rgba(0, 11, 46, 0.01) 40%,
        rgba(0, 11, 46, 0.02) 60%,
        rgba(0, 11, 46, 0.05) 80%,
        rgba(0, 11, 46, 0.1) 100%
    );
    z-index: 1;
}

/* Неоновая линия теперь будет после обоих градиентов */
.experts .glow-line {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 194, 255, 0.2),
        rgba(0, 240, 255, 0.6),
        rgba(0, 194, 255, 0.2),
        transparent
    );
    z-index: 3;
    animation: glowLine 3s linear infinite;
    background-size: 200% 100%;
}

.expert {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 1);
    box-shadow: 
        0 20px 40px rgba(0, 11, 46, 0.1),
        0 0 0 1px rgba(0, 194, 255, 0.1);
    transition: all 0.3s ease;
}

/* Градиентные границы для карточек */
.expert::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2rem;
    padding: 2px;
    background: linear-gradient(
        135deg,
        rgba(0, 194, 255, 0.5),
        rgba(0, 240, 255, 0.5)
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Увеличиваем размер фотографий */
.expert img {
    width: 700px;
    height: 700px;
    border-radius: 50%;
    margin-bottom: 2rem;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 
        0 0 0 4px rgba(0, 194, 255, 0.1),
        0 10px 30px rgba(0, 11, 46, 0.2);
    transition: all 0.3s ease;
}

.expert:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(0, 11, 46, 0.15),
        0 0 0 1px rgba(0, 194, 255, 0.2);
}

.expert:hover img {
    transform: scale(1.02);
    box-shadow: 
        0 0 0 4px rgba(0, 194, 255, 0.2),
        0 20px 40px rgba(0, 11, 46, 0.3);
}

/* Уменьшаем размер текста */
.expert h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--dark), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
}

.expert .position {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--primary);
    padding: 0.4rem 1.2rem;
    background: rgba(0, 194, 255, 0.1);
    border-radius: 100px;
    border: 1px solid rgba(0, 194, 255, 0.2);
}

.expert .quote {
    color: #445577;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding: 0 1rem;
}

.expert .quote::before,
.expert .quote::after {
    content: '"';
    color: var(--primary);
    font-size: 2.5rem;
    line-height: 0;
    position: absolute;
}

.expert .quote::before {
    left: -1rem;
    top: 1rem;
}

.expert .quote::after {
    right: -1rem;
    bottom: -0.5rem;
}

/* Обновляем медиа запросы */
@media (max-width: 1800px) {
    .expert img {
        width: 600px;
        height: 600px;
    }
}

@media (max-width: 1400px) {
    .expert img {
        width: 500px;
        height: 500px;
    }
}

@media (max-width: 1200px) {
    .expert img {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 968px) {
    .experts-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }

    .expert img {
        width: 500px;
        height: 500px;
    }
}

@media (max-width: 600px) {
    .expert img {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .expert img {
        width: 300px;
        height: 300px;
    }
    
    .expert h3 {
        font-size: 1.5rem;
    }
    
    .expert .quote {
        font-size: 0.9rem;
    }
}

/* Обновленные стили для секции отзывов */
.reviews {
    margin-top: -250px;
    padding-top: 18rem;
    padding-bottom: 3rem;
    position: relative;
    background: linear-gradient(120deg, 
        rgba(0, 11, 46, 0.98) 0%,
        rgba(0, 11, 46, 0.95) 30%,
        rgba(0, 11, 46, 0.9) 50%,
        rgba(0, 11, 46, 0.85) 70%,
        rgba(0, 11, 46, 0.8) 85%,
        rgba(0, 194, 255, 0.1) 100%
    );
    z-index: 0;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.reviews-subtitle {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    color: var(--neon);
    opacity: 0.9;
   /* margin: 0 auto 3rem;*/
    max-width: 800px;
    font-family: 'Source Code Pro', monospace;
    font-style: italic;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .reviews-subtitle {
        font-size: 0.75rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .reviews-subtitle {
        font-size: 0.7rem;
        margin-bottom: 1.5rem;
        padding: 0 0.75rem;
        line-height: 1.2;
    }
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.review {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1.5rem;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 194, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    justify-content: space-between;
}

/* Оборачиваем контент в дополнительный div */
.review-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Обновленные стили для плашки с ценой */
.review .profit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: rgba(0, 194, 255, 0.08);
    border-radius: 100px;
    border: 1px solid rgba(0, 194, 255, 0.2);
    font-weight: 600;
    color: var(--neon);
    margin-top: auto;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(0, 194, 255, 0.1),
        inset 0 0 20px rgba(0, 194, 255, 0.05);
}

.review .profit:hover {
    background: rgba(0, 194, 255, 0.12);
    border-color: rgba(0, 194, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 194, 255, 0.15),
        inset 0 0 30px rgba(0, 194, 255, 0.08);
}

.review .profit img {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 194, 255, 0.2);
}

.review .profit span {
    font-size: 0.95rem;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    letter-spacing: 0.5px;
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 11, 46, 0.2),
        0 0 0 1px rgba(0, 194, 255, 0.2);
}

/* Обновляем стили для фотографий в review */
.review img:not(.profit img) {
    width: 100px;
    height: 100px;
    margin-bottom: 1.25rem;
    position: relative;
    border-radius: 20px;
    transform: rotate(-5deg);
    border: 2px solid rgba(0, 194, 255, 0.3);
    box-shadow: 
        0 0 0 4px rgba(0, 194, 255, 0.1),
        0 10px 20px rgba(0, 11, 46, 0.2);
    transition: all 0.3s ease;
}

.review:hover img:not(.profit img) {
    transform: rotate(0deg) scale(1.05);
    border-color: rgba(0, 194, 255, 0.5);
    box-shadow: 
        0 0 0 4px rgba(0, 194, 255, 0.2),
        0 15px 30px rgba(0, 11, 46, 0.3);
}

.review h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.review p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    max-width: 260px;
    color: var(--light);
    opacity: 0.9;
    position: relative;
    font-style: italic;
    padding: 0 1rem;
}

/* Добавляем кавычки */
.review p::before,
.review p::after {
    content: '"';
    position: absolute;
    color: var(--primary);
    font-size: 2rem;
    line-height: 1;
    opacity: 0.5;
    text-shadow: 0 0 10px rgba(0, 194, 255, 0.3);
}

.review p::before {
    left: -0.5rem;
    top: -0.5rem;
}

.review p::after {
    right: -0.5rem;
    bottom: -0.5rem;
}

/* Анимация при наведении */
.review:hover p::before,
.review:hover p::after {
    opacity: 0.8;
    text-shadow: 0 0 15px rgba(0, 194, 255, 0.5);
}

/* Обновляем медиа запросы */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
    }
    
    .review {
        padding: 1.5rem;
        max-width: 100%;
    }
}

/* Обновленные стили для секции features */
.features {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.98) 0%,
        rgba(240, 245, 255, 0.95) 100%
    );
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

/* Фоновый паттерн */
.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(147, 197, 253, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(96, 165, 250, 0.1) 0%, transparent 50%),
        linear-gradient(60deg, rgba(147, 197, 253, 0.05) 25%, transparent 25%);
    background-size: 100% 100%, 100% 100%, 20px 20px;
    opacity: 0.5;
}

.features h2 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #1E40AF, #3B82F6, #1E40AF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.2));
    position: relative;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.feature {
    background: linear-gradient(145deg, #ffffff, #f8faff);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 
        5px 5px 15px rgba(147, 197, 253, 0.1),
        -5px -5px 15px rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    border: 1px solid rgba(147, 197, 253, 0.1);
}

.feature::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(147, 197, 253, 0.5), rgba(96, 165, 250, 0.2));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 
        8px 8px 20px rgba(147, 197, 253, 0.15),
        -8px -8px 20px rgba(255, 255, 255, 0.9);
}

.feature-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
}

.feature-emoji::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.2), transparent 70%);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.3s ease;
}

.feature:hover .feature-emoji::after {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.3), transparent 70%);
}

.feature h3 {
    color: #1E40AF;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.feature p {
    color: #4B5563;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.features__earnings {
    text-align: center;
    font-size: 1.6rem; /* Увеличиваем с 1.2rem до 1.6rem */
    color: #475569;
    margin-top: 3rem;
    line-height: 1.8; /* Добавляем для лучшей читаемости */
}

.features__earnings .earnings-amount {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    font-size: 1.8rem; /* Увеличиваем с 2rem до 2.5rem */
    color: #0284c7;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 0.5rem 1.2rem;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 
        0 4px 8px rgba(148, 163, 184, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
    margin: 0 0.5rem;
    position: relative;
    text-shadow: 0 0 10px rgba(2, 132, 199, 0.2);
}

.features__earnings .country {
    font-weight: 600;
    color: #0369a1;
    font-size: 1.8rem; /* Увеличиваем с 1.4rem до 1.8rem */
}

/* Обновляем медиа-запрос для мобильных устройств */
@media (max-width: 768px) {
    .features__earnings {
        font-size: 1.2rem; /* Уменьшаем для мобильных */
        line-height: 1.6;
    }
    
    .features__earnings .earnings-amount {
        font-size: 1.8rem;
        padding: 0.4rem 1rem;
    }
    
    .features__earnings .country {
        font-size: 1.4rem;
    }
}

.register {
    background: var(--primary);
    width: 100%;
    padding: 60px 0;
}

.register__form {
    background: var(--white);
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 8px;
}

.register__form h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 20px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form__row input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.register__form button {
    width: 100%;
    background: var(--primary);
    color: var(--dark);
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

footer {
    background: var(--primary);
    width: 100%;
    padding: 40px 0;
    color: var(--dark);
    text-align: center;
}

footer p {
    margin: 0 0 15px;
}

.disclaimer {
    font-size: 12px;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Общие стили для всех изображений */
img {
    max-width: 100%;
    height: auto;
   /* background: #000;  Черный фон для видимости размеров */
}

/* Удаляем старые стили логотипа */
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(to right, var(--white), var(--neon));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.logo-ai {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    padding: 2px 6px;
    background: rgba(0, 194, 255, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(0, 194, 255, 0.2);
}

/* Медиа запрос для мобильных устройств */
@media (max-width: 768px) {
    .logo-text {
        font-size: 20px;
    }
    
    .logo-ai {
        font-size: 16px;
    }
}

/* Иконки в хедере */
.header__right img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Видео превью */
.video-preview img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Иконка плей */
.play-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Иконки в features-strip */
.feature img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Фото экспертов */
.expert img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
}

/* Фото пользователей */
.review img:not(.flag) {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 20%;
}

/* Флаги */
.flag {
    width: 24px;
    height: 16px;
    object-fit: contain;
}

/* Иконки в features */
.features__grid .feature img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* Добавляем стили для рейтинга */
.trustpilot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    padding-top: 1rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #00F0FF;
    font-size: 20px;
    line-height: 1;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.trust-score {
    color: #5599a6;
    font-size: 14px;
}

/* Добавляем анимацию мерцания для звезд */
@keyframes glow {
    0% {
        text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
    }
    100% {
        text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    }
}

.star {
    animation: glow 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.3s);
}

.star:nth-child(1) { --i: 0; }
.star:nth-child(2) { --i: 1; }
.star:nth-child(3) { --i: 2; }
.star:nth-child(4) { --i: 3; }
.star:nth-child(5) { --i: 4; }

/* Медиа запросы */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero__form {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .video-preview img {
        height: 150px;
    }
}

/* Улучшенный country-preview */
.country-preview {
    background: rgba(0, 194, 255, 0.05);
    border-radius: 1.5rem;
    padding: 1rem;
    border: 1px solid rgba(0, 194, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    margin-bottom: 0;
}

.country-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(0, 194, 255, 0.03);
    border-radius: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--light);
    opacity: 0.8;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 194, 255, 0.2);
}

.country-main {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.flag-wrapper {
    position: relative;
    width: 160px;
    height: 100px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 194, 255, 0.3);
    background: rgba(0, 194, 255, 0.05);
}

.country-flag {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.flag-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        rgba(0, 194, 255, 0.1),
        rgba(0, 240, 255, 0.2)
    );
    pointer-events: none;
}

.flag-wrapper:hover .country-flag {
    transform: scale(1.1);
}

.country-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.country-label {
    font-size: 0.875rem;
    color: var(--light);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.country-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 0 10px rgba(0, 194, 255, 0.5);
}

.country-stats-mobile {
    display: none;
    margin-top: 1rem;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.stat-icon {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

/* Мобильное меню */
.menu-toggle {
    display: none; /* Полностью убираем бургер */
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .nav {
        display: flex;
    }

    .btn-primary {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
}

/* Адаптивные стили */
@media (max-height: 800px) {
    .hero .container {
        padding-top: 90px;
    }

    .spots-counter {
        margin-bottom: 1rem;
    }

    h1 {
        margin-bottom: 1rem;
    }

    .hero__subtitle {
        margin-bottom: 1.5rem;
    }

    .country-stats {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }

    .stat-value {
        font-size: 1.25rem;
    }
}

@media (max-height: 600px) {
    .hero {
        height: auto;
        min-height: auto;
        padding-top: 80px;
    }

    .hero .container {
        padding-top: 4rem;
        padding-bottom: 2rem;
    }
}

/* Медиа запросы для разных соотношений сторон */
@media (max-width: 768px) and (min-height: 1000px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: min(4rem, 8vh);
    }

    .hero__form {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) and (max-height: 800px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .country-preview {
        padding: 1rem;
    }

    .flag-wrapper {
        width: 140px;
        height: 90px;
    }

    .country-name {
        font-size: 1.5rem;
    }
}

/* Обновляем стили для плейсхолдеров в форме */
.input-group input::placeholder {
    color: rgb(85, 153, 166);
    opacity: 1;
}

/* Для других браузеров */
.input-group input::-webkit-input-placeholder {
    color: rgb(85, 153, 166);
}

.input-group input::-moz-placeholder {
    color: rgb(85, 153, 166);
}

.input-group input:-ms-input-placeholder {
    color: rgb(85, 153, 166);
}

/* Обновляем неоновую линию под шапкой */
.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 194, 255, 0.2),
        rgba(0, 240, 255, 0.8),
        rgba(0, 194, 255, 0.2),
        transparent
    );
    background-size: 200% 100%;
    animation: headerGlow 3s linear infinite;
}

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

/* Стили для остальных заголовков */
h2:not(.hero__form h2), 
h3,
.logo-text,
.btn-primary,
.spots-counter {
    font-family: 'Source Code Pro', monospace;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Обновленные стили для секции с бейджами безопасности */
.security-badges {
    background: transparent;
    backdrop-filter: none;
    border-top: 1px solid rgba(0, 194, 255, 0.1);
    border-bottom: 1px solid rgba(0, 194, 255, 0.1);
    padding: 0.75rem 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.badges-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.badge {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.badge img {
    height: 28px;
    width: auto;
    opacity: 0.6;
    transition: all 0.3s ease;
    background: transparent !important;
}

.badge:hover img {
    opacity: 0.9;
    transform: translateY(-1px);
    filter: brightness(100%);
}

/* Медиа запросы */
@media (max-width: 768px) {
    .badges-wrapper {
     /*   padding-top: 1rem;  Добавляем отступ сверху */
        gap: 1.5rem; /* Уменьшаем расстояние между бейджами */
    }
    
    .badge img {
        height: 24px; /* Немного уменьшаем размер бейджей */
    }
}

@media (max-width: 480px) {
    .badges-wrapper {
        padding-top: 1.5rem; /* Увеличиваем отступ для маленьких экранов */
        gap: 1rem; /* Еще уменьшаем расстояние между бейджами */
    }

    .badge img {
        height: 20px; /* Еще уменьшаем размер бейджей */
    }
}

/* Обновляем стили для валидации */
.input-group.error input {
    border-color: #ff4646 !important;
    background: rgba(255, 70, 70, 0.05) !important;
    box-shadow: 0 0 15px rgba(255, 70, 70, 0.1) !important;
}

.input-group.success input {
    border-color: #00ff9d !important;
    background: rgba(0, 255, 157, 0.05) !important;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.1) !important;
}

/* Стили для сообщений об ошибках */
.error-message {
    display: none;
    color: #ff4646;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    padding-left: 3rem;
    animation: fadeIn 0.3s ease;
    font-family: var(--body-font);
}

/* Стили для иконок при ошибке/успехе */
.input-group.error .ph {
    color: #ff4646 !important;
}

.input-group.success .ph {
    color: #00ff9d !important;
}

/* Обновленная анимация только по горизонтали */
@keyframes shakeX {
    0%, 100% { 
        transform: translateY(-50%) translateX(0); 
    }
    25% { 
        transform: translateY(-50%) translateX(-2px); 
    }
    75% { 
        transform: translateY(-50%) translateX(2px); 
    }
}

/* Анимация появления сообщения об ошибке */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Стили для телефонного инпута при ошибке */
.phone-group.error .iti__selected-flag {
    background: rgba(255, 70, 70, 0.05) !important;
    border-color: #ff4646 !important;
}

.phone-group.error .iti__selected-dial-code {
    color: #ff4646 !important;
}

/* Стили для телефонного инпута при успехе */
.phone-group.success .iti__selected-flag {
    background: rgba(0, 255, 157, 0.05) !important;
    border-color: #00ff9d !important;
}

.phone-group.success .iti__selected-dial-code {
    color: #00ff9d !important;
}

/* Обновленные стили для бегущей строки трейдеров */
.traders-line {
    background: rgba(0, 11, 46, 0.7);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0, 194, 255, 0.2);
    border-bottom: 1px solid rgba(0, 194, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.traders-track {
    display: flex;
    gap: 2rem;
    animation: scroll 40s linear infinite;
    will-change: transform;
    padding: 0.5rem 0;
}

/* Добавляем анимацию */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Обновляем стили для карточек трейдеров */
.trader {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.5rem 0.5rem;
    background: rgba(0, 194, 255, 0.07);
    border-radius: 100px;
    border: 1px solid rgba(0, 194, 255, 0.2);
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 20px rgba(0, 11, 46, 0.2),
        inset 0 0 20px rgba(0, 194, 255, 0.05);
    flex-shrink: 0;
}

.trader:hover {
    background: rgba(0, 194, 255, 0.15);
    border-color: rgba(0, 194, 255, 0.4);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 30px rgba(0, 11, 46, 0.3),
        inset 0 0 30px rgba(0, 194, 255, 0.1);
}

/* Обновляем стили для фото трейдеров */
.trader img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(0, 194, 255, 0.4);
    object-fit: cover;
    box-shadow: 
        0 0 0 2px rgba(0, 194, 255, 0.1),
        0 0 20px rgba(0, 194, 255, 0.3);
    transition: all 0.3s ease;
}

.trader:hover img {
    border-color: rgba(0, 194, 255, 0.6);
    box-shadow: 
        0 0 0 2px rgba(0, 194, 255, 0.2),
        0 0 30px rgba(0, 194, 255, 0.4);
    transform: scale(1.05);
}

/* Обновляем стили для имени трейдера */
.trader-name {
    color: var(--light);
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 194, 255, 0.3);
}

/* Обновляем стили для суммы прибыли */
.trader-profit {
    color: var(--neon);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 194, 255, 0.15);
    border-radius: 100px;
    border: 1px solid rgba(0, 194, 255, 0.3);
    box-shadow: 
        0 0 20px rgba(0, 194, 255, 0.2),
        inset 0 0 10px rgba(0, 194, 255, 0.1);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    min-width: 120px;
    text-align: center;
}

/* Обновленные градиенты по краям */
.traders-line::before,
.traders-line::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
}

.traders-line::before {
    left: 0;
    background: linear-gradient(to right, rgba(0, 11, 46, 0.95), transparent);
}

.traders-line::after {
    right: 0;
    background: linear-gradient(to left, rgba(0, 11, 46, 0.95), transparent);
}

/* Медиа запросы */
@media (max-width: 768px) {
    .traders-line {
        background: rgba(0, 11, 46, 0.7);
        border-top: 1px solid rgba(0, 194, 255, 0.2);
        border-bottom: 1px solid rgba(0, 194, 255, 0.2);
    }

    .traders-line::before,
    .traders-line::after {
        display: none; /* Убираем градиентные края */
    }

    .traders-track {
        gap: 1.5rem; /* Уменьшаем отступы между элементами */
        padding: 0.5rem 0;
    }
    
    .trader {
        padding: 0.5rem 1rem;
        gap: 1rem;
    }
    
    .trader img {
        width: 40px;
        height: 40px;
    }
    
    .trader-name,
    .trader-profit {
        font-size: 0.9rem;
    }
    
    .trader-profit {
        padding: 0.4rem 0.8rem;
    }
}

/* Добавляем технологичный разделитель */
.experts::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: 
        linear-gradient(to bottom, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(0, 11, 46, 0.95) 100%
        ),
        repeating-linear-gradient(45deg,
            rgba(0, 194, 255, 0.03) 0px,
            rgba(0, 194, 255, 0.03) 1px,
            transparent 1px,
            transparent 10px
        ),
        repeating-linear-gradient(-45deg,
            rgba(0, 240, 255, 0.03) 0px,
            rgba(0, 240, 255, 0.03) 1px,
            transparent 1px,
            transparent 10px
        );
  /*  clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);*/
    z-index: 1;
}

/* Добавляем неоновую линию на стыке секций */
.experts::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 194, 255, 0.3),
        rgba(0, 240, 255, 0.8),
        rgba(0, 194, 255, 0.3),
        transparent
    );
    z-index: 2;
    animation: glowLine 3s linear infinite;
}

/* Анимация свечения линии */
@keyframes glowLine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Добавляем технологичные элементы на фон */
.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: 
        radial-gradient(
            circle at 50% 0%, 
            rgba(0, 194, 255, 0.1) 0%, 
            transparent 80%
        ),
        repeating-linear-gradient(45deg,
            rgba(0, 194, 255, 0.02) 0px,
            rgba(0, 194, 255, 0.02) 1px,
            transparent 1px,
            transparent 10px
        );
    opacity: 0.8;
    z-index: -1;
}

/* Добавляем фоновый градиент для experts */
.experts-background {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(0, 11, 46, 0.98)
    );
    z-index: 0;
}

.exchange-info {
    background: linear-gradient(135deg, #0B1321 0%, #0F2942 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

/* Добавляем технологичный фоновый паттерн */
.exchange-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(45, 212, 191, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(94, 234, 212, 0.15) 0%, transparent 40%),
        url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h40v40H0z" fill="none"/><path d="M0 20h40M20 0v40" stroke="rgba(45,212,191,0.1)" stroke-dasharray="1,3"/></svg>');
    opacity: 0.8;
    z-index: 1;
}

/* Добавляем анимированные частицы */
.exchange-info::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(45, 212, 191, 0.4) 0%, transparent 2%),
        radial-gradient(circle at 70% 60%, rgba(94, 234, 212, 0.4) 0%, transparent 2%);
    background-size: 200% 200%;
    animation: moveParticles 15s linear infinite;
    opacity: 0.3;
    z-index: 1;
}

.exchange-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(45, 212, 191, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(45, 212, 191, 0.1),
        inset 0 0 20px rgba(45, 212, 191, 0.1);
}

.exchange-visual {
    flex: 0 0 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.crypto-image {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(45, 212, 191, 0.2);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        inset 0 0 20px rgba(45, 212, 191, 0.1);
}

.crypto-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.8) contrast(1.1);
}

/* Добавляем эффект при наведении */
.crypto-image:hover .crypto-img {
    transform: scale(1.05);
}

/* Добавляем неоновое свечение */
.crypto-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(45, 212, 191, 0.2),
        transparent 50%,
        rgba(94, 234, 212, 0.2)
    );
    pointer-events: none;
}

/* Обновляем размеры других элементов */
.exchange-logo {
    height: 200px;
}

.chart-preview {
    margin-top: 2rem;
    height: 120px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
    border: 1px solid rgba(45, 212, 191, 0.2);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Обновляем стили для символов валют */
.chart-preview::before {
    content: '💵 💶 💷 💴';
    position: absolute;
    inset: 0;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 3rem; /* Увеличиваем размер */
    color: rgba(45, 212, 191, 0.5); /* Увеличиваем непрозрачность */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 1rem;
    text-shadow: 0 0 15px rgba(45, 212, 191, 0.3);
    pointer-events: none;
    z-index: 1;

}


/* Обновляем z-index для остальных элементов */
.chart-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, rgba(45, 212, 191, 0.1) 1px, transparent 1px),
        linear-gradient(0deg, rgba(45, 212, 191, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 2;
}

.chart-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(45, 212, 191, 0.8),
        rgba(94, 234, 212, 0.8),
        rgba(45, 212, 191, 0.8),
        transparent
    );
    box-shadow: 0 0 10px rgba(45, 212, 191, 0.5);
    animation: chartMove 3s ease-in-out infinite;
    z-index: 3;
}

.exchange-text {
    flex: 1;
}

.exchange-text h2 {
    font-size: 1.75rem;
    color: rgba(45, 212, 191, 0.9);
    margin-bottom: 1.5rem;
    font-family: 'Chakra Petch', sans-serif;
    line-height: 1.3;
    text-shadow: 0 0 10px rgba(45, 212, 191, 0.3);
}

.exchange-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.exchange-date {
    color: rgba(45, 212, 191, 0.7);
    font-size: 0.9rem;
    font-style: italic;
}

/* Добавляем анимации */
@keyframes moveParticles {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 200%; }
}

@keyframes moveBg {
    0% { transform: translateX(-50%) translateY(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) translateY(-50%) rotate(360deg); }
}

@keyframes chartMove {
    0% { transform: translateY(20px) scaleY(1); }
    50% { transform: translateY(-20px) scaleY(2); }
    100% { transform: translateY(20px) scaleY(1); }
}

.testimonials {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    /* Добавляем градиентный переход внизу */
    border-bottom: 100px solid transparent;
    -webkit-mask-image: linear-gradient(to bottom, 
        #000 0%,
        #000 90%,
        transparent 100%
    );
    mask-image: linear-gradient(to bottom, 
        #000 0%,
        #000 90%,
        transparent 100%
    );
}

.facebook-reviews {
    background: #f0f2f5;
    padding: 3rem 0;
    position: relative;
    margin-top: -100px; /* Сдвигаем секцию вверх */
    /* Добавляем градиентный переход вверху */
    background-image: linear-gradient(
        to bottom,
        #e0f2fe 0%,
        #f0f2f5 15%,
        #f0f2f5 100%
    );
}

/* Обновляем отступы для мобильных устройств */
@media (max-width: 768px) {
    .testimonials {
        border-bottom: 50px solid transparent;
    }
    
    .facebook-reviews {
        margin-top: -50px;
    }
}

/* Добавляем современный фоновый паттерн */
.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(2, 132, 199, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0v60M0 30h60" stroke="rgba(2,132,199,0.1)" stroke-dasharray="2,4"/></svg>');
    opacity: 0.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 
        0 20px 40px rgba(148, 163, 184, 0.15),
        0 0 0 1px rgba(148, 163, 184, 0.1);
    overflow: hidden;
    /* Добавляем flex для выравнивания содержимого */
    display: flex;
    flex-direction: column;
    min-height: 400px; /* Задаем минимальную высоту карточки */
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: linear-gradient(135deg, #fff, #f8fafc);
    border-radius: 29px;
    z-index: -1;
}

.testimonial-photo {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.5rem;
    position: relative;
    border-radius: 28px;
    transform: rotate(-5deg);
    transition: transform 0.4s ease;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    border-radius: 26px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 
        5px 5px 15px rgba(148, 163, 184, 0.2),
        -5px -5px 15px rgba(255, 255, 255, 0.8);
}

.glow-effect {
    position: absolute;
    inset: -2px;
    border-radius: 28px;
    background: linear-gradient(135deg, 
        rgba(56, 189, 248, 0.3),
        rgba(2, 132, 199, 0.3)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(148, 163, 184, 0.2),
        0 0 0 1px rgba(148, 163, 184, 0.15);
}

.testimonial-card:hover .testimonial-photo {
    transform: rotate(0deg);
}

.testimonial-card:hover .glow-effect {
    opacity: 1;
    animation: rotateBorder 4s linear infinite;
}

.testimonial-card h3 {
    color: #0369a1;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
}

.testimonial-card p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    /* Убираем min-height, так как теперь используем flex */
}

.profit-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 16px;
    /* Добавляем margin-top: auto чтобы блок был всегда внизу */
    margin-top: auto;
    box-shadow: 
        inset 0 2px 4px rgba(148, 163, 184, 0.1),
        0 2px 4px rgba(255, 255, 255, 0.5);
}

.country-flag {
  /*  width: 28px;
    height: 28px; */
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(148, 163, 184, 0.2);
}

.amount {
    color: #0284c7;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Chakra Petch', sans-serif;
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Добавляем декоративные элементы */
.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(56, 189, 248, 0.3); /* Увеличиваем непрозрачность с 0.1 до 0.3 */
    line-height: 1;
}

/* Медиа-запросы */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonial-photo {
        width: 90px;
        height: 90px;
    }
}

/* Обновляем стили только для блока testimonials */
.testimonial-flag {
    width: 44px;
    /*  height: 24px;
  border-radius: 8px; */
    box-shadow: 2px 2px 5px rgba(148, 163, 184, 0.2);
}

.testimonial-amount {
    color: #0284c7;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Chakra Petch', sans-serif;
}

/* Делаем кавычки ярче */
.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(56, 189, 248, 0.3); /* Увеличиваем непрозрачность с 0.1 до 0.3 */
    line-height: 1;
}

.nasdaq-logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(45, 212, 191, 0.3));
    position: relative;
    z-index: 1;
}

.facebook-reviews {
    background: #f0f2f5;
    padding: 3rem 0;
    position: relative;
}

.facebook-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

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

.facebook-date {
    color: #65676b;
    font-size: 0.9rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
}

.fb-review {
    background: #fff;
    border-radius: 8px;
    padding: 1.2rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.review-info h3 {
    color: #050505;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.rating {
    color: #1877f2;
    font-size: 0.9rem;
}

.review-text {
    color: #050505;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.review-actions {
    display: flex;
    gap: 1rem;
    border-top: 1px solid #e4e6eb;
    padding-top: 0.8rem;
}

.like-btn, .comment-btn {
    background: none;
    border: none;
    color: #65676b;
    font-size: 0.9rem;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.like-btn:hover, .comment-btn:hover {
    color: #1877f2;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .facebook-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* Обновляем стили для Facebook отзывов */
.facebook-reviews {
    background: #f0f2f5;
    padding: 3rem 0;
    position: relative;
}

.facebook-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

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

.facebook-date {
    color: #65676b;
    font-size: 0.9rem;
}

/* Новая сетка специально для Facebook отзывов */
.facebook-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Изменено с 3 на 2 колонки */
    gap: 1.5rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.facebook-review-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.2rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    /* Добавляем flex-контейнер */
    display: flex;
    flex-direction: column;
    /* Устанавливаем минимальную высоту */
    min-height: 250px;
}

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

.facebook-review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.facebook-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.facebook-review-info h3 {
    color: #050505;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.facebook-rating {
    color: #1877f2;
    font-size: 0.9rem;
}

.facebook-review-text {
    color: #050505;
    font-size: 0.9rem;
    line-height: 1.5;
    /* Убираем margin-bottom */
    margin-bottom: 0;
    /* Добавляем flex-grow чтобы текст занимал всё доступное пространство */
    flex-grow: 1;
}

.facebook-review-actions {
    display: flex;
    gap: 1rem;
    border-top: 1px solid #e4e6eb;
    padding-top: 0.8rem;
    /* Добавляем отступ сверху */
    margin-top: 1rem;
    /* Прикрепляем к низу */
    margin-top: auto;
}

.facebook-btn {
    background: none;
    border: none;
    color: #65676b;
    font-size: 0.9rem;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.facebook-btn:hover {
    color: #1877f2;
}

@media (max-width: 992px) {
    .facebook-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .facebook-reviews-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .facebook-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

.main-footer {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #000B2E 0%, #001F5C 100%);
}

.footer-background {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(45, 212, 191, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(94, 234, 212, 0.15) 0%, transparent 40%),
        url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h40v40H0z" fill="none"/><path d="M0 20h40M20 0v40" stroke="rgba(45,212,191,0.1)" stroke-dasharray="1,3"/></svg>');
    opacity: 0.8;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-form-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(45, 212, 191, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

.footer-title {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-family: var(--heading-font);
}

.registration-form {
    display: grid;
    gap: 1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(45, 212, 191, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
}

.submit-btn {
    background: linear-gradient(135deg, #00C2FF 0%, #00F0FF 100%);
    color: #000B2E;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.2s;
}

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

.footer-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.country-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(45, 212, 191, 0.2);
}

.footer-flag {
    width: 32px;
    height: auto;
    border-radius: 4px;
}

.country-name {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
}

.security-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.security-badge {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.security-badge:hover {
    opacity: 1;
}

.footer-motto {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
}

.disclaimer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 600px;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-form-section {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 3rem 0;
    }
    
    .footer-title {
        font-size: 1.5rem;
    }
    
    .security-badges {
        gap: 1rem;
    }
    
    .security-badge {
        height: 32px;
    }
}

.footer-hero {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
    background: var(--gradient);
}

/* Обновляем фон */
.footer-hero__background {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(0, 11, 46, 0.4), rgba(0, 31, 92, 0.4)),
        url('../images/back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Обновляем стили для блока с флагом */
.footer-hero__country {
    display: flex;
    align-items: center;
    gap: 2rem; /* Увеличиваем отступ между флагом и текстом */
    padding: 2rem 3rem; /* Увеличиваем внутренние отступы */
    background: rgba(0, 11, 46, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(0, 194, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    max-width: fit-content;
    margin: 0 auto;
}

.footer-hero__flag {
    width: 80px; /* Значительно увеличиваем размер флага */
    height: auto;
    border-radius: 12px; /* Увеличиваем радиус скругления */
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-hero__flag:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.footer-hero__country-name {
    color: var(--white);
    font-size: 1.6rem; /* Увеличиваем размер текста */
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Добавляем медиа-запрос для адаптивности */
@media (max-width: 768px) {
    .footer-hero__country {
        padding: 1.5rem 2rem;
    }
    
    .footer-hero__flag {
        width: 60px; /* Немного уменьшаем для мобильных */
    }
    
    .footer-hero__country-name {
        font-size: 1.4rem;
    }
}

.footer-hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Форма как в hero */
.footer-hero__form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 194, 255, 0.2);
    backdrop-filter: blur(10px);
}

.footer-hero__title {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-family: var(--heading-font);
    /* Добавляем градиент
    background: linear-gradient(135deg, 
        rgb(85, 153, 166) 0%,
        #00F0FF 50%,
        rgb(85, 153, 166) 100%
    ); */
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Добавляем анимацию */
    animation: shine 3s ease-in-out infinite;
    /* Улучшаем типографику */
    letter-spacing: 0.5px;
    font-weight: 700;
    text-transform: uppercase;
    /* Добавляем тень */
    filter: drop-shadow(0 2px 4px rgba(0, 240, 255, 0.3));
}

/* Анимация для градиента */
@keyframes shine {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

/* Добавляем выделение суммы */
.footer-hero__title span {
    display: inline-block;
    color: #00F0FF;
    -webkit-text-fill-color: #00F0FF;
    font-size: 2.2rem;
    text-shadow: 
        0 0 10px rgba(0, 240, 255, 0.5),
        0 0 20px rgba(0, 240, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .footer-hero__title {
        font-size: 1.6rem;
    }
    
    .footer-hero__title span {
        font-size: 1.8rem;
    }
}

.footer-hero__form-group {
    margin-bottom: 1rem;
}

.footer-hero__input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 194, 255, 0.3);
    border-radius: 8px;
    background: rgba(0, 11, 46, 0.3);
    color: var(--white);
    font-size: 1rem;
}

.footer-hero__submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--neon) 100%);
    color: var(--dark);
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.2s;
}

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

/* Правая колонка */
.footer-hero__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.footer-hero__country {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(0, 11, 46, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(0, 194, 255, 0.2);
}

.footer-hero__flag {
    width: 32px;
    height: auto;
    border-radius: 4px;
}

.footer-hero__country-name {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Бейджи безопасности */
.footer-hero__badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1.5rem;
    background: rgba(0, 11, 46, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(0, 194, 255, 0.2);
}

.footer-hero__badge {
    height: 40px;
    width: auto;
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.3s ease;
}

.footer-hero__badge:hover {
    filter: brightness(1.1) contrast(1.2);
    transform: translateY(-2px);
}

.footer-hero__motto {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 194, 255, 0.5);
}

.footer-hero__disclaimer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 600px;
}

@media (max-width: 992px) {
    .footer-hero__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-hero__form {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .footer-hero {
        padding: 3rem 0;
    }
    
    .footer-hero__title {
        font-size: 1.5rem;
    }
    
    .footer-hero__badges {
        gap: 1rem;
        padding: 1rem;
    }
    
    .footer-hero__badge {
        height: 32px;
    }
}

/* Общие стили для форм */
.hero__form {
    display: grid;
    gap: 1rem;
}

.hero__form-group {
    position: relative;
}

.hero__input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 194, 255, 0.3);
    border-radius: 8px;
    background: rgba(0, 11, 46, 0.3);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero__input:focus {
    border-color: rgba(0, 194, 255, 0.6);
    box-shadow: 0 0 0 2px rgba(0, 194, 255, 0.1);
}

.hero__submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--neon) 100%);
    color: var(--dark);
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.hero__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 194, 255, 0.3);
}

/* Обновляем стили для полей ввода в футере */
.footer-hero__form .hero__input::placeholder {
    color: rgb(85, 153, 166);
    opacity: 1; /* Для Firefox */
}

.footer-hero__form .hero__input {
    color: rgb(85, 153, 166);
    font-weight: 500;
}

/* Добавляем стили для активного состояния */
.footer-hero__form .hero__input:focus {
    border-color: rgba(85, 153, 166, 0.6);
    box-shadow: 0 0 0 2px rgba(85, 153, 166, 0.1);
}

/* Добавляем стили для состояния успешной валидации */
.footer-hero__form .hero__form-group.success .hero__input {
    border-color: rgba(85, 153, 166, 0.8);
    color: rgb(85, 153, 166);
}

/* Добавляем стили для состояния ошибки */
.footer-hero__form .hero__form-group.error .hero__input {
    border-color: rgba(255, 99, 71, 0.8);
    color: rgb(255, 99, 71);
}

.footer-hero__risk-warning {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(85, 153, 166, 0.2);
}

.footer-hero__risk-warning p {
    color: rgb(85, 153, 166);
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.8;
    text-align: justify;
}

.footer-hero__risk-warning p:last-child {
    margin-bottom: 0;
}

/* Добавляем адаптивность */
@media (max-width: 768px) {
    .footer-hero__risk-warning {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .footer-hero__risk-warning p {
        font-size: 0.75rem;
    }
}

.risk-warning {
    background: rgb(121 196 210);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.risk-warning__content {
    max-width: 1200px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    line-height: 1.6;
    text-align: justify;
    padding: 0 1rem;
}

.risk-warning__content p {
    margin-bottom: 1rem;
}

.risk-warning__content p:last-child {
    margin-bottom: 0;
    text-align: center;
    opacity: 0.7;
}

/* Адаптивность */
@media (max-width: 768px) {
    .risk-warning {
        padding: 1.5rem 0;
    }
    
    .risk-warning__content {
        font-size: 0.75rem;
    }
}

/* Добавляем плавную прокрутку для всей страницы */
html {
    scroll-behavior: smooth;
}

/* Стили для якорной ссылки */
.btn-primary {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Добавляем отступ сверху для формы, чтобы учесть фиксированную шапку */
#registration {
    scroll-margin-top: 100px;
}

/* Обновляем стили для формы в футере */
.footer-hero__form {
    background: rgba(0, 11, 46, 0.3); /* Базовый фон */
    -webkit-backdrop-filter: blur(10px); /* Для Safari */
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 194, 255, 0.2);
    /* Добавляем запасной градиентный фон для Safari */
    background: linear-gradient(
        to bottom,
        rgba(0, 11, 46, 0.7),
        rgba(0, 11, 46, 0.5)
    );
}

/* Обновляем стили для инпутов в футере */
.footer-hero__form .hero__input {
    background: rgba(0, 11, 46, 0.6); /* Увеличиваем непрозрачность */
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    /* Добавляем запасной цвет фона для Safari */
    background: linear-gradient(
        to bottom,
        rgba(0, 11, 46, 0.8),
        rgba(0, 11, 46, 0.6)
    );
    border: 1px solid rgba(0, 194, 255, 0.3);
    color: rgb(85, 153, 166);
}

/* Добавляем специфичные стили для Safari */
@supports (-webkit-backdrop-filter: none) {
    .footer-hero__form {
        background: rgba(0, 11, 46, 0.8);
    }
    
    .footer-hero__form .hero__input {
        background: rgba(0, 11, 46, 0.9);
    }
}

/* Обновляем стили для features на мобильных */
@media (max-width: 768px) {
    .features {
        padding: 2rem 0;
    }

    .features__grid {
        grid-template-columns: 1fr; /* Одна колонка на мобильных */
        gap: 1rem;
        padding: 0 1rem;
    }

    .feature {
        padding: 1.5rem;
        text-align: center;
    }

    .feature__icon {
        margin: 0 auto 1rem;
        width: 40px;
        height: 40px;
    }

    .feature__title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .feature__text {
        font-size: 0.9rem;
        opacity: 0.8;
    }

    /* Обновляем стили для features__earnings */
    .features__earnings {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem;
        text-align: center;
        background: rgba(0, 194, 255, 0.1);
        border-radius: 16px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 194, 255, 0.2);
    }

    .earnings__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }

    .earnings__text {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    /* Обновляем стили для features__earnings */
    .features__earnings {
        font-size: 1.2rem;
        line-height: 1.6;
    }

    .earnings__icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.4rem;
    }

    .earnings__text {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .earnings {
        font-size: 1.3rem;
        background: linear-gradient(135deg, var(--primary), var(--neon));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 700;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 480px) {
    .features {
        padding: 1.5rem 0;
    }

    .feature {
        padding: 1.25rem;
    }

    .feature__title {
        font-size: 1rem;
    }

    .feature__text {
        font-size: 0.85rem;
    }

    .features__earnings {
        padding: 1.25rem;
    }

    .earnings {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .experts {
        padding: 2rem 0;
    }

    .experts-grid {
        grid-template-columns: 1fr; /* Одна колонка */
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .expert {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    /* Уменьшаем размер фотографий */
    .expert img {
        width: 120px;
        height: 120px;
        margin-bottom: 1rem;
        border-width: 2px;
    }

    /* Уменьшаем размер заголовков */
    .expert h3 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    /* Уменьшаем размер должности */
    .expert .position {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        opacity: 0.8;
    }

    /* Уменьшаем размер цитаты */
    .expert .quote {
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0;
    }

    /* Уменьшаем тени */
    .expert {
        box-shadow: 
            0 10px 20px rgba(0, 11, 46, 0.1),
            0 0 0 1px rgba(0, 194, 255, 0.1);
    }

    .expert:hover {
        transform: translateY(-2px);
        box-shadow: 
            0 15px 30px rgba(0, 11, 46, 0.15),
            0 0 0 1px rgba(0, 194, 255, 0.2);
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 480px) {
    .experts {
        padding: 1.5rem 0;
    }

    .expert {
        padding: 1.25rem;
    }

    .expert img {
        width: 100px;
        height: 100px;
    }

    .expert h3 {
        font-size: 1.1rem;
    }

    .expert .position {
        font-size: 0.85rem;
    }

    .expert .quote {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .security-badges {
       /* padding: 1rem 0;*/
    }

    .badges-wrapper {
        gap: 1.5rem;
    }

    .badge img {
        height: 24px;
        opacity: 0.8;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 480px) {
    .security-badges {
    }

    .badges-wrapper {
        gap: 1rem;

    }

    .badge img {
        height: 20px;
    }
}

@media (max-width: 768px) {
    .country-preview {
        max-width: 100%; /* Ограничиваем ширину */
    }

    .country-stats {
        padding: 0.75rem 1rem; /* Уменьшаем внутренние отступы */
        gap: 1rem; /* Уменьшаем расстояние между статистикой */
    }

    .stat-item {
        min-width: auto; /* Убираем минимальную ширину */
    }

    .stat-value {
        font-size: 1rem; /* Уменьшаем размер значений */
    }

    .stat-label {
        font-size: 0.8rem; /* Уменьшаем размер подписей */
    }

    .country-main {
        padding: 0.75rem 1rem; /* Уменьшаем внутренние отступы */
    }

    .flag-wrapper {
        width: 40px; /* Уменьшаем размер флага */
        height: 40px;
    }

    .country-info {
        gap: 0.5rem; /* Уменьшаем отступы */
    }

    .country-header {
        gap: 0.25rem;
    }

    .country-label {
        font-size: 0.8rem;
    }

    .country-name {
        font-size: 1rem;
    }

    .country-stats-mobile {
        gap: 0.5rem;
    }

    .stat-row {
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .stat-icon {
        width: 16px;
        height: 16px;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 480px) {
    .country-stats {
        padding: 0.5rem 0.75rem;
        gap: 0.75rem;
    }

    .stat-value {
        font-size: 0.9rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .country-main {
        padding: 0.5rem 0.75rem;
    }

    .flag-wrapper {
        width: 36px;
        height: 36px;
    }

    .country-name {
        font-size: 0.9rem;
    }

    .stat-row {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .flag-wrapper {
        width: 104px;
        height: 74px;
        border-radius: 12px;
        border: 2px solid rgba(0, 194, 255, 0.3);
        overflow: hidden;
        box-shadow: 
            0 4px 12px rgba(0, 194, 255, 0.2),
            0 0 0 1px rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        flex-shrink: 0;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 480px) {
    .flag-wrapper {
        width: 104px; /* Сохраняем ту же ширину */
        height: 74px; /* Сохраняем ту же высоту */
        border-radius: 12px;
    }
}

@media (max-width: 768px) {
    .country-main {
        padding: 1rem;
        justify-content: center; /* Центрируем содержимое */
        text-align: center;
    }

    .country-info {
        flex-grow: 1;
        margin-left: 0; /* Убираем отступ слева */
        text-align: center; /* Центрируем текст */
    }

    .country-header {
        display: flex;
        flex-direction: column;
        align-items: center; /* Центрируем элементы */
        gap: 0.25rem;
        text-align: center; /* Центрируем текст */
    }

    .country-label {
        font-size: 0.8rem;
        opacity: 0.7;
        text-align: center; /* Центрируем текст */
    }

    .country-name {
        font-size: 1.1rem;
        font-weight: 600;
        text-align: center; /* Центрируем текст */
    }

    .country-stats-mobile {
        align-items: center; /* Центрируем статистику */
    }

    .stat-row {
        justify-content: center; /* Центрируем строки статистики */
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 480px) {
    .flag-wrapper {
        width: 106px; /* Немного уменьшаем для маленьких экранов, но все равно больше чем было */
        height: 56px;
        border-radius: 14px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem; /* Уменьшаем размер заголовка */
        line-height: 1.3;
        margin-bottom: 1rem;
        text-align: center; /* Центрируем текст */
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem; /* Еще немного уменьшаем для маленьких экранов */
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 768px) {
    .country-preview {
        max-width: 100%;
        padding: 0.75rem;
    }

    .country-stats {
        display: flex;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        gap: 1.5rem;
        background: rgba(0, 194, 255, 0.1);
        border-radius: 12px;
        margin-bottom: 1rem;
    }

    .stat-item {
        flex: 1;
        text-align: center;
    }

    .stat-value {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--neon);
        display: block;
    }

    .stat-label {
        font-size: 0.8rem;
        opacity: 0.8;
    }

    .country-main {
        background: rgba(0, 194, 255, 0.1);
        border-radius: 12px;
        padding: 1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .flag-wrapper {
        width: 104px;
        height: 74px;
        flex-shrink: 0;
    }

    .country-info {
        flex-grow: 1;
        margin-left: auto;
        text-align: right;
    }

    .country-header {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.25rem;
    }

    .country-label {
        font-size: 0.8rem;
        opacity: 0.7;
    }

    .country-name {
        font-size: 1.1rem;
        font-weight: 600;
    }

    .stat-divider {
        width: 1px;
        background: rgba(0, 194, 255, 0.2);
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 480px) {
    .country-preview {
        padding: 0.5rem;
    }

    .country-stats {
        padding: 0.5rem 0.75rem;
    }

    .stat-value {
        font-size: 1rem;
    }

    .country-main {
        padding: 0.75rem;
    }
}

/* Стили для десктопной версии */
.country-main {
  /*  background: rgba(0, 194, 255, 0.1);*/
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center; /* Центрируем по горизонтали */
    gap: 1.5rem;
    text-align: center; /* Центрируем текст */
}

.country-info {
    display: flex;
    flex-direction: column;
    align-items: center; /* Центрируем содержимое */
    gap: 0.5rem;
}

.country-header {
    display: flex;
    flex-direction: column;
    align-items: center; /* Центрируем элементы */
    gap: 0.25rem;
}

/* Мобильные стили остаются прежними */
@media (max-width: 768px) {
    .country-main {
        padding: 1rem;
        justify-content: space-between; /* На мобильных распределяем по краям */
        text-align: right;
    }

    .country-info {
        /* align-items: flex-end; На мобильных выравниваем по правому краю */
        margin-left: auto;
    }

    .country-header {
        align-items: flex-end; /* На мобильных выравниваем по правому краю */
    }
}

@media (max-width: 768px) {
    .trustpilot {
        margin-top: 1rem; /* Уменьшаем верхний отступ */
        padding: 0.75rem;
    }

    .stars {
        gap: 0.25rem; /* Уменьшаем расстояние между звездами */
        margin-bottom: 0.25rem; /* Уменьшаем отступ под звездами */
    }

    .star {
        font-size: 1rem; /* Уменьшаем размер звезд */
    }

    .trust-score {
        font-size: 0.8rem; /* Уменьшаем размер текста */
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 480px) {
    .trustpilot {
        margin-top: 0.75rem;
        padding: 0.5rem;
    }

    .star {
        font-size: 0.9rem;
    }

    .trust-score {
        font-size: 0.75rem;
    }
}

/* Стили для десктопной версии */
.country-preview {
    max-width: 480px; /* Ограничиваем максимальную ширину */
    margin: 0 auto; /* Центрируем блок */
}

.country-stats {
    display: flex;
    justify-content: center;
    padding: 0.75rem;
    gap: 2rem;
    background: rgba(0, 194, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.stat-item {
    text-align: center;
    min-width: 120px; /* Задаем минимальную ширину для элементов статистики */
}

.country-main {
    width: 100%;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

/* Мобильные стили остаются прежними */
@media (max-width: 768px) {
    .country-preview {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .expert {
        border-radius: 1rem; /* Устанавливаем радиус скругления */
        padding: 1.5rem;
    }

    .expert img {
        border-radius: 1rem; /* Также обновляем радиус для изображений */
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 480px) {
    .expert {
        padding: 1.25rem;
        border-radius: 1rem; /* Сохраняем тот же радиус */
    }

    .expert img {
        border-radius: 1rem;
    }
}

@media (max-width: 768px) {
    .expert::before {
        border-radius: 1rem; /* Устанавливаем радиус скругления для фона */
    }

    .expert::after {
        border-radius: 1rem; /* Также обновляем для согласованности */
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 480px) {
    .expert::before {
        border-radius: 1rem; /* Сохраняем тот же радиус */
    }

    .expert::after {
        border-radius: 1rem;
    }
}

@media (max-width: 768px) {
    .hero__subtitle {
        font-size: 0.8rem; /* Уменьшаем размер шрифта */
        line-height: 1.3;
        opacity: 0.8;
        margin-bottom: 1rem;
        max-width: 90%; /* Ограничиваем ширину */
        margin-left: auto;
        margin-right: auto;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 480px) {
    .hero__subtitle {
        font-size: 0.75rem; /* Еще больше уменьшаем для маленьких экранов */
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 768px) {
    .exchange-content {
        padding: 1rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .exchange-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0.75rem 1rem;
        background: rgba(0, 11, 46, 0.7);
        border-radius: 12px;
    }

    .trader-info {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .trader-name {
        font-size: 1rem;
        color: var(--text);
        font-weight: 500;
    }

    .trader-profit {
        font-size: 1.1rem;
        color: var(--neon);
        padding: 0.5rem 1rem;
        background: rgba(0, 194, 255, 0.1);
        border-radius: 20px;
    }

    .trader-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        overflow: hidden;
    }

    .trader-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .exchange-chart {
        width: 100%;
        aspect-ratio: 16/9;
        background: rgba(0, 11, 46, 0.7);
        border-radius: 12px;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .money-line {
        width: 100%;
        padding: 1rem;
        background: rgba(0, 11, 46, 0.7);
        border-radius: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    .money-item {
        width: 40px;
        height: 25px;
        object-fit: contain;
        opacity: 0.8;
    }
}

@media (max-width: 480px) {
    .exchange-content {
        padding: 0.75rem;
        gap: 1rem;
    }

    .exchange-header {
        padding: 0.5rem 0.75rem;
    }

    .trader-name {
        font-size: 0.9rem;
    }

    .trader-profit {
        font-size: 1rem;
        padding: 0.4rem 0.75rem;
    }

    .trader-avatar {
        width: 32px;
        height: 32px;
    }

    .money-line {
        padding: 0.75rem;
    }

    .money-item {
        width: 32px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .hero__form h2 {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        opacity: 0.9;
    }
}

@media (max-width: 480px) {
    .hero__form h2 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 768px) {
    .hero__form p {
        font-size: 1.1rem;
        line-height: 1.4;
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: var(--neon);
    }
}

@media (max-width: 480px) {
    .hero__form p {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 768px) {
    .iti__country-list {
        max-height: 160px; /* Уменьшаем максимальную высоту */
        width: 240px; /* Уменьшаем ширину */
        margin-left: -15px;
        z-index: 9999;
        position: absolute;
        background: rgba(0, 11, 46, 0.95);
        border: 1px solid rgba(0, 194, 255, 0.2);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0);
    }
}

@media (max-width: 768px) {
    .reviews h2,
    .features h2,
    .exchange-text h2 {
        font-size: 1.3rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .reviews h2,
    .features h2,
    .exchange-text h2 {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 768px) {
    .footer-hero__form {
        padding: 1rem;
        margin: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-hero__form {
        padding: 0.75rem;
    }
}

@media (max-width: 768px) {
    .hero__form {
        gap: 1rem; /* Уменьшаем отступы между элементами */
    }

    .hero__form h2 {
        margin-bottom: 0.75rem;
    }

    .hero__form p {
        margin-bottom: 0.75rem;
    }

    .form-row {
        margin-bottom: 0.75rem;
    }

    .input-group {
        margin-bottom: 0.75rem;
    }

    .hero__form button {
        margin-top: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero__form {
        gap: 0.75rem; /* Еще меньше отступы для маленьких экранов */
    }

    .hero__form h2 {
        margin-bottom: 0.5rem;
    }

    .hero__form p {
        margin-bottom: 0.5rem;
    }

    .form-row {
        margin-bottom: 0.01rem;
    }

    .input-group {
        margin-bottom: 0.5rem;
    }

    .hero__form button {
        margin-top: 0.5rem;
    }
}

.reviews-subtitle {
    font-size: 0.85rem;
    color: var(--neon);
    text-align: center;
    margin: 1rem auto 2.5rem;
    max-width: 800px;
    font-family: 'Source Code Pro', monospace;
    font-style: italic;
    letter-spacing: 0.02em;
    opacity: 0.9;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .reviews-subtitle {
        font-size: 0.75rem;
        margin: -0.75rem auto 2rem;
        padding: 0 1rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .reviews-subtitle {
        font-size: 0.7rem;
        margin: -0.5rem auto 1.5rem;
        padding: 0 0.75rem;
        line-height: 1.2;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero .container {
        padding-top: 2rem;
        gap: 1.5rem;
    }

    .hero__left {
        padding-top: 1rem;
    }

    .spots-counter {
        display: none;
    }

    h1 {
        margin-bottom: 1rem;
        font-size: 2rem;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero .container {
        padding-top: 1.5rem;
        gap: 1rem;
    }

    h1 {
        margin-bottom: 0.75rem;
        font-size: 1.75rem;
        line-height: 1.1;
    }
}

@media (max-width: 768px) {
    // ... existing code ...
    
    .money-line {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        margin-top: 1rem;
    }

    .money-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.85rem;
        color: var(--neon);
        opacity: 0.9;
    }

    .money-item::before {
        content: "€";
        font-family: Arial, sans-serif;
    }

    .traders-track {
        display: none;
    }

    .traders-line {
        display: none;
    }
}

@media (max-width: 480px) {
    // ... existing code ...
    
    .money-line {
        padding: 0.5rem;
        margin-top: 0.75rem;
    }

    .money-item {
        font-size: 0.8rem;
        gap: 0.25rem;
    }
}

.facebook-btn.like-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    background: #f0f2f5;
    color: #65676b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.facebook-btn.like-btn:hover {
    background: #e4e6eb;
}

.facebook-btn.like-btn.liked {
    background: #e7f3ff;
    color: #1877f2;
}

.facebook-btn.like-btn .like-count {
    font-size: 14px;
    font-weight: 500;
}

.facebook-btn.like-btn i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .facebook-btn.like-btn {
        padding: 6px 12px;
    }
    
    .facebook-btn.like-btn .like-count {
        font-size: 13px;
    }
}