/* === TRUE-BLACK THEME VARIABLES === */
:root {
    /* Core theme colors - consolidated */
    --surface-primary: #000000;
    --surface-elevated: #0a0a0a;
    --surface-glass: #ffffff0d;
    --surface-border: #ffffff06;
    --surface-border-hover: #ffffff10;
    --surface-glass-border: rgba(255, 255, 255, 0.06);
    
    /* Legacy support */
    --color-bg-primary: var(--surface-primary);
    --color-bg-secondary: var(--surface-elevated);
    
    /* Accent palette - single neon gradient + utility green */
    --accent-primary: #7A5CFF;
    --accent-secondary: #6366F1;
    --accent-gradient: linear-gradient(135deg, #7A5CFF 0%, #6366F1 100%);
    --utility-green: #10b981;
    --utility-green-bg: #10b98115;
    
    /* Typography system */
    --font-primary: "Evolventa", "Space Grotesk", "Inter", sans-serif;
    --font-fallback: "Inter", sans-serif;
    
    /* Global spacing scale - 8pt grid system */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    --space-5xl: 128px;
    
    /* Standardized vertical rhythm */
    --rhythm-sm: 48px;
    --rhythm-md: 64px;
    --rhythm-lg: 96px;
    
    /* Text colors */
    --text-primary: #ffffff;
    --text-secondary: #8a8a8a;
    --text-muted: #6b7280;
}

/* P3: Typography - Enhanced body weight for legibility */
body {
    font-family: var(--font-primary);
    background-color: var(--surface-primary);
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--surface-elevated) var(--surface-primary);
}

/* Glass utility class - P0: Real Glass Blur */
.glass {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
}

/* P6: Refined dark scrollbar styling for WebKit + Firefox */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
::-webkit-scrollbar-corner {
    background: #0a0a0a;
}

/* Firefox scrollbar styling */
* {
    scrollbar-width: thin;
    scrollbar-color: #333 #0a0a0a;
}

.main-container {
    min-height: 100vh;
    position: relative;
    z-index: 1;
    background-color: var(--surface-primary);
}
.sticky-header {
    position: sticky;
    top: 0;
    background-color: var(--surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--surface-border);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.06);
    z-index: 100;
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    min-height: 64px;
    padding-top: var(--space-sm);
}
.sticky-header.scrolled {
    padding: var(--space-sm) 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.8);
    border-bottom-color: var(--surface-border-hover);
}
.content-area {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}
.content-area-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}
.container-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}
.grid-col-1 { grid-column: span 1; }
.grid-col-2 { grid-column: span 2; }
.grid-col-3 { grid-column: span 3; }
.grid-col-4 { grid-column: span 4; }
.grid-col-5 { grid-column: span 5; }
.grid-col-6 { grid-column: span 6; }
.grid-col-7 { grid-column: span 7; }
.grid-col-8 { grid-column: span 8; }
.grid-col-9 { grid-column: span 9; }
.grid-col-10 { grid-column: span 10; }
.grid-col-11 { grid-column: span 11; }
.grid-col-12 { grid-column: span 12; }
@media (max-width: 768px) {
    .grid-col-1, .grid-col-2, .grid-col-3, .grid-col-4, 
    .grid-col-5, .grid-col-6, .grid-col-7, .grid-col-8, 
    .grid-col-9, .grid-col-10, .grid-col-11, .grid-col-12 {
        grid-column: span 12;
    }
    .container-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }
}
/* P1: Motion - CTA with gradient angle animation */
.primary-cta {
    background: linear-gradient(0deg, #7A5CFF 0%, #6366F1 100%);
    color: var(--text-primary);
    font-weight: 700;
    padding: var(--space-lg) var(--space-2xl);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), background 0.5s ease;
    box-shadow: 0 4px 14px 0 rgba(122, 92, 255, 0.4);
    font-size: 1.125rem;
    min-height: 56px;
    min-width: fit-content;
    position: relative;
    overflow: hidden;
    background-size: 200% 100%;
    background-position: 0% 0%;
}
.primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.primary-cta:hover {
    transform: translateY(-2px);
    background: linear-gradient(90deg, #7A5CFF 0%, #6366F1 100%);
    background-position: 100% 0%;
    box-shadow: 0 8px 25px 0 rgba(122, 92, 255, 0.4), 
                inset 0 0 0 4px rgba(135, 92, 255, 0.32);
    cursor: pointer;
}
.primary-cta:hover::before {
    opacity: 1;
}
.primary-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}
.primary-cta:active::after {
    width: 300px;
    height: 300px;
}

