/* ==============================================
   TABLE OF CONTENTS
   ==============================================
   1. CSS Variables & Reset
   2. Typography & General Styles
   3. Header & Navigation
   4. Hero Section
   5. Episodes Section
   6. Topics Section
   7. Hosts Section
   8. Premium Section
   9. Reviews Section
   10. Contact Section
   11. Subscribe Section
   12. Footer
   13. Scroll to Top Button
   14. Cookie Notice
   15. Responsive Design
   ============================================== */

/* ========== 1. CSS Variables & Reset ========== */
:root {
    --primary-color: #4285F4;
    --secondary-color: #EA4335;
    --accent-color: #FBBC04;
    --success-color: #34A853;
    --dark: #1a1a1a;
    --dark-light: #2d2d2d;
    --gray: #6c757d;
    --gray-light: #f8f9fa;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #4285F4 0%, #EA4335 100%);
    --gradient-2: linear-gradient(135deg, #FBBC04 0%, #34A853 100%);
    --gradient-3: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ========== 2. Typography & General Styles ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.1) 0%, rgba(234, 67, 53, 0.1) 100%);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.section-header {
    margin-bottom: 4rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ========== 3. Disclaimer Banner ========== */
.disclaimer-banner {
    position: relative;
    background: #dc3545;
    color: #ffffff;
    padding: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
    border-top: 2px solid #c82333;
    border-bottom: 2px solid #c82333;
    margin: 0;
}

.disclaimer-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 100%;
}

.disclaimer-content svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.disclaimer-content p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    flex: 1;
}

