: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 для страницы Finance */
.finance-hero.hero {
    background: linear-gradient(135deg, #F8F9FF 0%, #E8ECFF 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.finance-hero .hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.finance-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;
}

.finance-hero .hero-badge i {
    font-size: 1.1rem;
}

.finance-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;
}

/* Специфичные стили для финансовой платформы */
.finance-platform {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 24px;
    position: relative;
    z-index: 2;
}

.platform-interface {
    background: var(--gradient-light);
    border-radius: var(--radius-md);
    padding: 24px;
}

.balance-widget {
    background: white;
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.balance-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.stat-number-wrapper {
    justify-content: center;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.balance-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: white;
    border: none;
    border-radius: var(--radius-md);
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--gradient-primary);
    color: white;
}

.action-btn i {
    font-size: 1.5rem;
}

.action-btn span {
    font-size: 0.9rem;
}

/* Адаптивность */
@media (max-width: 992px) {
    .finance-hero .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 60px;
    }

    .finance-hero .hero-buttons {
        justify-content: center;
    }

    .finance-hero .hero-stats {
        justify-content: center;
    }

    .finance-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .finance-hero {
        padding: 100px 0 60px;
    }

    .finance-hero h1 {
        font-size: 2.2rem;
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }
}
/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.float-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    animation: float 6s infinite ease-in-out;
}

.float-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.float-item.security {
    top: 40%;
    right: 40%;
    animation-delay: 0s;
}

