/* ========================================
   Global Styles & Reset
======================================== */
:root {
    --primary-color: #2563eb;
    --secondary-color: #0ea5e9;
    --accent-color: #f59e0b;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #cbd5e1;
    --text-muted: #64748b;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    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', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.bg-light {
    background-color: var(--light-bg) !important;
    color: var(--text-dark) !important;
}

.bg-white {
    background-color: var(--white) !important;
    color: var(--text-dark) !important;
}

.benefit-card {
    color: var(--text-dark);
}

.policy-content {
    color: var(--text-dark);
}

.policy-section {
    color: var(--text-dark);
}

.about-gradient-section {
    color: var(--white) !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-normal);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========================================
   Header & Navigation
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.navbar-nav {
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.burger-line {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all var(--transition-normal);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.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(7px, -7px);
}

/* ========================================
   Hero Section - Organic Semicircle Layout
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    background: #fafafa;
}

/* Огромный полукруг справа */
.hero-semicircle-bg {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 120vh;
    height: 120vh;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.3s ease-out;
    box-shadow: 0 0 100px rgba(59, 130, 246, 0.3);
}

/* Контейнер для hero */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    padding: 0 40px;
}

.hero-content-wrapper {
    max-width: 900px;
}

/* Обтекающий текст */
.hero-text-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-label {
    font-size: 16px;
    font-weight: 400;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease backwards;
}

/* Заголовок с увеличивающимся размером */
.hero-title-curved {
    display: flex;
    flex-direction: column;
    gap: 8px;
    line-height: 1;
    margin: 0;
}

.title-word {
    display: block;
    color: #0f172a;
    animation: fadeInLeft 1s ease backwards;
}

.title-word.size-1 {
    font-size: 48px;
    font-weight: 500;
    animation-delay: 0.1s;
}

.title-word.size-2 {
    font-size: 64px;
    font-weight: 600;
    margin-left: 40px;
    animation-delay: 0.2s;
}

.title-word.size-3 {
    font-size: 80px;
    font-weight: 700;
    margin-left: 80px;
    animation-delay: 0.3s;
}

.title-word.size-4 {
    font-size: 100px;
    font-weight: 800;
    margin-left: 120px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.4s;
}

.title-word.size-5 {
    font-size: 120px;
    font-weight: 900;
    margin-left: 160px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Описание */
.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    font-weight: 400;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.6s backwards;
}

/* Кнопки действий */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.7s backwards;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-hero-secondary {
    background: white;
    color: #3b82f6;
    border-color: #3b82f6;
}

.btn-hero-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-3px);
}

/* Статистика */
.hero-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Sections
======================================== */

section {
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.play-mini:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 36px rgba(59, 130, 246, 0.5);
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--dark-bg);
    color: var(--white);
    border-color: var(--dark-bg);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ========================================
   Section Utilities
======================================== */
section {
    padding: 100px 0;
    position: relative;
}

section + section {
    margin-top: 80px;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--light-bg);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-title .accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center .section-description {
    margin: 0 auto;
}

.section-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

/* ========================================
   Podcasts Section
======================================== */
.podcasts-section {
    background: var(--light-bg);
}

.section-controls {
    display: flex;
    gap: 1rem;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.control-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.podcasts-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.podcast-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.podcast-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.podcast-image {
    position: relative;
    height: 250px;
    background: var(--border-color);
    overflow: hidden;
}

.podcast-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.podcast-card:hover .podcast-image img {
    transform: scale(1.1);
}

.podcast-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.podcast-card:hover .podcast-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all var(--transition-normal);
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--gradient-primary);
    color: var(--white);
}

.podcast-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.podcast-info {
    padding: 1.5rem;
}

.podcast-category {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--light-bg);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.podcast-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.podcast-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.podcast-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.podcast-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.podcast-meta i {
    color: var(--primary-color);
}

/* ========================================
   Hosts Section
======================================== */
.hosts-section {
    background: var(--white);
}

.hosts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.host-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
}

.host-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.host-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
}

.host-card.featured .host-role,
.host-card.featured .host-bio {
    color: rgba(255, 255, 255, 0.9);
}

.host-image-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.host-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.host-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.host-social {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: all var(--transition-normal);
}

.host-card:hover .host-social {
    opacity: 1;
}

