/* ====================================
   MoneyCastCentral Financial Podcasts - Main Styles
   Modern, Fast-loading, Premium Design
   ==================================== */

/* ===== CSS Variables ===== */
:root {
    /* Primary Colors */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    
    /* Neutral Colors */
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --light: #f1f5f9;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-padding: 15px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Adjust body padding to account for fixed disclaimer - removed, handled by hero section */

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-wrapper {
    text-align: center;
}

.sound-wave {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    height: 80px;
}

.sound-wave span {
    display: block;
    width: 8px;
    background: var(--primary-color);
    border-radius: 4px;
    animation: sound-wave 1.2s ease-in-out infinite;
}

.sound-wave span:nth-child(1) { animation-delay: 0s; }
.sound-wave span:nth-child(2) { animation-delay: 0.1s; }
.sound-wave span:nth-child(3) { animation-delay: 0.2s; }
.sound-wave span:nth-child(4) { animation-delay: 0.3s; }
.sound-wave span:nth-child(5) { animation-delay: 0.4s; }

@keyframes sound-wave {
    0%, 100% { height: 20px; }
    50% { height: 60px; }
}

/* ===== Navigation ===== */
.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    z-index: 1000;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    flex-grow: 1;
    align-items: center;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    transition: var(--transition-fast);
}

.navbar-brand:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-medium);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.nav-link:hover::after {
    width: 80%;
}

/* CTA button should not have underline effect */
.nav-link.btn-cta::after {
    display: none !important;
}

.nav-link.btn-cta:hover {
    background: var(--gradient-primary);
    color: var(--white) !important;
}

.btn-cta {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 0.625rem 1.5rem !important;
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: var(--shadow-md);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    margin-left: 0.5rem;
    text-decoration: none !important;
    border: none;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white) !important;
    background: var(--gradient-primary);
    text-decoration: none !important;
}

.btn-cta::after {
    display: none !important;
}

/* Ensure CTA button is visible in navbar */
.navbar-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-item:last-child {
    display: flex !important;
    align-items: center;
    margin-left: 0.5rem;
}

.navbar-nav .nav-item .btn-cta {
    margin: 0 0.25rem;
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1;
}

/* Ensure navbar items are visible */
.navbar-nav .nav-item {
    display: flex;
    align-items: center;
    list-style: none;
}

.navbar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Financial Disclaimer Banner - moved to bottom after footer */
.financial-disclaimer {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.2);
    border-top: 3px solid #991b1b;
    margin-top: 0;
}

.financial-disclaimer .disclaimer-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.financial-disclaimer .disclaimer-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.financial-disclaimer .disclaimer-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.financial-disclaimer .disclaimer-text strong {
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 991px) {
    .financial-disclaimer {
        padding: 1.25rem 0;
    }
    
    .financial-disclaimer .disclaimer-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .financial-disclaimer .disclaimer-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .financial-disclaimer {
        padding: 1rem 0;
    }
    
    .financial-disclaimer .disclaimer-text {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

/* Burger Menu */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    cursor: pointer;
    transition: var(--transition-medium);
    z-index: 1001;
}

/* Ensure navbar collapse works properly */
@media (max-width: 991px) {
    .navbar-collapse {
        display: none !important;
    }
    
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        display: flex !important;
        flex-direction: column;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        margin: 0.25rem 0;
    }
    
    .navbar-nav .nav-item:last-child {
        margin-left: 0;
        width: 100%;
    }
    
    .navbar-nav .nav-item .btn-cta {
        width: 100%;
        margin: 0.5rem 0 0 0;
        display: flex !important;
    }
}

@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
    }
    
    .navbar-nav {
        flex-direction: row;
    }
    
    .navbar-nav .nav-item:last-child {
        margin-left: 0.5rem;
    }
}

.navbar-toggler:focus {
    box-shadow: none;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition-medium);
}

.navbar-toggler:not(.collapsed) .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .burger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===== Hero Section - Book Effect ===== */
.hero-book-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 120px 20px 80px;
    overflow: hidden;
    perspective: 2000px;
}

@media (max-width: 991px) {
    .hero-book-section {
        padding: 140px 20px 80px;
    }
}

