/* 
   HMAiN LAB - Quiet Luxury Design System
   Sleek Obsidian & Champagne Gold Theme
   No Frameworks. Pure Modern CSS.
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Color Palette - Obsidian Dark Luxury */
    --bg-base: #060608;
    --bg-surface: rgba(18, 18, 22, 0.75);
    --bg-surface-opaque: #121216;
    --color-primary: #f4f4f7;
    --color-secondary: #a1a1aa;
    --color-muted: #71717a;
    
    /* Champagne Gold Accents */
    --accent-gold: #d4af37;
    --accent-gold-rgb: 212, 175, 55;
    --accent-gold-hover: #f3cf65;
    --accent-gold-muted: rgba(212, 175, 55, 0.15);
    
    /* Functional Colors */
    --border-color: rgba(212, 175, 55, 0.1);
    --border-color-hover: rgba(212, 175, 55, 0.25);
    --glow-color: rgba(212, 175, 55, 0.05);
    
    /* Local Index.html Overrides */
    --bg-obsidian: #060608;
    --bg-surface-elevated: #15151a;
    --color-border: #1e1e24;
    --color-border-hover: rgba(212, 175, 55, 0.25);
    --color-gold-border: rgba(212, 175, 55, 0.25);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Layout */
    --max-width: 1200px;
    --border-radius-lg: 16px;
    --border-radius-md: 8px;
    
    /* Transition */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Gradients */
    --bg-gradient-dark: linear-gradient(135deg, var(--bg-surface) 0%, rgba(10, 10, 12, 0.98) 100%);
    --bg-header: rgba(6, 6, 8, 0.7);
}

body.light-theme, html:has(body.light-theme) {
    /* Color Palette - Bright Luxury */
    --bg-base: #fafafc;
    --bg-surface: rgba(255, 255, 255, 0.85);
    --bg-surface-opaque: #ffffff;
    --color-primary: #121216;
    --color-secondary: #4a4a55;
    --color-muted: #888893;
    
    /* Champagne Gold Accents - Darker for contrast */
    --accent-gold: #b38e24;
    --accent-gold-rgb: 179, 142, 36;
    --accent-gold-hover: #9c7b1f;
    --accent-gold-muted: rgba(179, 142, 36, 0.15);
    
    /* Functional Colors */
    --border-color: rgba(18, 18, 22, 0.1);
    --border-color-hover: rgba(18, 18, 22, 0.25);
    --glow-color: rgba(179, 142, 36, 0.05);
    
    /* Local Index.html Overrides */
    --bg-obsidian: #fafafc;
    --bg-surface-elevated: #f5f5f8;
    --color-border: rgba(18, 18, 22, 0.1);
    --color-border-hover: rgba(18, 18, 22, 0.25);
    --color-gold-border: rgba(179, 142, 36, 0.25);
    
    /* Gradients */
    --bg-gradient-dark: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 248, 0.98) 100%);
    --bg-header: rgba(255, 255, 255, 0.9);
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-base);
    color: var(--color-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    position: relative;
    overflow-x: hidden;
    padding-bottom: 80px;
    background-color: var(--bg-base);
    color: var(--color-primary);
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Sleek Grid/Lines Ambient Background */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 15%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 85% 75%, rgba(59, 130, 246, 0.03) 0%, transparent 60%);
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: -1;
    pointer-events: none;
}

/* Typography Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--color-primary);
}

p {
    color: var(--color-secondary);
    font-weight: 300;
}

strong {
    color: var(--color-primary);
    font-weight: 600;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--accent-gold-hover);
}

.text-gold {
    color: var(--accent-gold);
    background: linear-gradient(135deg, #f3cf65 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary) 30%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout Containers */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-secondary);
    max-width: 600px;
    margin: 0 auto 60px auto;
    text-align: center;
    font-weight: 300;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3), inset 0 0 0 1px var(--bg-surface);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-color-hover);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.03), inset 0 0 0 1px var(--border-color);
    transform: translateY(-2px);
}

/* Navigation / Header */
.header {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1005;
    background: var(--bg-header);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-img:hover {
    opacity: 0.95;
    transform: scale(1.02);
}

.status-badge {
    background: var(--accent-gold-muted);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--accent-gold);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.status-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.5; }
}

/* Hero Section / Manifest */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-secondary);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.manifesto-box {
    border-left: 2px solid var(--accent-gold);
    padding-left: 25px;
    margin: 30px 0;
}

.manifesto-box p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

