/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Professional Financial Palette */
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary-color: #d97706;
    --accent-color: #fbbf24;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #94a3b8;
    --bg-primary: #f1f5f9;
    --bg-secondary: #ffffff;
    --bg-dark: #0f172a;
    --border-color: #cbd5e1;
    
    /* Neumorphic Shadows - Soft, Deep Depth */
    --shadow-neumorphic-sm: 8px 8px 20px rgba(163, 177, 198, 0.5), 
                            -8px -8px 20px rgba(255, 255, 255, 0.9);
    --shadow-neumorphic-md: 12px 12px 30px rgba(163, 177, 198, 0.6), 
                            -12px -12px 30px rgba(255, 255, 255, 1);
    --shadow-neumorphic-lg: 20px 20px 50px rgba(163, 177, 198, 0.7), 
                            -20px -20px 50px rgba(255, 255, 255, 1);
    --shadow-neumorphic-inset: inset 6px 6px 14px rgba(163, 177, 198, 0.4), 
                                inset -6px -6px 14px rgba(255, 255, 255, 0.8);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.3);
    --glass-bg-strong: rgba(255, 255, 255, 0.5);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(30, 64, 175, 0.2);
    
    /* Legacy shadows for compatibility */
    --shadow-sm: var(--shadow-neumorphic-sm);
    --shadow-md: var(--shadow-neumorphic-md);
    --shadow-lg: var(--shadow-neumorphic-lg);
    --shadow-xl: var(--shadow-neumorphic-lg);
    
    /* Sizing - Generous Spacing */
    --container-width: 1500px;
    --section-spacing: 100px;
    --element-spacing: 30px;
    --border-radius-sm: 16px;
    --border-radius-md: 24px;
    --border-radius-lg: 32px;
    --border-radius-xl: 48px;
    
    /* Transitions - Smooth & Premium */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    position: relative;
    padding-bottom: 80px;
}

/* Animated particle background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(30, 64, 175, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(217, 119, 6, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(251, 191, 36, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
    z-index: 1;
}

/* ===== HEADER & NAVIGATION - Glassmorphism ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--glass-bg-strong);
    box-shadow: var(--shadow-neumorphic-md);
}

.navbar {
    padding: 1.25rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--element-spacing);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.625rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.logo a:hover {
    transform: scale(1.05);
    color: var(--primary-color);
}

.logo svg {
    color: var(--primary-color);
    filter: drop-shadow(0 0 8px rgba(30, 64, 175, 0.3));
    transition: var(--transition);
}

.logo a:hover svg {
    filter: drop-shadow(0 0 16px rgba(30, 64, 175, 0.5));
    transform: rotate(5deg);
}

.logo a:hover {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== DISCLAIMER BANNER ===== */
.disclaimer-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 1rem 0;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(220, 38, 38, 0.3);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.disclaimer-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2.5rem;
}

.disclaimer-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.disclaimer-text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    font-weight: 500;
}

.disclaimer-text strong {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero section padding */
.hero-3d {
    padding-top: 8rem;
}

/* ===== HERO 3D SECTION - Layered Text with Mouse Parallax ===== */
.hero-3d {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, 
        #f0f2f8 0%, 
        #e8eaf5 50%, 
        #e0e3f0 100%);
    overflow: hidden;
    perspective: 1000px;
}

.hero-3d-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
    z-index: 1;
}

.hero-3d-content {
    text-align: center;
    margin-bottom: 5rem;
}