@media (max-width: 640px) {
    .primary-cta {
        font-size: 1.125rem;
        padding: 16px 32px;
        width: 100%;
        max-width: 350px;
        text-align: center;
        margin: 0 auto;
    }
}
.secondary-cta {
    background-color: transparent;
    color: var(--text-primary);
    font-weight: 600;
    padding: var(--space-md) var(--space-xl);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    min-height: 56px;
    font-size: 1rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.secondary-cta:hover {
    background-color: var(--surface-glass);
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

/* Header layout improvements */
.header-three-zone {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    padding-top: 4px;
}
.header-brand {
    justify-self: start;
}
.header-nav {
    justify-self: center;
}
.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Navigation links with variable font weight */
.nav-link {
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 8px;
    font-variation-settings: 'wght' 400;
    transition: all 0.2s ease, font-variation-settings 0.2s ease;
    position: relative;
}
.nav-link:hover {
    font-variation-settings: 'wght' 600;
}

/* Header CTA - outlined style */
.header-cta {
    background-color: transparent !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--surface-border) !important;
    padding: var(--space-sm) var(--space-md) !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    box-shadow: none !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-radius: 8px !important;
    transition: all 0.2s ease, font-variation-settings 0.2s ease !important;
    font-variation-settings: 'wght' 400;
}
.header-cta:hover {
    background-color: var(--surface-glass) !important;
    border-color: var(--surface-border-hover) !important;
    transform: none !important;
    box-shadow: none !important;
    font-variation-settings: 'wght' 600;
}
.header-cta::before {
    display: none !important;
}

@media (max-width: 991px) {
    .header-three-zone {
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
        padding-top: 6px;
    }
    .header-nav {
        display: none;
    }
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background-color: var(--utility-green-bg);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 9999px;
    color: var(--utility-green);
    font-size: 0.875rem;
    font-weight: 500;
    margin: var(--space-xs);
    flex-shrink: 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
@media (max-width: 640px) {
    .trust-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
        gap: 0.375rem;
    }
}
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(34, 197, 94, 0.15) 100%);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 9999px;
    color: #10b981;
    font-size: 0.875rem;
    font-weight: 600;
    animation: glow 3s ease-in-out infinite alternate;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
