/* ========================================
   LinguaNation Landing Page — Premium Styles
   Gold & Black Brand Identity
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --black: #000000;
    --rich-black: #0a0a0a;
    --dark-surface: #111111;
    --card-surface: #161616;
    --card-border: #1f1f1f;
    --gold: #D4AF37;
    --gold-light: #f0d060;
    --gold-dark: #b8942e;
    --gold-glow: rgba(212, 175, 55, 0.15);
    --gold-glow-strong: rgba(212, 175, 55, 0.3);
    --white: #ffffff;
    --white-soft: #e0e0e0;
    --white-muted: #999999;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

/* --- Utility --- */
.gold-text {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Fade-in Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* ========================================
   HEADER
   ======================================== */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.6rem 2rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

#site-header.scrolled {
    padding: 0.6rem 2rem;
    background: rgba(0, 0, 0, 0.92);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

nav {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

#logo-img {
    height: 42px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

#logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
}

#logo-img:hover {
    transform: scale(1.05);
}

.nav-cta {
    display: inline-block;
    padding: 0.6rem 1.6rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
    color: var(--black);
}

/* ========================================
   HERO SECTION
   ======================================== */
#hero {
    position: relative;
    padding: 8rem 2rem 4rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -20%;
    left: 65%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(13, 13, 13, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.hero-mockup {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    perspective: 1000px;
}

.mockup-img {
    max-width: 19rem;
    width: 100%;
    height: auto;
    border-radius: 40px;
    border: 12px solid #111;
    outline: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 50px rgba(212, 175, 55, 0.2);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.mockup-img:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.6);
    border-radius: 50px;
    margin-bottom: 2rem;
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--white-soft);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.3);
}

.hero-cta-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    box-shadow: 0 6px 35px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    color: var(--black);
}

.social-proof-text {
    display: block;
    margin-top: 1.25rem;
    font-size: 0.95rem;
    color: var(--white-muted);
    font-weight: 500;
}

.hero-globe-container {
    z-index: 1;
}

.hero-globe {
    width: 12rem;
    height: 12rem;
    border-radius: 28px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.25));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ========================================
   FEATURES SECTION
   ======================================== */
#features {
    padding: 6rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    color: var(--white-muted);
    max-width: 650px;
    margin: 0 auto 3.5rem;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card, .step-card {
    background: transparent;
    perspective: 1000px;
    min-height: 340px;
    position: relative;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

@media (hover: hover) {
    .feature-card:not(.force-unflip):hover .card-inner,
    .step-card:not(.force-unflip):hover .card-inner {
        transform: rotateY(-180deg);
    }
}

.feature-card.is-flipped .card-inner,
.step-card.is-flipped .card-inner {
    transform: rotateY(-180deg);
}

.card-front, .card-back {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 24px;
    overflow: hidden;
}

.card-front {
    transform: rotateY(-180deg);
    background: radial-gradient(circle at 50% 0%, #262626 0%, #111111 80%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 10px 30px rgba(0, 0, 0, 0.4);
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card-back {
    background-size: cover;
    background-position: center;
    transform: rotateY(0deg);
    display: flex;
    align-items: flex-end;
}

.card-back-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    width: 100%;
    padding: 1.5rem 1.5rem;
    text-align: center;
}

.card-back-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gold);
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.card-back-overlay p {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.card-back::after {
    content: "↻ Tap to reveal";
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}

@media (hover: hover) {
    .card-back::after {
        content: "↻ Hover to reveal";
    }
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    width: 72px;
    height: 72px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.feature-card .card-front h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--white), var(--white-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.feature-card .card-front p {
    font-size: 0.95rem;
    color: var(--white-muted);
    line-height: 1.7;
}

/* ========================================
   WAITLIST SECTION
   ======================================== */
#waitlist {
    padding: 6rem 2rem;
    background: var(--rich-black);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.waitlist-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.waitlist-container h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.waitlist-container > p {    color: var(--white-muted);
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    background: var(--dark-surface);
    border: 1px solid var(--card-border);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}

#email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    background: transparent;
    border: none;
    outline: none;
}

#email-input::placeholder {
    color: var(--white-muted);
}

#submit-btn {
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

#submit-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

#submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-top-color: var(--black);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-note {
    font-size: 0.8rem;
    color: var(--white-muted);
    margin-top: 1rem;
    opacity: 0.7;
}

/* --- Success State --- */
#success-message {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

#success-message h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

#success-message p {
    color: var(--white-soft);
    max-width: 400px;
    margin: 0 auto;
}

/* ========================================
   QUOTE SECTION
   ======================================== */
#quote-section {
    padding: 8rem 2rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
    text-align: left;
}

.quote-content-left {
    position: relative;
    padding-left: 2rem;
    margin-top: 22px;
}

