/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B1538;
    --primary-dark: #6B0F2A;
    --primary-light: #A51D45;
    --secondary-color: #2C2C2C;
    --accent-gold: #D4AF37;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --text-gray: #666666;
    --bg-light: #F8F8F8;
    --bg-white: #FFFFFF;
    
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-weight: 800;
    font-size: 20px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(139, 21, 56, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 0;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 32px;
    animation: fadeInUp 1s ease-out;
}

.hero-title .highlight {
    color: var(--primary-light);
    display: inline-block;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(139, 21, 56, 0.3);
    z-index: -1;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.primary-btn,
.secondary-btn {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.primary-btn {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 16px rgba(139, 21, 56, 0.3);
}

.primary-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139, 21, 56, 0.4);
}

.secondary-btn {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.secondary-btn:hover {
    background: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    animation: fadeIn 1s ease-out 0.8s both;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--primary-color);
    padding: 60px 0;
    transform: translateY(-1px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: var(--text-light);
}

.stat-number {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

/* ===== SECTION STYLES ===== */
.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.outline-btn {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.outline-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.about-image {
    position: relative;
}

.image-placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.image-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
}

/* ===== PROGRAM SECTION ===== */
.program-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.program-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.program-showcase-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.program-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.program-feature {
    display: flex;
    gap: 16px;
    align-items: start;
}

.feature-icon-circle {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-circle svg {
    width: 24px;
    height: 24px;
    color: var(--text-light);
}

.program-feature h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.program-feature p {
    font-size: 14px;
    color: var(--text-gray);
}

.program-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.program-showcase-visual {
    position: relative;
}

.program-video-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.video-info {
    padding: 24px;
    background: var(--bg-light);
}

.video-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.video-info p {
    font-size: 15px;
    color: var(--text-gray);
}

.play-button {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(139, 21, 56, 0.4);
}

.play-button svg {
    width: 24px;
    height: 24px;
    color: var(--text-light);
    margin-left: 3px;
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

/* ===== WHAT YOU'LL LEARN SECTION ===== */
.learn-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.learn-item {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.learn-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.learn-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 16px;
}

.learn-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.learn-item p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== VIDEO TESTIMONIALS SECTION ===== */
.video-testimonials-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    margin-bottom: 60px;
}

.video-testimonial-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.video-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.video-testimonial-card.featured {
    grid-row: span 1;
}

.video-thumbnail {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.video-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-light);
    z-index: 1;
    pointer-events: none;
}

.video-overlay-text h3 {
    font-family: var(--font-display);
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.video-overlay-text p {
    font-size: clamp(11px, 1.5vw, 14px);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.play-button-large {
    width: 80px;
    height: 80px;
    background: rgba(139, 21, 56, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(139, 21, 56, 0.5);
    position: relative;
    z-index: 2;
}

.play-button-large svg {
    width: 32px;
    height: 32px;
    color: var(--text-light);
    margin-left: 4px;
}

.play-button-large:hover {
    transform: scale(1.1);
    background: var(--primary-color);
}

.video-card-content {
    padding: 24px;
}

.video-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.video-card-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.testimonial-quote-banner {
    background: var(--bg-white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.quote-mark {
    font-size: 80px;
    font-family: var(--font-display);
    color: var(--primary-color);
    line-height: 0.8;
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.testimonial-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
}

/* ===== JOURNAL SECTION ===== */
.journal-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.journal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.journal-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journal-books {
    position: relative;
    width: 100%;
    height: 100%;
}

.book {
    position: absolute;
    width: 280px;
    height: 380px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.book-1 {
    top: 50%;
    left: 10%;
    transform: translateY(-50%) rotate(-8deg);
    z-index: 1;
}

.book-2 {
    top: 50%;
    right: 10%;
    transform: translateY(-50%) rotate(12deg);
    background: linear-gradient(135deg, var(--accent-gold) 0%, #B8941F 100%);
}

.journal-books:hover .book-1 {
    transform: translateY(-50%) rotate(-12deg) translateY(-10px);
}

.journal-books:hover .book-2 {
    transform: translateY(-50%) rotate(16deg) translateY(-10px);
}

.journal-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.journal-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

/* ===== PODCAST SECTION ===== */
.podcast-section {
    background: linear-gradient(135deg, #1B8B8E 0%, #1A7577 100%);
    padding: 40px 0;
}

.podcast-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.podcast-info {
    display: flex;
    gap: 20px;
    align-items: center;
    color: var(--text-light);
}

.podcast-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.podcast-icon svg {
    width: 32px;
    height: 32px;
    color: var(--text-light);
}

.podcast-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-light);
}

.podcast-text p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.podcast-player {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 16px;
}

.play-pause-btn {
    width: 48px;
    height: 48px;
    background: var(--text-light);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.play-pause-btn svg {
    width: 20px;
    height: 20px;
    color: #1B8B8E;
}

.play-pause-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.audio-progress {
    flex: 1;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--text-light);
    border-radius: 3px;
    transition: width 0.1s linear;
}

.audio-time {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.volume-btn {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.volume-btn svg {
    width: 20px;
    height: 20px;
}

.volume-btn:hover {
    opacity: 0.8;
}

.subscribe-link {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 20px;
    border: 2px solid var(--text-light);
    border-radius: 20px;
    transition: var(--transition);
    white-space: nowrap;
}

.subscribe-link:hover {
    background: var(--text-light);
    color: #1B8B8E;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn-large,
.secondary-btn-large {
    padding: 20px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.primary-btn-large {
    background: var(--text-light);
    color: var(--primary-color);
}

.primary-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.secondary-btn-large {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.secondary-btn-large:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-logo span {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-light);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) rotate(-45deg);
    }
    50% {
        transform: translateY(10px) rotate(-45deg);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .about-content,
    .journal-content,
    .program-showcase,
    .podcast-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .video-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-quote-banner {
        padding: 40px 24px;
    }
    
    .program-features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons button,
    .hero-buttons a {
        width: 100%;
        max-width: 300px;
    }
    
    .audio-player {
        flex-wrap: wrap;
    }
    
    .audio-controls {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .learn-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
