/* ===== ОСНОВНЫЕ ПЕРЕМЕННЫЕ (СОГЛАСНО СПЕЦИФИКАЦИИ) ===== */
:root {
    /* Цвета */
    --color-primary: #2C3E50;        /* Основной цвет заголовков */
    --color-accent: #FF914D;         /* Акцентные элементы, кнопки */
    --color-accent-hover: #A03F03;   /* Кнопки при наведении */
    --color-text: #333333;           /* Основной текст */
    --color-background: #FFF9F0;     /* Фон по умолчанию (ИЗМЕНЕНО!) */
    --color-white: #FFFFFF;          /* Альтернативный фон */
    --color-link: #42A5F5;           /* Ссылки */
    --color-link-hover: #2A5B8C;     /* Ссылки при наведении */

    /* Шрифты */
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Rubik', sans-serif;

    /* Размеры шрифтов (Mobile First) */
    --font-size-base: 14px;          /* Базовый размер (мобильные) */
    --font-size-h1: 1.75rem;         /* 28px */
    --font-size-h2: 1.5rem;          /* 24px */
    --font-size-h3: 1.25rem;         /* 20px */
    --font-size-text: 1rem;          /* 16px */
    --font-size-btn: 1.125rem;       /* 18px */

    /* Межстрочные интервалы */
    --line-height-body: 1.4;         /* Основной текст */
    --line-height-heading: 1.2;      /* Заголовки */
    --line-height-btn: 1.0;          /* Кнопки */

    /* Отступы */
    --spacing-xs: 0.5rem;            /* 8px */
    --spacing-sm: 1rem;              /* 16px */
    --spacing-md: 1.5rem;            /* 24px */
    --spacing-lg: 2.5rem;            /* 40px */
    --spacing-xl: 3rem;              /* 48px */

    /* Радиусы */
    --border-radius: 12px;           /* Карточки, изображения */
    --border-radius-btn: 8px;        /* Кнопки */

    /* Тени */
    --box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    --box-shadow-hover: 0 6px 12px rgba(0,0,0,0.15);

    /* Анимации */
    --transition: all 0.3s ease;
}

/* ===== БАЗОВЫЕ СТИЛИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--font-size-text);
    line-height: var(--line-height-body);
    color: var(--color-text);
    background-color: var(--color-background); /* ФОН ИЗМЕНЕН НА #FFF9F0 */
    padding: 0;
    font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
}


h1 {
    font-size: var(--font-size-h1);
    font-weight: 900; /* Nunito Black */
}

h2 {
    font-size: var(--font-size-h2);
    font-weight: 700; /* Nunito Bold */
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: 600; /* Nunito SemiBold */
}

p {
    margin-bottom: var(--spacing-md);
    max-width: 65ch; /* Ограничение длины строки */
}

a {
    color: var(--color-link);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-link-hover);
}

/* ===== СЕТКА И КОНТЕЙНЕР ===== */
.t-container {
    width: 100%;
    max-width: 1320px; /* Десктоп */
    padding: 0 var(--spacing-md);
    margin: 0 auto;
    box-sizing: border-box;
}

.t-row {
    display: grid;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

/* Десктоп: 12 колонок */
.t-row-desktop {
    grid-template-columns: repeat(12, 1fr);
}

/* Планшет: 8 колонок */
@media (max-width: 1199px) {
    .t-row-tablet {
        grid-template-columns: repeat(8, 1fr);
    }
    
    .t-container {
        max-width: 960px; /* Планшет */
    }
}

/* Мобильные: 1 колонка */
@media (max-width: 767px) {
    .t-row-mobile {
        grid-template-columns: 1fr;
    }
    
    .t-container {
        padding: 0 var(--spacing-sm); /* Мобильные */
    }
}

/* Пример колонки (десктоп: 3 в ряд) */
.t-col-desktop-3 {
    grid-column: span 4; /* 12/4=3 элемента */
}

@media (max-width: 1199px) {
    .t-col-tablet-2 {
        grid-column: span 4; /* 8/4=2 элемента */
    }
}

/* ===== КОМПОНЕНТЫ ===== */
/* Кнопки */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--font-size-btn);
    line-height: var(--line-height-btn);
    padding: 0.75rem 1.5rem; /* 12px/24px */
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