@media (max-width: 768px) {
    .hero-book-section {
        padding: 160px 20px 80px;
    }
}

.book-container {
    display: flex;
    max-width: 1400px;
    width: 100%;
    height: 700px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.4s ease-out;
    will-change: transform;
}

/* Book Pages */
.book-page {
    flex: 1;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    will-change: transform;
}

/* Переворачиваем обе страницы на заднюю информативную часть */
.left-page {
    transform: rotateY(-180deg);
}

.right-page {
    transform: rotateY(180deg);
}

.page-front,
.page-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 8px;
    overflow: hidden;
}

.page-front {
    z-index: 2;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /></filter><rect width="100" height="100" filter="url(%23noise)" opacity="0.05"/></svg>');
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 100px rgba(255, 255, 255, 0.05);
}

.page-back {
    transform: rotateY(180deg);
    background: 
        linear-gradient(135deg, #667eea 0%, #764ba2 100%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /></filter><rect width="100" height="100" filter="url(%23noise)" opacity="0.03"/></svg>');
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 100px rgba(255, 255, 255, 0.08);
}

/* Left Page */
.left-page .page-front {
    background: 
        linear-gradient(135deg, rgba(99, 102, 241, 0.95) 0%, rgba(139, 92, 246, 0.95) 100%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /></filter><rect width="100" height="100" filter="url(%23noise)" opacity="0.05"/></svg>');
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.vertical-title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.title-word {
    font-size: clamp(100px, 15vw, 220px);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: white;
    text-transform: uppercase;
    text-shadow: 
        4px 4px 0px rgba(0, 0, 0, 0.2),
        8px 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    line-height: 1;
}

.title-word {
    transition: all 0.4s ease;
}

.title-word:hover {
    transform: scale(1.03);
    color: #fbbf24;
}

.back-content {
    padding: 60px;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.back-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    display: block;
}

.back-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefits-list li {
    padding: 15px 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.btn-back-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: white;
    color: #6366f1;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.btn-back-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    color: #4f46e5;
}

/* Book Spine */
.book-spine {
    width: 40px;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(0, 0, 0, 0.3) 50%, 
        rgba(0, 0, 0, 0.5) 100%
    );
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 3;
    flex-shrink: 0;
}

.book-spine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
        transparent,
        rgba(255, 255, 255, 0.2) 10%,
        rgba(255, 255, 255, 0.2) 90%,
        transparent
    );
}

/* Right Page */
.right-page .page-front {
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 41, 59, 0.7) 100%),
        url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1200&h=800&fit=crop') center/cover,
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /></filter><rect width="100" height="100" filter="url(%23noise)" opacity="0.05"/></svg>');
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.page-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px;
    color: white;
}