/* Subtle Interactive Digital Brain Visual */
.ambient-visual {
    position: relative;
    width: 100%;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-sphere {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border: 1px dashed rgba(212, 175, 55, 0.15);
    animation: rotateSphere 20s linear infinite;
}

.visual-rings {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-ring {
    position: absolute;
    border: 1px solid var(--bg-surface);
    border-radius: 50%;
    animation: pulseRing 6s ease-in-out infinite;
}

.visual-ring:nth-child(1) { width: 320px; height: 320px; animation-delay: 0s; }
.visual-ring:nth-child(2) { width: 380px; height: 380px; animation-delay: 2s; }
.visual-ring:nth-child(3) { width: 440px; height: 440px; animation-delay: 4s; }

@keyframes rotateSphere {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateSphereInverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes pulseRing {
    0% { transform: scale(0.95); opacity: 0.2; }
    50% { transform: scale(1.05); opacity: 0.6; }
    100% { transform: scale(0.95); opacity: 0.2; }
}

/* Calculator Section */
.calc-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}

.calc-controls {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.control-label-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.control-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-primary);
}

.control-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: var(--font-body);
}

/* Custom Slider Styling */
.slider-input {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--bg-surface);
    outline: none;
    transition: var(--transition-smooth);
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: 2px solid var(--bg-base);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--accent-gold-hover);
}

.slider-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: 2px solid var(--bg-base);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-input::-moz-range-thumb:hover {
    transform: scale(1.2);
    background: var(--accent-gold-hover);
}

/* Results Box */
.calc-results {
    background: rgba(212, 175, 55, 0.02);
    border-left: 2px solid var(--accent-gold);
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.result-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.result-title {
    font-size: 0.85rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.result-amount {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-body);
    color: var(--color-primary);
}

.result-saving {
    font-size: 2.2rem;
    font-weight: 700;
    color: #4ade80; /* Soft Green */
    font-family: var(--font-body);
    text-shadow: 0 0 15px rgba(74, 222, 128, 0.15);
}

/* Drawer 'Show Clean Code' */
.code-drawer-trigger {
    background: transparent;
    border: 1px solid var(--bg-surface);
    color: var(--color-secondary);
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    margin-top: 25px;
}

.code-drawer-trigger:hover {
    border-color: var(--accent-gold);
    color: var(--color-primary);
    background: rgba(212, 175, 55, 0.02);
}

.code-drawer-trigger svg {
    transition: var(--transition-smooth);
}

.code-drawer-trigger.active svg {
    transform: rotate(180deg);
}

.code-drawer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--bg-surface-opaque);
    border-radius: var(--border-radius-md);
    margin-top: 15px;
    border: 1px solid transparent;
}

.code-drawer-content.open {
    max-height: 500px;
    border-color: var(--bg-surface);
    padding: 20px;
    overflow-y: auto;
}

.code-drawer-content pre {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    color: #a1a1aa;
    line-height: 1.5;
    margin: 0;
    white-space: pre-wrap;
    word-break: break-all;
}

/* Tabs & Agenda Section */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--bg-surface);
    color: var(--color-secondary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 15px 30px;
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    border-color: var(--accent-gold-hover);
    color: var(--color-primary);
}

.tab-btn.active {
    background: var(--accent-gold-muted);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.05);
}

.tab-content {
    display: none;
    animation: fadeIn 0.6s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Agenda Timeline Layout */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 15px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(to bottom, var(--accent-gold) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -33px;
    top: 12px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg-base);
    border: 3px solid var(--accent-gold);
    box-shadow: 0 0 10px var(--accent-gold);
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-dot {
    background: var(--accent-gold);
    transform: scale(1.2);
}

.timeline-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.timeline-card:hover {
    border-color: var(--border-color-hover);
    transform: translateX(5px);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.time-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.timeline-time {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.05em;
    font-family: var(--font-body);
}

.timeline-title {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.takeaway-badge {
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 8px 16px;
    border-radius: var(--border-radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-gold);
    font-family: var(--font-body);
}

.timeline-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timeline-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-secondary);
}

.timeline-body ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timeline-body li {
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
    color: var(--color-secondary);
}

.timeline-body li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* Philosophy Section (Quiet Luxury columns) */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.philosophy-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.phil-icon {
    font-size: 2rem;
    color: var(--accent-gold);
}

.phil-title {
    font-size: 1.4rem;
}

.phil-desc {
    font-size: 0.95rem;
    color: var(--color-secondary);
    font-weight: 300;
}

/* CTA / Mockup Mock Sections */
.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, #f3cf65 0%, #d4af37 100%);
    color: #060608;
    border: none;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    color: #060608;
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.03);
    transform: translateY(-2px);
}