/* Карточки */
.card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--box-shadow-hover);
}

/* Изображения */
.img-responsive {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    aspect-ratio: 16/9; /* Соотношение сторон */
    object-fit: cover;
}

/* ===== ШАПКА САЙТА ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.header.scrolled {
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
}

/* Логотип */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-link), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(66, 165, 245, 0.3);
    transition: var(--transition);
}

.logo-icon i {
    color: white;
    font-size: 24px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-link));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

/* Навигация */
.nav-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu {
    display: flex;
    gap: 5px;
    margin-right: 30px;
}

.nav-item {
    position: relative;
    list-style: none;
}

.nav-link {
    position: relative;
    display: inline-block;
    padding: 15px 15px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
    border-radius: 50px;
}

.nav-link:hover {
    color: var(--color-link);
    background: rgba(66, 165, 245, 0.05);
}

/* Эффект подчеркивания */
.nav-link::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 10px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: var(--x) 50%;
    transition: transform 0.4s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* Кнопки в шапке */
.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    color: var(--color-primary);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 50px;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--color-link);
    background: rgba(66, 165, 245, 0.05);
}

.phone-link i {
    color: var(--color-accent);
    font-size: 18px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, var(--color-link), var(--color-accent));
    color: white !important;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(66, 165, 245, 0.4);
    border: none;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 165, 245, 0.6);
}

.cta-button i {
    font-size: 18px;
}

/* Мобильное меню (скрыто по умолчанию) */
.mobile-toggle,
.mobile-menu {
    display: none;
}

/* ===== ГЕРОЙ БЛОК ===== */
.hero-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--color-background);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0.5px;
}

.hero-content {
    padding-right: 40px;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.1;
}

/* ВНИМАНИЕ: выделяем слово "Английского" в герое как просили */
.english-word {
    color: var(--color-accent);
    font-weight: 900;
    position: relative;
    display: inline-block;
}

.english-word::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 30px;
}

.hero-features {
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-size: 1.1rem;
}

.hero-feature i {
    color: var(--color-accent);
    margin-right: 15px;
    font-size: 1.2rem;
}

.hero-image {
    position: relative;
    height: 550px;
    display: flex;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(66, 165, 245, 0.85) 0%, 
        rgba(66, 165, 245, 0.7) 15%, 
        rgba(255, 145, 77, 0.5) 50%, 
        rgba(240, 247, 255, 0.9) 100%);
    background-size: 300% 300%;
    animation: gradient-animation 12s ease infinite;
    z-index: 0;
}

.hero-photo-container {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 460px;
    height: 460px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), 
                0 0 0 10px rgba(255, 255, 255, 0.6), 
                0 0 0 10px rgba(255, 255, 255, 0.3);
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

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

.hero-certificate-container {
    position: absolute;
    top: 340px;
    left: 30px;
    bottom: 30px;
    z-index: 10;
    width: 90%;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 20px;
    animation: floating 12s ease-in-out infinite;
}

.hero-certificate-container img {
    width: 250px;
    height: auto;
    display: block;
    border-radius: 12px;
}

.hero-certificate-text {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    flex: 1;
}

/* Анимации для героя */
@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

@keyframes floating {
    0%, 100% { transform: translate(0, 0) rotate(0); }
    25% { transform: translate(-5px, 8px) rotate(-1deg); }
    50% { transform: translate(5px, -6px) rotate(1deg); }
    75% { transform: translate(3px, 4px) rotate(-0.5deg); }
}

/* ===== АДАПТИВНОСТЬ ГЕРОЯ ===== */
@media (max-width: 1199px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: left;
        padding-left: 5px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-feature {
        justify-content: left;
    }
    
    .hero-image {
        height: 450px;
    }
    
    .hero-photo-container {
        width: 300px;
        height: 300px;
    }
    
    .hero-certificate-container {
        width: 80%;
        max-width: 100px;
    }
}

