/* ===================================
   MIRACLE MOMENT - LANDING PAGE STYLES
   Brand Colors & Redemption Design System
   =================================== */

/* ===================================
   CSS VARIABLES - BRAND THEME
   =================================== */
:root {
    /* Brand Colors - Miracle Moment */
    --deep-blue: #0748bf;
    --soft-blue: #0748bf;
    --bright-gold: #FFB901;
    --soft-gold: #ffd54f;
    --gold-accent: #FFB901;
    --gold-shimmer: linear-gradient(135deg, #FFB901, #ffd54f, #FFB901);
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #1a1a1a;
    
    /* Legacy variable names for compatibility */
    --deep-sky-blue: #0748bf;
    --charcoal-brown: #1a1a1a;
    --soft-linen: #f8f9fa;
    --light-cream: #ffffff;
    
    /* Typography */
    --font-headline: 'Cormorant Garamond', serif; /* Le Jour Serif alternative */
    --font-header: 'Montserrat', sans-serif; /* Coco Gothic alternative */
    --font-body: 'Lora', serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===================================
   GLOBAL RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal-brown);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 30px;
}

/* ===================================
   TYPOGRAPHY STYLES
   =================================== */
h1, h2, h3 {
    font-family: var(--font-headline);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

strong {
    font-weight: 600;
    color: var(--deep-sky-blue);
}

/* ===================================
   BUTTON STYLES
   =================================== */
.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: var(--font-header);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(7, 72, 191, 0.3);
    cursor: pointer;
}

.cta-primary {
    background: linear-gradient(135deg, var(--deep-blue), var(--soft-blue));
    color: var(--white);
}

.cta-final {
    background: linear-gradient(135deg, var(--bright-gold), var(--soft-gold));
    color: var(--text-dark);
    box-shadow: 0 10px 40px rgba(255, 185, 1, 0.5);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(7, 72, 191, 0.5);
}

.cta-final:hover {
    box-shadow: 0 15px 50px rgba(255, 185, 1, 0.7);
}

/* Shimmer Effect */
.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 50%, var(--deep-blue) 100%);
    padding: 80px 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(7, 72, 191, 0.2), transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.3; }
    50% { transform: translateX(-50%) scale(1.2); opacity: 0.5; }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Left - Podcast Cover */
.hero-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.podcast-cover-wrapper {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(7, 72, 191, 0.4);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.podcast-cover-wrapper:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 30px 80px rgba(7, 72, 191, 0.6);
}

.podcast-cover-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    display: block;
}

/* Hero Right - Content */
.hero-right {
    color: var(--charcoal-brown);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-family: var(--font-header);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
    color: var(--deep-sky-blue);
}

.hero-headline {
    color: var(--charcoal-brown);
    margin-bottom: 20px;
}

.hero-icon {
    display: inline-block;
    font-size: 3rem;
    margin-right: 10px;
}

.headline-highlight {
    background: linear-gradient(135deg, var(--deep-sky-blue), #0956d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero-subheadline {
    font-family: var(--font-header);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--charcoal-brown);
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--charcoal-brown);
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-social-proof {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.social-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--charcoal-brown);
}

.social-stat i {
    font-size: 1.5rem;
    color: var(--deep-sky-blue);
}

/* Hero micro text */
.hero-micro-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-top: 30px;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-micro-text i {
    color: var(--bright-gold);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--white);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    background: var(--soft-linen);
    padding: var(--section-padding);
    position: relative;
}

.divider-line {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    margin: 0;
}

.gold-divider {
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.host-image-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    margin: 0 auto;
    border-radius: 20px;
    border: 4px solid var(--gold-accent);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.host-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.frame-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--gold-accent), var(--deep-sky-blue));
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-header);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--deep-sky-blue);
    margin-bottom: 15px;
}

.section-title {
    color: var(--charcoal-brown);
    margin-bottom: 30px;
}