/* 3D Layered Title - 7 layers */
.hero-3d-title {
    position: relative;
    font-size: clamp(32px, 6vw, 80px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 3rem;
    height: clamp(32px, 6vw, 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease-out;
    padding: 0 1rem;
}

.title-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

/* Layer 7 - Darkest (back) */
.title-layer.layer-7 {
    color: #1e3a8a;
    opacity: 0.15;
    transform: translate(-50%, -50%) translate(-21px, -21px);
    z-index: 1;
}

/* Layer 6 */
.title-layer.layer-6 {
    color: #1e40af;
    opacity: 0.25;
    transform: translate(-50%, -50%) translate(-18px, -18px);
    z-index: 2;
}

/* Layer 5 */
.title-layer.layer-5 {
    color: #2563eb;
    opacity: 0.35;
    transform: translate(-50%, -50%) translate(-15px, -15px);
    z-index: 3;
}

/* Layer 4 - Middle */
.title-layer.layer-4 {
    color: #3b82f6;
    opacity: 0.5;
    transform: translate(-50%, -50%) translate(-12px, -12px);
    z-index: 4;
}

/* Layer 3 */
.title-layer.layer-3 {
    color: #60a5fa;
    opacity: 0.65;
    transform: translate(-50%, -50%) translate(-9px, -9px);
    z-index: 5;
}

/* Layer 2 */
.title-layer.layer-2 {
    color: #93c5fd;
    opacity: 0.8;
    transform: translate(-50%, -50%) translate(-6px, -6px);
    z-index: 6;
}

/* Layer 1 - Lightest (front) */
.title-layer.layer-1 {
    color: #bfdbfe;
    opacity: 1;
    transform: translate(-50%, -50%) translate(-3px, -3px);
    z-index: 7;
    text-shadow: 0 0 40px rgba(30, 64, 175, 0.3);
}

.hero-3d-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-3d-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

/* Stats */
.hero-3d-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    padding: 3rem 0;
    border-top: 2px solid rgba(30, 64, 175, 0.1);
    animation: fadeInUp 0.8s ease-out 0.7s backwards;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-item .stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero-stat-item .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive - 3D Hero */
@media (max-width: 1024px) {
    .hero-3d-title {
        font-size: clamp(28px, 5vw, 65px);
        height: clamp(28px, 5vw, 65px);
    }
    
    .title-layer.layer-7 {
        transform: translate(-50%, -50%) translate(-14px, -14px);
    }
    
    .title-layer.layer-6 {
        transform: translate(-50%, -50%) translate(-12px, -12px);
    }
    
    .title-layer.layer-5 {
        transform: translate(-50%, -50%) translate(-10px, -10px);
    }
    
    .title-layer.layer-4 {
        transform: translate(-50%, -50%) translate(-8px, -8px);
    }
    
    .title-layer.layer-3 {
        transform: translate(-50%, -50%) translate(-6px, -6px);
    }
    
    .title-layer.layer-2 {
        transform: translate(-50%, -50%) translate(-4px, -4px);
    }
    
    .title-layer.layer-1 {
        transform: translate(-50%, -50%) translate(-2px, -2px);
    }
    
    .hero-3d-stats {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-3d {
        padding: 6rem 0 4rem;
    }
    
    .hero-3d-title {
        font-size: clamp(24px, 4.5vw, 50px);
        height: clamp(24px, 4.5vw, 50px);
        margin-bottom: 2rem;
    }
    
    .title-layer.layer-7 {
        transform: translate(-50%, -50%) translate(-10px, -10px);
    }
    
    .title-layer.layer-6 {
        transform: translate(-50%, -50%) translate(-8px, -8px);
    }
    
    .title-layer.layer-5 {
        transform: translate(-50%, -50%) translate(-7px, -7px);
    }
    
    .title-layer.layer-4 {
        transform: translate(-50%, -50%) translate(-6px, -6px);
    }
    
    .title-layer.layer-3 {
        transform: translate(-50%, -50%) translate(-4px, -4px);
    }
    
    .title-layer.layer-2 {
        transform: translate(-50%, -50%) translate(-3px, -3px);
    }
    
    .title-layer.layer-1 {
        transform: translate(-50%, -50%) translate(-2px, -2px);
    }
    
    .hero-3d-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-3d-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-3d-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-3d-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-3d-container {
        padding: 0 0.75rem;
    }
    
    .hero-3d-title {
        font-size: clamp(20px, 4vw, 40px);
        height: clamp(20px, 4vw, 40px);
    }
    
    .title-layer.layer-7,
    .title-layer.layer-6,
    .title-layer.layer-5 {
        display: none; /* Hide some layers on very small screens */
    }
    
    .title-layer.layer-4 {
        transform: translate(-50%, -50%) translate(-4px, -4px);
    }
    
    .title-layer.layer-3 {
        transform: translate(-50%, -50%) translate(-3px, -3px);
    }
    
    .title-layer.layer-2 {
        transform: translate(-50%, -50%) translate(-2px, -2px);
    }
    
    .title-layer.layer-1 {
        transform: translate(-50%, -50%) translate(-1px, -1px);
    }
    
    .hero-3d-stats {
        gap: 1.5rem;
    }
    
    .hero-stat-item .stat-number {
        font-size: 2rem;
    }
}

/* ===== BUTTONS - Neumorphic Style ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-bounce);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: var(--shadow-neumorphic-md), 
                0 0 20px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-neumorphic-lg), 
                0 0 30px rgba(30, 64, 175, 0.5);
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-secondary {
    background: var(--bg-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-neumorphic-sm);
}

.btn-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-neumorphic-md);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-neumorphic-md);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===== HERO SECTION - Diagonal Split Design ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, 
        var(--bg-primary) 0%, 
        #e8eaf5 100%);
}

.hero-diagonal-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
}

/* Left Zone - Content (55%) */
.hero-content-zone {
    position: relative;
    width: 55%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 8%;
    padding-right: 5%;
    z-index: 2;
    background: var(--bg-primary);
}

/* Right Zone - Visual (45%) */
.hero-visual-zone {
    position: relative;
    width: 45%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background: linear-gradient(135deg, 
        rgba(30, 64, 175, 0.05) 0%, 
        rgba(217, 119, 6, 0.03) 100%);
}

/* Diagonal Divider with Shadow */
.hero-diagonal-divider {
    position: absolute;
    top: -20%;
    right: 45%;
    width: 120%;
    height: 140%;
    background: var(--bg-primary);
    transform: rotate(-17deg);
    transform-origin: top right;
    box-shadow: 
        20px 0 60px rgba(30, 64, 175, 0.15),
        40px 0 100px rgba(30, 64, 175, 0.08);
    z-index: 1;
    pointer-events: none;
}

@keyframes morphShape {
    0%, 100% { 
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: rotate(90deg) scale(1.1);
    }
    50% { 
        border-radius: 40% 30% 60% 70% / 40% 70% 30% 60%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 70% 40% 30% 60% / 30% 50% 70% 60%;
        transform: rotate(270deg) scale(1.05);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-xl);
    color: var(--primary-color);
    font-size: 0.9375rem;
    font-weight: 600;
    box-shadow: var(--shadow-neumorphic-sm);
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.badge-icon {
    font-size: 1.375rem;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 5.25rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    letter-spacing: -0.04em;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-highlight {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        var(--accent-color) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 8s ease infinite;
    position: relative;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        var(--accent-color) 100%);
    border-radius: var(--border-radius-sm);
    opacity: 0.6;
    filter: blur(4px);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    position: absolute;
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-neumorphic-lg);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-width: 300px;
    animation: floatCard 6s ease-in-out infinite;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.visual-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: var(--shadow-neumorphic-lg), 
                0 0 40px rgba(30, 64, 175, 0.2);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(1deg); }
    50% { transform: translateY(0px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
}

.visual-card.card-1 {
    top: 8%;
    left: 0;
    animation-delay: 0s;
}

.visual-card.card-2 {
    top: 42%;
    right: 0;
    animation-delay: 2s;
}

.visual-card.card-3 {
    bottom: 8%;
    left: 8%;
    animation-delay: 4s;
}

.card-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-neumorphic-inset);
    transition: var(--transition);
}

.visual-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-neumorphic-sm);
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.card-progress {
    height: 8px;
    background: var(--glass-bg);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-neumorphic-inset);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-sm);
    transition: width 1s ease-out;
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(30, 64, 175, 0.5); }
    50% { box-shadow: 0 0 15px rgba(30, 64, 175, 0.8); }
}
    animation-delay: 4s;
}