@media (max-width: 767px) {
    .header-container {
        padding: 15px 20px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-icon {
        width: 42px;
        height: 42px;
    }
    
    .nav-menu,
    .header-buttons {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
        background: transparent;
        border: none;
        width: 40px;
        height: 40px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        z-index: 1001;
    }
    
    .mobile-toggle span {
        display: block;
        width: 28px;
        height: 3px;
        background: var(--color-link);
        border-radius: 2px;
        margin: 3px 0;
        transition: all 0.4s ease;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 8px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -8px);
    }
    
    .mobile-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 90%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 30px;
        transform: translateY(-150%);
        transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        overflow-y: auto;
    }
    
    .mobile-menu.active {
        transform: translateY(0);
    }
    
    .mobile-nav {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        gap: 10px;
    }
    
    .mobile-nav .nav-link {
        width: 90%;
        text-align: center;
        padding: 18px;
        font-size: 18px;
        border-radius: 15px;
        background: rgba(240, 247, 255, 0.5);
    }
    
    .mobile-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 500px;
        margin-top: 20px;
    }
    
    .mobile-buttons .phone-link,
    .mobile-buttons .cta-button {
        justify-content: center;
        width: 90%;
        padding: 18px;
        font-size: 18px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-image {
        height: 400px;
        border-radius: 20px;
    }
    
    .hero-photo-container {
        width: 200px;
        height: 200px;
        top: 30px;
    }
    
    .hero-certificate-container {
        left: 10px;
        bottom: 50px;
        width: 90%;
        max-width: 450px;
        gap: 15px;
    }
    
    .hero-certificate-text {
        font-size: 8px;
    }
    
    .hero-certificate-container img {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-image {
        height: 380px;
    }
    
    .hero-photo-container {
        width: 300px;
        height: 300px;
        top: 40px;
    }
    
    .hero-certificate-container {
        position: absolute;
        top: 220px;
        left: 10px;
        bottom: 30px;
        width: 90%;
        max-width: 300px;
        gap: 10px;
    }
    
    .hero-certificate-container img {
        width: 100%;
        max-width: 160px;
    }
    
    .hero-certificate-text {
        text-align: left;
        font-size: 9px;
        width: 100%;
    }
}

/* Адаптивные размеры шрифтов (десктоп ≥1024px) */
@media (min-width: 1024px) {
    :root {
        --font-size-h1: 2.375rem; /* 42px */
        --font-size-h2: 1.875rem; /* 32px */
        --font-size-h3: 1.625rem; /* 26px */
        --font-size-text: 1.125rem; /* 18px */
    }
}

/* ===== СТИЛИ ДЛЯ БЛОКОВ ДОВЕРИЯ (ДОБАВЛЕННЫЕ БЕЗ ИЗМЕНЕНИЙ) ===== */
/* КОММЕНТАРИЙ ДЛЯ РАЗРАБОТЧИКА: Здесь начинаются стили для блоков доверия */
.trust-page {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.trust-page .main-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.trust-page .header-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.trust-page .brand-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3.5rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-link));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    line-height: 1.1;
}

.trust-page .brand-subtitle {
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: var(--color-primary);
    max-width: 800px;
    margin: 0 auto 30px;
    font-weight: 500;
    line-height: 1.4;
}

.trust-page .highlight {
    background: linear-gradient(90deg, var(--color-accent), #FF6B6B);
    padding: 0 10px;
    border-radius: 6px;
    font-weight: 700;
    color: white;
}

/* Первый блок доверия (об эксперте) */
.trust-page .trust-block-expert {
    display: flex;
    gap: 40px;
    background: var(--color-white);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 500px;
    margin-bottom: 60px;
}

.trust-page .trust-block-expert:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.trust-page .trust-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-page .trust-media {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-page .trust-content {
    background: linear-gradient(135deg, var(--color-primary), #37474F);
    color: white;
}

.trust-page .trust-media {
    background: linear-gradient(135deg, var(--color-link), #2196F3);
}

.trust-page .trust-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.trust-page .trust-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 500;
    opacity: 0.9;
}

.trust-page .expert-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.trust-page .expert-features {
    list-style: none;
    margin-bottom: 35px;
}

.trust-page .expert-features li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.trust-page .expert-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 1.3rem;
}

/* Блок экосистемы */
.trust-page .ecosystem-section {
    margin-bottom: 60px;
}

.trust-page .ecosystem-header {
    text-align: center;
    margin-bottom: 50px;
}

.trust-page .ecosystem-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-accent), #FFB74D);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(255, 145, 77, 0.3);
}