@keyframes glow {
    0% { 
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.3), 0 0 40px rgba(16, 185, 129, 0.1);
        border-color: rgba(16, 185, 129, 0.4);
    }
    100% { 
        box-shadow: 0 0 30px rgba(16, 185, 129, 0.5), 0 0 60px rgba(16, 185, 129, 0.2);
        border-color: rgba(16, 185, 129, 0.6);
    }
}
.benefit-card {
    background: var(--surface-glass);
    border: 1px solid var(--surface-glass-border);
    border-radius: 20px;
    padding: var(--space-lg);
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    max-width: 100%;
    width: 100%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 30%, rgba(122, 92, 255, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: -1;
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 
                inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}
.benefit-card:hover::before {
    opacity: 1;
}
.review-card {
    background: var(--surface-glass);
    border: 1px solid var(--surface-glass-border);
    border-radius: 20px;
    padding: var(--space-lg);
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 40%, rgba(122, 92, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: -1;
}
.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 
                inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.08);
}
.review-card:hover::before {
    opacity: 1;
}
.stats-card {
    text-align: center;
    padding: 2rem;
    background: transparent;
    transition: all 0.2s ease;
}
.stats-card:hover {
    transform: translateY(-2px);
}
.lang-switcher {
    color: #6b7280;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}
.lang-switcher:hover {
    color: #d1d5db;
}

.lang-switcher .active {
    color: #ffffff;
}
/* Vertical rhythm system - standardized scale */
.spacing-xs { margin-bottom: 24px; }
.spacing-sm { margin-bottom: 32px; }
.spacing-md { margin-bottom: var(--rhythm-sm); }
.spacing-lg { margin-bottom: var(--rhythm-md); }
.spacing-xl { margin-bottom: var(--rhythm-lg); }
.padding-section { padding: var(--rhythm-md) 0; }
.padding-section-lg { padding: var(--rhythm-lg) 0; }

/* Stack utilities for consistent vertical rhythm */
.stack-48 > * + * { margin-block-start: var(--rhythm-sm); }
.stack-64 > * + * { margin-block-start: var(--rhythm-md); }
.stack-96 > * + * { margin-block-start: var(--rhythm-lg); }

/* Mobile-optimized section spacing */
.section-separator {
    padding-top: 24px;
    padding-bottom: 24px;
    margin-top: 24px;
    margin-bottom: 24px;
}

/* Consistent gap system */
.gap-xs { gap: 8px; }
.gap-sm { gap: 16px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 32px; }
.gap-xl { gap: 48px; }

@media (max-width: 768px) {
    .spacing-xs { margin-bottom: 16px; }
    .spacing-sm { margin-bottom: 24px; }
    .spacing-md { margin-bottom: 32px; }
    .spacing-lg { margin-bottom: 40px; }
    .spacing-xl { margin-bottom: 48px; }
    .padding-section { padding: 48px 0; }
    .padding-section-lg { padding: 64px 0; }
    
    /* Enhanced mobile section separation */
    .section-separator {
        padding-top: 32px;
        padding-bottom: 32px;
        margin-top: 24px;
        margin-bottom: 24px;
    }
}

/* Section backgrounds - enhanced visual separation */
.section-bg-primary {
    background: radial-gradient(circle at 50% 50%, rgba(122, 92, 255, 0.03) 0%, transparent 70%);
    border-top: 1px solid var(--surface-border);
    border-bottom: 1px solid var(--surface-border);
}
.section-bg-secondary {
    background: var(--surface-elevated);
    border-top: 1px solid var(--surface-border);
    border-bottom: 1px solid var(--surface-border);
}
.section-bg-accent {
    background: radial-gradient(circle at 70% 30%, rgba(122, 92, 255, 0.04) 0%, transparent 80%);
    border-top: 1px solid var(--surface-border);
    border-bottom: 1px solid var(--surface-border);
}
.section-bg-dark {
    background: var(--surface-primary);
    border-top: 1px solid var(--surface-border);
    border-bottom: 1px solid var(--surface-border);
}

/* P1: Motion - Section headers with scroll animation + P3: Premium spacing */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
    line-height: 1.2;
    position: relative;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    transform: translateY(24px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.section-title.visible {
    transform: translateY(0);
    opacity: 1;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #06b6d4);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}
@media (max-width: 640px) {
    .section-title {
        font-size: 2rem;
    }
}

/* P4: Accessibility - High-contrast focus styles */
a:focus, 
button:focus, 
[role="button"]:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #7C5CFF;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Enhanced focus for interactive elements */
.primary-cta:focus {
    outline: 2px solid #7C5CFF;
    outline-offset: 2px;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(122, 92, 255, 0.7), 
                inset 0 0 0 4px rgba(135, 92, 255, 0.32);
}

.secondary-cta:focus {
    outline: 2px solid #7C5CFF;
    outline-offset: 2px;
    background-color: var(--surface-glass);
    transform: translateY(-1px);
}

.psych-cta:focus {
    outline: 2px solid #7C5CFF;
    outline-offset: 2px;
    background-color: rgba(139, 92, 246, 0.1);
    transform: translateY(-1px);
}

.header-cta:focus {
    outline: 2px solid #7C5CFF !important;
    outline-offset: 2px !important;
    background-color: var(--surface-glass) !important;
}

.nav-link:focus {
    outline: 2px solid #7C5CFF;
    outline-offset: 2px;
    background-color: rgba(124, 92, 255, 0.1);
    font-variation-settings: 'wght' 600;
}

.lang-switcher:focus {
    outline: 2px solid #7C5CFF;
    outline-offset: 2px;
    border-radius: 4px;
}

.faq-question:focus {
    outline: 2px solid #7C5CFF;
    outline-offset: 2px;
    background-color: rgba(124, 92, 255, 0.1);
}

.footer-links-toggle:focus {
    outline: 2px solid #7C5CFF;
    outline-offset: 2px;
    border-color: #7C5CFF;
    background: rgba(124, 92, 255, 0.1);
}

.social-link:focus {
    outline: 2px solid #7C5CFF;
    outline-offset: 2px;
    background: rgba(124, 92, 255, 0.2);
    transform: translateY(-2px);
}
.scroll-animate {
    opacity: 0;
    transition: opacity 1s ease-out;
    transition-delay: var(--delay, 0s);
}
.scroll-animate.visible {
    opacity: 1;
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(0,0,0,0.98) 0%, rgba(15,15,15,0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid #374151;
    transition: left 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1000;
    overflow-y: auto;
    box-shadow: 8px 0 32px rgba(0,0,0,0.4);
}
.mobile-menu.open {
    left: 0;
}
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}
.hamburger {
    display: none;
    flex-direction: column;
    width: 24px;
    height: 24px;
    cursor: pointer;
    justify-content: space-around;
}
@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }
}
.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #ffffff;
    transition: 0.3s;
}
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.5rem;
    margin-bottom: 0.125rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    min-height: 40px;
    position: relative;
    overflow: hidden;
}

