:root {
    --gradient-primary: linear-gradient(135deg, #5b3af3 0%, #3e54f1 100%);
    --gradient-light: linear-gradient(135deg, #F8F9FF 0%, #E8ECFF 100%);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
}

/* Стили для подменю индустрий */
.industries-submenu {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 90px; /* Высота основного меню */
    z-index: 900;
    transition: transform 0.3s ease;
}

.industries-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
}

.industries-nav li {
    flex: 0 0 auto;
}

.industries-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.industries-nav a i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #666;
    transition: color 0.3s ease;
}

.industries-nav a span {
    font-size: 0.9rem;
}

.industries-nav a:hover,
.industries-nav a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.industries-nav a:hover i,
.industries-nav a.active i {
    color: var(--primary-color);
}

.industries-container {
    width: 100%;
    max-width: 100%;
}

/* Медиа-запросы */
@media (max-width: 768px) {
    .industries-nav {
        padding: 0.5rem;
        justify-content: normal;
    }
    
    .industries-nav a {
        padding: 0.75rem 1rem;
    }
}
 
 /* Hero Section */
.education-hero.hero {
    background: linear-gradient(135deg, #F8F9FF 0%, #E8ECFF 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.education-hero .hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.education-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(91, 58, 243, 0.1);
    border-radius: 100px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 24px;
}

.education-hero .hero-badge i {
    font-size: 1.1rem;
}

.education-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #2D1F4C 0%, #4B367C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.education-hero .hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
}

.education-hero .hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.education-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.education-hero .stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.education-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.education-hero .stat-label {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
}

.education-hero .hero-visual {
    position: relative;
}

.education-hero .education-platform {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(91, 58, 243, 0.1);
    padding: 24px;
    position: relative;
    z-index: 1;
}

.education-hero .platform-screen {
    background: #F8F9FF;
    border-radius: 16px;
    overflow: hidden;
}

.education-hero .screen-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.education-hero .screen-header i {
    color: var(--primary-color);
}

.education-hero .screen-content {
    padding: 24px;
}

.education-hero .content-line {
    height: 12px;
    background: rgba(91, 58, 243, 0.1);
    border-radius: 6px;
    margin-bottom: 16px;
}

.education-hero .content-line.short {
    width: 60%;
}

.education-hero .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.education-hero .float-item {
    position: absolute;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(91, 58, 243, 0.1);
    animation: float 3s ease-in-out infinite;
}

