/* Faith - Executive Voice Assistant Styles */
/* Design System: Jet Black #0A0A0A, Soft White #F5F5F5, Platinum Gray #A1A1AA, Faith Purple #7C3AED, Deep Violet #5B21B6, Mint Green #22C55E */

:root {
    --jet-black: #0A0A0A;
    --soft-white: #F5F5F5;
    --platinum-gray: #A1A1AA;
    --faith-purple: #7C3AED;
    --deep-violet: #5B21B6;
    --mint-green: #22C55E;
    --glass-gradient: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--jet-black);
    color: var(--soft-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Global Section Spacing */
section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    width: 40px;
    height: 40px;
}

.site-logo {
    height: 32px;
    max-height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-logo span {
    font-size: 24px;
    font-weight: 700;
    color: var(--soft-white);
}

.nav-cta {
    background: var(--faith-purple);
    color: var(--soft-white);
    border: none;
    padding: 12px 24px;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.nav-cta:hover {
    background: var(--deep-violet);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

/* Hero Section */
#hero {
    background: var(--jet-black);
    color: var(--soft-white);
    padding-top: 100px;
    min-height: 100vh;
}

.hero-inner {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 20px;
}

.hero-text {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--soft-white);
}

.hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.4;
    color: var(--soft-white);
    max-width: 600px;
    margin: 0 auto 1rem;
    font-weight: 600;
}

.hero-tagline {
    font-size: 1.125rem;
    opacity: 0.8;
    line-height: 1.4;
    color: var(--soft-white);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}


@media (min-width: 768px) {
    .hero-inner {
        flex-wrap: nowrap;
    }
}


/* Value Statement Section */
.value-statement {
    padding: 30px 0;
    background: var(--jet-black);
    text-align: center;
}

.benefit-stack {
    list-style: none;
    padding: 0;
    margin: 0 auto 2rem;
    max-width: 600px;
    text-align: left;
}

.benefit-stack li {
    font-size: 1.125rem;
    color: var(--soft-white);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefit-stack li:before {
    content: "•";
    color: var(--mint-green);
    font-weight: 700;
    position: absolute;
    left: 0;
}

.sub-copy {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--soft-white);
    margin: 0;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 9999px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin: 20px 10px 0;
}

.cta-button.primary {
    background: var(--faith-purple);
    color: var(--soft-white);
}

.cta-button.primary:hover {
    background: var(--deep-violet);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--faith-purple);
    border: 2px solid var(--faith-purple);
}

.cta-button.secondary:hover {
    background: var(--faith-purple);
    color: var(--soft-white);
    transform: translateY(-2px);
}

/* Problem CTA Section */
#problem-cta {
    background: linear-gradient(180deg, var(--jet-black) 0%, #0F0F0F 100%);
    color: var(--soft-white);
    padding: 4rem 1rem;
}

#problem-cta .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

#problem-cta h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 0.5rem;
    font-weight: 800;
    color: #A66FFF;
}

#problem-cta .stat-line {
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--soft-white);
}

.stat-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-cards .card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-cards img {
    display: block;
    margin-bottom: 0.5rem;
    max-width: 400px;
    width: 100%;
    height: auto;
}

.stat-cards span {
    font-size: 1rem;
}

#problem-cta .cta-copy {
    opacity: 0.8;
    margin: 2rem 0;
    line-height: 1.5;
    font-size: 1.125rem;
}

#problem-cta .cta-button.primary {
    background: var(--faith-purple);
    color: var(--soft-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#problem-cta .cta-button.primary:hover {
    background: var(--deep-violet);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.4);
}