.mobile-menu-item:hover {
    background: rgba(124, 58, 237, 0.1);
    transform: translateX(4px);
}

.mobile-menu-item:active {
    transform: translateX(2px) scale(0.98);
}

.mobile-menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.mobile-menu-item:hover::before {
    transform: scaleY(1);
}

.mobile-menu-icon {
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
    flex-shrink: 0;
    color: #a855f7;
}

.mobile-menu-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #e5e7eb;
    transition: color 0.2s ease;
}

.mobile-menu-item:hover .mobile-menu-text {
    color: #ffffff;
}

.mobile-menu-cta {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    text-decoration: none;
    display: block;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.mobile-menu-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

.mobile-menu-cta:active {
    transform: translateY(0px);
}

.mobile-menu-close {
    background: rgba(55, 65, 81, 0.5);
    border-radius: 0.5rem;
    padding: 0.5rem;
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}
/* Improved typography hierarchy */
h1 {
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 50%, #d1d5db 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 60px rgba(255, 255, 255, 0.4);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 800px;
    font-variation-settings: 'wght' 700;
    transition: font-variation-settings 0.3s ease;
}
/* P3: Typography - Premium H2 spacing */
h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.01em;
}
h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}
@media (min-width: 768px) {
    h1 {
        font-size: 4rem;
    }
    h2 {
        font-size: 2.5rem;
    }
    h3 {
        font-size: 1.5rem;
    }
}
@media (min-width: 1024px) {
    h1 {
        font-size: 4.5rem;
    }
}
@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
        font-weight: 700;
    }
    h2 {
        font-size: 1.375rem;
        font-weight: 600;
    }
    h3 {
        font-size: 1.125rem;
        font-weight: 600;
    }
}

.hero-subtitle {
    color: #B5B5FF;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hero layout grid - F-pattern optimized */
.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}
.hero-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .hero-content {
        text-align: center;
    }
    .hero-actions {
        align-items: center;
    }
    .hero-visual {
        display: none;
    }
}

/* Trust badges improvements */
.trust-badge {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
    min-height: 48px;
    min-width: 48px;
}
.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* P8: Loading States - Branded black-theme with pulsating orb (animation removed) */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-orb {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    /* animation: orbPulse 2s ease-in-out infinite; */ /* Animation removed */
    margin-bottom: 24px;
}

.loading-text {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
}

.loading-dots {
    display: inline-block;
    width: 20px;
}

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