.education-hero .float-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.education-hero .float-item.document {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.education-hero .float-item.accessibility {
    top: 60%;
    right: -5%;
    animation-delay: 0.5s;
}

.education-hero .float-item.education {
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

.education-hero .float-item.users {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .education-hero .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 60px;
    }

    .education-hero .hero-buttons {
        justify-content: center;
    }

    .education-hero .hero-stats {
        justify-content: center;
    }

    .education-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .education-hero {
        padding: 100px 0 60px;
    }

    .education-hero h1 {
        font-size: 2.2rem;
    }

    .education-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .education-hero .hero-buttons {
        flex-direction: column;
    }

    .education-hero .hero-stats {
        grid-template-columns: 1fr;
    }

    .education-hero .stat-number {
        font-size: 2rem;
    }
}

/* Intro Section */
.industry-intro {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.intro-content {
    max-width: 1100px;
    margin: 0 auto 80px;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 100px;
    margin-bottom: 24px;
    color: #FF6B6B;
    font-weight: 500;
    font-size: 0.9rem;
}

.intro-badge i {
    font-size: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 48px;
    text-align: center;
    background: linear-gradient(135deg, #2D1F4C 0%, #4B367C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 32px;
}

.challenges-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.challenge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #666;
}

.challenge-item i {
    color: #FF6B6B;
    font-size: 1.2rem;
}

.intro-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.stat-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.stat-icon i {
    font-size: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
}

.stat-suffix {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-left: 4px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .industry-intro {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 24px;
    }
}

/* Добавьте эти стили к существующим */

/* Анимации появления элементов */
.pre-animation {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Анимация элементов списка проблем */
.challenge-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease-out;
}

.challenge-item-animated {
    opacity: 1;
    transform: translateX(0);
}

/* Анимация статистических карточек */
.stat-card {
    transition: all 0.4s ease-out;
}

.stat-card-animated {
    animation: cardPop 0.6s ease-out forwards;
}

@keyframes cardPop {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(91, 58, 243, 0.2), transparent);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header .section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.solution-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(91, 58, 243, 0.05) 0%, rgba(62, 84, 241, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.solution-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.solution-icon i {
    font-size: 28px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
    background: var(--gradient-primary);
}

.solution-card:hover .solution-icon i {
    background: white;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solution-card h3 {
    font-size: 1.5rem;
    color: #2D1F4C;
    margin-bottom: 16px;
    position: relative;
}

.solution-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
}

/* Декоративные элементы */
.solutions-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(91, 58, 243, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Анимации */
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.solution-icon {
    animation: iconFloat 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 60px 0;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .solution-card {
        padding: 32px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }
}

/* Cases Section */
.cases-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.case-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.case-content {
    padding: 40px;
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.case-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.case-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.case-logo span {
    font-weight: 600;
    color: #2D1F4C;
}

.case-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--gradient-light);
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.case-result {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--gradient-light);
    border-radius: var(--radius-md);
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.result-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.4;
}

.details-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.details-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
}

.details-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

/* Responsive */
@media (max-width: 992px) {
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .cases-section {
        padding: 60px 0;
    }

    .case-content {
        padding: 24px;
    }

    .result-number {
        font-size: 2.5rem;
    }

    .case-result {
        padding: 20px;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(91, 58, 243, 0.05) 0%, 
        rgba(62, 84, 241, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-light);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.benefit-icon i {
    font-size: 32px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--gradient-primary);
}

.benefit-card:hover .benefit-icon i {
    background: white;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefit-content h3 {
    font-size: 1.5rem;
    color: #2D1F4C;
    margin-bottom: 16px;
    line-height: 1.3;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-size: 0.95rem;
}

.benefit-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Декоративные элементы */
.benefits-section::before,
.benefits-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
}

.benefits-section::before {
    top: -150px;
    left: -150px;
    background: radial-gradient(circle, 
        rgba(91, 58, 243, 0.1) 0%, 
        transparent 70%);
}

.benefits-section::after {
    bottom: -150px;
    right: -150px;
    background: radial-gradient(circle, 
        rgba(62, 84, 241, 0.1) 0%, 
        transparent 70%);
}

/* Responsive */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .benefit-card {
        padding: 32px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
    }

    .benefit-icon i {
        font-size: 28px;
    }

    .benefit-content h3 {
        font-size: 1.3rem;
    }
}

/* Learning Experience Section */
.learning-experience-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.experience-wrapper {
    margin-top: 60px;
}

.experience-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border: none;
    background: var(--gradient-light);
    border-radius: var(--radius-md);
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn i {
    font-size: 1.2rem;
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-content.active {
    display: block;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-visual {
    position: relative;
}

.document-preview {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    padding: 24px;
}

.doc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 24px;
}

.doc-header i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.doc-content .content-line {
    height: 12px;
    background: #f0f0f0;
    border-radius: 6px;
    margin-bottom: 12px;
}

.doc-content .content-line.short {
    width: 60%;
}

.content-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-item i {
    font-size: 24px;
    color: var(--primary-color);
    padding: 12px;
    background: var(--gradient-light);
    border-radius: var(--radius-md);
}

.feature-text h4 {
    font-size: 1.2rem;
    color: #2D1F4C;
    margin-bottom: 8px;
}

.feature-text p {
    color: #666;
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .learning-experience-section {
        padding: 60px 0;
    }

    .tab-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .feature-item i {
        font-size: 20px;
        padding: 10px;
    }

    .feature-text h4 {
        font-size: 1.1rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8F9FF 0%, #E8ECFF 100%);
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 600px;
}

.cta-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #2D1F4C 0%, #4B367C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #555;
}

.cta-feature span {
    color: #333;
    font-size: 1rem;
}

.cta-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 16px;
}

.cta-visual {
    position: relative;
    height: 100%;
}

.visual-element {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, 
        rgba(91, 58, 243, 0.1) 0%, 
        rgba(62, 84, 241, 0.1) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icons i {
    position: absolute;
    font-size: 2rem;
    color: var(--primary-color);
    animation: floatIcon 6s infinite;
}

.floating-icons i:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-icons i:nth-child(2) {
    top: 30%;
    right: 25%;
    animation-delay: 1.5s;
}

.floating-icons i:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 3s;
}

.floating-icons i:nth-child(4) {
    bottom: 25%;
    right: 20%;
    animation-delay: 4.5s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -10px) rotate(5deg);
    }
    50% {
        transform: translate(0, -20px) rotate(0deg);
    }
    75% {
        transform: translate(-10px, -10px) rotate(-5deg);
    }
}

