/* 
 * Glassmorphism Neo Theme - Современный стеклянный эффект
 * Дополняет main.css
 */

:root {
    /* Цветовая палитра неона */
    --neon-blue: #00d4ff;
    --neon-blue-rgb: 0, 212, 255;
    --neon-purple: #8a2be2;
    --neon-purple-rgb: 138, 43, 226;
    --neon-cyan: #00ffea;
    --neon-cyan-rgb: 0, 255, 234;
    --neon-pink: #ff00ff;
    --neon-pink-rgb: 255, 0, 255;
    
    /* Glass эффекты */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-bg-light: rgba(255, 255, 255, 0.15);
    --glass-bg-dark: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-border-dark: rgba(0, 0, 0, 0.2);
    --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    
    /* Градиенты */
    --gradient-neon: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    --gradient-neon-light: linear-gradient(45deg, rgba(var(--neon-blue-rgb), 0.8), rgba(var(--neon-purple-rgb), 0.8));
    --gradient-dark: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    --gradient-dark-light: linear-gradient(135deg, #f0f2ff 0%, #e6e9ff 50%, #f0f2ff 100%);
    
    /* Текст */
    --text-glass: rgba(255, 255, 255, 0.95);
    --text-glass-light: rgba(255, 255, 255, 0.85);
    --text-glass-dark: #1e293b;
    --text-glass-dark-light: #64748b;
}

/* Основные стили для темы */
body.glass-theme {
    background: var(--gradient-dark);
    color: var(--text-glass);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

body.glass-theme.light-glass {
    background: var(--gradient-dark-light);
    color: var(--text-glass-dark);
}

/* Scroll-trigger анимации */
.scroll-glass {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-glass.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Glass эффекты */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

body.glass-theme.light-glass .glass-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(var(--neon-blue-rgb), 0.2);
    border-color: rgba(var(--neon-blue-rgb), 0.4);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-neon);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card-title {
    font-weight: 700;
    color: var(--text-glass);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

body.glass-theme.light-glass .glass-card-title {
    color: var(--text-glass-dark);
}

.glass-card-text {
    color: var(--text-glass-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

body.glass-theme.light-glass .glass-card-text {
    color: var(--text-glass-dark-light);
}

.glass-feature {
    color: var(--text-glass-light);
    margin-bottom: 0.5rem;
    padding-left: 0;
    font-size: 0.95rem;
}

body.glass-theme.light-glass .glass-feature {
    color: var(--text-glass-dark-light);
}

.glass-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.glass-link {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.glass-link:hover {
    color: var(--neon-cyan);
    transform: translateX(5px);
}

.glass-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-neon);
    transition: width 0.3s ease;
}

.glass-link:hover::after {
    width: 100%;
}

.glass-subtitle {
    color: var(--text-glass-light);
    font-size: 1.125rem;
}

body.glass-theme.light-glass .glass-subtitle {
    color: var(--text-glass-dark-light);
}

/* Секции с фонами */
.bg-glass-dark {
    background: var(--glass-bg-dark);
    backdrop-filter: blur(20px);
    position: relative;
}

.bg-glass-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300d4ff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

.bg-glass-darker {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
}

.bg-neon-gradient {
    background: linear-gradient(135deg, 
        rgba(var(--neon-blue-rgb), 0.15) 0%, 
        rgba(var(--neon-purple-rgb), 0.15) 100%);
    position: relative;
    overflow: hidden;
}

.bg-neon-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4z' fill='%2300d4ff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

/* FAQ в стеклянном стиле */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

body.glass-theme.light-glass .faq-item.glass {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.faq-item.glass:hover {
    border-color: rgba(var(--neon-blue-rgb), 0.4);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(var(--neon-blue-rgb), 0.1);
}

.faq-item.glass[open] {
    border-color: rgba(var(--neon-blue-rgb), 0.6);
}

.faq-summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-glass);
    list-style: none;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

body.glass-theme.light-glass .faq-summary {
    color: var(--text-glass-dark);
}

.faq-item.glass[open] .faq-summary {
    color: var(--neon-cyan);
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--neon-blue);
    transition: all 0.3s ease;
}

.faq-item.glass[open] .faq-summary::after {
    content: '-';
    color: var(--neon-cyan);
    transform: translateY(-50%) rotate(180deg);
}

.faq-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-item.glass[open] .faq-content {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
    opacity: 1;
}

.faq-content p {
    color: var(--text-glass-light);
    line-height: 1.6;
    margin: 0;
}

body.glass-theme.light-glass .faq-content p {
    color: var(--text-glass-dark-light);
}

.faq-content strong {
    color: var(--neon-cyan);
    font-weight: 600;
}

.faq-number {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: var(--gradient-neon);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Glass CTA */
.faq-cta.glass-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
}

/* Пульсация для CTA */
.cta-pulse {
    animation: pulse 2s infinite;
    display: inline-block;
}

@keyframes pulse {
    0% {
        text-shadow: 
            0 0 10px rgba(var(--neon-blue-rgb), 0.5),
            0 0 20px rgba(var(--neon-blue-rgb), 0.3);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(var(--neon-blue-rgb), 0.8),
            0 0 40px rgba(var(--neon-blue-rgb), 0.5),
            0 0 60px rgba(var(--neon-cyan-rgb), 0.3);
    }
    100% {
        text-shadow: 
            0 0 10px rgba(var(--neon-blue-rgb), 0.5),
            0 0 20px rgba(var(--neon-blue-rgb), 0.3);
    }
}

/* Header в стеклянном стиле */
.glass-header {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

body.glass-theme.light-glass .glass-header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.glass-logo .logo-name {
    color: var(--neon-cyan);
    font-weight: 700;
}

.glass-logo .logo-subtitle {
    color: var(--text-glass-light);
    opacity: 0.9;
}

body.glass-theme.light-glass .glass-logo .logo-subtitle {
    color: var(--text-glass-dark-light);
}

.glass-nav-link {
    color: var(--text-glass-light);
    position: relative;
}

body.glass-theme.light-glass .glass-nav-link {
    color: var(--text-glass-dark-light);
}

.glass-nav-link:hover,
.glass-nav-link.active {
    color: var(--neon-cyan);
}

.glass-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-neon);
}

/* Mobile nav в стеклянном стиле */
.glass-mobile-nav {
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.glass-theme.light-glass .glass-mobile-nav {
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Footer в стеклянном стиле */
.glass-footer {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.glass-theme.light-glass .glass-footer {
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.glass-text {
    color: var(--text-glass-light);
    line-height: 1.6;
}

body.glass-theme.light-glass .glass-text {
    color: var(--text-glass-dark-light);
}

/* Кнопка "Наверх" */
.back-to-top.glass-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-glass);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.back-to-top.glass-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top.glass-btn:hover {
    background: var(--glass-bg-light);
    border-color: rgba(var(--neon-blue-rgb), 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.back-to-top.glass-btn::after {
    content: 'Наверх';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--neon-cyan);
}

.back-to-top.glass-btn:hover::after {
    bottom: -20px;
    opacity: 1;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .btn-neon, .glass-btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .faq-summary {
        padding: 1.25rem;
        font-size: 1rem;
        text-align: left;
    }
    
    .faq-summary::after {
        right: 1.25rem;
    }
    
    .faq-item.glass[open] .faq-content {
        padding: 0 1.25rem 1.25rem;
    }
    
    .faq-number {
        width: 32px;
        height: 32px;
        line-height: 32px;
        margin-right: 12px;
        font-size: 0.85rem;
    }
    
    .glass-mobile-nav {
        backdrop-filter: blur(40px);
    }
}

/* Оптимизация для быстрой загрузки */
@media (prefers-reduced-motion: reduce) {
    .scroll-glass,
    .btn-neon,
    .glass-card,
    .cta-pulse,
    .glass-link,
    .faq-item.glass {
        animation: none;
        transition: none;
    }
}

/* Lazy loading */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

img.lazy.loaded {
    opacity: 1;
}

/* ===== НОВЫЙ HERO БЛОК С ЭКСПЕРТОМ ===== */

.hero-expert-section {
    position: relative;
    padding: 80px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Делаем фон секции прозрачным и добавляем легкий фон через псевдо-элемент */
.hero-expert-section {
    background: transparent;
    position: relative;
}

.hero-expert-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 12, 41, 0.6) 0%,
        rgba(48, 43, 99, 0.4) 50%,
        rgba(36, 36, 62, 0.7) 100%
    );
    z-index: 1;
    backdrop-filter: blur(1px);
}

body.glass-theme.light-glass .hero-expert-section::before {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.7) 100%
    );
}

.hero-expert-wrapper {
    position: relative;
    z-index: 2;
}

.hero-expert-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

@media (min-width: 1024px) {
    .hero-expert-content {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 4rem;
        align-items: start;
    }
}

/* Профиль эксперта */
.expert-profile-wrapper {
    position: relative;
    z-index: 10;
}

.expert-photo-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@media (min-width: 768px) {
    .expert-photo-container {
        width: 320px;
        height: 320px;
    }
}

@media (min-width: 1024px) {
    .expert-photo-container {
        width: 100%;
        max-width: 380px;
        height: auto;
        aspect-ratio: 1;
        margin: 0 0 2rem;
    }
}

.expert-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 5;
    border: 4px solid transparent;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple)) border-box;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
  /*  -webkit-mask-composite: destination-out;
    mask-composite: exclude;*/
    box-shadow: 
        0 0 40px rgba(var(--neon-blue-rgb), 0.4),
        inset 0 0 40px rgba(var(--neon-purple-rgb), 0.2);
}