/* P9: Easter Egg - Orb hover tooltip */
.orb-tooltip {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
    z-index: 10;
    border: 1px solid rgba(122, 92, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.orb-tooltip.show {
    opacity: 1;
}

.orb-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

/* Hero visual element with rotation */
.hero-illustration {
    width: 300px;
    height: 300px;
    background: transparent;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    /* backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); */ /* Removed blur effects */
    /* border: 1px solid var(--surface-border); */ /* Removed border */
    /* animation: rotate360 30s linear infinite; */ /* Animation removed */
}
.hero-illustration::before {
    /* Violet circle removed */
    display: none;
}
.hero-illustration::after {
    /* Chat emoji removed */
    display: none;
}

/* Stats improvements - enhanced key metrics */
.stats-number {
    color: var(--text-primary);
    font-weight: 800;
    font-size: 2.25rem;
    line-height: 1;
    margin-bottom: var(--space-sm);
}
.stats-number-large {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1;
    margin-bottom: var(--space-sm);
}
@media (min-width: 768px) {
    .stats-number {
        font-size: 2.5rem;
    }
    .stats-number-large {
        font-size: 2.5rem;
    }
}
@media (max-width: 640px) {
    .stats-number {
        font-size: 2rem;
    }
    .stats-number-large {
        font-size: 2rem;
    }
}
.stats-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.stats-label-small {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}
.stats-separator {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, 0.5), transparent);
    margin: 0 auto;
}
@media (max-width: 768px) {
    .stats-separator {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(139, 92, 246, 0.5), transparent);
        margin: 1rem auto;
    }
}

/* Testimonials marquee */
.testimonials-marquee {
    overflow: hidden;
    margin-top: 2rem;
    padding: 1rem 0;
}
.marquee-content {
    display: flex;
    gap: 2rem;
    animation: marqueeScroll 30s linear infinite;
}
.testimonial-mini {
    min-width: 300px;
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}
.testimonial-mini p {
    color: #B5B5FF;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-style: italic;
}
.testimonial-mini small {
    color: #9CA3AF;
    font-size: 0.75rem;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Benefits grid layout - unified card system */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}
.benefit-card-featured {
    border: 2px solid rgba(102, 126, 234, 0.4);
    position: relative;
}
.benefit-card-featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}
.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: white;
    flex-shrink: 0;
}
.benefit-content {
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.benefit-content h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}
.benefit-content p {
    color: #d1d5db;
    margin-bottom: 16px;
    flex-grow: 1;
    max-width: 60ch;
    line-height: 1.6;
}
.benefit-content .benefit-use {
    color: #9ca3af;
    font-size: 0.875rem;
    font-style: italic;
    margin-top: auto;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .benefit-content {
        text-align: center;
    }
    .benefit-icon {
        margin: 0 auto 1.5rem auto;
    }
}

/* Enhanced mobile tap targets and usability */
@media (max-width: 768px) {
    .trust-badge,
    .primary-cta,
    .secondary-cta,
    .psych-cta,
    .header-cta,
    .faq-question,
    .footer-links-toggle,
    button:not(.hamburger),
    a[role="button"] {
        min-height: 48px;
        min-width: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 16px;
    }
    
    /* Fix header CTA margin to match menu spacing - remove extra margin */
    .header-cta {
        margin-right: 0;
    }
    
    /* Specific adjustments for different components */
    .faq-question {
        padding: 16px 20px;
        justify-content: space-between !important;
        min-height: 64px;
    }
    .benefit-card {
        min-height: 240px;
        text-align: center;
        padding: 20px;
    }
    .benefit-icon {
        margin: 0 auto 1.5rem auto;
        width: 40px;
        height: 40px;
    }
    .review-card-grid {
        min-height: 160px;
        padding: 16px;
    }
    .marquee-content {
        animation-duration: 20s;
    }
    .testimonial-mini {
        min-width: 250px;
    }
    
    /* Improved navigation tap targets */
    nav a {
        padding: 12px 16px;
        min-height: 44px;
        border-radius: 8px;
    }
    
    /* Enhanced social links */
    .social-link {
        min-width: 44px;
        min-height: 44px;
    }
}