.card-icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.card-progress {
    height: 6px;
    background: var(--bg-secondary);
    border-radius: 1rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 1rem;
    animation: progress 2s ease-out;
}

.visual-waveform {
    display: none; /* Removed from diagonal design */
}

.wave-bar {
    display: none; /* Removed from diagonal design */
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-xl);
    color: var(--primary-color);
    font-size: 0.9375rem;
    font-weight: 600;
    box-shadow: var(--shadow-neumorphic-sm);
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.badge-icon {
    font-size: 1.375rem;
}

/* Hero Title - Huge Typography (84px+) */
.hero-title {
    font-size: clamp(3.5rem, 8vw, 5.25rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    letter-spacing: -0.04em;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient Text Effect */
.title-highlight {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        var(--accent-color) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 8s ease infinite;
    position: relative;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        var(--accent-color) 100%);
    border-radius: var(--border-radius-sm);
    opacity: 0.6;
    filter: blur(4px);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

/* Hero Visual Zone - Image Container with Overlap Effect */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
    margin-left: -50px; /* Overlap effect - выходит за границу */
    z-index: 3;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: 
        var(--shadow-neumorphic-lg),
        0 20px 80px rgba(30, 64, 175, 0.2);
    background: linear-gradient(135deg, 
        rgba(30, 64, 175, 0.1) 0%, 
        rgba(217, 119, 6, 0.1) 100%);
}

/* Floating Stats Cards - Neumorphic Style */
.floating-stat {
    position: absolute;
    background: var(--bg-primary);
    border-radius: var(--border-radius-md);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-neumorphic-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 180px;
    animation: floatCard 6s ease-in-out infinite;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    z-index: 4;
}

.floating-stat:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: var(--shadow-neumorphic-lg), 
                0 0 40px rgba(30, 64, 175, 0.3);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(1deg); }
    50% { transform: translateY(0px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
}

.floating-stat.stat-1 {
    top: 10%;
    left: -80px;
    animation-delay: 0s;
}

.floating-stat.stat-2 {
    top: 50%;
    right: -60px;
    animation-delay: 2s;
}

.floating-stat.stat-3 {
    bottom: 12%;
    left: -40px;
    animation-delay: 4s;
}

.stat-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-neumorphic-inset);
    transition: var(--transition);
    flex-shrink: 0;
}