.cta-note {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-top: 25px;
    font-weight: 300;
}

/* Footer */
.footer {
    padding: 60px 0 20px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--color-muted);
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

/* Responsiveness */
@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .manifesto-box {
        border-left: none;
        border-top: 2px solid var(--accent-gold);
        padding-left: 0;
        padding-top: 20px;
        max-width: 600px;
        margin: 30px auto;
    }
    
    .calc-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-dot {
        left: -25px;
        top: 14px;
        width: 10px;
        height: 10px;
        border-width: 2px;
    }
    
    .timeline-card {
        padding: 20px;
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .takeaway-badge {
        align-self: flex-start;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Hamburger Menu & Drawer System (Global) --- */
.hamburger-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1010;
    position: relative;
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.77, 0.2, 0.05, 1);
    transform-origin: center;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--accent-gold);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--accent-gold);
}

.main-nav {
    display: flex !important;
    position: fixed !important;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: rgba(6, 6, 8, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column !important;
    justify-content: center;
    align-items: center !important;
    gap: 30px !important;
    padding: 80px 30px 40px;
    z-index: 1005;
    border-left: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.main-nav.mobile-open {
    right: 0;
}

.main-nav a {
    font-size: 1rem !important;
    letter-spacing: 0.1em !important;
    padding: 10px 20px !important;
    text-align: center;
    width: 100%;
    display: block !important;
    border: none !important;
}

.main-nav button#theme-toggle {
    margin-top: 10px;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1004;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

/* --- Desktop Navigation (Key Categories) --- */
.desktop-nav {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-right: 15px;
}

.desktop-nav a {
    color: var(--color-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.desktop-nav a:hover, .desktop-nav a.active-link {
    color: var(--accent-gold);
}

.desktop-nav a.active-link {
    font-weight: 600;
    border: 1px solid var(--accent-gold);
    padding: 5px 12px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }

    .desktop-nav {
        display: none !important;
    }

    .header {
        padding: 15px 0;
    }
}

/* Light theme mobile nav override */
@media (max-width: 768px) {
    body.light-theme .main-nav {
        background: rgba(250, 250, 252, 0.97);
        border-left: 1px solid rgba(179, 142, 36, 0.2);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    }

    body.light-theme .mobile-nav-overlay {
        background: rgba(0, 0, 0, 0.3);
    }
}

/* --- Multimedia & Premium Asset Styling --- */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.05);
    transition: var(--transition-smooth);
    z-index: 2;
}

.hero-image-container:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5), 0 0 50px rgba(212, 175, 55, 0.08);
}

.hero-portrait-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    display: block;
    filter: grayscale(15%) contrast(102%);
    transition: var(--transition-smooth);
}

.hero-image-container:hover .hero-portrait-img {
    filter: grayscale(0%) contrast(100%);
}

.media-embed {
    width: 100%;
    margin-top: 20px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-base);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.media-embed:hover {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.08);
}

.media-embed img, .media-embed video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.media-caption {
    font-size: 0.78rem;
    color: var(--color-muted);
    padding: 10px 14px;
    background: var(--bg-surface-opaque);
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-style: italic;
    font-family: var(--font-body);
}

/* Decorative visual background for the portrait card */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* --- Quiz / Decision Simulator Styles --- */
.quiz-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.quiz-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.quiz-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.quiz-q-num {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 10px;
}

.quiz-q-text {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    margin-bottom: 25px;
    color: var(--color-primary);
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-opt-btn {
    background: var(--bg-surface);
    border: 1px solid var(--bg-surface);
    border-radius: var(--border-radius-md);
    padding: 16px 20px;
    color: var(--color-secondary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.quiz-opt-btn:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.02);
    color: var(--color-primary);
}

.quiz-opt-btn.correct {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.05);
    color: var(--color-primary);
}

.quiz-opt-btn.incorrect {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
    color: var(--color-primary);
}

.quiz-explanation {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: var(--border-radius-md);
    font-size: 0.9rem;
    line-height: 1.6;
    display: none;
}

.quiz-explanation.show {
    display: block;
}