.expert-photo-glow {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(45deg, 
        rgba(var(--neon-blue-rgb), 0.3), 
        rgba(var(--neon-purple-rgb), 0.3));
    border-radius: 50%;
    z-index: 4;
    filter: blur(15px);
    animation: photoGlow 3s ease-in-out infinite alternate;
}

@keyframes photoGlow {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/*.expert-photo-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid transparent;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple)) border-box;
    border-radius: 50%;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: 6;
    opacity: 0.5;
}*/

.expert-status {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--neon-blue-rgb), 0.3);
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 7;
    white-space: nowrap;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(var(--neon-cyan-rgb), 0.7);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(var(--neon-cyan-rgb), 0);
    }
}

.status-text {
    color: var(--neon-cyan);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Быстрые факты об эксперте */
.expert-quick-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    z-index: 3;
}

.fact-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fact-number {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 4px;
}

.fact-label {
    font-size: 0.85rem;
    color: var(--text-glass-light);
    font-weight: 500;
}

body.glass-theme.light-glass .fact-label {
    color: var(--text-glass-dark-light);
}

/* Информация об эксперте */
.expert-info {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(var(--neon-blue-rgb), 0.1);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    z-index: 3;
}

body.glass-theme.light-glass .expert-info {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.expert-badge {
    display: inline-block;
    background: var(--gradient-neon);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.expert-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .expert-name {
        font-size: 3rem;
    }
}

.gradient-text {
    background: linear-gradient(45deg, 
        var(--neon-blue) 0%, 
        #ffffff 50%, 
        var(--neon-purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.expert-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.neon-text {
    color: var(--neon-cyan);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(var(--neon-cyan-rgb), 0.5);
}

.subtitle {
    color: var(--text-glass-light);
    font-size: 1.25rem;
    font-weight: 500;
}

body.glass-theme.light-glass .subtitle {
    color: var(--text-glass-dark-light);
}

/* Описание эксперта */
.expert-description .lead {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-glass);
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(var(--neon-blue-rgb), 0.2);
}

body.glass-theme.light-glass .expert-description .lead {
    color: var(--text-glass-dark);
}

.expert-description .lead strong {
    color: var(--neon-cyan);
    font-weight: 600;
}

/* Специализации */
.expert-specialties {
    margin-bottom: 2rem;
}

.specialties-title {
    color: var(--text-glass);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

body.glass-theme.light-glass .specialties-title {
    color: var(--text-glass-dark);
}

.specialties-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specialty-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: rgba(var(--neon-blue-rgb), 0.05);
    border-radius: 8px;
    border: 1px solid rgba(var(--neon-blue-rgb), 0.1);
    transition: all 0.3s ease;
}

.specialty-item:hover {
    background: rgba(var(--neon-blue-rgb), 0.1);
    border-color: rgba(var(--neon-blue-rgb), 0.3);
    transform: translateX(5px);
}

.specialty-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.specialty-text {
    color: var(--text-glass-light);
    font-size: 0.95rem;
    line-height: 1.4;
}

body.glass-theme.light-glass .specialty-text {
    color: var(--text-glass-dark-light);
}

/* Отрасли */
.expert-industries {
    margin-bottom: 2.5rem;
}

.industries-title {
    color: var(--text-glass);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

body.glass-theme.light-glass .industries-title {
    color: var(--text-glass-dark);
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.industry-tag {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.industry-tag.fintech {
    background: rgba(0, 212, 255, 0.1);
    color: var(--neon-blue);
    border-color: rgba(0, 212, 255, 0.3);
}

.industry-tag.fintech:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.industry-tag.insurance {
    background: rgba(138, 43, 226, 0.1);
    color: var(--neon-purple);
    border-color: rgba(138, 43, 226, 0.3);
}

.industry-tag.insurance:hover {
    background: rgba(138, 43, 226, 0.2);
    transform: translateY(-2px);
}

.industry-tag.aviation {
    background: rgba(0, 255, 234, 0.1);
    color: var(--neon-cyan);
    border-color: rgba(0, 255, 234, 0.3);
}

.industry-tag.aviation:hover {
    background: rgba(0, 255, 234, 0.2);
    transform: translateY(-2px);
}

.industry-tag.retail {
    background: rgba(255, 0, 255, 0.1);
    color: var(--neon-pink);
    border-color: rgba(255, 0, 255, 0.3);
}

.industry-tag.retail:hover {
    background: rgba(255, 0, 255, 0.2);
    transform: translateY(-2px);
}

/* Призыв к действию */
.expert-cta {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

body.glass-theme.light-glass .expert-cta {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-content {
    text-align: center;
    margin-bottom: 1.5rem;
}

.cta-text {
    color: var(--text-glass);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

body.glass-theme.light-glass .cta-text {
    color: var(--text-glass-dark);
}

.cta-text strong {
    color: var(--neon-cyan);
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn-icon {
    margin-right: 8px;
}

/* Быстрые контакты */
.quick-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(var(--neon-blue-rgb), 0.2);
}

.quick-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-glass-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

body.glass-theme.light-glass .quick-contact-link {
    color: var(--text-glass-dark-light);
}

.quick-contact-link:hover {
    color: var(--neon-cyan);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.25rem;
}

/* Мобильная адаптация для нового Hero блока */
@media (max-width: 1023px) {
    .hero-expert-content {
        text-align: center;
    }
    
    .expert-info {
        padding: 2rem;
    }
    
    .expert-name {
        font-size: 2.25rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn-neon,
    .cta-buttons .glass-btn {
        width: 100%;
        justify-content: center;
    }
    
    .quick-contacts {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-expert-section {
        padding: 80px 0;
        min-height: auto;
    }
    
    .expert-info {
        padding: 1.5rem;
    }
    
    .expert-name {
        font-size: 2rem;
    }
    
    .expert-title {
        font-size: 1.25rem;
    }
    
    .expert-quick-facts {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .fact-number {
        font-size: 1.5rem;
    }
    
    .fact-label {
        font-size: 0.75rem;
    }
}

/* Анимация появления для нового Hero блока */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Добавьте это в конец theme-glassmorphism.css */

/* Article Styles */
.hero-article-section {
    background: linear-gradient(135deg, rgba(15, 12, 41, 0.9) 0%, rgba(48, 43, 99, 0.7) 50%, rgba(36, 36, 62, 0.9) 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-article-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300d4ff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

.hero-article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb-link {
    color: var(--text-glass-light);
    text-decoration: none;
}

.breadcrumb-separator {
    color: var(--text-glass-light);
    opacity: 0.5;
}

.breadcrumb-current {
    color: var(--neon-cyan);
    font-weight: 500;
}

.article-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.article-badge {
    display: inline-block;
    background: var(--gradient-neon);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    align-self: flex-start;
}

.article-date-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-glass-light);
    font-size: 0.95rem;
}

.article-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.article-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    line-height: 1.4;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-glass);
}

.author-title {
    color: var(--text-glass-light);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.author-experience {
    color: var(--neon-cyan);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Article Grid */
.article-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .article-grid {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
}

/* Article Main Content */
.article-main {
    background: transparent;
}

.article-image {
    margin-bottom: 3rem;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.article-img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    padding: 1rem;
    background: rgba(15, 23, 42, 0.8);
    color: var(--text-glass-light);
    font-size: 0.9rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-intro {
    margin-bottom: 3rem;
    padding: 2rem;
}

.article-intro .lead {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.source-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-glass-light);
}

.source-icon {
    font-size: 1rem;
}

/* Article Sections */
.article-section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-glass);
}

.section-number {
    color: var(--neon-cyan);
    font-weight: 700;
    font-size: 1.5rem;
}

.architecture-diagram {
    padding: 2rem;
    margin-bottom: 2rem;
}

.diagram-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-glass);
}

.diagram-levels {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.level-item {
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.level-primary {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.2);
}

.level-secondary {
    background: rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.2);
}

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

.level-number {
    background: var(--gradient-neon);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.level-name {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-glass);
}

.level-description {
    color: var(--text-glass-light);
    line-height: 1.5;
}

.level-arrow {
    text-align: center;
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin: 0.5rem 0;
}

.architecture-features {
    margin-top: 2rem;
}

.features-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-glass);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.feature-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text {
    color: var(--text-glass-light);
    line-height: 1.4;
}

.architecture-challenge.warning {
    background: rgba(255, 183, 77, 0.1);
    border: 1px solid rgba(255, 183, 77, 0.3);
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
}

.challenge-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.challenge-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #ff9800;
}

/* Challenges Grid */
.challenges-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.challenge-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.challenge-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-glass);
}

.challenge-description {
    color: var(--text-glass-light);
    line-height: 1.5;
}

/* Security Alert */
.security-alert.alert {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.alert-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #f44336;
}

/* Risks List */
.risks-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.risk-item {
    padding: 1.5rem;
}

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

.risk-icon {
    font-size: 1.5rem;
}

.risk-title {
    font-size: 1.125rem;
    color: var(--text-glass);
}

.risk-description {
    color: var(--text-glass-light);
    line-height: 1.5;
}

/* Timeline */
.timeline {
    padding: 2rem;
    position: relative;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

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

.timeline-marker {
    position: relative;
    flex-shrink: 0;
    width: 60px;
    margin-right: 2rem;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: var(--gradient-neon);
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.marker-line {
    position: absolute;
    top: 20px;
    left: 10px;
    width: 2px;
    height: calc(100% + 3rem);
    background: rgba(var(--neon-blue-rgb), 0.3);
}

.timeline-item:last-child .marker-line {
    display: none;
}

.timeline-content {
    flex: 1;
    padding-bottom: 1rem;
}

.timeline-date {
    font-size: 1rem;
    font-weight: 600;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-glass);
}

.timeline-description {
    color: var(--text-glass-light);
    line-height: 1.5;
}

/* Article Conclusion */
.article-conclusion.highlight {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    border: 1px solid rgba(var(--neon-blue-rgb), 0.3);
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    margin-bottom: 3rem;
}

.conclusion-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.conclusion-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-glass);
}

.conclusion-content p {
    color: var(--text-glass-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.conclusion-content p:last-child {
    margin-bottom: 0;
}

/* Article Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tag-label {
    font-weight: 600;
    color: var(--text-glass);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    text-decoration: none;
}

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

/* Article Navigation */
.article-navigation {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .article-navigation {
        grid-template-columns: 1fr 1fr;
    }
}

.nav-prev,
.nav-next {
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-prev:hover,
.nav-next:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--neon-blue-rgb), 0.4);
}

.nav-direction {
    font-size: 0.9rem;
    color: var(--text-glass-light);
    margin-bottom: 0.5rem;
}

.nav-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-glass);
    margin-bottom: 0.5rem;
}

.nav-date {
    font-size: 0.85rem;
    color: var(--neon-cyan);
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    margin-bottom: 2rem;
}

.widget-header {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-title {
    font-size: 1.25rem;
    color: var(--text-glass);
}

.author-sidebar {
    text-align: center;
}

.author-avatar-sidebar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(var(--neon-blue-rgb), 0.3);
}

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

.author-info-sidebar {
    text-align: center;
}

.author-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-glass);
}

