/* =========================================================
   WorshipBridge AI - Premium B2B Landing CSS (Joy's Design Edition)
   ========================================================= */

:root {
    /* Colors from Designer Joy's Brand Guidelines */
    --brand-bg: #0B0F19; /* Deep Obsidian */
    --brand-accent: #E6C875; /* Liquid Gold */
    --brand-accent-rgb: 230, 200, 117;
    
    --brand-indigo: #4F46E5; /* Royal Indigo */
    --brand-indigo-rgb: 79, 70, 229;
    --brand-cyan: #06B6D4; /* Neon Cyan */
    
    /* Joy's Premium Glassmorphism Properties */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(230, 200, 117, 0.35); /* Glow Gold Border on Hover */
    
    --text-primary: #FFFFFF; /* High contrast text */
    --text-secondary: #D1D5DB; /* Joy's 7.5:1 Contrast Compliant */
    --text-muted: #9CA3AF;
    
    /* Typography from Joy's Style Sheet */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', 'Noto Sans KR', -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body.landing-page {
    background-color: var(--brand-bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Ambient light glows behind page */
.glow-bg {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(160px);
    z-index: -2;
    pointer-events: none;
    opacity: 0.35;
}

.glow-top-left {
    background: radial-gradient(circle, rgba(79, 70, 229, 0.2) 0%, transparent 70%);
    top: -250px;
    left: -150px;
}

.glow-middle {
    background: radial-gradient(circle, rgba(230, 200, 117, 0.12) 0%, transparent 70%);
    top: 35%;
    right: -100px;
}

.glow-bottom-right {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    bottom: -150px;
    left: 10%;
}

/* Layout Grid & Containers */
.l-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px; /* Joy's spacing guideline */
}

/* Joy's Premium Glassmorphism Card Selector */
.premium-glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px; /* Joy's 32px Padding standard */
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-glass-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 20px 50px rgba(230, 200, 117, 0.1);
}