.quiz-explanation.win {
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.quiz-explanation.lose {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.quiz-result-box {
    text-align: center;
    padding: 40px;
    background: rgba(212, 175, 55, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius-lg);
    display: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.quiz-result-rank {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin: 15px 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --- Audyt / Lead Generation Form --- */
.audyt-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--bg-surface);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.form-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-secondary);
}

.form-input, .form-select {
    background: var(--bg-surface);
    border: 1px solid var(--bg-surface);
    border-radius: var(--border-radius-md);
    padding: 14px 18px;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-input:focus, .form-select:focus {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.02);
}

.form-select option {
    background: var(--bg-surface-opaque);
    color: var(--color-primary);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    text-align: left;
}

.radio-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--bg-surface);
    border: 1px solid var(--bg-surface);
    border-radius: var(--border-radius-md);
    padding: 16px 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.radio-option:hover {
    border-color: rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.01);
}

.radio-option.selected {
    border-color: var(--accent-gold);
    background: var(--accent-gold-muted);
}

.radio-input {
    margin-top: 4px;
    accent-color: var(--accent-gold);
}

.radio-text {
    font-size: 0.95rem;
    color: var(--color-secondary);
    line-height: 1.5;
}

.radio-option.selected .radio-text {
    color: var(--color-primary);
    font-weight: 500;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
    gap: 15px;
}

/* --- Bonus / Deliverables Grid --- */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bonus-grid {
        grid-template-columns: 1fr;
    }
}

.bonus-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* --- Glossary / Accordion Styles --- */
.glossary-wrapper {
    margin-top: 50px;
    border-top: 1px dashed var(--bg-surface);
    padding-top: 50px;
}

.glossary-title {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    margin-bottom: 30px;
    text-align: center;
    color: var(--color-primary);
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 768px) {
    .glossary-grid {
        grid-template-columns: 1fr;
    }
}

.glossary-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 20px 25px;
    transition: var(--transition-smooth);
}

.glossary-card:hover {
    border-color: rgba(212, 175, 55, 0.15);
    background: rgba(212, 175, 55, 0.01);
}