/* Декоративные элементы */
.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
}

.cta-section::before {
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, 
        rgba(91, 58, 243, 0.1) 0%, 
        transparent 70%);
}

.cta-section::after {
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, 
        rgba(62, 84, 241, 0.1) 0%, 
        transparent 70%);
}

/* Responsive */
@media (max-width: 992px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-buttons {
        justify-content: center;
    }

    .visual-element {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 95%;
    }
}

/* Стили для документов */
.doc-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.doc-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.doc-image {
    background: #f5f5f5;
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #666;
}

.image-placeholder i {
    font-size: 2rem;
    color: #999;
}

.alt-text {
    font-size: 0.9rem;
    padding: 4px 12px;
    background: rgba(91, 58, 243, 0.1);
    border-radius: 100px;
    color: var(--primary-color);
}

.doc-controls {
    display: flex;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

/* Стили для видео */
.video-preview {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.video-player {
    position: relative;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: #2D1F4C;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder i {
    font-size: 3rem;
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.video-placeholder:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.video-controls {
    padding: 16px;
    background: white;
}

.subtitle-preview {
    background: rgba(0,0,0,0.05);
    padding: 12px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.subtitle-preview span {
    font-size: 0.9rem;
    color: #666;
}

.control-bar {
    display: flex;
    gap: 12px;
}

/* Стили для платформы */
.platform-preview {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.platform-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--gradient-primary);
    color: white;
}

.nav-menu, .accessibility-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-menu:hover, .accessibility-menu:hover {
    background: rgba(255,255,255,0.2);
}

.accessibility-options {
    display: flex;
    gap: 12px;
}

.option {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.platform-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 300px;
}

.sidebar {
    background: #f5f5f5;
    padding: 16px;
}

.nav-item {
    padding: 12px;
    border-radius: var(--radius-md);
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-item.active {
    background: rgba(91, 58, 243, 0.1);
    color: var(--primary-color);
}

.nav-item:hover:not(.active) {
    background: rgba(0,0,0,0.05);
}

.main-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.content-block {
    height: 24px;
    background: #f5f5f5;
    border-radius: var(--radius-md);
}

.content-block.short {
    width: 60%;
}

/* Общие стили для контролов */
.control-btn {
    padding: 8px;
    border: none;
    background: var(--gradient-light);
    border-radius: var(--radius-sm);
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: var(--gradient-primary);
    color: white;
}

/* Анимации для табов */
.tab-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.tab-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .platform-content {
        grid-template-columns: 1fr;
    }

    .accessibility-options {
        display: none;
    }

    .video-controls {
        padding: 12px;
    }

    .subtitle-preview {
        padding: 8px;
        font-size: 0.8rem;
    }
}