.trust-page .ecosystem-badge i {
    font-size: 1.2rem;
}

.trust-page .ecosystem-header-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.trust-page .ecosystem-header-subtitle {
    font-size: 1.4rem;
    color: var(--color-primary);
    max-width: 900px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.5;
}

/* Три видео-контейнера */
.trust-page .video-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.trust-page .video-card {
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.trust-page .video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.trust-page .video-card-header {
    padding: 30px 30px 0;
    text-align: center;
}

.trust-page .video-card-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-link), #64B5F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(66, 165, 245, 0.3);
}

.trust-page .video-card-icon-wrapper i {
    color: white;
    font-size: 32px;
}

.trust-page .video-card-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.trust-page .video-card-desc {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.5;
}

.trust-page .video-container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 0 25px 25px;
}

.trust-page .video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.trust-page .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.trust-page .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Особенности экосистемы */
.trust-page .ecosystem-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.trust-page .ecosystem-item {
    background: var(--color-white);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-left: 5px solid var(--color-link);
}

.trust-page .ecosystem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    border-left-color: #FF6B6B;
}

.trust-page .ecosystem-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B6B, #FF8A80);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.trust-page .ecosystem-icon-wrapper i {
    color: white;
    font-size: 24px;
}

.trust-page .ecosystem-item-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.trust-page .ecosystem-item-desc {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.5;
}

/* Футер */
.trust-page .footer-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--color-primary), #37474F);
    border-radius: 24px;
    color: white;
    margin-top: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.trust-page .footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,');
    background-size: cover;
}

.trust-page .footer-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.trust-page .footer-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Кнопка CTA в блоках доверия */
.trust-page .trust-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, var(--color-link), #FF6B6B);
    color: white !important;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(66, 165, 245, 0.4);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.trust-page .trust-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(66, 165, 245, 0.6);
    background: linear-gradient(90deg, #FF6B6B, var(--color-link));
}

.trust-page .trust-cta-button i {
    font-size: 1.3rem;
}

/* Адаптивность для блоков доверия */
@media (max-width: 1200px) {
    .trust-page .trust-block-expert {
        flex-direction: column;
        min-height: auto;
    }
    .trust-page .trust-media {
        min-height: 400px;
    }
    
    .trust-page .video-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-page .video-card:nth-child(3) {
        grid-column: span 2;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .trust-page .brand-title {
        font-size: 2.8rem;
    }
    
    .trust-page .trust-title {
        font-size: 2.2rem;
    }
    
    .trust-page .ecosystem-header-title {
        font-size: 2.4rem;
    }
    
    .trust-page .ecosystem-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .trust-page .brand-title {
        font-size: 2.3rem;
    }
    
    .trust-page .brand-subtitle {
        font-size: 1.3rem;
    }
    
    .trust-page .trust-content {
        padding: 35px 25px;
    }
    
    .trust-page .trust-title {
        font-size: 1.9rem;
    }
    
    .trust-page .trust-subtitle {
        font-size: 1.1rem;
    }
    
    .trust-page .expert-features li {
        font-size: 1rem;
    }
    
    .trust-page .ecosystem-header-title {
        font-size: 2rem;
    }
    
    .trust-page .ecosystem-header-subtitle {
        font-size: 1.2rem;
    }
    
    .trust-page .video-cards-container {
        grid-template-columns: 1fr;
    }
    
    .trust-page .video-card:nth-child(3) {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .trust-page .footer-title {
        font-size: 2rem;
    }
    
    .trust-page .footer-subtitle {
        font-size: 1.2rem;
    }
    
    .trust-page .trust-cta-button {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .trust-page .brand-title {
        font-size: 1.9rem;
    }
    
    .trust-page .trust-title {
        font-size: 1.7rem;
    }
    
    .trust-page .ecosystem-header-title {
        font-size: 1.8rem;
    }
    
    .trust-page .video-card-header {
        padding: 20px 20px 0;
    }
    
    .trust-page .video-container {
        margin: 0 15px 20px;
    }
    
    .trust-page .trust-cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* ===== СТИЛИ ДЛЯ БЛОКОВ ДОВЕРИЯ (БЕЗ ИЗМЕНЕНИЙ) ===== */
/* Уже есть класс .trust-page .video-wrapper - НЕ ТРОГАЕМ! */

/* ===== СТИЛИ ДЛЯ НОВОГО БЛОКА ADVANTAGES ===== */
/* КОММЕНТАРИЙ ДЛЯ РАЗРАБОТЧИКА: Используй ПРЕФИКСЫ чтобы не было конфликтов! */
.advantages-section {
    padding: 100px 0;
    background: var(--color-background);
    position: relative;
    overflow: hidden;
}

.advantages-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.advantages-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.5rem;
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.advantages-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    text-align: center;
    color: var(--color-text);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: var(--color-white);
    border-radius: var(--border-radius-card);
    box-shadow: var(--box-shadow-card);
    padding: 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.advantage-card:hover {
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-10px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--color-link), var(--color-accent));
    box-shadow: 0 4px 10px rgba(66, 165, 245, 0.3);
    margin-bottom: 20px;
}

.advantage-icon i {
    color: white;
    font-size: 1.5rem;
}

/* ВАЖНО: Используем ДРУГОЙ класс для видео в этом блоке */
.advantages-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Фиксированное соотношение 16:9 */
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
    background: #000; /* Чёрный фон на случай если видео не загрузится */
}

/* Фиксируем размер iframe */
.advantages-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--border-radius);
}