/* Header / Navbar */
.l-header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: rgba(11, 15, 25, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.l-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.l-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.l-logo-icon {
    color: var(--brand-accent);
    filter: drop-shadow(0 0 8px rgba(230, 200, 117, 0.4));
}

.l-nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.l-nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.l-nav-links a:hover {
    color: var(--brand-accent);
}

/* Premium Buttons */
.btn-cta {
    background: linear-gradient(135deg, var(--brand-accent) 0%, #d4a34f 100%);
    color: #000000 !important; /* Premium dark text on gold button */
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 15px rgba(230, 200, 117, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 200, 117, 0.45);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-section {
    padding: 90px 0 80px 0;
    text-align: center;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 200, 117, 0.08);
    border: 1px solid rgba(230, 200, 117, 0.2);
    padding: 6px 18px;
    border-radius: 9999px;
    color: var(--brand-accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.badge-new span {
    background: var(--brand-accent);
    color: #000;
    font-size: 0.75rem;
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 800;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-weight: 300;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 70px;
}

.hero-actions .btn-cta {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.hero-actions .btn-outline {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* Floating Mockup Layout */
.mockup-container {
    max-width: 960px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--glass-border);
    border-radius: 12px 12px 0 0;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green { background: #10b981; }

.mockup-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.mockup-body {
    background: #0D111D;
    height: 440px;
    display: grid;
    grid-template-columns: 300px 1fr;
    border-radius: 0 0 12px 12px;
}

.mockup-sidebar {
    background: rgba(0, 0, 0, 0.25);
    border-right: 1px solid var(--glass-border);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.badge-role.listener {
    background: rgba(6, 182, 212, 0.1);
    color: var(--brand-cyan);
    border: 1px solid rgba(6, 182, 212, 0.3);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 1px;
}

.channel-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.channel-lang-indicator {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.channel-status {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-dot-blink {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--brand-accent);
    box-shadow: 0 0 8px var(--brand-accent);
    animation: blinkDot 1.5s infinite ease-in-out;
}

@keyframes blinkDot {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.mock-controls {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mock-control-item label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: block;
}

.mock-slider-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
}

.mock-slider-bar .fill {
    height: 100%;
    background: var(--brand-accent);
    border-radius: 2px;
    position: absolute;
    top: 0;
    left: 0;
}

/* Mockup Content / Transcript */
.mockup-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.transcript-header-mock {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 12px;
    margin-bottom: 16px;
    font-weight: 600;
}

.live-tag {
    color: #ef4444;
    font-weight: 700;
}

.transcript-scroller {
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.sc-item {
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 12px 16px;
    border-radius: 8px;
}

.sc-item.old {
    color: var(--text-muted);
    opacity: 0.6;
    background: rgba(255, 255, 255, 0.01);
}

.sc-item.active {
    background: rgba(99, 102, 241, 0.08);
    border-left: 3px solid var(--brand-accent);
    color: #fff;
    font-weight: 500;
}

.typing-cursor {
    color: var(--brand-accent);
    font-weight: 700;
    animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@media (max-width: 768px) {
    .l-nav-links {
        display: none; /* Hide navigation links on mobile to prevent letter-by-letter wrapping */
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-desc {
        font-size: 1rem;
        padding: 0 10px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .hero-actions a {
        width: 100%;
        text-align: center;
    }
    .mockup-body {
        grid-template-columns: 1fr;
        height: auto;
    }
    .mockup-sidebar {
        display: none;
    }
    .comparison-table-wrapper {
        width: 100%;
        overflow-x: auto; /* Allow horizontal scroll */
        -webkit-overflow-scrolling: touch;
    }
}

/* Feature Grid Area */
.features-section {
    padding: 100px 0;
}

.section-title-area {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--brand-accent);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
    filter: drop-shadow(0 0 4px rgba(230, 200, 117, 0.2));
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(230, 200, 117, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--brand-accent);
    margin-bottom: 20px;
    border: 1px solid rgba(230, 200, 117, 0.2);
}

.feature-card:nth-child(2) .feature-icon-wrapper {
    background: rgba(6, 182, 212, 0.08);
    color: var(--brand-cyan);
    border-color: rgba(6, 182, 212, 0.2);
}

.feature-card:nth-child(3) .feature-icon-wrapper {
    background: rgba(79, 70, 229, 0.08);
    color: #818cf8;
    border-color: rgba(79, 70, 229, 0.2);
}

.feature-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

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

/* Audio Player Interactive Section */
.demo-section {
    padding: 100px 0;
}

.demo-card {
    max-width: 860px;
    margin: 0 auto;
}

.demo-player-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

@media (max-width: 768px) {
    .demo-player-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.player-left, .player-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.player-box {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.box-title-mini {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.audio-script {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.audio-control-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.btn-play-demo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-accent);
    border: none;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(230, 200, 117, 0.25);
    transition: all 0.2s ease;
}

.btn-play-demo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(230, 200, 117, 0.4);
}

.wave-animation {
    display: flex;
    gap: 4px;
    align-items: center;
    height: 24px;
    flex-grow: 1;
}

.wave-bar {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    transition: height 0.2s ease;
}

.wave-animation.playing .wave-bar {
    background: var(--brand-accent);
    animation: bounceWave 1.2s infinite ease-in-out;
}

.wave-animation.playing .wave-bar:nth-child(2) { animation-delay: 0.1s; height: 16px; }
.wave-animation.playing .wave-bar:nth-child(3) { animation-delay: 0.2s; height: 20px; }
.wave-animation.playing .wave-bar:nth-child(4) { animation-delay: 0.3s; height: 12px; }
.wave-animation.playing .wave-bar:nth-child(5) { animation-delay: 0.4s; height: 22px; }
.wave-animation.playing .wave-bar:nth-child(6) { animation-delay: 0.5s; height: 10px; }
.wave-animation.playing .wave-bar:nth-child(7) { animation-delay: 0.6s; height: 18px; }

@keyframes bounceWave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(2); }
}

.sub-display-box {
    font-size: 0.95rem;
    color: var(--brand-accent);
    font-style: italic;
}

.sub-display-box.empty {
    color: var(--text-muted);
}

/* Comparison Table */
.comparison-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: #0b0f19;
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 780px;
}

.comp-table th, .comp-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--glass-border);
}

.comp-table th {
    background: rgba(0, 0, 0, 0.3);
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}

.comp-table td {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.comp-table tr:hover td {
    color: #fff;
    background: rgba(255, 255, 255, 0.01);
}

.comp-highlight {
    color: var(--brand-accent) !important;
    font-weight: 700;
    background: rgba(230, 200, 117, 0.03);
}

/* Pricing Grid Area */
.pricing-section {
    padding: 100px 0;
}

.pricing-toggle-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 50px;
}

.toggle-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.toggle-label.active {
    color: #fff;
}

/* Toggle Pill Switch styling */
.switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-switch {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.06);
    transition: .3s;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.slider-switch:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .slider-switch {
    background-color: var(--brand-indigo);
}

input:checked + .slider-switch:before {
    transform: translateX(26px);
}

.pricing-badge-save {
    background: #ef4444;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 9999px;
    margin-left: 6px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.price-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.price-card.popular {
    border-color: rgba(230, 200, 117, 0.45);
    background: rgba(230, 200, 117, 0.015);
    box-shadow: 0 20px 40px rgba(230, 200, 117, 0.05);
}

.price-card.popular::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-accent);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 9999px;
    letter-spacing: 1.5px;
}

.price-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.price-card-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
    min-height: 40px;
}

.price-value-box {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
}

.price-currency {
    font-size: 1.4rem;
    font-weight: 700;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.price-period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.price-features-list {
    list-style: none;
    margin-bottom: 36px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.price-features-list li svg {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 3px;
}

.price-card .btn-cta, .price-card .btn-outline {
    width: 100%;
    text-align: center;
    padding: 14px;
}

/* B2B Registration Form */
.contact-section {
    padding: 100px 0 120px 0;
}

.contact-card {
    max-width: 760px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

@media (max-width: 600px) {
    .form-group.full-width {
        grid-column: span 1;
    }
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 12px 16px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s ease;
}

.form-input:focus {
    border-color: var(--brand-accent);
    background: rgba(0,0,0,0.45);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand-accent) 0%, #d4a34f 100%);
    color: #000;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(230, 200, 117, 0.2);
    transition: all 0.2s ease;
}

.btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(230, 200, 117, 0.4);
}

/* FAQ Accordion */
.faq-section {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active {
    border-color: rgba(230, 200, 117, 0.4);
    background: rgba(230, 200, 117, 0.01);
}

/* Footer Section */
.l-footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 0;
    background: #070a12;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 16px;
}