.section-headline {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subheadline {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--platinum-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}


.problem-copy strong {
    color: var(--soft-white);
    font-weight: 600;
}

.problem-cta {
    margin-top: 32px;
    text-align: center;
}

.problem-section .section-headline {
    color: #A66FFF;
    margin-bottom: 1rem;
}

.problem-visual {
    text-align: center;
    margin: 2rem 0;
}

.problem-visual img {
    max-width: 600px;
    width: 100%;
    height: auto;
}

.problem-copy {
    text-align: center;
    margin-top: 1rem;
    line-height: 1.5;
    font-size: 18px;
    color: var(--platinum-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: #000000;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--glass-gradient);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    border-color: var(--faith-purple);
    background: rgba(124, 58, 237, 0.05);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--mint-green);
    color: var(--jet-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 18px;
    font-weight: 500;
}

/* Upgrade Section */
.upgrade {
    background: linear-gradient(180deg, #0F0F0F 0%, var(--jet-black) 100%);
}

.upgrade-headline {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.upgrade-subhead {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--platinum-gray);
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.6;
}

.upgrade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.upgrade .card {
    background: linear-gradient(135deg, #1F1F2E, #26263F);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(255, 255, 255, 0.06);
}

.upgrade .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.upgrade .card.large {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 32px;
}

.card-logo {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.card-icon {
    margin-bottom: 16px;
}

.upgrade .card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.upgrade .card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--soft-white);
}

.status-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.status-list li {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 9999px;
    padding: 12px 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--soft-white);
    text-align: center;
}

.app-icons {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    justify-content: center;
}

.app-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.security-graph {
    margin-top: 20px;
    width: 100%;
    height: 60px;
}

.graph-lines {
    width: 100%;
    height: 100%;
}

.card.highlight {
    background: linear-gradient(135deg, var(--faith-purple), var(--deep-violet));
}

.highlight-content {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
}

.highlight-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.highlight-label {
    font-size: 20px;
    font-weight: 600;
}


/* Social Proof Section */
.social-proof {
    padding: 60px 0;
    background: #0F0F0F;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.testimonial {
    background: var(--glass-gradient);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 40px;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 120px;
    color: var(--faith-purple);
    opacity: 0.2;
    font-weight: 800;
}

.author-role {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--soft-white);
}

.testimonial p:not(.author-role) {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--soft-white);
    margin: 0;
}

/* Offer Stack Section */
.offer-stack {
    padding: 80px 0;
    background: linear-gradient(180deg, #0F0F0F 0%, var(--jet-black) 100%);
    text-align: center;
}

.offer-stack-list {
    list-style: none;
    padding: 0;
    margin: 3rem auto;
    max-width: 600px;
    text-align: left;
}

.offer-stack-list li {
    font-size: 1.125rem;
    color: var(--soft-white);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-note {
    font-size: 1.375rem;
    color: var(--faith-purple);
    margin: 0 0 1rem 0;
}

.micro-cta {
    font-size: 1rem;
    color: var(--soft-white);
    margin: 2rem 0 0 0;
}

.guarantee-block {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--glass-gradient);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.guarantee {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--soft-white);
    margin: 0 0 1rem 0;
}

.scarcity {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--platinum-gray);
    margin: 0;
}

.scarcity strong {
    color: var(--faith-purple);
}

/* Comparison Table Section */
.comparison-table {
    padding: 80px 0;
    background: #0F0F0F;
}

.table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
    position: relative;
}

/* Add scroll indicator for mobile */
@media (max-width: 767px) {
    .table-wrapper::after {
        content: "→ Scroll for more";
        position: absolute;
        bottom: -20px;
        right: 0;
        font-size: 0.875rem;
        color: var(--platinum-gray);
        opacity: 0.7;
    }
}

.comparison-table table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: collapse;
    background: var(--glass-gradient);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.03);
    font-weight: 700;
    font-size: 1rem;
    color: var(--soft-white);
}

.comparison-table th.highlight {
    background: rgba(124, 58, 237, 0.1);
    color: var(--faith-purple);
}

.comparison-table td {
    font-size: 0.95rem;
    color: var(--platinum-gray);
}

.comparison-table td.highlight {
    background: rgba(124, 58, 237, 0.05);
    color: var(--soft-white);
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--soft-white);
}