.floating-stat:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-neumorphic-sm);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
    animation: bounce 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Responsive Design - Diagonal Hero */
@media (max-width: 1024px) {
    .hero-diagonal-container {
        flex-direction: column;
        height: auto;
    }
    
    .hero-content-zone,
    .hero-visual-zone {
        width: 100%;
        padding: 4rem 8%;
    }
    
    .hero-content-zone {
        order: 1;
    }
    
    .hero-visual-zone {
        order: 2;
        min-height: 500px;
    }
    
    .hero-diagonal-divider {
        display: none;
    }
    
    .hero-image-container {
        margin-left: 0;
        max-width: 500px;
        height: 500px;
        margin: 0 auto;
    }
    
    .floating-stat.stat-1 {
        left: 0;
        top: 5%;
    }
    
    .floating-stat.stat-2 {
        right: 0;
        top: 45%;
    }
    
    .floating-stat.stat-3 {
        left: 50%;
        transform: translateX(-50%);
        bottom: 5%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image-container {
        height: 400px;
    }
    
    .floating-stat {
        min-width: 140px;
        padding: 1rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content-zone,
    .hero-visual-zone {
        padding: 3rem 5%;
    }
    
    .hero-badge {
        font-size: 0.8125rem;
        padding: 0.625rem 1.25rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }
    
    .hero-image-container {
        height: 350px;
    }
    
    .floating-stat {
        display: none; /* Hide on very small screens for clarity */
    }
}

/* ===== SECTION COMMON STYLES ===== */
section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-xl);
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-neumorphic-sm);
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 650px;
    line-height: 1.7;
}

.section-header.centered .section-description {
    margin: 0 auto;
}

/* ===== PODCASTS SECTION ===== */
.podcasts-section {
    background: var(--bg-secondary);
    padding: var(--section-spacing) 0;
}