.section-title.centered {
    text-align: center;
}

.lead-paragraph {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--charcoal-brown);
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-family: var(--font-header);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.feature-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(7, 72, 191, 0.2);
}

.feature-badge i {
    color: var(--deep-sky-blue);
}

/* ===================================
   IDEAL GUEST SECTION
   =================================== */
.ideal-guest-section {
    padding: var(--section-padding);
    background: var(--white);
}

.section-header {
    margin-bottom: 60px;
}

.section-description {
    text-align: center;
    font-size: 1.25rem;
    color: var(--charcoal-brown);
    opacity: 0.8;
    max-width: 700px;
    margin: 20px auto 0;
}

.subtitle-accent {
    font-size: 0.8em;
    color: var(--deep-sky-blue);
    font-style: italic;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-column {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.comparison-column:hover {
    transform: translateY(-5px);
}

.not-for {
    background: linear-gradient(135deg, rgba(219, 209, 204, 0.3), rgba(219, 209, 204, 0.1));
    border: 2px solid var(--soft-linen);
}

.perfect-for {
    background: linear-gradient(135deg, rgba(7, 72, 191, 0.05), rgba(7, 72, 191, 0.02));
    border: 2px solid var(--deep-sky-blue);
}

.column-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid currentColor;
}

.column-header i {
    font-size: 2rem;
}

.not-for .column-header {
    color: var(--charcoal-brown);
}

.perfect-for .column-header {
    color: var(--deep-sky-blue);
}

.column-header h3 {
    font-family: var(--font-header);
    font-size: 1.5rem;
    margin: 0;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.comparison-list i {
    font-size: 1.2rem;
    margin-top: 5px;
}

.not-for .comparison-list i {
    color: var(--charcoal-brown);
}

.perfect-for .comparison-list i {
    color: var(--deep-sky-blue);
}

/* Halo Divider */
.halo-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.halo-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bright-gold), var(--soft-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 185, 1, 0.5);
    animation: halo-glow 3s ease-in-out infinite;
}

.halo-circle i {
    font-size: 2rem;
    color: var(--white);
}

@keyframes halo-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 185, 1, 0.5); }
    50% { box-shadow: 0 0 50px rgba(255, 185, 1, 0.8); }
}

/* ===================================
   SIX REASONS SECTION
   =================================== */
.reasons-section {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--soft-blue) 100%);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.reasons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,197.3C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.white-text {
    color: var(--white);
}

.sparkle {
    display: inline-block;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.reason-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-bounce);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold-accent), #ffd700);
}

.reason-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bright-gold), var(--soft-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(255, 185, 1, 0.3);
}

.reason-icon i {
    font-size: 2rem;
    color: var(--deep-blue);
}

.reason-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: var(--font-headline);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-accent);
    opacity: 0.2;
}

.reason-card h3 {
    font-family: var(--font-header);
    font-size: 1.4rem;
    color: var(--charcoal-brown);
    margin-bottom: 15px;
}

.reason-card p {
    font-size: 1rem;
    color: var(--charcoal-brown);
    opacity: 0.8;
    line-height: 1.6;
}

/* ===================================
   QUALIFICATION SECTION
   =================================== */
.qualification-section {
    padding: var(--section-padding);
    background: var(--white);
}

.qualification-content {
    max-width: 900px;
    margin: 60px auto 0;
}

.qualification-intro {
    text-align: center;
    margin-bottom: 60px;
}

.qualification-intro h3 {
    font-family: var(--font-header);
    font-size: 1.8rem;
    color: var(--deep-blue);
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 500;
}

.qualification-checklist {
    background: linear-gradient(135deg, rgba(7, 72, 191, 0.05), rgba(7, 72, 191, 0.02));
    padding: 50px 40px;
    border-radius: 20px;
    border: 2px solid var(--deep-blue);
    margin-bottom: 40px;
}