@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* Final CTA Section */
.final-cta {
    padding: 120px 0;
    margin-bottom: 80px;
    background: linear-gradient(180deg, var(--jet-black) 0%, #0A0A0A 100%);
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.cta-subtext {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--platinum-gray);
    margin-top: 2rem;
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    opacity: 0.8;
    object-fit: contain;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 700;
    opacity: 0.8;
}

.footer-tagline {
    color: var(--platinum-gray);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Responsive Design */
/* Mobile First - Base styles apply to mobile */

/* Small tablets and large phones */
@media (min-width: 576px) {
    .container {
        padding: 0 30px;
    }
}

/* Tablets */
@media (min-width: 768px) {
    section {
        padding: 100px 0;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile specific adjustments */
@media (max-width: 767px) {
    /* Navigation */
    .nav-container {
        padding: 16px 20px;
    }
    
    .nav-logo {
        gap: 8px;
    }
    
    .nav-logo img {
        width: 32px;
        height: 32px;
    }
    
    .nav-logo span {
        font-size: 18px;
    }
    
    .nav-cta {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    /* Hero */
    #hero {
        padding-top: 80px;
        min-height: auto;
    }
    
    .hero-inner {
        margin: 2rem auto 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-banner {
        width: 100%;
        margin-top: 2rem;
    }
    
    /* Sections */
    section {
        padding: 40px 0;
    }
    
    .section-headline {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-subheadline {
        font-size: 1rem;
    }
    
    /* Value Statement */
    .value-statement {
        padding: 20px 0;
    }
    
    .sub-copy {
        font-size: 1.125rem;
    }
    
    /* Problem CTA */
    #problem-cta h2 {
        font-size: 1.75rem;
    }
    
    #problem-cta .stat-line {
        font-size: 1.25rem;
    }
    
    .stat-cards img {
        max-width: 300px;
    }
    
    /* Features */
    .features-banner {
        width: 100%;
    }
    
    /* Testimonials */
    .testimonials {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial {
        padding: 30px;
    }
    
    /* Offer Stack */
    .offer-stack-list {
        padding: 0 20px;
    }
    
    .offer-stack-list li {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .pricing-note {
        font-size: 1.25rem;
    }
    
    .guarantee-block {
        padding: 1.5rem;
    }
    
    .guarantee {
        font-size: 1rem;
    }
    
    /* Comparison Table */
    .comparison-table {
        padding: 40px 0;
    }
    
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table table {
        min-width: 600px;
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.75rem;
    }
    
    /* CTA */
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .cta-subtext {
        font-size: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        padding: 2rem;
        margin: 20px;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .close {
        font-size: 1.5rem;
        top: 0.5rem;
        right: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-cta {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations on page load */
.hero-text h1,
.hero-text p,
.hero-media {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.1s;
}

.hero-text p {
    animation-delay: 0.2s;
}

.hero-media {
    animation-delay: 0.3s;
}

.nav {
    animation: fadeIn 0.5s ease-out;
}

/* Animate sections on scroll */
.section-headline,
.section-subheadline {
    animation: fadeInUp 0.8s ease-out forwards;
}

.feature-item,
.testimonial,
.grid-banner,
.hero-banner,
.features-banner {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Add staggered delays for feature items */
.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.15s; }
.feature-item:nth-child(3) { animation-delay: 0.2s; }
.feature-item:nth-child(4) { animation-delay: 0.25s; }
.feature-item:nth-child(5) { animation-delay: 0.3s; }
.feature-item:nth-child(6) { animation-delay: 0.35s; }

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--jet-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 2.5rem;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: scaleIn 0.3s ease-out;
}

.modal-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--soft-white);
    text-align: center;
}

.modal-content audio {
    width: 100%;
    margin-bottom: 1.5rem;
}

.demo-caption {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--platinum-gray);
    text-align: center;
    margin: 0;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--platinum-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--soft-white);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--faith-purple);
    color: var(--soft-white);
}

::-moz-selection {
    background: var(--faith-purple);
    color: var(--soft-white);
}

/* ========== Global Image Reset ========== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Sample Call Section */
.sample-call {
    padding: 80px 0;
    background: var(--jet-black);
    text-align: center;
}

.audio-player-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.audio-player {
    background: var(--glass-gradient);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
}

.audio-player audio {
    width: 100%;
    margin-bottom: 1rem;
}

.audio-caption {
    font-size: 14px;
    color: var(--platinum-gray);
    text-align: center;
    margin: 0;
}

/* Grid Section */
.grid-section {
    background: linear-gradient(180deg, #0F0F0F 0%, var(--jet-black) 100%);
}

.grid-visual {
    text-align: center;
}

/* ========== Fallback Full-Width Images ========== */
.hero-banner,
.features-banner {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
    max-width: 960px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.grid-banner {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    max-width: 1200px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-visual,
.features-visual {
    margin-top: 2rem;
    text-align: center;
    width: 100%;
}

.grid-visual {
    margin-top: 4rem;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-banner, .grid-banner {
        border-radius: 8px;
    }
    
    .hero-visual {
        margin-top: 1rem;
    }
    
    .grid-visual {
        margin-top: 2rem;
    }
}