.float-item.accessibility {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.float-item.banking {
    bottom: 20%;
    right: 20%;
    animation-delay: 3s;
}

.float-item.users {
    top: 30%;
    right: 25%;
    animation-delay: 4.5s;
}

/* Screen Header */
.screen-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.screen-header i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.screen-header span {
    font-weight: 600;
    color: #333;
}

/* Platform Screen */
.platform-screen {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Дополнительные медиа-запросы */
@media (max-width: 992px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-suffix {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Секция важности */
.finance-importance {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.finance-importance .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.finance-importance h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2D1F4C 0%, #4B367C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.finance-importance .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.importance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.importance-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.importance-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.importance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(91, 58, 243, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.importance-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #2D1F4C;
}

.importance-card p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list i {
    color: var(--primary-color);
    font-size: 14px;
}

.feature-list span {
    color: #444;
    font-size: 0.95rem;
}

/* Медиа-запросы */
@media (max-width: 992px) {
    .importance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .finance-importance h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .importance-grid {
        grid-template-columns: 1fr;
    }

    .finance-importance {
        padding: 60px 0;
    }

    .finance-importance h2 {
        font-size: 2rem;
    }

    .importance-card {
        padding: 30px;
    }
}

/* Демонстрация проблем доступности */
.accessibility-demo {
    margin-top: 80px;
    background: linear-gradient(135deg, #F8F9FF 0%, #E8ECFF 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.demo-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    justify-content: center;
}

.demo-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.demo-tab.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.tab-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Стилизация телефона */
.demo-phone {
    background: white;
    border-radius: 40px;
    padding: 16px;
    box-shadow: var(--shadow-md);
    max-width: 360px;
    margin: 0 auto;
}

.phone-header {
    height: 24px;
    position: relative;
    background: #000;
    border-radius: 20px 20px 0 0;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background: #000;
    border-radius: 0 0 16px 16px;
}

.phone-content {
    background: #f8f9fa;
    min-height: 600px;
    border-radius: 32px;
    padding: 20px;
}

.phone-footer {
    height: 24px;
    background: #000;
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-indicator {
    width: 120px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

/* Стили банковского приложения */
.bank-app {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.balance-card {
    background: var(--gradient-primary);
    color: white;
    padding: 24px;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.card-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.card-amount {
    font-size: 2rem;
    font-weight: 700;
    margin: 8px 0;
}

.card-number {
    font-size: 0.9rem;
    opacity: 0.8;
}

.issue-points {
    margin-top: 16px;
    padding-left: 20px;
}

.issue-points li {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.issue-points li::marker {
    color: var(--primary-color);
}

/* Объяснения */
.explanation-content {
    display: none;
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.explanation-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.explanation-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.explanation-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.explanation-content h4 {
    color: #333;
    margin: 0;
    font-size: 1.2rem;
}

.explanation-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.issue-points {
    margin: 0;
    padding-left: 20px;
}

.issue-points li {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.issue-points li::marker {
    color: var(--primary-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность */
@media (max-width: 1200px) {
    .demo-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .accessibility-demo {
        padding: 20px;
    }

    .demo-tabs {
        flex-wrap: wrap;
    }

    .demo-tab {
        flex: 1 1 calc(50% - 8px);
        min-width: 140px;
    }
}

/* Стили для транзакций */
.recent-transactions {
    background: white;
    border-radius: var(--radius-md);
    padding: 20px;
}

.recent-transactions h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 16px;
}

.transaction-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.transaction-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.transaction-icon.salary {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.transaction-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.transaction-name {
    font-weight: 500;
    color: #333;
}

.transaction-date {
    font-size: 0.85rem;
    color: #666;
}

.transaction-amount {
    font-weight: 600;
    font-size: 1.1rem;
}

.transaction-amount.positive {
    color: #28a745;
}

.transaction-amount.negative {
    color: #dc3545;
}

/* Кнопка уведомлений */
.notifications-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.notifications-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Дополнительные стили для демо */
.demo-content[data-issue="contrast"] {
    .transaction-name,
    .transaction-amount,
    .transaction-date {
        color: rgba(0, 0, 0, 0.4);
    }
    
    .transaction-icon {
        opacity: 0.4;
    }
}

.demo-content[data-issue="keyboard"] {
    .transaction-item:focus-within {
        outline: none;
    }
}

.demo-content[data-issue="screen-reader"] {
    .transaction-icon i {
        opacity: 0.5;
    }
}

/* Эффекты доступности */
.demo-phone.low-contrast {
    filter: contrast(0.2) brightness(1);
}

.demo-phone.no-keyboard-focus *:focus {
    outline: none !important;
    box-shadow: none !important;
}

.demo-phone.screen-reader-issues {
    position: relative;
}

.demo-phone.screen-reader-issues::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    pointer-events: none;
}

/* Улучшенная анимация для табов */
.demo-tab {
    position: relative;
    overflow: hidden;
}

.demo-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.demo-tab.active::after {
    transform: scaleX(1);
}

/* Улучшенные hover-эффекты */
.transaction-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.transaction-item:hover {
    background: var(--gradient-light);
    border-radius: var(--radius-sm);
}

/* Секция решений */
.finance-solutions {
    padding: 100px 0;
    background: #fff;
}

/* Навигация по табам */
.solutions-tabs {
    margin-top: 60px;
}

.tabs-nav {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.tab-btn.active {
    background: var(--gradient-light);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.tab-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.tab-text {
    flex: 1;
    text-align: left;
}

.tab-text h3 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    color: #333;
}

.tab-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Контент табов */
.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block;
}

.solution-demo {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.demo-screen {
    background: #f8f9fa;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

/* Стили для чекера */
.checker-interface {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
}

.checker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.progress-bar {
    width: 200px;
    height: 8px;
    background: #eee;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.progress {
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.checker-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.issue-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: #f8f9fa;
}

.issue-item.success { color: #28a745; }
.issue-item.warning { color: #ffc107; }
.issue-item.error { color: #dc3545; }

/* Стили для виджета */
.widget-interface {
    position: relative;
}

.widget-button {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.widget-panel {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 16px;
    box-shadow: var(--shadow-md);
}

.widget-option {
    margin-bottom: 20px;
}

.widget-option:last-child {
    margin-bottom: 0;
}

/* Стили для ясного языка */
.clear-language-interface {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.text-example {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
}

.text-original, .text-simplified {
    padding: 16px;
    border-radius: var(--radius-sm);
}

.text-original {
    background: #f8f9fa;
    margin-bottom: 16px;
}

.text-simplified {
    background: var(--gradient-light);
}

/* Общие стили для демо */
.demo-features {
    padding: 24px;
    background: var(--gradient-light);
    border-radius: var(--radius-md);
}

.demo-features ul {
    margin: 0;
    padding-left: 24px;
}

.demo-features li {
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
}

.demo-features li:last-child {
    margin-bottom: 0;
}

/* Адаптивность */
@media (max-width: 992px) {
    .tabs-nav {
        flex-direction: column;
    }

    .solution-demo {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .finance-solutions {
        padding: 60px 0;
    }

    .demo-screen {
        padding: 20px;
    }
}

/* Дополнительные стили для виджета настроек */
.size-controls {
    display: flex;
    gap: 8px;
}

.size-controls button {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-controls button:hover {
    background: var(--gradient-light);
}

.size-controls button.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.contrast-slider {
    padding: 8px 0;
}

.contrast-slider input {
    width: 100%;
    height: 4px;
    background: #eee;
    border-radius: 100px;
    -webkit-appearance: none;
    appearance: none;
}

.contrast-slider input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.color-schemes {
    display: flex;
    gap: 12px;
}

.scheme-btn {
    width: 40px;
    height: 40px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scheme-btn.light {
    background: #ffffff;
    border-color: rgba(0,0,0,0.1);
}

.scheme-btn.dark {
    background: #1a1a1a;
}

.scheme-btn.contrast {
    background: linear-gradient(135deg, #000 50%, #fff 50%);
}

.scheme-btn.active {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Стили для демонстрации изменений */
.widget-preview {
    margin-top: 24px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.widget-preview.dark-theme {
    background: #1a1a1a;
    color: white;
}

.widget-preview.high-contrast {
    background: black;
    color: white;
}

/* Стили для заголовков секций */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 100px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2D1F4C 0%, #4B367C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-header .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Анимация при скролле */
.section-header {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Адаптивность */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header .section-subtitle {
        font-size: 1.1rem;
    }

    .section-header::after {
        width: 60px;
        bottom: -15px;
    }
}

/* Секция историй успеха */
.success-stories {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8F9FF 0%, #E8ECFF 100%);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.story-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.story-logo {
    height: 40px;
    width: auto;
}

.story-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gradient-light);
    border-radius: 100px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.story-badge i {
    font-size: 1rem;
}

.story-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #333;
}

.story-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Метрики */
.story-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--gradient-light);
    border-radius: var(--radius-md);
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* График */
.story-chart {
    position: relative;
    height: 200px;
    margin-top: 30px;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.legend-item i {
    font-size: 0.8rem;
}

.legend-item:nth-child(1) i { color: rgba(91, 58, 243, 0.2); }
.legend-item:nth-child(2) i { color: var(--primary-color); }

/* Адаптивность */
@media (max-width: 992px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .success-stories {
        padding: 60px 0;
    }

    .story-card {
        padding: 30px;
        width: 99%;
    }

    .story-metrics {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .metric-value {
        font-size: 1.5rem;
    }
}

/* Стили для графиков */
.story-chart-wrapper {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 30px;
    box-shadow: var(--shadow-sm);
}

.story-chart {
    position: relative;
    height: 200px;
    margin-bottom: 20px;
}

.chart-info {
    text-align: center;
}

.chart-title {
    font-size: 1rem;
    color: #333;
    margin-bottom: 12px;
    font-weight: 500;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.legend-item i {
    font-size: 0.8rem;
}

/* Цвета для легенды */
#usBankChart + .chart-info .legend-item:nth-child(1) i {
    color: rgba(91, 58, 243, 0.2);
}

#usBankChart + .chart-info .legend-item:nth-child(2) i {
    color: rgb(91, 58, 243);
}

#barclaysChart + .chart-info .legend-item:nth-child(1) i {
    color: rgb(91, 58, 243);
}

#barclaysChart + .chart-info .legend-item:nth-child(2) i {
    color: rgba(91, 58, 243, 0.5);
}

@media (max-width: 768px) {
    .story-chart-wrapper {
        padding: 16px;
    }

    .story-chart {
        height: 180px;
    }

    .chart-legend {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
}

/* Секция бизнес-выгод */
.business-benefits {
    padding: 100px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: var(--gradient-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.benefit-icon i {
    font-size: 28px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #333;
}

.benefit-card p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.benefit-list li:last-child {
    margin-bottom: 0;
}

.benefit-list i {
    color: var(--primary-color);
    font-size: 14px;
}

/* ROI калькулятор */
.roi-calculator {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}

.calculator-header {
    text-align: center;
    margin-bottom: 40px;
}

.calculator-header h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.calculator-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.9rem;
    color: #666;
}

.input-group input {
    padding: 12px 16px;
    border: 2px solid #eee;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.result-item {
    text-align: center;
}

.result-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.result-value {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Адаптивность */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .calculator-form {
        grid-template-columns: 1fr;
    }

    .calculator-results {
        grid-template-columns: 1fr;
    }

    .roi-calculator {
        padding: 30px;
    }
    
    .benefit-card {
        width: 95%;
    }
}

/* Анимация обновления значений */
.result-value {
    transition: color 0.3s ease;
}

.result-value.updating {
    color: #666;
}

/* Визуализация выгод */
.benefits-visualization {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    max-width: 1000px;
    margin: 60px auto 0;
}

.visualization-header {
    text-align: center;
    margin-bottom: 40px;
}

.visualization-header h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.visualization-header p {
    color: #666;
    font-size: 1.1rem;
}

.visualization-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--gradient-light);
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.metric-icon i {
    font-size: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-info {
    flex: 1;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.metric-label {
    color: #666;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.metric-progress {
    height: 6px;
    background: rgba(91, 58, 243, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.metric-progress .progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    width: 0;
    transition: width 1.5s ease-in-out;
}

.visualization-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(91, 58, 243, 0.05);
    border-radius: var(--radius-sm);
    margin-top: 30px;
}

.visualization-note i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.visualization-note p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .visualization-grid {
        grid-template-columns: 1fr;
    }

    .benefits-visualization {
        padding: 30px;
        margin: 40px 20px 0;
    }

    .metric-card {
        padding: 20px;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content {
    max-width: 600px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.cta-feature i {
    font-size: 24px;
    color: var(--primary-color);
}

.cta-feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.cta-trust {
    margin-bottom: 40px;
}

.trust-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 16px;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 24px;
}

.trust-logos img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.trust-logos img:hover {
    opacity: 1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-lg-2 {
    padding: 16px 32px;
    font-size: 1.1rem;
    color: #333;
}

.cta-visual {
    position: relative;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.stat-item {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.cta-decoration {
    position: relative;
    height: 300px;
}

/* CTA floating elements */
.cta-decoration .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.cta-decoration .floating-elements i {
    position: absolute;
    font-size: 32px;
    color: var(--primary-color);
    opacity: 0.1;
    animation: float-cta 6s ease-in-out infinite;
}

.cta-decoration .floating-elements i:nth-child(1) { top: 15%; left: 25%; animation-delay: 0s; }
.cta-decoration .floating-elements i:nth-child(2) { top: 65%; left: 45%; animation-delay: -1.5s; }
.cta-decoration .floating-elements i:nth-child(3) { top: 25%; left: 75%; animation-delay: -2.5s; }
.cta-decoration .floating-elements i:nth-child(4) { top: 75%; left: 35%; animation-delay: -3.5s; }

@keyframes float-cta {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@media (max-width: 992px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-features {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .trust-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-stats {
        grid-template-columns: 1fr;
    }

    .cta-decoration {
        display: none;
    }
    
    .cta-visual {
        height: auto
    }
}