.hero-slogan {
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 60px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Right Page Back */
.right-page .page-back .back-content {
    padding: 60px;
}

.testimonial-quote {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    border-left: 4px solid #fbbf24;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.testimonial-quote p {
    font-size: 20px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    color: white;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.quote-author strong {
    display: block;
    font-size: 16px;
    color: white;
}

.quote-author span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.platforms {
    text-align: center;
}

.platforms-title {
    font-size: 16px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.platform-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.platform-badge {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.platform-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    animation: scroll-bounce 2s infinite;
}

.scroll-text {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    font-size: 24px;
    animation: arrow-bounce 1.5s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 60px;
}

@media (max-width: 991px) {
    .hero-section {
        padding: 140px 0 60px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 160px 0 60px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 80%;
    left: 10%;
    animation-delay: 4s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    left: 70%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, 20px) rotate(90deg); }
    50% { transform: translate(0, 40px) rotate(180deg); }
    75% { transform: translate(-20px, 20px) rotate(270deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-highlight {
    display: inline-block;
    background: linear-gradient(120deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(120deg, #fbbf24, #f59e0b);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-medium);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
    color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
    box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: var(--light);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(120deg, #ffffff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.visual-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.visual-circle.pulse {
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.visual-content {
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: card-float 3s infinite ease-in-out;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 5%;
    animation-delay: 2s;
}

@keyframes card-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.card-icon {
    font-size: 1.5rem;
}

.card-text {
    font-weight: 600;
    color: var(--dark);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    margin: 0 auto 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

.arrow-down {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.arrow-down span {
    width: 15px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    display: block;
    transform: rotate(45deg);
    animation: arrow-move 2s infinite;
}

.arrow-down span:nth-child(2) {
    transform: rotate(-45deg);
    margin-left: 8px;
    margin-top: -7px;
}

@keyframes arrow-move {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* ===== Section Styles ===== */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 700px;
    margin-bottom: 2rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.text-center .section-description {
    margin-left: auto;
    margin-right: auto;
}

/* ===== About Section ===== */
.about-section {
    background: var(--light);
}

.about-image-wrapper {
    position: relative;
}

.about-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    z-index: 0;
}

.about-image {
    position: relative;
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    z-index: 1;
    transform: translateX(-30px);
    will-change: transform;
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
    z-index: 2;
}

.experience-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.experience-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition-medium);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--gray);
    margin: 0;
}

/* ===== Podcasts Section ===== */
.podcasts-section {
    background: var(--white);
}

.podcasts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.podcast-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
}

.podcast-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.podcast-card.featured {
    grid-column: span 1;
}

.podcast-image {
    position: relative;
    width: 100%;
    height: 250px;
    background: var(--gradient-primary);
    overflow: hidden;
}

.podcast-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.podcast-card:hover .podcast-image img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-medium);
    backdrop-filter: blur(10px);
}

.podcast-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--white);
}

.podcast-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.podcast-info {
    padding: 1.5rem;
}

.podcast-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--gray);
}

.episode-number {
    font-weight: 600;
    color: var(--primary-color);
}

.podcast-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.podcast-description {
    color: var(--gray);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.podcast-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-light);
}

.host-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.host-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.host-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
}

.podcast-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--gray);
}

/* ===== Hosts Section ===== */
.hosts-section {
    background: var(--light);
}

.host-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    height: 100%;
}

.host-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.host-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--gradient-primary);
}

.host-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.host-card:hover .host-image {
    transform: scale(1.1);
}

.host-social {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: var(--transition-medium);
}

.host-card:hover .host-social {
    opacity: 1;
}

.social-link {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.host-info-card {
    padding: 1.5rem;
}

.host-name-title {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.host-position {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.host-bio {
    color: var(--gray);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.host-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expertise-tag {
    padding: 0.375rem 0.875rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== Topics Section ===== */
.topics-section {
    background: var(--white);
}

.topic-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-light);
    transition: var(--transition-medium);
    height: 100%;
}

.topic-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.topic-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.topic-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.topic-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.topic-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.topic-list li {
    padding: 0.5rem 0;
    color: var(--dark);
    position: relative;
    padding-left: 1.5rem;
}

.topic-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.topic-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.topic-link:hover {
    gap: 1rem;
}

/* ===== Pricing Section ===== */
.pricing-section {
    background: var(--light);
}

.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.pricing-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
}

.pricing-card.featured .plan-features li {
    color: var(--white);
}

.pricing-card.featured .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--gray);
    align-self: flex-end;
    margin-bottom: 0.5rem;
}

.pricing-card.featured .period {
    color: rgba(255, 255, 255, 0.8);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.75rem 0;
    color: var(--dark);
    font-size: 0.9375rem;
}

.pricing-note {
    margin-top: 3rem;
    font-size: 1rem;
    color: var(--gray);
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: var(--gradient-primary);
    color: var(--white);
}