.glossary-term {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.glossary-definition {
    font-size: 0.9rem;
    color: var(--color-secondary);
    line-height: 1.6;
    font-weight: 300;
}

/* Pricing Section Styles */
.pricing-scarcity-banner {
    background: rgba(212, 175, 55, 0.02);
    border: 1px solid var(--border-color);
    padding: 30px 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.scarcity-badge-inline {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 15px;
    background: var(--accent-gold-muted);
}

.scarcity-text {
    font-size: 0.95rem;
    color: var(--color-secondary);
    line-height: 1.6;
    margin: 0;
}

.scarcity-text strong {
    color: var(--accent-gold);
}

.pricing-grid-lux {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .pricing-grid-lux {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.pricing-card-lux {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 45px 35px;
    height: 100%;
}

.pricing-card-lux.featured {
    border-color: var(--accent-gold);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.06), inset 0 0 0 1px rgba(212, 175, 55, 0.05);
}

.pricing-card-lux.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.pricing-card-lux .card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.package-badge-lux {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-muted);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.package-badge-lux.popular {
    color: var(--accent-gold);
}

.package-name-lux {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.25;
}

.package-desc-lux {
    font-size: 0.85rem;
    color: var(--color-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 300;
}

.price-wrapper-lux {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 35px;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

.price-strike-lux {
    font-size: 0.95rem;
    color: var(--color-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-amount-lux {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-body);
    line-height: 1;
}

.price-tax-lux {
    font-size: 0.75rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.price-note-lux {
    font-size: 0.8rem;
    color: var(--accent-gold);
    margin-top: 6px;
    font-style: italic;
}

.package-features-lux {
    list-style: none;
    padding: 0;
    margin: 0 0 45px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.package-features-lux li {
    font-size: 0.88rem;
    color: var(--color-secondary);
    position: relative;
    padding-left: 24px;
    line-height: 1.5;
}

.package-features-lux li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.package-features-lux li strong {
    color: var(--color-primary);
}

.w-100 {
    width: 100%;
}

/* --- Premium Form Inputs & Selects (Quiet Luxury) --- */
.form-group-lux {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.form-label-lux {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    text-align: left;
}

.form-input-lux, .form-select-lux {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    padding: 14px 18px;
    font-size: 0.95rem;
    border-radius: var(--border-radius-md);
    font-family: var(--font-body);
    transition: var(--transition-smooth);
    box-sizing: border-box;
    width: 100%;
}

.form-input-lux:focus, .form-select-lux:focus {
    outline: none;
    border-color: var(--accent-gold) !important;
    background-color: rgba(212, 175, 55, 0.04) !important;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.25) !important;
}

.form-input-lux.filled, .form-select-lux.filled {
    border-color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.02);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.form-select-lux option {
    background-color: var(--bg-surface-elevated);
    color: var(--color-primary);
}

/* Glassmorphic Premium Modal Styles */
.modal-overlay-lux {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay-lux.active {
    opacity: 1;
    visibility: visible;
}

.modal-container-lux {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.7) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.1);
    width: 90%;
    max-width: 520px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
    opacity: 0;
}

.modal-overlay-lux.active .modal-container-lux {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-close-lux {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

.modal-close-lux:hover {
    opacity: 1;
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
}

.modal-title-lux {
    font-family: var(--font-header);
    color: var(--color-primary);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.modal-subtitle-lux {
    color: var(--color-secondary);
    font-size: 0.85rem;
    margin-bottom: 25px;
}

/* Stripe-like card display */
.checkout-card-preview {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.checkout-card-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.card-brand-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.card-brand-logo .brand-icon {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--accent-gold);
}

.card-brand-logo .chip {
    width: 38px;
    height: 28px;
    background: linear-gradient(135deg, #f5d061 0%, #b38728 100%);
    border-radius: 6px;
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.4);
}

.card-preview-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.35rem;
    letter-spacing: 0.12em;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-preview-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-secondary);
}

.card-preview-info span {
    color: var(--color-primary);
    display: block;
    margin-top: 4px;
    font-weight: 500;
}

/* Card Inputs Layout */
.card-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.card-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.card-input-wrapper i {
    position: absolute;
    right: 15px;
    color: var(--color-secondary);
    pointer-events: none;
}

/* Success Checkmark Animation */
.payment-success-lux {
    display: none;
    text-align: center;
    padding: 30px 0;
}

.success-icon-lux {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    position: relative;
    background-color: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.success-icon-lux::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 18px;
    border-left: 3px solid var(--accent-gold);
    border-bottom: 3px solid var(--accent-gold);
    transform: rotate(-45deg);
    top: 25px;
    left: 24px;
}

.payment-success-lux h3 {
    font-family: var(--font-header);
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.payment-success-lux p {
    color: var(--color-secondary);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

/* Override Chrome/Safari Autofill Styles to match Quiet Luxury aesthetic */
.form-input-lux:-webkit-autofill,
.form-input-lux:-webkit-autofill:hover, 
.form-input-lux:-webkit-autofill:focus,
.form-input-lux:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px var(--bg-obsidian) inset !important;
    -webkit-text-fill-color: var(--color-primary) !important;
    transition: background-color 5000s ease-in-out 0s;
    border-color: var(--accent-gold) !important;
}

/* Voice styles for chatbot and modal */
.voice-mic-btn {
    background: transparent;
    border: none;
    color: var(--color-secondary);
    cursor: pointer;
    padding: 8px;
    margin-right: 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.voice-mic-btn:hover {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.08);
}

.voice-mic-btn.recording {
    color: #ff4d4d;
    background: rgba(255, 77, 77, 0.1);
    animation: pulse-mic 1.5s infinite ease-in-out;
}

@keyframes pulse-mic {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.4); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(255, 77, 77, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
}

.voice-speak-btn {
    background: transparent;
    border: none;
    color: var(--color-secondary);
    cursor: pointer;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: all 0.2s ease;
    margin-left: 5px;
}

.voice-speak-btn:hover {
    color: var(--accent-gold);
    opacity: 1;
}

.voice-speak-btn.speaking {
    color: var(--accent-gold);
    opacity: 1;
    animation: speak-wiggle 0.5s infinite ease-in-out alternate;
}

@keyframes speak-wiggle {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.auto-read-toggle {
    background: transparent;
    border: none;
    color: var(--color-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
    padding: 4px;
    margin-right: 10px;
}

.auto-read-toggle.active {
    color: var(--accent-gold);
}

.voice-wave {
    display: none;
    align-items: center;
    gap: 3px;
    height: 15px;
    margin-right: 10px;
}

.voice-wave.active {
    display: flex;
}

.voice-wave-bar {
    width: 2px;
    height: 100%;
    background-color: var(--accent-gold);
    border-radius: 2px;
    animation: bounce-wave 0.8s ease-in-out infinite alternate;
}

.voice-wave-bar:nth-child(2) { animation-delay: 0.15s; }
.voice-wave-bar:nth-child(3) { animation-delay: 0.3s; }
.voice-wave-bar:nth-child(4) { animation-delay: 0.45s; }

@keyframes bounce-wave {
    0% { transform: scaleY(0.3); }
    100% { transform: scaleY(1); }
}
