/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Poppins:wght@300;400;600&display=swap');

/* --- Global Styles & Resets --- */
:root {
    --primary-font: 'Poppins', sans-serif;
    --heading-font: 'Cormorant Garamond', serif;
    --bg-dark: #0d0c22;
    --bg-light-dark: #191835;
    --text-light: #e0e0ff;
    --text-muted: #a0a0c0;
    --accent-gold: #ffc971;
    --accent-purple: #9d8eee;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    font-family: var(--primary-font);
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

h1, h2, h3 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; text-align: center; }
p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.center-text { text-align: center; margin-left: auto; margin-right: auto;}

/* --- Call to Action Button Styles --- */
.cta-button {
    display: inline-block;
    background: var(--accent-gold);
    color: #111;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 201, 113, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 201, 113, 0.3);
}

.app-stores {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.app-stores img {
    height: 45px;
    transition: transform 0.2s ease;
}
.app-stores img:hover {
    transform: scale(1.05);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(13, 12, 34, 0.85), rgba(13, 12, 34, 0.95)), url('/images/emotional-alchemy-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content { max-width: 800px; }
.hero h1 { text-shadow: 0 4px 15px rgba(0,0,0,0.5); }
.hero p.subtitle { font-size: 1.2rem; color: var(--text-light); margin-bottom: 2rem; }
.hero .trust-text { margin-top: 1rem; font-size: 0.9rem; color: var(--text-muted); }

/* --- Authority Logos Section --- */
.authority {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: var(--bg-light-dark);
}
.logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.logos img {
    height: 25px;
    opacity: 0.5;
    filter: grayscale(100%) invert(75%);
}
.logos-title {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Problem/Promise Section --- */
#problem { background-color: var(--bg-light-dark); padding-top: 6rem; padding-bottom: 0; }
.transformation-visual { max-width: 600px; margin: 3rem auto 0; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.transformation-visual img { width: 100%; display: block; border-radius: 12px; }

/* --- Audio Sample Section --- */
#audio-sample { background-color: var(--bg-dark); }
.custom-audio-player {
    max-width: 700px;
    margin: 3rem auto 0;
    background: var(--bg-light-dark);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.play-pause-btn {
    background: var(--accent-gold);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.play-pause-btn:hover {
    transform: scale(1.05);
}
.play-pause-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--bg-dark);
}

.custom-audio-player .icon-pause { display: none; }
.custom-audio-player.isPlaying .icon-pause { display: block; }
.custom-audio-player.isPlaying .icon-play { display: none; }

.player-controls {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.track-info {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(0,0,0,0.3);
    border-radius: 5px;
    cursor: pointer;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--accent-gold);
    border-radius: 5px;
}

.time-display {
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-shrink: 0;
    width: 45px;
    text-align: right;
}

/* --- Journey Section --- */
.journey-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 4rem; }
.journey-card { background: var(--bg-light-dark); padding: 2rem; border-radius: 12px; border-left: 3px solid var(--accent-purple); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.journey-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.journey-card h3 { font-family: var(--primary-font); font-weight: 600; color: var(--accent-gold); font-size: 1.2rem; }
.journey-card p { font-size: 0.95rem; margin-bottom: 0; color: var(--text-muted); }

/* --- Guide Section --- */
#guide { background: var(--bg-light-dark); }
.guide-content { display: flex; align-items: center; gap: 4rem; max-width: 900px; margin: 4rem auto 0;}
.guide-image { flex-basis: 250px; flex-shrink: 0;}
.guide-image img { width: 100%; border-radius: 50%; border: 5px solid var(--accent-gold); }
.guide-bio h3 { font-family: var(--primary-font); font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.guide-bio .title { color: var(--accent-gold); font-weight: 600; margin-bottom: 1rem; }

/* --- Social Proof Section --- */
#social-proof { background-color: var(--bg-dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 4rem; }
.testimonial-card { background: var(--bg-light-dark); padding: 2rem; border-radius: 12px; }
.testimonial-card p.quote { font-style: italic; color: var(--text-light); margin-bottom: 1.5rem; border-left: 3px solid var(--accent-gold); padding-left: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonial-author span { font-weight: 600; color: var(--text-light); }

/* --- Why Download Section --- */
.why-download-container { max-width: 800px; margin: 4rem auto 0; }
.why-download-list { list-style: none; padding: 0; }
.why-download-list li { background: var(--bg-light-dark); padding: 1.2rem 1.5rem; border-radius: 8px; margin-bottom: 1rem; display: flex; align-items: center; font-weight: 600; color: var(--text-light); }
.why-download-list li::before { content: '✓'; color: var(--accent-gold); font-size: 1.5rem; margin-right: 1rem; }

/* --- Final CTA Section --- */
.final-cta-content { display: flex; align-items: center; gap: 4rem; background: var(--bg-light-dark); padding: 4rem; border-radius: 20px; }
.final-cta-text { flex: 1; }
.final-cta-text h2 { text-align: left; }
.final-cta-image { flex-basis: 300px; }
.final-cta-image img { width: 100%; }
.final-cta-content .app-stores { justify-content: flex-start; }

/* --- FAQ Section --- */
.faq-container { max-width: 800px; margin: 4rem auto 0; }
.faq-item { background: var(--bg-light-dark); margin-bottom: 1rem; border-radius: 8px; border: 1px solid #2a294e; }
.faq-item summary { padding: 1.5rem; font-weight: 600; cursor: pointer; list-style: none; position: relative; color: #fff; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 1.5rem; font-size: 1.5rem; color: var(--accent-gold); transition: transform 0.3s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item div { padding: 0 1.5rem 1.5rem 1.5rem; color: var(--text-muted); }

/* --- Footer --- */
footer { text-align: center; padding: 2rem 0; background-color: var(--bg-light-dark); color: var(--text-muted); font-size: 0.9rem; }

/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    .hero { height: auto; padding: 8rem 0; }
    .guide-content { flex-direction: column; text-align: center; }
    .final-cta-content { flex-direction: column; text-align: center; }
    .final-cta-text h2 { text-align: center; }
    .final-cta-content .app-stores { justify-content: center; }
    .final-cta-image { margin-top: 2rem; max-width: 250px; }
    .custom-audio-player { flex-direction: column; text-align: center; gap: 1rem; }
}