.disclaimer-content strong {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Adjust body padding to account for header */
body {
    padding-top: 0;
}

/* Hero section should account for header height */
.hero-split {
    margin-top: 60px;
}

/* ========== 4. Header & Navigation ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: top 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand .logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    position: relative;
    width: 30px;
    height: 24px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-toggler[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========== 5. Hero Section - Split Layout ========== */
.hero-split {
    display: flex;
    min-height: calc(100vh - 60px);
    background: #0b0d12;
    overflow: visible;
    margin-top: 60px;
    position: relative;
}

/* Sidebar */
.hero-sidebar {
    width: 280px;
    background: linear-gradient(135deg, #1a1f2e 0%, #0f1219 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 60px 30px;
    flex-shrink: 0;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: space-between;
}

.sidebar-title {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 200px;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: clamp(2rem, 8vw, 2.5rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    color: #ffffff;
    white-space: nowrap;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.social-icon:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Main Content Area */
.hero-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 80px;
    position: relative;
    overflow: visible;
    min-height: 100%;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
    transform: none !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #ff6b6b;
    margin-bottom: 30px;
}

.badge-icon {
    font-size: 16px;
}

/* Title */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 40px 0;
    max-width: 500px;
}

/* Stats Grid */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #ff6b6b;
    line-height: 1;
    margin-bottom: 8px;
    min-height: 1.2em;
    display: block;
    opacity: 1;
    visibility: visible;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Features */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.feature-item svg {
    color: #ff6b6b;
    flex-shrink: 0;
}

/* CTA Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-cta-primary,
.hero-cta-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.hero-cta-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: visible;
    opacity: 0.15;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== 6. Episodes Section ========== */
.episodes-section {
    background: var(--white);
    padding-top: 4rem;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.episode-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.episode-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.episode-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.episode-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.episode-card.featured .episode-image {
    aspect-ratio: auto;
}

.episode-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.episode-card:hover .episode-image img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.episode-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.play-btn:hover {
    transform: scale(1.1);
}

.episode-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.episode-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.episode-content {
    padding: 1.5rem;
}

.episode-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray);
}

.episode-number {
    color: var(--primary-color);
    font-weight: 700;
}

.episode-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.episode-excerpt {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.episode-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.375rem 0.875rem;
    background: var(--gray-light);
    color: var(--gray);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ========== 7. Topics Section ========== */
.topics-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.topic-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.topic-icon {
    margin-bottom: 1rem;
}

.topic-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.topic-card p {
    color: var(--gray);
    font-size: 0.9375rem;
}

/* ========== 8. Hosts Section ========== */
.hosts-section {
    background: var(--white);
}

.host-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.host-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.host-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.host-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.host-card:hover .host-image img {
    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);
}

.host-card:hover .host-social {
    opacity: 1;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.host-info {
    padding: 1.5rem;
}

.host-name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.host-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.host-bio {
    color: var(--gray);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ========== 9. Premium Section ========== */
.premium-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.premium-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.premium-visual {
    position: relative;
}

.premium-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.premium-badge-float {
    position: absolute;
    top: -20px;
    right: -20px;
    animation: float 6s ease-in-out infinite;
}

.premium-badge {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
}

.premium-section .section-title {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

.premium-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.premium-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.premium-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.premium-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
}

.premium-feature h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.premium-feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.premium-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #FFD700;
}

.price-period {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
}

.btn-premium {
    padding: 1rem 2rem;
    background: #FFD700;
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
    background: #FFC700;
}

/* ========== 10. Reviews Section ========== */
.reviews-section {
    background: var(--white);
}

.rating-overview {
    margin-top: 1.5rem;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.rating-text {
    color: var(--gray);
    font-size: 1rem;
}

.reviews-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.review-stars {
    font-size: 0.875rem;
}

.review-text {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.review-date {
    font-size: 0.875rem;
    color: var(--gray);
}

/* ========== 11. Contact Section ========== */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.1) 0%, rgba(234, 67, 53, 0.1) 100%);
    border-radius: 12px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-info-card p {
    color: var(--gray);
    margin: 0;
}

.contact-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.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 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

textarea.form-control {
    resize: vertical;
}

.form-check {
    margin: 1.5rem 0;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
}

.form-check-label {
    font-size: 0.9375rem;
    color: var(--gray);
}

.form-check-label a {
    color: var(--primary-color);
    font-weight: 600;
}

/* ========== 12. Subscribe Section ========== */
.subscribe-section {
    background: var(--gradient-1);
    color: var(--white);
}

.subscribe-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.subscribe-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.subscribe-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.subscribe-form {
    margin-top: 1.5rem;
}

.subscribe-form .input-group {
    display: flex;
    gap: 1rem;
}

.subscribe-form .form-control {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
}

.subscribe-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscribe-form .form-control:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.btn-subscribe {
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-subscribe:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

.subscribe-note {
    display: block;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* ========== 13. Footer ========== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-about {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 0.875rem;
    margin: 0;
}

.footer-payment {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
}

/* ========== 14. Scroll to Top Button ========== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

/* ========== 15. Cookie Notice ========== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 1.5rem 0;
    z-index: 1001;
    transform: translateY(100%);
    transition: var(--transition);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

/* ========== 16. Responsive Design ========== */
@media (max-width: 991px) {
    section {
        padding: 4rem 0;
    }
    
    .hero-split {
        flex-direction: column;
        overflow: visible;
    }
    
    .hero-sidebar {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 30px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        min-height: auto;
    }
    
    .hero-main {
        overflow: visible;
    }
    
    .sidebar-content {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
    
    .sidebar-title {
        min-height: auto;
        flex: 0 1 auto;
    }
    
    .vertical-text {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 2rem;
    }
    
    .social-links {
        flex-direction: row;
        gap: 15px;
    }
    
    .hero-main {
        padding: 50px 40px;
        overflow: visible;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .episode-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .premium-container {
        padding: 2rem;
    }
    
    .premium-pricing {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .subscribe-form .input-group {
        flex-direction: column;
    }
    
    .btn-subscribe {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-payment {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

@media (max-width: 767px) {
    .disclaimer-banner {
        padding: 1rem 0;
    }
    
    .disclaimer-content {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }
    
    .disclaimer-content svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    .disclaimer-content p {
        font-size: 0.8125rem;
    }
    
    body {
        padding-top: 0;
    }
    
    .header {
        top: 0;
        position: sticky;
    }
    
    .hero-split {
        margin-top: 0;
        min-height: calc(100vh - 60px);
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    /* Split Hero - Mobile */
    .hero-sidebar {
        padding: 25px 20px;
    }
    
    .sidebar-content {
        gap: 30px;
    }
    
    .vertical-text {
        font-size: 1.5rem;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .social-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .hero-main {
        padding: 40px 25px;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .hero-features {
        gap: 12px;
    }
    
    .feature-item {
        font-size: 14px;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .navbar-collapse {
        background: var(--white);
        padding: 1.5rem;
        border-radius: 12px;
        margin-top: 1rem;
        box-shadow: var(--shadow-md);
    }
    
    .navbar-nav {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 8px;
    }
    
    .nav-link:hover {
        background: var(--gray-light);
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .platform-icons {
        flex-wrap: wrap;
    }
    
    .episodes-grid {
        grid-template-columns: 1fr;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-masonry {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .subscribe-container {
        padding: 2rem 1.5rem;
    }
    
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575px) {
    .disclaimer-banner {
        padding: 0.625rem 0;
    }
    
    .disclaimer-content {
        gap: 0.5rem;
    }
    
    .disclaimer-content svg {
        width: 18px;
        height: 18px;
    }
    
    .disclaimer-content p {
        font-size: 0.75rem;
    }
    
    body {
        padding-top: 0;
    }
    
    .hero-split {
        margin-top: 0;
        min-height: calc(100vh - 60px);
        overflow: visible;
    }
    
    .disclaimer-banner {
        padding: 0.875rem 0;
    }
    
    .disclaimer-content p {
        font-size: 0.75rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    /* Split Hero - Small Mobile */
    .hero-split {
        min-height: auto;
        overflow: visible;
    }
    
    .hero-main {
        overflow: visible;
        padding: 30px 20px;
    }
    
    .hero-image-container {
        overflow: visible;
    }
    
    .hero-sidebar {
        padding: 20px;
    }
    
    .sidebar-content {
        gap: 20px;
    }
    
    .vertical-text {
        font-size: 1.2rem;
        letter-spacing: 0.1em;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .social-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .hero-main {
        padding: 30px 20px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .hero-badge {
        padding: 10px 16px;
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 25px;
        padding: 20px 0;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .hero-features {
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .feature-item {
        font-size: 13px;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .premium-badge-float {
        top: 10px;
        right: 10px;
    }
    
    .premium-badge-float svg {
        width: 40px;
        height: 40px;
    }
}

/* AOS Animation Overrides */
[data-aos] {
    pointer-events: auto;
}

/* Loading State */
body.loading {
    overflow: hidden;
}

/* Smooth Scrolling for iOS */
@supports (-webkit-overflow-scrolling: touch) {
    html {
        -webkit-overflow-scrolling: touch;
    }
}

/* Print Styles */
@media print {
    .header,
    .scroll-to-top,
    .cookie-notice {
        display: none;
    }
}

/* ========== Additional Pages Styles ========== */

/* About Podcast Page */
.about-page {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.about-hero h1 {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.about-hero .lead {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.about-section:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.about-section h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid;
    border-image: var(--gradient-1) 1;
}

.about-section h2::before {
    content: '';
    width: 4px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 2px;
    flex-shrink: 0;
}

.about-section p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.0625rem;
    margin-bottom: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.about-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.about-feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.about-feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.about-feature-card p {
    color: var(--gray);
    font-size: 0.9375rem;
    margin: 0;
}

/* Investment Guides Page */
.guides-page {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.guides-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.guides-hero h1 {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.guides-hero .lead {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

.guides-content {
    max-width: 1000px;
    margin: 0 auto;
}

.guide-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    transition: var(--transition);
    border-left: 5px solid transparent;
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-2);
    transition: var(--transition);
}

.guide-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.guide-card:hover::before {
    width: 8px;
}

.guide-card h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.guide-card h2::before {
    content: '';
    width: 48px;
    height: 48px;
    background: var(--gradient-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.guide-card:nth-child(1) h2::before {
    content: '📚';
    font-size: 1.5rem;
}

.guide-card:nth-child(2) h2::before {
    content: '💼';
    font-size: 1.5rem;
}

.guide-card:nth-child(3) h2::before {
    content: '🛡️';
    font-size: 1.5rem;
}

.guide-card:nth-child(4) h2::before {
    content: '✨';
    font-size: 1.5rem;
}

.guide-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.0625rem;
    margin-bottom: 1rem;
}

.guide-card ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

.guide-card li {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.guide-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.guide-tips {
    background: linear-gradient(135deg, rgba(251, 188, 4, 0.1) 0%, rgba(52, 168, 83, 0.1) 100%);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
    border-left: 4px solid var(--accent-color);
}

.guide-tips h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guide-tips h3::before {
    content: '💡';
    font-size: 1.5rem;
}

/* Resources Page */
.resources-page {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.resources-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.resources-hero h1 {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.resources-hero .lead {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

.resources-content {
    max-width: 1200px;
    margin: 0 auto;
}

.resource-category {
    margin-bottom: 4rem;
}

.resource-category h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid;
    border-image: var(--gradient-3) 1;
    font-size: 2rem;
}

.resource-category h2::before {
    content: '';
    width: 6px;
    height: 40px;
    background: var(--gradient-3);
    border-radius: 3px;
    flex-shrink: 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-3);
    transform: scaleX(0);
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.resource-card:hover::before {
    transform: scaleX(1);
}

.resource-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.resource-card h3::before {
    content: '📖';
    font-size: 1.5rem;
}

.resource-card:nth-child(2) h3::before {
    content: '🌐';
}

.resource-card:nth-child(3) h3::before {
    content: '🛠️';
}

.resource-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resource-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-light);
    color: var(--gray);
    transition: var(--transition);
}

.resource-card li:last-child {
    border-bottom: none;
}

.resource-card li:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.resource-card a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.resource-card a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

/* Thank You Page Enhancements */
.thank-you-page {
    position: relative;
    overflow: hidden;
}

.thank-you-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.thank-you-content {
    position: relative;
    z-index: 10;
}

.thank-you-icon {
    animation: scaleIn 0.5s ease, pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.thank-you-content h1 {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.thank-you-content p {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.thank-you-content .btn {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Responsive for Additional Pages */
@media (max-width: 767px) {
    .about-page,
    .guides-page,
    .resources-page {
        padding: 120px 0 60px;
    }
    
    .about-section,
    .guide-card,
    .resource-card {
        padding: 1.5rem;
    }
    
    .about-features,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .about-section h2,
    .guide-card h2,
    .resource-category h2 {
        font-size: 1.5rem;
    }
}