.podcasts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--element-spacing);
}

.podcast-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-neumorphic-sm);
    transition: var(--transition-bounce);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.podcast-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-neumorphic-lg);
}

.podcast-image {
    position: relative;
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, 
        rgba(30, 64, 175, 0.9) 0%, 
        rgba(217, 119, 6, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.podcast-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.podcast-card:hover .podcast-image img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    color: var(--primary-color);
    box-shadow: var(--shadow-neumorphic-md);
}

.play-button:hover {
    transform: scale(1.15);
    background: white;
    box-shadow: var(--shadow-neumorphic-lg), 
                0 0 30px rgba(30, 64, 175, 0.4);
}

.podcast-card:hover .play-button {
    transform: scale(1.1);
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
    box-shadow: var(--shadow-lg);
}

.podcast-content {
    padding: 1.5rem;
}

.podcast-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.podcast-category {
    padding: 0.25rem 0.75rem;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary-color);
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.podcast-duration {
    color: var(--text-light);
    font-size: 0.875rem;
}

.podcast-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.podcast-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.podcast-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.podcast-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.podcast-author span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.podcast-date {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===== TOPICS SECTION ===== */
.topics-section {
    padding: var(--section-spacing) 0;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.topic-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition-bounce);
    text-align: center;
    box-shadow: var(--shadow-neumorphic-sm);
    position: relative;
    overflow: hidden;
}

.topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.topic-card:hover::before {
    transform: scaleX(1);
}

.topic-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-neumorphic-md);
}

.topic-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.topic-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.topic-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.topic-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.topic-link:hover {
    gap: 0.75rem;
}

/* ===== EXPERTS SECTION ===== */
.experts-section {
    background: var(--bg-secondary);
    padding: var(--section-spacing) 0;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.expert-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-neumorphic-sm);
    transition: var(--transition-bounce);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.expert-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-neumorphic-lg);
}

.expert-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-content {
    padding: 1.5rem;
}