.testimonials-section .section-label {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.testimonials-section .section-title,
.testimonials-section .section-description {
    color: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-medium);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.quote-icon {
    font-size: 4rem;
    line-height: 1;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.author-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-position {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.author-rating {
    font-size: 0.875rem;
}

/* ===== Contact Section ===== */
.contact-section {
    background: var(--white);
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: var(--radius-md);
    transition: var(--transition-medium);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-text p {
    margin: 0;
    color: var(--dark);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links .social-link {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    background: var(--primary-color);
    color: var(--white);
}

.social-links .social-link:hover {
    background: var(--primary-dark);
}

.contact-form {
    background: var(--light);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ===== Newsletter Section ===== */
.newsletter-section {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0;
}

.newsletter-wrapper {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

.newsletter-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 0;
}

.newsletter-form {
    max-width: 100%;
}

.input-group {
    display: flex;
    gap: 0.5rem;
}

.input-group .form-control {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
}

.input-group .btn {
    white-space: nowrap;
}

.form-text {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--gray-light);
    padding-top: 80px;
}

.footer-top {
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: var(--transition-fast);
}

.footer-social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-light);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contacts {
    list-style: none;
}

.footer-contacts li {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-weight: 600;
    color: var(--white);
    font-size: 0.875rem;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 0.875rem;
    margin: 0;
}

.registration-number {
    opacity: 0.7;
    font-size: 0.8125rem;
}

.footer-legal {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1.5rem;
    margin: 0;
}

.footer-legal a {
    color: var(--gray-light);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ===== Scroll to Top Button ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-medium);
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===== Cookie Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: var(--shadow-2xl);
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition-medium);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9375rem;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: var(--primary-light);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.w-100 { width: 100% !important; }

.d-flex { display: flex !important; }
.align-items-center { align-items: center !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }

.g-4 {
    --bs-gutter-y: 1.5rem;
    --bs-gutter-x: 1.5rem;
}

/* ===== Content pages improvements (for community/guides/insights/thanks) ===== */

/* Global section spacing to ensure consistent vertical rhythm */
.section {
    padding: 80px 0;
    position: relative;
}

.bg-light {
    background: var(--light) !important;
}

.gradient-background {
    background: var(--gradient-primary);
    color: var(--white);
}

.hero-section {
    padding: 120px 0 100px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /></filter><rect width="100" height="100" filter="url(%23noise)" opacity="0.03"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .hero-section {
        padding: 140px 0 80px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 160px 0 60px;
    }
}

/* Distinct hero styles per page with decorative elements */
.insights-hero { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.insights-hero::after {
    content: '📊';
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 15rem;
    opacity: 0.1;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.guides-hero { 
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    position: relative;
}

.guides-hero::after {
    content: '📚';
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 15rem;
    opacity: 0.1;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.community-hero { 
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    position: relative;
}

.community-hero::after {
    content: '👥';
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 15rem;
    opacity: 0.1;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.thanks-hero { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.thanks-hero::after {
    content: '✨';
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 15rem;
    opacity: 0.1;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.hero-content { 
    max-width: 960px; 
    margin: 0 auto; 
    position: relative;
    z-index: 2;
}

.hero-title { 
    font-family: var(--font-heading); 
    font-size: clamp(2rem, 5vw, 3.5rem); 
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle { 
    font-size: clamp(1rem, 2vw, 1.25rem); 
    opacity: 0.95; 
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-stats { 
    display: flex; 
    gap: 24px; 
    justify-content: center; 
    margin-top: 2rem; 
    flex-wrap: wrap; 
}

.hero-stats .stat-item { 
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px 28px; 
    border-radius: 16px; 
    min-width: 140px; 
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-medium);
}

.hero-stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-stats .stat-number { 
    display: block; 
    font-weight: 800; 
    font-size: clamp(1.5rem, 3vw, 2rem); 
    color: var(--white);
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label { 
    display: block; 
    font-size: 0.875rem; 
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section headers */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 0;
}

/* Card defaults used on content pages */
.card, .next-card, .member-card, .expert-card, .interactive-guide-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background: var(--white);
    transition: var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.card:hover, .next-card:hover, .member-card:hover, .expert-card:hover, .interactive-guide-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.card .card-icon, .next-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.card .card-title, .next-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--dark);
}

.card .card-text, .next-card .card-text {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.7;
    flex-grow: 1;
}

.card .card-meta {
    font-size: 0.875rem;
    color: var(--gray);
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.card a.btn, .next-card a.btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Article/gallery items */
.article-gallery-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.article-gallery-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.article-gallery-item .article-image {
    font-size: 3rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.article-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
    font-weight: 700;
}

.article-content p {
    color: var(--gray);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.article-meta {
    font-size: 0.875rem;
    color: var(--gray);
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Member cards */
.member-card {
    text-align: center;
    padding: 2rem;
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.member-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: block;
}

.member-quote {
    color: var(--gray);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Expert cards */
.expert-card {
    text-align: center;
}

.expert-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.expert-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.expert-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: block;
}

.expert-bio {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Interactive guide cards */
.interactive-guide-card {
    position: relative;
}

.guide-progress {
    height: 10px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.guide-steps {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--gray);
}

.guide-steps .step {
    background: rgba(99, 102, 241, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    color: var(--primary-color);
    font-weight: 600;
}

.guide-steps .time {
    color: var(--gray);
}

/* Checklist cards */
.checklist-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(99, 102, 241, 0.1);
    transition: var(--transition-medium);
}

.checklist-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.checklist-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-weight: 700;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checklist label {
    cursor: pointer;
    color: var(--dark);
    flex: 1;
}

/* Progress stories */
.progress-story {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
}

.progress-story:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.progress-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.progress-circle::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 3px solid var(--primary-light);
    opacity: 0.5;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0; }
}

.progress-story h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.progress-story p {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.progress-story cite {
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

/* Timeline styling */
.timeline {
    display: flex;
    gap: 24px;
    flex-direction: column;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition-medium);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 2rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-xl);
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
    font-weight: 700;
}

.timeline-content p {
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.7;
}

.timeline-marker {
    font-weight: 700;
    color: var(--primary-dark);
    background: rgba(99, 102, 241, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    white-space: nowrap;
}

/* Calendar styling */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.calendar-month {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.calendar-month h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-light);
}

.calendar-events {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calendar-event {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: var(--radius-md);
    transition: var(--transition-medium);
}

.calendar-event:hover {
    background: rgba(99, 102, 241, 0.05);
    transform: translateX(5px);
}

.event-date {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    min-width: 60px;
    text-align: center;
    line-height: 1;
}

.event-info h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
    font-weight: 700;
}

.event-info p {
    font-size: 0.875rem;
    color: var(--gray);
    margin: 0;
}

/* Chat preview */
.chat-preview {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(99, 102, 241, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.chat-messages {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    padding-right: 0.5rem;
}

.chat-message {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
}

.chat-message:hover {
    background: var(--light);
    margin: 0 -1rem;
    padding: 12px 1rem;
    border-radius: var(--radius-sm);
}

.chat-message:last-child {
    border-bottom: none;
}

.message-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    flex-shrink: 0;
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.message-content {
    flex: 1;
}

.message-content strong {
    color: var(--dark);
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.message-time {
    font-size: 0.75rem;
    color: var(--gray);
    margin-left: 0.5rem;
}

.chat-input {
    display: flex;
    gap: 0.75rem;
}

.chat-input .form-control {
    flex: 1;
}

/* Thank you page */
.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 150px;
    height: 150px;
    line-height: 150px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: scale-in 0.5s ease-out, float 3s ease-in-out infinite 0.5s;
    color: var(--white);
    font-weight: 700;
}

@keyframes scale-in {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-content .hero-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.thank-you-content .hero-subtitle {
    margin-bottom: 2rem;
}

/* CTA sections */
.cta-block, .community-join, .newsletter-signup {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-block h2, .community-join h2, .newsletter-signup h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.cta-block p, .community-join p, .newsletter-signup p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.newsletter-signup form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-signup .form-control {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
}

.contact-info {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h2 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.contact-info .contact-details {
    background: var(--light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
}

.contact-info .contact-details p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-info .contact-details a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-section {
        padding: 180px 0 60px;
    }
    
    .card, .next-card, .member-card, .expert-card {
        padding: 1.5rem;
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-item::before {
        left: -1.75rem;
    }
    
    .calendar-grid {
        grid-template-columns: 1fr;
    }
    
    .thank-you-icon {
        font-size: 4rem;
        width: 120px;
        height: 120px;
        line-height: 120px;
    }
    
    .newsletter-signup form {
        flex-direction: column;
    }
    
    .newsletter-signup .form-control {
        min-width: 100%;
    }
    
    .insights-hero::after,
    .guides-hero::after,
    .community-hero::after,
    .thanks-hero::after {
        font-size: 8rem;
        opacity: 0.05;
    }
}