.host-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.host-social a:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.host-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.host-role {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.host-card.featured .host-role {
    color: var(--white);
}

.host-bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   Topics Section
======================================== */
.topics-section {
    background: var(--light-bg);
}

.topics-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.topics-sidebar {
    position: sticky;
    top: 120px;
}

.topics-sidebar .section-description {
    margin-bottom: 2rem;
}

.btn-outline {
    padding: 0.9rem 2rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-normal);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.topic-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.topic-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.topic-item.topic-large {
    grid-column: span 2;
    background: var(--gradient-primary);
    color: var(--white);
}

.topic-item.topic-wide {
    grid-column: span 2;
}

.topic-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.topic-item.topic-large .topic-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.topic-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.topic-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.topic-item.topic-large .topic-description {
    color: rgba(255, 255, 255, 0.9);
}

.topic-count {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

.topic-item.topic-large .topic-count {
    color: var(--white);
}

/* ========================================
   Testimonials Section - Masonry Layout
======================================== */
.testimonials-section {
    background: var(--white);
    position: relative;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--light-bg);
    z-index: 0;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    grid-auto-flow: dense;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card.testimonial-featured {
    grid-column: span 2;
    background: var(--gradient-primary);
    color: var(--white);
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 1rem;
}

.testimonial-card.testimonial-featured .testimonial-rating i {
    color: var(--white);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonial-card.testimonial-featured .testimonial-text {
    color: var(--white);
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-card.testimonial-featured .author-role {
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   Subscribe Section
======================================== */
.subscribe-section {
    background: var(--light-bg);
}

.subscribe-wrapper {
    background: var(--white);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.subscribe-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--light-bg);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.subscribe-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.subscribe-badge span {
    font-weight: 600;
    color: var(--text-dark);
}

.subscribe-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.subscribe-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.subscribe-form {
    margin-bottom: 2rem;
}

.form-group-horizontal {
    display: flex;
    gap: 1rem;
}

.form-control {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.subscribe-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.subscribe-platforms {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.platforms-label {
    font-weight: 600;
    color: var(--text-dark);
}

.platform-icons {
    display: flex;
    gap: 1rem;
}

.platform-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    transition: all var(--transition-normal);
}

.platform-icon:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.subscribe-visual {
    position: relative;
    height: 400px;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    top: 10%;
    right: 10%;
}

.circle-2 {
    width: 150px;
    height: 150px;
    background: var(--gradient-secondary);
    bottom: 20%;
    left: 5%;
    animation-delay: 1s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    top: 50%;
    right: 30%;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.subscribe-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ========================================
   Contact Section
======================================== */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-details {
    margin-top: 3rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-detail-item:last-child {
    border-bottom: none;
}

.detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.detail-content {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.detail-value {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.detail-value:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 20px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.contact-form textarea.form-control {
    resize: vertical;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: var(--text-light);
    transition: all var(--transition-normal);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-list li i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   Disclaimer Banner
======================================== */
.disclaimer-banner {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #dc2626;
    color: #ffffff;
    padding: 1rem 0;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.disclaimer-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.disclaimer-content i {
    font-size: 1.5rem;
    flex-shrink: 0;
    color: #ffffff;
}

.disclaimer-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffffff;
}

.disclaimer-content strong {
    font-weight: 700;
}


/* ========================================
   Cookie Banner
======================================== */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideInUp 0.5s ease;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-accept {
    padding: 0.75rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
    transition: all var(--transition-normal);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   Animations
======================================== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .disclaimer-content {
        padding: 0 20px;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .disclaimer-content i {
        font-size: 1.3rem;
    }
    
    .disclaimer-content p {
        font-size: 0.85rem;
    }
    
    .hero {
        padding-top: 160px;
        padding-bottom: 80px;
    }
    
    .hero-semicircle-bg {
        width: 100vh;
        height: 100vh;
        right: -20%;
    }
    
    .hero-content-wrapper {
        max-width: 700px;
    }
    
    .title-word.size-1 { font-size: 40px; }
    .title-word.size-2 { font-size: 52px; margin-left: 30px; }
    .title-word.size-3 { font-size: 64px; margin-left: 60px; }
    .title-word.size-4 { font-size: 80px; margin-left: 90px; }
    .title-word.size-5 { font-size: 96px; margin-left: 120px; }
    
    .topics-layout {
        grid-template-columns: 1fr;
    }
    
    .topics-sidebar {
        position: static;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .subscribe-wrapper {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }
    
    .subscribe-visual {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        border-radius: 15px;
        margin-top: 1rem;
        box-shadow: var(--shadow-md);
    }
    
    .navbar-nav {
        gap: 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
    }
    
    .disclaimer-banner {
        top: 70px;
    }
    
    .disclaimer-content {
        padding: 0 15px;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .disclaimer-content i {
        font-size: 1.2rem;
    }
    
    .disclaimer-content p {
        font-size: 0.8rem;
    }
    
    .hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    
    .hero-semicircle-bg {
        width: 80vh;
        height: 80vh;
        right: -30%;
    }
    
    .title-word.size-1 { font-size: 32px; margin-left: 0; }
    .title-word.size-2 { font-size: 40px; margin-left: 20px; }
    .title-word.size-3 { font-size: 48px; margin-left: 40px; }
    .title-word.size-4 { font-size: 56px; margin-left: 60px; }
    .title-word.size-5 { font-size: 64px; margin-left: 80px; }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .podcasts-carousel,
    .hosts-grid,
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .topic-item.topic-large,
    .topic-item.topic-wide {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .disclaimer-banner {
        top: 60px;
        padding: 0.75rem 0;
    }
    
    .disclaimer-content {
        padding: 0 10px;
    }
    
    .disclaimer-content p {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .hero {
        padding-top: 130px;
    }
    
    .hero-semicircle-bg {
        width: 60vh;
        height: 60vh;
        right: -40%;
    }
    
    .title-word.size-1 { font-size: 24px; margin-left: 0; }
    .title-word.size-2 { font-size: 28px; margin-left: 10px; }
    .title-word.size-3 { font-size: 32px; margin-left: 20px; }
    .title-word.size-4 { font-size: 36px; margin-left: 30px; }
    .title-word.size-5 { font-size: 40px; margin-left: 40px; }
    
    .subscribe-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .subscribe-title {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* ========================================
   Additional Pages - Unique Styles
======================================== */

/* About Page Unique Styles */
.about-hero-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.about-hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    font-weight: 800;
}

.about-benefits-section {
    position: relative;
}

.benefit-card {
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.benefit-card i {
    transition: all var(--transition-normal);
}

.benefit-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

.text-accent {
    color: var(--accent-color);
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

/* Blog Page Unique Styles */
.blog-hero-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fcd34d 100%);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
    animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.article-card {
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transition: left var(--transition-slow);
}

.article-card:hover::before {
    left: 0;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.article-card i {
    transition: all var(--transition-normal);
}

.article-card:hover i {
    transform: scale(1.3) rotate(-10deg);
    color: var(--accent-color);
}

/* Resources Page Unique Styles */
.resources-hero-section {
    background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 50%, #a78bfa 100%);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.resources-hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

.resource-card {
    transition: all var(--transition-normal);
    position: relative;
    border-left: 4px solid transparent;
}

.resource-card:hover {
    transform: translateX(10px);
    border-left-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.resource-card i {
    transition: all var(--transition-normal);
}

.resource-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

.resource-card ul {
    list-style: none;
    padding-left: 0;
}

.resource-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    transition: all var(--transition-normal);
}

.resource-card ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    transition: all var(--transition-normal);
}

.resource-card:hover ul li::before {
    transform: translateX(5px);
    color: var(--accent-color);
}

.resource-card ul li:hover {
    padding-left: 2rem;
    color: var(--primary-color);
}

/* Policy Pages Unique Visual Elements */
.policy-content {
    position: relative;
}

/* Privacy Policy - Blue accent */
.privacy-policy-page .policy-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.privacy-policy-page .policy-wrapper {
    position: relative;
    border-top: 5px solid var(--primary-color);
}

.privacy-policy-page .policy-title::before {
    content: '🔒';
    display: inline-block;
    margin-right: 1rem;
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
}

/* Terms and Conditions - Purple accent */
.terms-conditions-page .policy-wrapper::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.terms-conditions-page .policy-wrapper {
    position: relative;
    border-top: 5px solid #7c3aed;
}

.terms-conditions-page .policy-title::before {
    content: '📋';
    display: inline-block;
    margin-right: 1rem;
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Cookie Policy - Orange accent */
.cookie-policy-page .policy-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.cookie-policy-page .policy-wrapper {
    position: relative;
    border-top: 5px solid var(--accent-color);
}

.cookie-policy-page .policy-title::before {
    content: '🍪';
    display: inline-block;
    margin-right: 1rem;
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
    animation-delay: 1s;
}

/* Terms of Service - Green accent */
.terms-service-page .policy-wrapper::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.terms-service-page .policy-wrapper {
    position: relative;
    border-top: 5px solid #10b981;
}

.terms-service-page .policy-title::before {
    content: '⚖️';
    display: inline-block;
    margin-right: 1rem;
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Enhanced section headers for additional pages */
.page-section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 2rem;
}

.page-section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Responsive adjustments for additional pages */
@media (max-width: 768px) {
    .gradient-text {
        font-size: 2.5rem;
    }
    
    .about-hero-section,
    .blog-hero-section,
    .resources-hero-section {
        padding: 140px 0 60px;
    }
    
    .privacy-policy-page .policy-title::before,
    .terms-conditions-page .policy-title::before,
    .cookie-policy-page .policy-title::before,
    .terms-service-page .policy-title::before {
        font-size: 2rem;
        margin-right: 0.5rem;
    }
}