.qualification-checklist h3 {
    font-family: var(--font-header);
    font-size: 1.6rem;
    color: var(--deep-blue);
    margin-bottom: 30px;
    text-align: center;
}

.qualify-list {
    list-style: none;
    padding: 0;
}

.qualify-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.qualify-list i {
    font-size: 1.5rem;
    color: var(--bright-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.qualification-bottom-line {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    border-radius: 20px;
}

.qualification-bottom-line h3 {
    font-family: var(--font-header);
    font-size: 1.6rem;
    color: var(--deep-blue);
    margin-bottom: 20px;
}

.emphasis-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.6;
}

.emoji-accent {
    display: inline-block;
    margin-left: 10px;
}

/* ===================================
   FEATURED GUESTS SECTION
   =================================== */
.featured-section {
    padding: var(--section-padding);
    background: var(--light-cream);
}

.guests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guest-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.guest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    border: 2px solid var(--gold-accent);
}

/* Guest photos */
.guest-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.guest-info {
    padding: 25px;
    text-align: center;
}

.guest-info h4 {
    font-family: var(--font-header);
    font-size: 1.3rem;
    color: var(--charcoal-brown);
    margin-bottom: 8px;
}

.guest-title {
    font-size: 0.95rem;
    color: var(--deep-sky-blue);
    font-weight: 600;
    margin-bottom: 8px;
}

.guest-tagline {
    font-size: 0.95rem;
    color: var(--charcoal-brown);
    opacity: 0.8;
    font-style: italic;
    line-height: 1.5;
}

/* ===================================
   PODCAST SHOWCASE SECTION
   =================================== */
.showcase-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--white), var(--soft-linen));
}

.showcase-content {
    text-align: center;
}

.large-cover-display {
    position: relative;
    max-width: 600px;
    margin: 60px auto 0;
}

.cover-frame {
    position: relative;
    z-index: 2;
}

.large-cover-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 30px;
    display: block;
    box-shadow: 0 30px 80px rgba(7, 72, 191, 0.4);
    object-fit: cover;
}

.soundwave-decoration {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 100"><path fill="rgba(212,175,55,0.3)" d="M0,50 Q150,0 300,50 T600,50 T900,50 T1200,50 L1200,100 L0,100 Z"/></svg>') no-repeat center;
    background-size: contain;
    z-index: 1;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta-section {
    background: var(--charcoal-brown);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 185, 1, 0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse 6s ease-in-out infinite;
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 25px;
    border-radius: 30px;
    margin-bottom: 30px;
    font-family: var(--font-header);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-badge i {
    color: var(--gold-accent);
}

.cta-headline {
    color: var(--white);
    margin-bottom: 25px;
}

.rocket-icon {
    display: inline-block;
    font-size: 3rem;
    margin-right: 10px;
}

.headline-shimmer {
    background: var(--gold-shimmer);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-text 3s ease-in-out infinite;
}

@keyframes shimmer-text {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-subheadline {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0.9;
}

.shimmer-text {
    color: var(--gold-accent);
    font-style: italic;
}

.cta-tagline {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 45px;
    line-height: 1.8;
}

.highlight-gold {
    color: var(--gold-accent);
    font-weight: 600;
}

.cta-trust-elements {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.95rem;
}

.trust-badge i {
    font-size: 1.3rem;
    color: var(--gold-accent);
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
    background: var(--charcoal-brown);
    color: var(--white);
    padding: 60px 0 30px;
    border-top: 2px solid var(--gold-accent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-brand h3 {
    font-family: var(--font-headline);
    font-size: 2rem;
    color: var(--gold-accent);
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 1rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--gold-accent);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--gold-accent);
    color: var(--charcoal-brown);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .halo-divider {
        margin: 20px 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .podcast-cover-placeholder {
        max-width: 350px;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .guests-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .cta-trust-elements {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   ANIMATION CLASSES (for AOS library)
   =================================== */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}