/* FAQ accordion styles */
.faq-container {
    margin-top: 2rem;
}
.faq-item {
    background: #1f2536; /* Improved contrast for WCAG AA compliance */
    border: 1px solid var(--surface-glass-border);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
    background: rgba(255, 255, 255, 0.08);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    min-height: 60px;
}
.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    padding-right: 1rem;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.faq-icon {
    color: #8b5cf6;
    transition: transform 0.2s ease;
    min-width: 24px;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
    color: currentColor;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 350px;
}
.faq-answer-content {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    max-width: 680px;
}
.faq-answer-content p {
    color: #e5e7eb;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem;
        min-height: 64px;
    }
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 0.75rem;
        line-height: 1.4;
    }
    .faq-icon svg {
        width: 20px;
        height: 20px;
    }
    .faq-answer-content {
        padding: 1rem 1.25rem 1.25rem 1.25rem;
    }
}

/* Psychologists section styles */
.psych-benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}
.psych-benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}
/* Enhanced psych-icon design for better visual appeal */
.psych-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    margin: 0 auto 20px auto;
    box-shadow: 0 8px 32px rgba(122, 92, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.psych-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.psych-benefit-card:hover .psych-icon {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(122, 92, 255, 0.4);
}
.psych-cta {
    background-color: transparent;
    color: #8b5cf6;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    border: 2px solid rgba(139, 92, 246, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
    min-height: 48px;
    font-size: 1rem;
}
.psych-cta:hover {
    background-color: rgba(139, 92, 246, 0.1);
    transform: translateY(-1px);
    border-color: #8b5cf6;
    color: #a855f7;
}

@media (max-width: 768px) {
    .psych-benefit-card {
        padding: 1.5rem;
        text-align: center;
    }
    .psych-icon {
        width: 56px;
        height: 56px;
        margin: 0 auto 16px auto;
    }
    .psych-icon svg {
        width: 24px;
        height: 24px;
    }
    .psych-cta {
        width: 100%;
        max-width: 350px;
        text-align: center;
        padding: 16px 32px;
    }
}

/* P2: Enhanced scroll-snap review carousel */
.reviews-container {
    max-width: calc(100vw - 4rem);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.reviews-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: var(--space-md) var(--space-lg);
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: calc(100% + 2rem);
    margin: 0 -1rem;
    scroll-padding: 0 24px;
}
.reviews-grid::-webkit-scrollbar {
    display: none;
}

/* Desktop: show 2.3 cards with partial peek */
@media (min-width: 1024px) {
    .reviews-container {
        max-width: 1200px;
        padding: 0 24px;
    }
    .reviews-grid {
        width: 100%;
        margin: 0;
        padding: var(--space-md) 0;
        gap: 24px;
        scroll-padding: 0 48px;
    }
    .review-card-grid {
        min-width: calc(43.5% - 12px); /* Shows 2.3 cards for partial peek */
        flex-shrink: 0;
        scroll-snap-align: start;
    }
}

/* Tablet: show 1.5 cards */
@media (min-width: 768px) and (max-width: 1023px) {
    .reviews-grid {
        scroll-padding: 0 32px;
    }
    .review-card-grid {
        min-width: calc(66% - 16px); /* Shows 1.5 cards */
        flex-shrink: 0;
        scroll-snap-align: start;
    }
}
.review-card-grid {
    background: var(--surface-glass);
    border: 1px solid var(--surface-glass-border);
    border-radius: 20px;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    min-width: 320px;
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.review-card-grid:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 
                inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.08);
}
.review-text {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
    flex-grow: 1;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}