.advantage-content h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.advantage-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
}

/* Адаптивность для нового блока */
@media (max-width: 1199px) {
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 767px) {
    .advantages-section {
        padding: 80px 0;
    }
    
    .advantages-title {
        font-size: 2rem;
    }
    
    .advantages-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .advantage-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .advantages-title {
        font-size: 1.8rem;
    }
}

 /* ===== БЛОК ПРОГРАММ ОБУЧЕНИЯ ===== */
        .programs-section {
            padding: 60px 0;
            background: var(--color-background);
            position: relative;
            overflow: hidden;
        }
        
        .programs-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title {
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: 2.2rem;
            text-align: center;
            color: var(--color-primary);
            margin-bottom: 40px;
        }
        
        .programs-scroll-wrapper {
            position: relative;
            margin: 0 -10px;
        }
        
        .programs-scroll {
            display: flex;
            overflow-x: auto;
            scrollbar-width: thin;
            -ms-overflow-style: none;
            padding: 20px 10px;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
        }
        
        .programs-scroll::-webkit-scrollbar {
            height: 6px;
        }
        
        .programs-scroll::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 3px;
        }
        
        .program-card {
            flex: 0 0 auto;
            width: 300px;
            background: var(--color-white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            margin: 0 10px;
            padding: 20px;
            scroll-snap-align: start;
            transition: var(--transition);
        }
        
        .program-card:hover {
            box-shadow: var(--box-shadow-hover);
            transform: translateY(-5px);
        }
        
        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .card-title {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.4rem;
            color: var(--color-primary);
            margin: 0;
            line-height: 1.2;
        }
        
        .card-icon {
            font-size: 1.8rem;
            background: rgba(66, 165, 245, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .card-details {
            margin-bottom: 20px;
        }
        
        .duration {
            font-family: var(--font-body);
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--color-accent);
            margin-bottom: 15px;
        }
        
        .features-list {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
        }
        
        .features-list li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 8px;
            font-family: var(--font-body);
            font-size: 0.85rem;
            line-height: 1.4;
            color: var(--color-text);
        }
        
        .features-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--color-accent);
            font-weight: bold;
        }
        
        .card-pricing {
            background: rgba(66, 165, 245, 0.05);
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 20px;
        }
        
        .price-tag {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--color-primary);
            margin-bottom: 5px;
        }
        
        .price-tag span {
            font-size: 0.8rem;
            font-weight: 500;
            color: #7f8c8d;
        }
        
        .discount {
            font-family: var(--font-body);
            font-weight: 400;
            font-size: 0.8rem;
            color: var(--color-text);
        }
        
        .discount strong {
            font-weight: 700;
            color: #27ae60;
        }
        
        .discount-badge {
            display: inline-block;
            background: #27ae60;
            color: white;
            padding: 2px 6px;
            border-radius: 3px;
            font-size: 0.7rem;
            margin-left: 5px;
        }
        
        .card-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        
        .btn {
            display: block;
            text-align: center;
            padding: 10px;
            border-radius: var(--border-radius-btn);
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }
        
        .btn-details {
            background: white;
            color: var(--color-primary);
            border: 2px solid var(--color-link);
        }
        
        .btn-details:hover {
            background: var(--color-link);
            color: white;
        }
        
        .btn-signup {
            background: linear-gradient(90deg, var(--color-link), var(--color-accent));
            color: white;
            border: none;
            text-decoration: none;
        }
        
        .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        /* Специальные стили для разных типов программ */
        .program-card.premium {
            border-top: 4px solid #2C3E50;
        }
        
        .program-card.oge {
            border-top: 4px solid #FF914D;
        }
        
        .program-card.ege {
            border-top: 4px solid #27ae60;
        }
        
        .program-card.premium .card-icon {
            background: rgba(44, 62, 80, 0.1);
        }
        
        .program-card.oge .card-icon {
            background: rgba(255, 145, 77, 0.1);
        }
        
        .program-card.ege .card-icon {
            background: rgba(39, 174, 96, 0.1);
        }
        
        /* ===== МОДАЛЬНЫЕ ОКНА ===== */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            z-index: 1000;
            overflow-y: auto;
            padding: 20px;
            box-sizing: border-box;
        }
        
        .modal-content {
            background-color: var(--color-white);
            margin: 40px auto;
            border-radius: var(--border-radius);
            max-width: 800px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: modalFadeIn 0.3s;
        }
        
        @keyframes modalFadeIn {
            from {opacity: 0; transform: translateY(-50px);}
            to {opacity: 1; transform: translateY(0);}
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            font-weight: bold;
            color: #aaa;
            cursor: pointer;
            z-index: 10;
        }
        
        .close-modal:hover {
            color: var(--color-primary);
        }
        
        .modal-header {
            padding: 20px 25px 0;
        }
        
        .modal-title {
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--color-primary);
            margin: 0 0 15px 0;
        }
        
        .modal-body {
            padding: 0 25px 25px;
            max-height: 60vh;
            overflow-y: auto;
        }
        
        .modal-body h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--color-primary);
            margin: 20px 0 10px;
        }
        
        .modal-body p, .modal-body li {
            font-family: var(--font-body);
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--color-text);
        }
        
        .modal-body ul {
            padding-left: 20px;
            margin: 10px 0;
        }
        
        .modal-body li {
            margin-bottom: 8px;
        }
        
        /* ===== АДАПТИВНОСТЬ ===== */
        @media (max-width: 1199px) {
            .program-card {
                width: 280px;
            }
        }
        
        @media (max-width: 767px) {
            .programs-section {
                padding: 40px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            
            .programs-scroll-wrapper {
                margin: 0 -5px;
            }
            
            .programs-scroll {
                padding: 15px 5px;
            }
            
            .program-card {
                width: 85%;
                max-width: 320px;
                margin: 0 5px;
                padding: 15px;
            }
            
            .card-title {
                font-size: 1.2rem;
            }
            
            .card-icon {
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
            }
            
            .modal-content {
                margin: 20px auto;
                width: 95%;
            }
            
            .modal-header {
                padding: 15px 20px 0;
            }
            
            .modal-title {
                font-size: 1.5rem;
            }
            
            .modal-body {
                padding: 0 20px 20px;
                max-height: 70vh;
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 1.5rem;
            }
            
            .program-card {
                width: 90%;
            }
            
            .card-buttons {
                grid-template-columns: 1fr;
            }
            
            .modal-body {
                font-size: 0.9rem;
            }
        }
    /* Специальные стили для разных типов программ (дополнение) */
.program-card.five-stars {
    border-top: 4px solid #FF914D; /* Оранжевый как акцент */
}

.program-card.vpr-intens {
    border-top: 4px solid #27ae60; /* Зеленый */
}

.program-card.vpr-max {
    border-top: 4px solid #2C3E50; /* Темно-синий */
}

.program-card.english-pro {
    border-top: 4px solid #42A5F5; /* Синий */
}

.program-card.five-stars .card-icon {
    background: rgba(255, 145, 77, 0.1);
}

.program-card.vpr-intens .card-icon {
    background: rgba(39, 174, 96, 0.1);
}

.program-card.vpr-max .card-icon {
    background: rgba(44, 62, 80, 0.1);
}

.program-card.english-pro .card-icon {
    background: rgba(66, 165, 245, 0.1);
}

/* Оставляем старые стили для ОГЭ и ЕГЭ */
.program-card.oge {
    border-top: 4px solid #FF914D;
}

.program-card.ege {
    border-top: 4px solid #27ae60;
}

.program-card.oge .card-icon {
    background: rgba(255, 145, 77, 0.1);
}

.program-card.ege .card-icon {
    background: rgba(39, 174, 96, 0.1);
}

/* Стили для подвала */
        .footer {
            background: linear-gradient(135deg, var(--color-primary) 0%, #1a2530 100%);
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .logo-text {
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: 1.8rem;
            color: white;
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-link), var(--color-accent));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
        }

        .logo-icon i {
            color: white;
            font-size: 1.3rem;
        }

        .footer-info {
            font-size: 0.85rem;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .footer-heading {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--color-accent);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            text-decoration: underline;
            text-underline-offset: 2px;
            text-decoration-color: rgba(255, 255, 255, 0.3);
        }

        .footer-links a:hover {
            color: white;
            text-decoration-color: var(--color-accent);
        }

        .footer-links a i {
            margin-right: 10px;
            font-size: 0.8rem;
            color: var(--color-accent);
        }

        .footer-contact {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .footer-contact i {
            margin-right: 10px;
            color: var(--color-accent);
            width: 20px;
            text-align: center;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .social-link.vk {
            background-color: #4C75A3;
        }
        
        .social-link.telegram {
            background-color: #2AABEE;
        }
        
        .social-link.email {
            background-color: #EA4335;
        }

        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .footer-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-btn {
            display: inline-block;
            padding: 12px 20px;
            background: linear-gradient(90deg, var(--color-link), var(--color-accent));
            color: white;
            border-radius: var(--border-radius-btn);
            text-decoration: none;
            font-family: var(--font-heading);
            font-weight: 700;
            text-align: center;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .footer-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .footer-btn.outline {
            background: transparent;
            border: 2px solid var(--color-accent);
            color: var(--color-accent);
        }

        .footer-btn.outline:hover {
            background: var(--color-accent);
            color: white;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            padding: 20px 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Адаптивность */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .footer {
                padding: 40px 0 20px;
            }
            
            .logo-text {
                font-size: 1.5rem;
            }
            
            .footer-heading {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .footer-buttons {
                flex-direction: column;
            }
            
            .social-links {
                justify-content: center;
            }
        }
    /* Блок с карточкой ценностей */
    .value-proposition-section {
        padding: 80px 0;
        background: linear-gradient(135deg, rgba(255, 249, 240, 0.9) 0%, rgba(240, 247, 255, 0.9) 100%);
        position: relative;
        overflow: hidden;
    }

    .value-proposition-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Горизонтальная карточка */
    .value-card {
        display: flex;
        background: var(--color-white);
        border-radius: 24px;
        box-shadow: 0 20px 50px rgba(44, 62, 80, 0.15);
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        min-height: 320px;
        position: relative;
        border: 1px solid rgba(66, 165, 245, 0.1);
    }

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 70px rgba(44, 62, 80, 0.25);
    }

    .value-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(180deg, var(--color-link), var(--color-accent));
    }

    /* Левая часть: основной текст */
    .value-main-content {
        flex: 3;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .value-title {
        font-family: var(--font-heading);
        font-weight: 900;
        font-size: 1.8rem;
        color: var(--color-primary);
        margin-bottom: 20px;
        line-height: 1.3;
        position: relative;
        padding-left: 15px;
    }

    .value-title::before {
        content: '✨';
        position: absolute;
        left: -10px;
        top: 0;
    }

    .value-description {
        font-family: var(--font-body);
        font-size: 1.1rem;
        line-height: 1.6;
        color: var(--color-text);
        margin-bottom: 25px;
    }

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

    .value-highlight {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .value-highlight-icon {
        width: 24px;
        height: 24px;
        background: linear-gradient(135deg, var(--color-link), var(--color-accent));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 3px;
    }

    .value-highlight-icon i {
        color: white;
        font-size: 0.8rem;
    }

    .value-highlight-text {
        font-family: var(--font-body);
        font-size: 0.95rem;
        line-height: 1.4;
        color: var(--color-text);
    }

    /* Правая часть: фичи и CTA */
    .value-features-sidebar {
        flex: 2;
        background: linear-gradient(135deg, rgba(44, 62, 80, 0.03) 0%, rgba(66, 165, 245, 0.03) 100%);
        padding: 40px 30px;
        border-left: 1px solid rgba(66, 165, 245, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .value-feature-item {
        margin-bottom: 25px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 12px;
        border-left: 4px solid var(--color-accent);
        transition: all 0.3s ease;
    }

    .value-feature-item:hover {
        background: white;
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(255, 145, 77, 0.1);
    }

    .value-feature-title {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--color-primary);
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .value-feature-title i {
        color: var(--color-accent);
    }

    .value-feature-desc {
        font-family: var(--font-body);
        font-size: 0.9rem;
        line-height: 1.4;
        color: var(--color-text);
    }

    /* Кнопка в карточке */
    .value-cta-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: linear-gradient(90deg, var(--color-link), var(--color-accent));
        color: white;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.1rem;
        padding: 16px 32px;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(66, 165, 245, 0.4);
        border: none;
        cursor: pointer;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    .value-cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(66, 165, 245, 0.6);
        background: linear-gradient(90deg, var(--color-accent), var(--color-link));
    }

    .value-cta-button i {
        font-size: 1.2rem;
    }

    /* Бейдж с финансовыми преимуществами */
    .value-financial-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(90deg, #27ae60, #2ecc71);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-weight: 700;
        font-size: 0.85rem;
        margin-top: 15px;
    }

    /* Адаптивность */
    @media (max-width: 992px) {
        .value-card {
            flex-direction: column;
            min-height: auto;
        }
        
        .value-features-sidebar {
            border-left: none;
            border-top: 1px solid rgba(66, 165, 245, 0.1);
        }
        
        .value-highlights {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .value-proposition-section {
            padding: 60px 0;
        }
        
        .value-main-content,
        .value-features-sidebar {
            padding: 30px 20px;
        }
        
        .value-title {
            font-size: 1.6rem;
        }
    }

    @media (max-width: 480px) {
        .value-title {
            font-size: 1.4rem;
        }
        
        .value-cta-button {
            padding: 14px 24px;
            font-size: 1rem;
        }
    }     

   

    /* Альтернативный вариант с полноценным градиентным фоном */
    /* Раскомментируйте этот вариант, если хотите более яркое выделение */
    
    .english-word {
        display: inline-block;
        background: linear-gradient(90deg, var(--color-link), var(--color-accent));
        color: white !important;
        font-weight: 900;
        font-size: 1.15em;
        padding: 8px 15px;
        margin: 0 5px;
        border-radius: 15px;
        box-shadow: 0 6px 20px rgba(66, 165, 245, 0.3),
                    0 2px 0 rgba(255, 255, 255, 0.2);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        letter-spacing: -0.3px;
        transform: perspective(100px) rotateX(2deg);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
    }

    .english-word::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(255, 255, 255, 0.4), 
            transparent);
        transition: 0.5s;
    }

    .english-word:hover {
        transform: perspective(100px) rotateX(0deg) translateY(-3px);
        box-shadow: 0 10px 30px rgba(66, 165, 245, 0.4),
                    0 4px 0 rgba(255, 255, 255, 0.2);
    }

    .english-word:hover::before {
        left: 100%;
    }
    

    /* Для мобильных устройств немного уменьшаем эффект */
    @media (max-width: 768px) {
        .english-word {
            font-size: 1.05em;
            padding: 0 6px;
            margin: 0 2px;
        }
        
        .english-word::before {
            padding: 6px 8px;
            border-radius: 8px;
        }
    }