.author-bio {
    color: var(--text-glass-light);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.author-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.expertise-tag {
    background: rgba(var(--neon-blue-rgb), 0.1);
    color: var(--neon-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Categories List */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    margin-bottom: 0.5rem;
}

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

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--text-glass-light);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-glass);
}

.category-link.active {
    background: rgba(var(--neon-blue-rgb), 0.1);
    color: var(--neon-cyan);
    font-weight: 500;
}

.category-count {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-glass-light);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Share Buttons */
.share-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
}

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

/* CTA Widget */
.sidebar-widget.cta {
    text-align: center;
    padding: 2rem;
}

.widget-description {
    color: var(--text-glass-light);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Related Articles */
.related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.related-card {
    padding: 2rem;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--neon-blue-rgb), 0.4);
}

.related-badge {
    display: inline-block;
    background: rgba(var(--neon-blue-rgb), 0.1);
    color: var(--neon-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.related-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-glass);
}

.related-excerpt {
    color: var(--text-glass-light);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.related-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-glass-light);
    font-size: 0.85rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .article-title {
        font-size: 2.5rem;
    }
    
    .article-subtitle {
        font-size: 1.25rem;
    }
    
    .article-author {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-article-section {
        padding: 100px 0 40px;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn-neon,
    .cta-buttons .glass-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 1.75rem;
    }
    
    .article-intro {
        padding: 1.5rem;
    }
    
    .architecture-diagram {
        padding: 1.5rem;
    }
    
    .timeline {
        padding: 1.5rem;
    }
    
    .timeline-marker {
        width: 40px;
        margin-right: 1rem;
    }
}