.expert-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.expert-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.expert-bio {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.expert-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.expert-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ===== PRICING SECTION ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(217, 119, 6, 0.05) 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pricing-description {
    color: var(--text-secondary);
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    vertical-align: super;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.feature-item.disabled {
    opacity: 0.4;
}

.feature-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-item.disabled .feature-icon {
    color: var(--text-light);
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    background: var(--bg-secondary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star-icon {
    color: var(--accent-color);
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.review-author .author-avatar {
    width: 45px;
    height: 45px;
    font-size: 0.875rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-position {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--section-spacing) 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-content a,
.contact-content p {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-content a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-neumorphic-md);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.contact-form-wrapper:hover {
    box-shadow: var(--shadow-neumorphic-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 calc(2rem + 80px);
    margin-bottom: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo svg {
    color: var(--primary-light);
}

.footer-description {
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links li {
    color: #9ca3af;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* ===== COOKIE NOTICE ===== */
.cookie-notice {
    position: fixed;
    bottom: calc(2rem + 80px);
    left: 2rem;
    right: 2rem;
    max-width: 600px;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    padding: 1.5rem;
    z-index: 1001;
    display: none;
    animation: slideUp 0.5s ease;
}

.cookie-notice.show {
    display: block;
}

.cookie-content {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.cookie-content p {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--primary-color);
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes wave {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.5);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes progress {
    from {
        width: 0;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    min-height: 70vh;
    padding: calc(8rem + 70px) 0 6rem;
    background: linear-gradient(135deg, 
        rgba(30, 64, 175, 0.08) 0%, 
        rgba(236, 72, 153, 0.05) 50%,
        rgba(245, 158, 11, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-xl);
    color: var(--primary-color);
    font-size: 0.9375rem;
    font-weight: 600;
    box-shadow: var(--shadow-neumorphic-sm);
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.about-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.about-hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 2.5rem 0;
    border-top: 2px solid rgba(30, 64, 175, 0.1);
}

.about-stat-item {
    text-align: center;
}

.about-stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.about-stat-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-mission {
    padding: var(--section-spacing) 0;
    background: var(--bg-secondary);
}

.about-mission-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-mission-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-feature {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-neumorphic-sm);
    transition: var(--transition-bounce);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.mission-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-neumorphic-md);
}

.mission-feature-icon {
    font-size: 3rem;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-neumorphic-inset);
}

.mission-feature-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.mission-feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== CONTACTS PAGE STYLES ===== */
.contacts-hero {
    min-height: 50vh;
    padding: calc(8rem + 70px) 0 4rem;
    background: linear-gradient(135deg, 
        rgba(30, 64, 175, 0.06) 0%, 
        rgba(236, 72, 153, 0.04) 100%);
    position: relative;
    overflow: hidden;
}

.contacts-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 5s ease-in-out infinite;
}

.contacts-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contacts-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.contacts-hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== RESOURCES PAGE STYLES ===== */
.resources-hero {
    min-height: 60vh;
    padding: calc(8rem + 70px) 0 5rem;
    background: linear-gradient(135deg, 
        rgba(245, 158, 11, 0.06) 0%, 
        rgba(30, 64, 175, 0.04) 50%,
        rgba(217, 119, 6, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.resources-hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

.resources-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.resources-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-xl);
    color: var(--accent-color);
    font-size: 0.9375rem;
    font-weight: 600;
    box-shadow: var(--shadow-neumorphic-sm);
    margin-bottom: 2rem;
}

.resources-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.resources-hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== EPISODES PAGE STYLES ===== */
.episodes-hero {
    min-height: 55vh;
    padding: calc(8rem + 70px) 0 4rem;
    background: linear-gradient(135deg, 
        rgba(30, 64, 175, 0.07) 0%, 
        rgba(236, 72, 153, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.episodes-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(30, 64, 175, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(217, 119, 6, 0.06) 0%, transparent 50%);
    animation: particleFloat 15s ease-in-out infinite;
}

.episodes-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.episodes-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-xl);
    color: var(--primary-color);
    font-size: 0.9375rem;
    font-weight: 600;
    box-shadow: var(--shadow-neumorphic-sm);
    margin-bottom: 2rem;
}

.episodes-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.episodes-hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.episodes-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.episode-filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-neumorphic-sm);
}

.episode-filter-btn:hover,
.episode-filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-neumorphic-md);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        display: none;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .disclaimer-banner {
        bottom: 0;
        padding: 0.875rem 0;
    }
    
    .disclaimer-content {
        padding: 0 1rem;
        gap: 0.75rem;
    }
    
    .disclaimer-icon {
        width: 20px;
        height: 20px;
    }
    
    .disclaimer-text {
        font-size: 0.8125rem;
    }
    
    .hero-3d {
        padding-top: 6rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: var(--transition);
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .burger {
        display: flex;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .podcasts-grid,
    .topics-grid,
    .experts-grid,
    .pricing-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-notice {
        left: 1rem;
        right: 1rem;
        bottom: calc(1rem + 80px);
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .footer {
        padding-bottom: calc(2rem + 70px);
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-actions {
        width: 100%;
    }
    
    .cookie-actions .btn {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .disclaimer-banner {
        bottom: 0;
        padding: 0.75rem 0;
    }
    
    .disclaimer-content {
        padding: 0 0.75rem;
        gap: 0.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .disclaimer-icon {
        width: 18px;
        height: 18px;
    }
    
    .disclaimer-text {
        font-size: 0.75rem;
    }
    
    .hero-3d {
        padding-top: 6rem;
    }
    
    body {
        padding-bottom: 60px;
    }
    
    .footer {
        padding-bottom: calc(2rem + 60px);
    }
    
    .cookie-notice {
        bottom: calc(1rem + 60px);
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .about-hero,
    .contacts-hero,
    .resources-hero,
    .episodes-hero {
        padding: calc(6rem + 60px) 0 3rem;
    }
    
    .about-hero-stats {
        gap: 2rem;
    }
    
    .about-mission-features {
        grid-template-columns: 1fr;
    }
    
    .episodes-filters {
        gap: 0.75rem;
    }
    
    .episode-filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}