.philosopher-profile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.philosopher-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.quote-content-right h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.quote-content-right p {
    font-size: 1.1rem;
    color: var(--white-soft);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

@media (max-width: 900px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    color: var(--white-soft);
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
}

blockquote::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: -15px;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

cite {
    font-style: normal;
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 500;
}

/* ========================================
   FOOTER
   ======================================== */
#site-footer {
    padding: 3rem 2rem;
    border-top: 1px solid var(--card-border);
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-globe {
    height: 95px;
    object-fit: contain;
}

.footer-text-img {
    height: 128px;
    object-fit: contain;
    mix-blend-mode: screen;
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links a {
    font-size: 1.05rem;
    color: var(--gold);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copy {
    font-size: 0.9rem;
    color: var(--white-muted);
    opacity: 0.8;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    #site-header {
        padding: 0.8rem 1.2rem;
    }

    #logo-img {
        height: 32px;
        width: 32px;
    }

    #logo-text {
        font-size: 1.2rem;
    }

    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    #hero {
        padding: 7rem 1.2rem 3rem;
        min-height: auto;
    }

    h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .mockup-img {
        max-width: 280px;
    }

    .hero-globe {
        width: 120px;
        height: 120px;
    }

    .features-grid, .steps-container {
        grid-template-columns: 1fr;
    }

    .form-group {
        flex-direction: column;
        border-radius: 12px;
    }

    #email-input {
        text-align: center;
        padding: 1rem;
    }

    #submit-btn {
        padding: 1rem;
        border-radius: 0 0 11px 11px;
        white-space: normal;
    }

    blockquote::before {
        display: none;
    }
    
    .story-container {
        padding: 2.5rem 1.5rem;
    }
    
    .coach-card {
        width: 100%;
        max-width: 320px;
    }
    
    #how-it-works, #faq, #features, #coaches, #our-story, #waitlist, #quote-section {
        padding: 4rem 1.2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .feature-card, .step-card {
        padding: 0;
        min-height: 300px;
    }
    
    .card-front {
        padding: 1.5rem 1rem;
    }
    
    .footer-brand {
        flex-direction: column;
    }
    
    #logo-text {
        font-size: 1.1rem;
    }
}

/* ===== HOW IT WORKS ===== */
#how-it-works {
    padding: 6rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Unified flip card styling handles .step-card */

.step-number {
    width: 72px;
    height: 72px;
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.step-card .card-front h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--white), var(--white-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.step-card .card-front p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== FAQ SECTION ===== */
#faq {
    padding: 6rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    margin-top: 3rem;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    }

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ===== MEET THE COACHES ===== */
#coaches {
    padding: 6rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.coaches-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.coach-card {
    background: var(--card-surface);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    width: 22rem;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.coach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.coach-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
}

.coach-card:hover::before {
    opacity: 1;
}

.coach-portrait {
    width: 100%;
    height: 22rem;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.coach-info {
    padding: 2rem;
    text-align: left;
}

.coach-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.coach-lang {
    color: var(--gold);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.play-audio-btn {
    width: 100%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--white);
    padding: 0.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.play-audio-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.play-icon {
    font-size: 0.9rem;
}

/* ===== OUR STORY ===== */
#our-story {
    padding: 6rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-container {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.story-container h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.story-container:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.story-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.story-container:hover::before {
    opacity: 1;
}

.story-content {
    text-align: left;
    margin-top: 3rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.story-content strong {
    color: var(--white);
    font-weight: 600;
}

.story-signature {
    font-family: var(--font-heading);
    font-size: 1.25rem !important;
    color: var(--gold) !important;
    font-weight: 600;
    margin-top: 2.5rem !important;
    text-align: right;
    font-style: italic;
}

/* ===== COACH CARD WIDE ===== */
.coach-card-wide {
    background: var(--card-surface);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.coach-card-wide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.coach-card-wide:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
}

.coach-card-wide:hover::before {
    opacity: 1;
}

.coach-portrait-wide {
    width: 100%;
    height: 640px;
    object-fit: cover;
    object-position: center 35%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.coach-info-wide {
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coach-info-wide .coach-names {
    text-align: left;
}

.coach-info-wide h3 {
    font-size: 2.2rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.play-audio-btn-wide {
    width: auto;
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

.secondary-cta {
    display: block;
    margin-top: 0;
    color: var(--gold);
    font-size: 1.05rem;
    font-weight: 500;
    text-align: right;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.secondary-cta:hover {
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .coach-portrait-wide {
        height: 280px;
        object-position: center 40%;
    }
    
    .coach-info-wide {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .coach-info-wide .coach-names {
        text-align: center;
    }
    
    .coach-info-wide h3 {
        font-size: 1.8rem;
    }
    
    .play-audio-btn-wide {
        width: 100%;
        padding: 1rem;
    }
}

/* End of styles */