.review-rating {
    color: #fbbf24;
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.review-card-grid:hover .review-rating {
    opacity: 1;
}
.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.review-card-grid:hover .author-avatar,
.review-card-grid:focus .author-avatar {
    opacity: 1;
}
.review-author span {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Mobile: stacked cards with proper scroll-snap */
@media (max-width: 768px) {
    .reviews-grid {
        gap: var(--space-md);
        padding: var(--space-sm) var(--space-md);
        width: calc(100vw - 4rem);
        margin: 0 auto;
        scroll-padding: 0 16px;
    }
    .review-card-grid {
        min-height: 160px;
        min-width: 280px;
        padding: var(--space-md);
        scroll-snap-align: center;
    }
    .review-rating {
        opacity: 1; /* Always show on mobile */
    }
    .author-avatar {
        opacity: 1; /* Always show on mobile */
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Unified Footer styles */
.footer-unified {
    min-height: 45vh;
    background: linear-gradient(180deg, #0b0b0b00 0%, #0b0b0b 100%);
    border-top: 1px solid #374151;
    padding: 48px 0 24px 0;
    display: flex;
    flex-direction: column;
    position: relative;
}
.footer-unified::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}
.footer-cta-section {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(55, 65, 81, 0.5);
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}
.footer-cta-subtitle {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 24px;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}
.footer-cta-button {
    margin-bottom: 16px;
}
.footer-cta-note {
    font-size: 0.875rem;
    color: #9ca3af;
}

@media (max-width: 640px) {
    .footer-cta-section {
        padding: 24px 16px 32px 16px;
    }
    .footer-cta-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    .footer-cta-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
        padding: 0 16px;
    }
    .footer-cta-button {
        margin-bottom: 12px;
    }
}
.footer-links-section {
    margin-bottom: auto;
}
.footer-links-toggle {
    width: 100%;
    background: none;
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 8px;
    padding: 16px;
    color: #d1d5db;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 16px;
}
.footer-links-toggle:hover {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}
.footer-toggle-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}
.footer-links-toggle[aria-expanded="true"] .footer-toggle-icon {
    transform: rotate(180deg);
}
.footer-links-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.footer-links-content.open {
    max-height: 800px;
}
.footer-content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 32px;
    align-items: start;
    padding: 24px 0;
}
.footer-brand {
    display: flex;
    flex-direction: column;
}
.footer-logo {
    font-size: 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.footer-heading {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-link {
    color: #9CA3FF;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.5;
}
.footer-link:hover {
    color: #ffffff;
}
.footer-text {
    color: #9CA3FF;
    font-size: 14px;
    line-height: 1.6;
}
.social-links {
    display: flex;
    gap: 1rem;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-link:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.4);
    color: #ffffff;
    transform: translateY(-2px);
}
.trust-badges-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}
.trust-badge-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    color: #10b981;
    font-size: 12px;
    font-weight: 500;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

@media (max-width: 1024px) {
    .footer-content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .trust-badges-footer {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-unified {
        padding: 32px 0 16px 0;
        min-height: 50vh;
    }
    .footer-content-grid {
        gap: 16px;
    }
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    .footer-cta-title {
        font-size: 1.75rem;
    }
    .footer-cta-subtitle {
        font-size: 1rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate,
    .primary-cta,
    .benefit-card,
    .review-card,
    .live-indicator,
    .trust-badge {
        transition: none !important;
        animation: none !important;
    }
    .primary-cta::before {
        display: none;
    }
}

/* Enhanced mobile content spacing - 8pt grid system */
@media (max-width: 640px) {
    .content-area, .content-area-wide {
        padding: 0 1.25rem;
    }
    .container-grid {
        padding: 0 1.25rem;
        gap: 1.5rem;
    }
    .sticky-header .content-area {
        padding: 0 1.25rem;
    }
    
    /* Enhanced section spacing for mobile */
    .padding-section {
        padding: 56px 0;
    }
    .padding-section-lg {
        padding: 72px 0 56px 0;
    }
    
    /* Better breathing room between sections */
    section + section {
        margin-top: 24px;
    }
    
    /* Typography improvements */
    h1 {
        font-size: 2rem !important;
        line-height: 1.2;
        max-width: 100% !important;
        margin-bottom: 1.5rem;
    }
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .hero-subtitle {
        font-size: 1.125rem !important;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    /* Improved spacing for key elements */
    .hero-actions {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    .benefits-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    .reviews-grid {
        gap: 1.25rem;
        margin-top: 2rem;
    }
}