/**
 * UgodaKonsumencka.pl - Professional Corporate Design System
 * Refactored and optimized CSS
 *
 * Table of Contents:
 * 1. CSS Variables & Reset
 * 2. Typography System
 * 3. Layout & Container
 * 4. Navigation
 * 5. Buttons
 * 6. Hero Section
 * 7. Comparison Section
 * 8. Target Audience Section
 * 9. Info Section
 * 10. Legal Section
 * 11. Process Section
 * 12. Stats Dashboard
 * 13. FAQ Section
 * 14. Footer
 * 15. Utilities
 * 16. Animations
 * 17. Responsive Design
 */

/* ==========================================================================
   1. CSS Variables & Reset
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=Merriweather:wght@300;400;700;900&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
    /* Professional Corporate Colors */
    --navy-900: #0A1628;
    --navy-800: #1A2332;
    --navy-700: #243447;
    --navy-600: #2E455C;
    --navy-500: #3D5A80;
    --navy-400: #4B6FA3;

    --teal-600: #00806A;
    --teal-500: #009B84;
    --teal-400: #00B89E;
    --teal-300: #00D4B8;

    --gold-600: #B8860B;
    --gold-500: #DAA520;
    --gold-400: #F4C430;

    --gray-900: #0F172A;
    --gray-800: #1E293B;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748B;
    --gray-400: #94A3B8;
    --gray-300: #CBD5E1;
    --gray-200: #E2E8F0;
    --gray-100: #F1F5F9;
    --gray-50: #F8FAFC;

    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;

    /* Typography */
    --font-sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Merriweather', Georgia, serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-full: 50px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;
    --transition-slower: 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--gray-900);
    background: var(--gray-50);
    line-height: 1.6;
    font-weight: 400;
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 3px solid var(--teal-400);
    outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--navy-900);
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   2. Typography System
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-900);
}

h1 { font-size: clamp(2rem, 5vw, 2.75rem); font-weight: 900; }
h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 3vw, 1.875rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

.text-lead {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: var(--gray-600);
}

/* ==========================================================================
   3. Layout & Container
   ========================================================================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.container-fluid {
    padding: 0 var(--spacing-lg);
}

/* Visually hidden but accessible to screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   4. Navigation
   ========================================================================== */

/* Top Bar */
.top-bar {
    background: var(--navy-900);
    color: var(--gray-400);
    padding: var(--spacing-sm) 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.top-bar-info {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.top-bar-item .icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Main Navigation */
.main-nav {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--navy-900);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    flex-shrink: 0;
    transition: all 0.3s ease;
    animation: logoIconPulse 4s ease-in-out infinite;
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--teal-400) 0%, var(--gold-400) 50%, var(--teal-400) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    animation: logoIconBorder 4s ease-in-out infinite;
}

@keyframes logoIconPulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    40%, 60% {
        box-shadow: 0 4px 20px rgba(0, 184, 148, 0.25), 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

@keyframes logoIconBorder {
    0%, 30%, 70%, 100% {
        opacity: 0;
    }
    45%, 55% {
        opacity: 0.6;
    }
}

.logo:hover .logo-icon {
    transform: scale(1.03);
    box-shadow: 0 6px 24px rgba(0, 184, 148, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo:hover .logo-icon::before {
    opacity: 0.8;
}

.logo-icon::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--teal-400);
    border-radius: 50%;
    animation: logoPulse 4s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(0, 184, 158, 0);
}

/* Professional pulsing animation for logo dot with gold accent */
@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        background: var(--teal-400);
        box-shadow: 0 0 0 0 rgba(0, 184, 158, 0);
    }
    20% {
        transform: scale(1.05);
        background: var(--teal-400);
        box-shadow: 0 0 10px 3px rgba(0, 184, 158, 0.4);
    }
    40% {
        transform: scale(1.02);
        background: linear-gradient(135deg, var(--teal-400) 0%, var(--gold-400) 100%);
        box-shadow: 0 0 12px 4px rgba(244, 196, 48, 0.3);
    }
    60% {
        transform: scale(1.06);
        background: linear-gradient(135deg, var(--gold-400) 0%, var(--teal-400) 100%);
        box-shadow: 0 0 14px 4px rgba(244, 196, 48, 0.35), 0 0 6px 2px rgba(0, 184, 158, 0.2);
    }
    80% {
        transform: scale(1.03);
        background: var(--teal-400);
        box-shadow: 0 0 8px 2px rgba(0, 184, 158, 0.3);
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-900);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
    list-style: none;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    padding: var(--spacing-sm) 0;
    position: relative;
    transition: color var(--transition-base);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--navy-900);
}

.nav-link.active {
    color: var(--teal-600);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--teal-600);
}

.nav-link-highlight {
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.1) 0%, rgba(0, 184, 148, 0.05) 100%);
    color: var(--teal-600) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 100px;
    border: 1px solid rgba(0, 184, 148, 0.3);
    font-weight: 600 !important;
    transition: all 0.3s ease;
}

.nav-link-highlight:hover {
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.2) 0%, rgba(0, 184, 148, 0.1) 100%);
    border-color: var(--teal-600);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.2);
}

.nav-cta {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-cta .btn {
    animation: btnPulse 4s ease-in-out infinite;
    animation-delay: 2s; /* offset from logo animation */
}

/* Subtle pulsing animation for nav CTA button */
@keyframes btnPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 128, 106, 0);
        transform: scale(1);
    }
    30% {
        box-shadow: 0 0 0 0 rgba(0, 128, 106, 0);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 15px 3px rgba(0, 184, 148, 0.35), 0 0 30px 6px rgba(244, 196, 48, 0.15);
        transform: scale(1.02);
    }
    70% {
        box-shadow: 0 0 0 0 rgba(0, 128, 106, 0);
        transform: scale(1);
    }
}

.nav-cta .btn:hover {
    animation: none;
}

/* Mobile Menu - Hidden on mobile, hamburger not needed */
.menu-toggle {
    display: none;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--navy-900);
    z-index: 2000;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
    display: flex;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #00B894;
    border-radius: 8px;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.mobile-menu-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-close:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.15);
}

.mobile-nav {
    flex: 1;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav a {
    display: block;
    padding: 1rem 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    text-decoration: none;
}

.mobile-nav a:active {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(0.98);
}

.mobile-menu-footer {
    padding: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-menu-cta {
    width: 100%;
    padding: 1rem;
    background: #00B894;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-cta:active {
    transform: scale(0.98);
    background: #00a383;
}

.mobile-menu-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.mobile-menu-phone:hover,
.mobile-menu-phone:active {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    text-decoration: none;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ==========================================================================
   5. Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    min-height: 44px;
}

.btn-primary {
    background: var(--teal-600);
    color: white;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--teal-500);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: white;
    color: var(--navy-900);
    border: 2px solid var(--gray-300);
}

.btn-secondary:hover,
.btn-secondary:focus {
    border-color: var(--navy-900);
    background: var(--gray-50);
}

.btn-outline {
    background: transparent;
    color: var(--teal-600);
    border: 2px solid var(--teal-600);
}

.btn-outline:hover,
.btn-outline:focus {
    background: var(--teal-600);
    color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-premium-success,
.btn-premium-danger {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all var(--transition-slow);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-premium-success {
    background: linear-gradient(135deg, #00B894 0%, #00CEAD 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 184, 148, 0.3);
}

.btn-premium-success:hover,
.btn-premium-success:focus {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 184, 148, 0.4);
}

.btn-premium-danger {
    background: rgba(255, 107, 107, 0.1);
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.btn-premium-danger:disabled {
    cursor: not-allowed;
    transform: none;
}

/* Ripple effect */
.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ==========================================================================
   6. Hero Section
   ========================================================================== */

.hero {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    color: white;
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text h1 {
    color: white;
    margin-bottom: var(--spacing-lg);
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.hero-highlight {
    color: var(--teal-400);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
    padding-top: var(--spacing-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

/* Subtle gold accent line on border */
.hero-stats::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    border-radius: 2px;
}

.stat-box {
    text-align: center;
    position: relative;
    padding: var(--spacing-md);
    transition: all var(--transition-slow);
}

.stat-box:hover {
    transform: translateY(-3px);
}

/* Gold accent for important stats (94%, 148M) */
.stat-box:nth-child(2) .stat-number,
.stat-box:nth-child(3) .stat-number {
    background: linear-gradient(135deg, var(--teal-400) 0%, var(--gold-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--teal-400);
    font-family: var(--font-mono);
    position: relative;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--spacing-xs);
}

/* ==========================================================================
   7. Comparison Section
   ========================================================================== */

.comparison-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: #0A0E1B;
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 180, 152, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.comparison-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    position: relative;
    z-index: 1;
}

.comparison-section .section-title {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-md);
}

.comparison-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
}

.comparison-premium {
    position: relative;
    z-index: 1;
}

/* Header Card */
.comparison-header-card {
    background: linear-gradient(135deg, #1A2332 0%, #0F1620 100%);
    border-radius: var(--radius-2xl);
    padding: clamp(2rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--spacing-2xl);
    position: relative;
    overflow: hidden;
}

.comparison-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.header-side {
    text-align: center;
    position: relative;
}

.header-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-xl);
}

.header-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 2;
}

.header-side.settlement .header-icon {
    background: linear-gradient(135deg, #00B894 0%, #00CEAD 100%);
    color: white;
    box-shadow: 0 10px 40px rgba(0, 184, 148, 0.4);
}

.header-side.bankruptcy .header-icon {
    background: linear-gradient(135deg, #636E72 0%, #2D3436 100%);
    color: #FF6B6B;
    box-shadow: 0 10px 40px rgba(99, 110, 114, 0.4);
}

.icon-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(0, 184, 148, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    animation: pulse-glow 2s ease-in-out infinite;
}

.icon-glow-red {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.header-side h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
}

.header-side p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

/* VS Badge */
.header-vs {
    position: relative;
}

.vs-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #F39C12 0%, #F1C40F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #0A0E1B;
    box-shadow: 0 15px 40px rgba(241, 196, 15, 0.4);
    position: relative;
    overflow: hidden;
}

.vs-circle::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #F39C12 0%, #E67E22 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
}

/* Comparison Content */
.comparison-content-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.comparison-column {
    background: rgba(26, 35, 50, 0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.comparison-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.comparison-column.settlement {
    border-color: rgba(0, 184, 148, 0.3);
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.05) 0%, rgba(26, 35, 50, 0.6) 100%);
}

.comparison-column.bankruptcy {
    border-color: rgba(255, 107, 107, 0.3);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(26, 35, 50, 0.6) 100%);
}

.column-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.column-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    font-weight: 700;
}

.comparison-column.settlement .column-icon {
    background: rgba(0, 184, 148, 0.2);
    color: #00B894;
}

.comparison-column.bankruptcy .column-icon {
    background: rgba(255, 107, 107, 0.2);
    color: #FF6B6B;
}

.column-header h4 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

/* Features List */
.comparison-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    flex: 1;
}

.comparison-features li {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.feature-icon {
    color: #F1C40F;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    opacity: 0.8;
    flex-shrink: 0;
}

.comparison-features strong {
    display: block;
    color: white;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.comparison-features p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

/* Divider */
.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Footer */
.column-footer {
    margin-top: auto;
}

/* Stats Cards */
.comparison-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.stat-card {
    background: rgba(26, 35, 50, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    transition: all var(--transition-slow);
    min-height: 120px;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(218, 165, 32, 0.4);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00B894;
    font-family: var(--font-mono);
}

/* Comparison Info Box */
.comparison-info-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.info-box-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
}

.info-box-icon svg {
    stroke: #F59E0B;
}

.info-box-content strong {
    display: block;
    color: #F59E0B;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.info-box-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

.info-box-content p strong {
    display: inline;
    color: white;
}

/* Premium Outline Button */
.btn-premium-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-premium-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* ==========================================================================
   8. Target Audience Section
   ========================================================================== */

.target-audience-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: linear-gradient(180deg, #0A0E1B 0%, #1A2332 100%);
    position: relative;
    overflow: hidden;
}

.target-audience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 206, 173, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(79, 70, 229, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.target-audience-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    position: relative;
    z-index: 1;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    font-size: 3rem;
    margin-bottom: var(--spacing-xl);
    animation: float 3s ease-in-out infinite;
    position: relative;
    border: 1px solid rgba(218, 165, 32, 0.3);
    box-shadow: 0 0 30px rgba(218, 165, 32, 0.15);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.target-audience-section .section-title {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-md);
}

.target-audience-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
}

.audience-wrapper {
    position: relative;
    z-index: 1;
}

/* Audience Cards */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
    align-items: stretch;
}

.audience-card {
    perspective: 1000px;
    height: 350px;
    cursor: pointer;
}

.audience-card.wide {
    grid-column: span 2;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.audience-card:hover .card-inner,
.audience-card.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card-front {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: border-color var(--transition-slow), box-shadow var(--transition-slow);
}

.audience-card:hover .card-front {
    border-color: rgba(218, 165, 32, 0.4);
    box-shadow: 0 8px 32px rgba(218, 165, 32, 0.15);
}

.card-back {
    background: linear-gradient(135deg, #00B894 0%, #00CEAD 100%);
    color: white;
    transform: rotateY(180deg);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-lg);
    display: inline-block;
}

.card-front h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.card-front p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

.card-arrow {
    position: absolute;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-slow);
}

.audience-card:hover .card-arrow {
    transform: translateX(5px);
    color: var(--gold-400);
}

.card-back h4 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: white;
}

.card-back p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.check-icon {
    position: absolute;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Quiz Section */
.audience-quiz {
    background: rgba(26, 35, 50, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    position: relative;
    overflow: hidden;
}

.audience-quiz::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00B894 0%, #6C5CE7 50%, #00B894 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.audience-quiz h3 {
    color: white;
    font-size: 2rem;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.quiz-container {
    max-width: 600px;
    margin: 0 auto;
}

.quiz-question {
    display: none;
    animation: fadeIn 0.5s ease;
}

.quiz-question.active {
    display: block;
}

.quiz-question h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.quiz-options {
    display: grid;
    gap: var(--spacing-md);
}

.quiz-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    cursor: pointer;
    transition: all var(--transition-slow);
    text-align: left;
    font-family: inherit;
    min-height: 44px;
}

.quiz-option:hover,
.quiz-option:focus {
    background: rgba(0, 184, 148, 0.2);
    border-color: rgba(0, 184, 148, 0.5);
    transform: translateX(10px);
}

.quiz-option.selected {
    background: rgba(0, 184, 148, 0.3);
    border-color: #00B894;
}

.quiz-result {
    display: none;
    text-align: center;
    padding: var(--spacing-xl);
    animation: fadeIn 0.5s ease;
}

.quiz-result.show {
    display: block;
}

.result-positive, .result-negative {
    display: none;
}

.result-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: var(--spacing-lg);
}

.quiz-result h4 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.quiz-result p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
}

.quiz-progress {
    margin-top: var(--spacing-2xl);
    text-align: center;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00B894 0%, #00CEAD 100%);
    transition: width 0.5s ease;
}

.progress-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Stats Banner */
.audience-stats-banner {
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.1) 0%, rgba(108, 92, 231, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    backdrop-filter: blur(10px);
}

.stats-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
    text-align: center;
    align-items: stretch;
}

.audience-stats-banner .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    justify-content: center;
    min-height: 120px;
}

.audience-stats-banner .stat-icon {
    font-size: 3rem;
    display: block;
}

.audience-stats-banner .stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: #00B894;
    font-family: var(--font-mono);
    display: block;
}

.audience-stats-banner .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Qualification Criteria */
.qualification-criteria {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
}

.criteria-header {
    text-align: center;
    margin-bottom: 2rem;
}

.criteria-header h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.criteria-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.criteria-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.criteria-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 184, 148, 0.3);
    transform: translateY(-2px);
}

.criteria-item.required {
    background: rgba(0, 184, 148, 0.08);
    border-color: rgba(0, 184, 148, 0.3);
}

.criteria-item.required:hover {
    background: rgba(0, 184, 148, 0.12);
    border-color: rgba(0, 184, 148, 0.5);
}

.criteria-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(0, 184, 148, 0.15);
    border-radius: 10px;
    flex-shrink: 0;
    color: #00B894;
}

.criteria-item.required .criteria-icon {
    background: rgba(0, 184, 148, 0.25);
}

.criteria-content strong {
    display: block;
    color: white;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.criteria-badge {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    background: #00B894;
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    margin-bottom: 0.375rem;
}

.criteria-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .criteria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .criteria-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   8.5. Quiz Section
   ========================================================================== */

.quiz-section {
    padding: clamp(4rem, 10vw, 7rem) 0;
    background: linear-gradient(135deg, #0A0E1B 0%, #1A2332 50%, #0A0E1B 100%);
    position: relative;
    overflow: hidden;
}

.quiz-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 184, 148, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(108, 92, 231, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.quiz-wrapper {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.quiz-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #00B894 0%, #00a884 100%);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 184, 148, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
    border: 3px solid rgba(218, 165, 32, 0.4);
}

.quiz-badge svg {
    stroke: white;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 184, 148, 0.3);
    }
    50% {
        box-shadow: 0 8px 48px rgba(0, 184, 148, 0.5);
    }
}

.quiz-container {
    background: rgba(26, 35, 50, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: clamp(1.5rem, 5vw, 3rem);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

/* Quiz Progress */
.quiz-progress-wrapper {
    margin-bottom: 2.5rem;
}

.quiz-progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.quiz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00B894 0%, #00d4aa 100%);
    border-radius: 3px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-progress-steps {
    display: flex;
    justify-content: space-between;
    padding: 0 0.5rem;
}

.quiz-step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quiz-step-indicator.active {
    background: #00B894;
    border-color: #00B894;
    color: white;
    box-shadow: 0 4px 16px rgba(0, 184, 148, 0.4);
}

.quiz-step-indicator.completed {
    background: linear-gradient(135deg, #00B894 0%, var(--gold-500) 100%);
    border-color: var(--gold-500);
    color: white;
}

.quiz-step-indicator svg {
    stroke: white;
}

/* Quiz Questions */
.quiz-question {
    display: none;
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-question.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.quiz-question-header {
    text-align: center;
    margin-bottom: 2rem;
}

.quiz-question-number {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(0, 184, 148, 0.15);
    border: 1px solid rgba(0, 184, 148, 0.3);
    border-radius: 100px;
    color: #00B894;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.quiz-question-title {
    color: white;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.quiz-question-hint {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

/* Quiz Options */
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.quiz-option:hover {
    background: rgba(0, 184, 148, 0.08);
    border-color: rgba(0, 184, 148, 0.3);
    transform: translateX(4px);
}

.quiz-option:focus {
    outline: none;
    border-color: #00B894;
    box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.2);
}

.quiz-option.selected {
    background: rgba(0, 184, 148, 0.15);
    border-color: #00B894;
}

.quiz-option.selected .quiz-option-check {
    opacity: 1;
    transform: scale(1);
}

.quiz-option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    flex-shrink: 0;
}

.quiz-option-icon svg {
    stroke: #00B894;
}

.quiz-option-content {
    flex: 1;
    min-width: 0;
}

.quiz-option-title {
    display: block;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.quiz-option-desc {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.quiz-option-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #00B894;
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-option-check svg {
    stroke: white;
}

/* Quiz Results */
.quiz-result {
    display: none;
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-result.show {
    display: block;
}

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

.quiz-result-content {
    text-align: center;
    padding: 1rem 0;
}

.quiz-result-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.2) 0%, rgba(0, 184, 148, 0.05) 100%);
    border: 2px solid rgba(0, 184, 148, 0.3);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    animation: success-bounce 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-result-icon svg {
    stroke: #00B894;
}

.quiz-result-icon.consultation {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2) 0%, rgba(108, 92, 231, 0.05) 100%);
    border-color: rgba(108, 92, 231, 0.3);
}

.quiz-result-icon.consultation svg {
    stroke: #6C5CE7;
}

@keyframes success-bounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.quiz-result-title {
    color: white;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.quiz-result-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-result-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quiz-result-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 184, 148, 0.1);
    border: 1px solid rgba(0, 184, 148, 0.2);
    border-radius: 100px;
    color: #00B894;
    font-size: 0.875rem;
    font-weight: 500;
}

.quiz-result-benefit svg {
    width: 16px;
    height: 16px;
}

.quiz-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.quiz-restart {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.quiz-restart:hover {
    color: white;
}

.quiz-restart svg {
    transition: transform 0.3s ease;
}

.quiz-restart:hover svg {
    transform: rotate(-45deg);
}

/* Quiz Responsive */
@media (max-width: 640px) {
    .quiz-container {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .quiz-badge {
        width: 60px;
        height: 60px;
    }

    .quiz-badge svg {
        width: 28px;
        height: 28px;
    }

    .quiz-step-indicator {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .quiz-option {
        padding: 1rem;
        gap: 0.75rem;
    }

    .quiz-option-icon {
        width: 40px;
        height: 40px;
    }

    .quiz-option-icon svg {
        width: 20px;
        height: 20px;
    }

    .quiz-option-title {
        font-size: 0.9375rem;
    }

    .quiz-option-desc {
        font-size: 0.8125rem;
    }

    .quiz-option-check {
        width: 28px;
        height: 28px;
    }

    .quiz-result-icon {
        width: 80px;
        height: 80px;
    }

    .quiz-result-icon svg {
        width: 48px;
        height: 48px;
    }

    .quiz-result-benefits {
        flex-direction: column;
        align-items: center;
    }

    .quiz-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   9. Info Section
   ========================================================================== */

.info-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: linear-gradient(180deg, #1A2332 0%, #0A0E1B 100%);
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(0, 184, 148, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(108, 92, 231, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-md);
    color: white;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
    transform: scaleX(0);
    transition: transform var(--transition-slow);
}

.info-card:hover {
    box-shadow: 0 20px 40px rgba(218, 165, 32, 0.1);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(218, 165, 32, 0.3);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 184, 148, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    flex-shrink: 0;
}

.info-card-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: white;
}

.info-card-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    flex: 1;
}

.info-card-link {
    color: var(--teal-400);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: gap var(--transition-base);
    margin-top: auto;
}

.info-card-link:hover,
.info-card-link:focus {
    gap: 0.75rem;
    color: var(--teal-300);
}

/* ==========================================================================
   10. Legal Section
   ========================================================================== */

.legal-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: linear-gradient(180deg, #0A0E1B 0%, #1A2332 100%);
    position: relative;
    overflow: hidden;
}

.legal-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(241, 196, 15, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.legal-section .section-header .section-title {
    color: white;
}

.legal-section .section-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.legal-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.legal-nav {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-nav-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: white;
}

.legal-nav-list {
    list-style: none;
    display: grid;
    gap: var(--spacing-sm);
}

.legal-nav-item {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    width: 100%;
    text-align: left;
}

.legal-nav-item:hover,
.legal-nav-item:focus {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
}

.legal-nav-item.active {
    background: var(--teal-600);
    color: white;
}

.legal-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-article {
    display: none;
}

.legal-article.active {
    display: block;
}

.legal-article h3 {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.legal-article h4 {
    margin: var(--spacing-xl) 0 var(--spacing-md);
    color: var(--teal-400);
}

.legal-article p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.legal-highlight {
    background: rgba(241, 196, 15, 0.1);
    border-left: 4px solid var(--gold-600);
    padding: var(--spacing-md) var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: white;
}

.legal-highlight strong {
    color: var(--gold-400);
}

.legal-list {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
}

.legal-list li {
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.8);
}

/* Comparison table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-lg) 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.comparison-table th {
    background: var(--navy-900);
    color: white;
    padding: var(--spacing-md);
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

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

.comparison-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   11. Process Section
   ========================================================================== */

.process-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: linear-gradient(180deg, #1A2332 0%, #0A0E1B 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--teal-400) 0%, transparent 70%);
    opacity: 0.05;
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-section .section-header .section-title {
    color: white;
}

.process-section .section-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Progress Bar */
.process-progress-bar {
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin: var(--spacing-2xl) 0 var(--spacing-3xl);
    overflow: hidden;
}

.process-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--teal-600) 0%, var(--teal-400) 100%);
    border-radius: 3px;
    width: 0%;
    transition: width 2s ease-out;
}

.process-progress-fill.animate {
    width: 100%;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    align-items: stretch;
}

.process-step {
    position: relative;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 184, 148, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 128, 106, 0.2);
    transition: all var(--transition-slow);
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--teal-600), var(--gold-500));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.process-step:hover .step-number::before {
    opacity: 1;
}

.process-step:hover .step-number-inner {
    color: white;
}

.step-number-inner {
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal-400);
    font-family: var(--font-mono);
    transition: color var(--transition-slow);
}

.step-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.3);
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-sm);
}

.step-duration {
    font-size: 0.875rem;
    color: var(--teal-400);
    font-weight: 600;
}

/* Process Cards */
.process-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
    align-items: stretch;
}

.process-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-slower);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--teal-600) 0%, var(--gold-500) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slower);
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(218, 165, 32, 0.3);
}

.process-card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.process-card-number {
    width: 60px;
    height: 60px;
    background: rgba(0, 184, 148, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal-400);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.process-card-number::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--teal-600), var(--teal-400));
    opacity: 0.1;
    transition: opacity var(--transition-slow);
}

.process-card:hover .process-card-number::after {
    opacity: 0.2;
}

.process-card-title {
    flex: 1;
}

.process-card-title h3 {
    font-size: 1.375rem;
    color: white;
    margin-bottom: 0.25rem;
}

.process-card-title span {
    font-size: 0.875rem;
    color: var(--teal-400);
    font-weight: 600;
}

.process-card-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    flex: 1;
}

.process-card-features {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.process-card-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.process-card-feature-icon {
    width: 24px;
    height: 24px;
    background: rgba(0, 184, 148, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-400);
    flex-shrink: 0;
}

/* Interactive Timeline */
.process-timeline-interactive {
    margin-top: var(--spacing-3xl);
    padding: var(--spacing-2xl);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.process-timeline-interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='50' cy='50' r='1'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.timeline-interactive-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.timeline-interactive-header h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
}

.timeline-interactive-header p {
    color: rgba(255, 255, 255, 0.7);
}

.timeline-interactive-track {
    position: relative;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 10px;
    margin-bottom: var(--spacing-xl);
}

.timeline-interactive-progress {
    height: 60px;
    background: linear-gradient(90deg, var(--teal-600) 0%, var(--teal-400) 100%);
    border-radius: 30px;
    position: relative;
    width: 0%;
    transition: width 2s ease-out;
    box-shadow: 0 4px 20px rgba(0, 180, 152, 0.4);
}

.timeline-interactive-progress.animate {
    width: 100%;
}

.timeline-markers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 2;
    cursor: pointer;
    transition: transform var(--transition-slow);
    background: none;
    border: none;
    font-family: inherit;
}

.timeline-marker:hover,
.timeline-marker:focus {
    transform: scale(1.1);
}

.timeline-marker-dot {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   11.5 Legal Basis Section
   ========================================================================== */

.legal-basis-section {
    padding: clamp(4rem, 10vw, 7rem) 0;
    background: linear-gradient(180deg, #0A0E1B 0%, #1A2332 50%, #0F1420 100%);
    position: relative;
    overflow: hidden;
}

.legal-basis-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 20%, rgba(218, 165, 32, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 80% 80%, rgba(0, 184, 148, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.legal-basis-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.legal-basis-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2) 0%, rgba(218, 165, 32, 0.1) 100%);
    border: 2px solid rgba(218, 165, 32, 0.4);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.legal-basis-badge svg {
    stroke: var(--gold-400);
}

.legal-basis-section .section-title {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-md);
}

.legal-basis-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
}

.legal-basis-wrapper {
    position: relative;
    z-index: 1;
}

/* Legal Tabs */
.legal-tabs {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 100px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.legal-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.legal-tab:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.legal-tab.active {
    background: linear-gradient(135deg, var(--teal-600) 0%, var(--gold-500) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(0, 184, 148, 0.3);
}

.legal-tab-icon {
    display: flex;
    align-items: center;
}

.legal-tab-icon svg {
    stroke: currentColor;
}

/* Legal Panels */
.legal-panels {
    background: rgba(26, 35, 50, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: clamp(1.5rem, 5vw, 3rem);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.legal-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.legal-panel.active {
    display: block;
}

.legal-panel-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-panel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(0, 184, 148, 0.15);
    border: 2px solid rgba(0, 184, 148, 0.3);
    border-radius: 16px;
    flex-shrink: 0;
}

.legal-panel-icon svg {
    stroke: #00B894;
}

.legal-panel-icon.warning {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
}

.legal-panel-icon.warning svg {
    stroke: #F59E0B;
}

.legal-panel-icon.info {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.legal-panel-icon.info svg {
    stroke: #3B82F6;
}

.legal-panel-icon.gold {
    background: rgba(218, 165, 32, 0.15);
    border-color: rgba(218, 165, 32, 0.3);
}

.legal-panel-icon.gold svg {
    stroke: var(--gold-400);
}

.legal-panel-header h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.legal-panel-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

/* Legal Article Box */
.legal-article-box {
    background: rgba(0, 184, 148, 0.08);
    border: 1px solid rgba(0, 184, 148, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-article-box.secondary {
    background: rgba(218, 165, 32, 0.08);
    border-color: rgba(218, 165, 32, 0.2);
}

.legal-article-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.legal-article-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, #00B894 0%, #00a884 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 100px;
    letter-spacing: 0.02em;
}

.legal-article-badge.secondary {
    background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 100%);
}

.legal-article-type {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 500;
}

.legal-quote {
    margin: 0;
    padding: 0;
}

.legal-quote p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.0625rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.legal-quote strong {
    color: #00B894;
    font-style: normal;
}

.legal-article-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
}

/* Legal Features Grid */
.legal-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.legal-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.legal-feature:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.legal-feature.gold .legal-feature-icon {
    background: rgba(218, 165, 32, 0.2);
    color: var(--gold-400);
}

.legal-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(0, 184, 148, 0.2);
    border-radius: 10px;
    flex-shrink: 0;
    color: #00B894;
}

.legal-feature-content strong {
    display: block;
    color: white;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.legal-feature-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    line-height: 1.5;
    margin: 0;
}

/* Legal Comparison Box */
.legal-comparison-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.legal-comparison-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-label {
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
}

.comparison-label.positive {
    background: rgba(0, 184, 148, 0.2);
    color: #00B894;
}

.comparison-label.negative {
    background: rgba(255, 107, 107, 0.2);
    color: #FF6B6B;
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-400) 100%);
    border-radius: 50%;
    color: #0A0E1B;
    font-weight: 800;
    font-size: 0.75rem;
}

.legal-comparison-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.comparison-side {
    padding: 1.25rem;
}

.comparison-side.positive {
    background: rgba(0, 184, 148, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-side.negative {
    background: rgba(255, 107, 107, 0.05);
}

.comparison-side ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.comparison-side li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
}

.comparison-side.positive li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #00B894;
    border-radius: 50%;
    flex-shrink: 0;
}

.comparison-side.negative li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #FF6B6B;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Legal Highlight Box */
.legal-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
}

.legal-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
}

.legal-highlight-icon svg {
    stroke: #F59E0B;
}

.legal-highlight-box strong {
    display: block;
    color: #F59E0B;
    margin-bottom: 0.25rem;
}

.legal-highlight-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Legal Info Cards */
.legal-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
}

.legal-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.legal-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
}

.legal-info-number {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.legal-info-card h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.legal-info-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* Legal Recommendation Box */
.legal-recommendation-box {
    background: rgba(218, 165, 32, 0.08);
    border: 1px solid rgba(218, 165, 32, 0.25);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.recommendation-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.recommendation-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 100px;
}

.recommendation-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.legal-recommendation-box > p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
}

.legal-recommendation-box strong {
    color: var(--gold-400);
}

/* Legal Security Grid */
.legal-security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.security-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 184, 148, 0.4);
    box-shadow: 0 12px 32px rgba(0, 184, 148, 0.1);
}

.security-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(0, 184, 148, 0.15);
    border-radius: 16px;
    margin-bottom: 1rem;
}

.security-icon svg {
    stroke: #00B894;
}

.security-item h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.security-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Legal GDPR Badge */
.legal-gdpr-badge {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.1) 0%, rgba(218, 165, 32, 0.1) 100%);
    border: 1px solid rgba(0, 184, 148, 0.3);
    border-radius: 16px;
}

.gdpr-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #00B894 0%, var(--gold-500) 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

.gdpr-icon svg {
    stroke: white;
}

.gdpr-content strong {
    display: block;
    color: white;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.gdpr-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Legal Basis Responsive */
@media (max-width: 992px) {
    .legal-features-grid {
        grid-template-columns: 1fr;
    }

    .legal-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .legal-comparison-content {
        grid-template-columns: 1fr;
    }

    .comparison-side.positive {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 768px) {
    .legal-tabs {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.375rem;
        padding: 0.5rem;
        border-radius: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
    }

    .legal-tabs::-webkit-scrollbar {
        display: none;
    }

    .legal-tab {
        flex: 0 0 auto;
        padding: 0.5rem 0.75rem;
        font-size: 0.625rem;
        border-radius: 8px;
        gap: 0;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    .legal-tab-icon {
        display: none;
    }

    .legal-tab-text {
        display: inline;
    }

    .legal-tab.active {
        background: linear-gradient(135deg, #00B894 0%, #DAA520 100%);
    }

    .legal-features-grid,
    .legal-security-grid {
        grid-template-columns: 1fr;
    }

    .legal-info-cards {
        grid-template-columns: 1fr;
    }

    .legal-panel-header {
        flex-direction: column;
        text-align: center;
    }

    .legal-gdpr-badge {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   12. Stats Dashboard
   ========================================================================== */

.stats-dashboard {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: linear-gradient(135deg, #1E2A3A 0%, #2C3E50 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 184, 148, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(241, 196, 15, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
    align-items: stretch;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--teal-400) 0%, transparent 70%);
    opacity: 0.1;
    pointer-events: none;
}

.dashboard-value {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--teal-400);
    margin-bottom: var(--spacing-sm);
}

.dashboard-label {
    font-size: 1rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dashboard-chart {
    margin-top: var(--spacing-md);
    height: 60px;
    width: 100%;
}

/* ==========================================================================
   12.5. What Settlement Is NOT Section
   ========================================================================== */

.not-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: linear-gradient(180deg, #1A2332 0%, #0F1420 100%);
    position: relative;
}

.not-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.not-section .section-title {
    color: white;
}

.not-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.not-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.not-card {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.not-card:hover {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.35);
    transform: translateY(-4px);
}

.not-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(239, 68, 68, 0.15);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.not-icon svg {
    stroke: #EF4444;
}

.not-card h3 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.not-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.not-info-banner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin: 0 auto;
}

.not-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
}

.not-info-icon svg {
    stroke: #3B82F6;
}

.not-info-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

.not-info-banner strong {
    color: white;
}

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

/* ==========================================================================
   13. FAQ Section
   ========================================================================== */

.faq-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: linear-gradient(180deg, #0A0E1B 0%, #1A2332 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite reverse;
    pointer-events: none;
}

.faq-section .section-header .section-title {
    color: white;
}

.faq-section .section-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.faq-container {
    max-width: 900px;
    margin: var(--spacing-2xl) auto 0;
    position: relative;
    z-index: 1;
}

.faq-categories {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    justify-content: center;
}

.faq-category {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: inherit;
    font-size: inherit;
}

.faq-category.active {
    background: var(--teal-600);
    color: white;
    border-color: var(--teal-600);
}

.faq-category:hover,
.faq-category:focus {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-slow);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(218, 165, 32, 0.3);
}

.faq-question {
    padding: var(--spacing-lg) var(--spacing-xl);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: white;
    transition: all var(--transition-base);
    position: relative;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: inherit;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--teal-600) 0%, var(--gold-500) 100%);
    transform: scaleY(0);
    transition: transform var(--transition-slow);
}

.faq-item.active .faq-question::before {
    transform: scaleY(1);
}

.faq-question:hover,
.faq-question:focus {
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--teal-400);
    transition: transform var(--transition-slow), color var(--transition-slow);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--gold-400);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 var(--spacing-xl) var(--spacing-xl);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* ==========================================================================
   14. Footer
   ========================================================================== */

.footer {
    background: var(--navy-900);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-2xl);
    align-items: start;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: white;
}

.footer-brand p {
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.footer-certifications {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    color: white;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--teal-400);
}

/* Footer Disclaimer */
.footer-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: var(--spacing-xl);
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-md);
}

.disclaimer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.15);
    border-radius: 10px;
    flex-shrink: 0;
}

.disclaimer-icon svg {
    stroke: #F59E0B;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8125rem;
    line-height: 1.7;
    margin: 0;
}

.footer-disclaimer strong {
    color: #F59E0B;
}

.footer-bottom {
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-legal a:hover,
.footer-legal a:focus {
    color: white;
}

/* ==========================================================================
   15. Utilities
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.w-100 { width: 100%; }

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }
.mt-5 { margin-top: var(--spacing-2xl); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }
.mb-5 { margin-bottom: var(--spacing-2xl); }

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.badge-success {
    background: var(--success);
    color: white;
}

.badge-warning {
    background: var(--warning);
    color: white;
}

.badge-danger {
    background: var(--danger);
    color: white;
}

/* ==========================================================================
   16. Animations
   ========================================================================== */

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 180, 152, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 180, 152, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 180, 152, 0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out;
}

.animate-slideUp {
    animation: slideUp 0.6s ease-out;
}

/* Pulse animation for active steps */
.step-icon {
    animation: pulse 2s infinite;
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   17. Responsive Design
   ========================================================================== */

/* Tablet and below */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .legal-grid {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        position: static;
    }

    .info-grid,
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-cards {
        grid-template-columns: 1fr;
    }

    .comparison-content-wrapper {
        grid-template-columns: 1fr;
    }

    .comparison-divider {
        display: none;
    }

    .comparison-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid,
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .process-step {
        max-width: 300px;
        margin: 0 auto;
    }

    .timeline-markers {
        display: none;
    }

    .process-timeline-interactive {
        padding: var(--spacing-xl) var(--spacing-lg);
    }

    .comparison-header-card {
        grid-template-columns: 1fr;
        padding: var(--spacing-xl);
        gap: var(--spacing-xl);
    }

    .header-vs {
        order: 3;
        transform: rotate(90deg);
        margin: var(--spacing-xl) 0;
    }

    .comparison-stats {
        grid-template-columns: 1fr;
    }

    .comparison-section .section-title {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-certifications {
        justify-content: center;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .audience-card.wide {
        grid-column: span 1;
    }

    .audience-card {
        height: 320px;
    }

    .target-audience-section .section-title {
        font-size: 2rem;
    }

    .stats-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .quiz-option:hover {
        transform: translateX(5px);
    }

    /* Touch targets */
    a, button {
        min-height: 44px;
    }

    .nav-link {
        padding: 0.75rem var(--spacing-md);
    }

    /* Tables */
    table {
        font-size: 0.875rem;
    }

    th, td {
        padding: var(--spacing-sm);
    }

    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Lists */
    ul, ol {
        padding-left: var(--spacing-lg);
    }

    .top-bar-info {
        display: none;
    }
}

/* Small phones */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 var(--spacing-md);
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .btn-lg {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 1rem;
    }

    /* Form inputs - prevent zoom on iOS */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px;
        padding: 0.75rem;
    }

    .quiz-option {
        padding: var(--spacing-md);
        font-size: 0.875rem;
    }

    .audience-card,
    .info-card,
    .comparison-column {
        padding: var(--spacing-lg);
    }

    .card-icon {
        font-size: 2rem;
    }

    .mobile-menu {
        width: 90%;
    }

    .mobile-nav a {
        padding: var(--spacing-md);
        font-size: 0.875rem;
    }
}

/* Very small phones */
@media (max-width: 320px) {
    html {
        font-size: 13px;
    }

    .container {
        padding: 0 0.75rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

/* Landscape on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: var(--spacing-2xl) 0;
    }

    .mobile-menu {
        width: 50%;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
       (min-resolution: 192dpi) {
    .logo-icon img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Safe area for notched phones */
@supports (padding: max(0px)) {
    .mobile-menu {
        padding-top: max(var(--spacing-xl), env(safe-area-inset-top));
        padding-bottom: max(var(--spacing-xl), env(safe-area-inset-bottom));
    }

    .main-nav {
        padding-top: max(0px, env(safe-area-inset-top));
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ==========================================================================
   Contact Modal & Form
   ========================================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 27, 0.9);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-content {
    background: linear-gradient(180deg, #1A2332 0%, #0F1420 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    position: relative;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #00B894 0%, #00a884 100%);
    border-radius: 50%;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 184, 148, 0.3);
    border: 3px solid rgba(218, 165, 32, 0.4);
}

.modal-icon svg {
    stroke: white;
}

.modal-title {
    color: white;
    font-size: clamp(1.5rem, 4vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 480px) {
    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
}

.form-label svg {
    stroke: #00B894;
    flex-shrink: 0;
}

.form-optional {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold-500);
    background: rgba(218, 165, 32, 0.05);
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.15);
}

.form-input.error {
    border-color: #FF6B6B;
    background: rgba(255, 107, 107, 0.05);
}

.form-input.error:focus {
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-select option {
    background: #1A2332;
    color: white;
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.form-error {
    display: none;
    color: #FF6B6B;
    font-size: 0.8125rem;
    padding-left: 0.25rem;
}

.form-group.has-error .form-error {
    display: block;
}

/* Checkbox */
.form-checkbox-group {
    margin-top: 0.5rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.form-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.checkbox-mark svg {
    stroke: white;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.form-checkbox input:checked + .checkbox-mark {
    background: #00B894;
    border-color: #00B894;
}

.form-checkbox input:checked + .checkbox-mark svg {
    opacity: 1;
    transform: scale(1);
}

.form-checkbox input:focus + .checkbox-mark {
    box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.2);
}

.checkbox-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
    line-height: 1.5;
}

.form-link {
    color: #00B894;
    text-decoration: none;
}

.form-link:hover {
    text-decoration: underline;
}

/* Form Actions */
.form-actions {
    margin-top: 0.5rem;
}

.form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    position: relative;
    overflow: hidden;
}

.form-submit .btn-loader {
    display: none;
    animation: spin 1s linear infinite;
}

.form-submit.loading .btn-text,
.form-submit.loading .btn-icon {
    opacity: 0;
}

.form-submit.loading .btn-loader {
    display: block;
    position: absolute;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Trust Indicators */
.form-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
}

.trust-item svg {
    stroke: #00B894;
    width: 14px;
    height: 14px;
}

/* Success State */
.form-success {
    display: none;
    text-align: center;
    padding: 1rem 0;
    animation: fadeIn 0.4s ease;
}

.form-success.show {
    display: block;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.2) 0%, rgba(0, 184, 148, 0.05) 100%);
    border: 2px solid rgba(0, 184, 148, 0.3);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    animation: success-bounce 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-icon svg {
    stroke: #00B894;
}

.success-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.success-message {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 380px;
    margin: 0 auto 1.5rem;
}

.success-info {
    margin-bottom: 1.5rem;
}

.success-info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.success-info-item svg {
    stroke: #00B894;
}

.success-close {
    min-width: 120px;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

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

/* Top Bar CTA */
.top-bar-cta {
    background: rgba(0, 184, 148, 0.15);
    border: 1px solid rgba(0, 184, 148, 0.3);
    border-radius: 100px;
    padding: 0.25rem 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.top-bar-cta:hover {
    background: rgba(0, 184, 148, 0.25);
    border-color: #00B894;
}

/* Footer Styles */
.footer-contact-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.footer-cta {
    margin-bottom: 1rem;
    display: inline-flex;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #00B894;
}

.footer-email svg {
    stroke: currentColor;
}

/* Print styles */
@media print {
    .top-bar,
    .main-nav,
    .mobile-menu,
    .mobile-menu-overlay,
    .btn,
    .footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        background: white;
        color: black;
    }

    .hero h1,
    .section-title {
        color: black;
    }
}

/* ==========================================================================
   MOBILE APP-LIKE EXPERIENCE
   ========================================================================== */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 9999;
    background: transparent;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00B894 0%, #00D9A5 50%, var(--gold-400) 100%);
    transition: width 0.1s ease-out;
    border-radius: 0 3px 3px 0;
    box-shadow: 0 0 10px rgba(0, 184, 148, 0.5);
}


/* Floating Action Buttons */
.fab-container {
    position: fixed;
    bottom: 2rem;
    right: 1rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fab-container.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(10, 14, 27, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.fab:hover {
    background: #00B894;
    border-color: #00B894;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 184, 148, 0.4);
}

.fab:active {
    transform: scale(0.95);
}

.fab svg {
    stroke: currentColor;
}

.fab-scroll-top {
    animation: fabBounce 2s ease-in-out infinite;
}

@keyframes fabBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.fab-scroll-top:hover {
    animation: none;
}

/* Touch Feedback - Ripple Effect */
.touch-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Active states for touch */
.btn:active,
.quiz-option:active,
.audience-card:active,
.process-step:active,
.faq-question:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    /* FAB positioning */
    .fab-container {
        bottom: 1.5rem;
    }

    /* Optimized hero for mobile */
    .hero {
        padding: var(--spacing-2xl) 0 var(--spacing-xl);
        min-height: auto;
    }

    .hero-content {
        padding: 0 var(--spacing-md);
    }

    .hero-text h1 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: var(--spacing-md);
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: var(--spacing-lg);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: var(--spacing-xl);
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: var(--spacing-md);
        margin-top: var(--spacing-xl);
        padding-top: var(--spacing-lg);
    }

    .stat-box {
        padding: var(--spacing-sm);
    }

    .stat-number {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Compact sections on mobile */
    section {
        padding: var(--spacing-2xl) 0;
    }

    .section-header {
        margin-bottom: var(--spacing-xl);
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .section-subtitle {
        font-size: 0.9375rem;
    }

    /* Cards optimization */
    .audience-card {
        height: auto;
        min-height: 280px;
    }

    /* Quiz optimization */
    .quiz-section {
        padding: var(--spacing-xl) 0;
    }

    .quiz-container {
        margin: 0 var(--spacing-md);
        padding: var(--spacing-lg);
    }

    /* Process cards */
    .process-cards {
        gap: var(--spacing-lg);
    }

    .process-card {
        padding: var(--spacing-lg);
    }

    /* Modal as bottom sheet on mobile */
    .modal-container {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        max-height: 90vh;
        border-radius: 24px 24px 0 0;
        transform: translateY(100%);
        animation: slideUp 0.3s ease forwards;
    }

    @keyframes slideUp {
        to {
            transform: translateY(0);
        }
    }

    .modal-content {
        max-height: calc(90vh - 2rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 24px 24px 0 0;
    }

    /* Bottom sheet handle */
    .modal-content::before {
        content: '';
        position: sticky;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        display: block;
        width: 40px;
        height: 4px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
        margin: 0 auto var(--spacing-md);
    }

    /* Hide desktop CTA in hero on mobile - use bottom bar */
    .hero-buttons .btn-primary {
        display: none;
    }

    .hero-buttons .btn-outline {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
    }
}


/* iOS-specific fixes */
@supports (-webkit-touch-callout: none) {
    .modal-container {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* Hide scrollbar but allow scrolling - app-like feel */
@media (max-width: 768px) {
    body {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    body::-webkit-scrollbar {
        display: none;
    }
}

/* ==========================================================================
   MOBILE HEADER (Clean, no hamburger)
   ========================================================================== */

@media (max-width: 768px) {
    /* Global text overflow protection */
    h1, h2, h3, h4, h5, h6, p, li, span, a {
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Hide top bar on mobile */
    .top-bar {
        display: none;
    }

    /* Clean mobile header */
    .navbar {
        padding: 0;
        background: white;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav-container {
        padding: 0.625rem 1rem;
        gap: 0.5rem;
    }

    /* Hide desktop nav */
    .nav-menu {
        display: none;
    }

    /* Compact logo */
    .logo {
        flex: 1;
        min-width: 0;
        gap: 0.5rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

    .logo-icon::after {
        width: 12px;
        height: 12px;
        bottom: -2px;
        right: -2px;
    }

    .logo-icon svg {
        width: 16px;
        height: 16px;
    }

    .logo-title {
        font-size: 0.875rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .logo-subtitle {
        display: none;
    }

    /* CTA button in header */
    .nav-cta {
        flex-shrink: 0;
    }

    .nav-cta .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        border-radius: 100px;
        white-space: nowrap;
    }

    .nav-cta .btn svg {
        display: none;
    }
}

/* Touch active states */
.touch-active {
    opacity: 0.8;
    transform: scale(0.98);
}

/* Card swipe hint animation */
@keyframes swipeHint {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
}

/* Skeleton loading states for app-like feel */
.skeleton {
    background: linear-gradient(90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.5) 50%,
        rgba(255,255,255,0) 100%
    );
    background-size: 200% 100%;
    animation: skeleton 1.5s ease-in-out infinite;
}

@keyframes skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Toast notification styles (for future use) */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(10, 14, 27, 0.95);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.toast.success {
    background: linear-gradient(135deg, #00B894 0%, #00D9A5 100%);
}

.toast.error {
    background: linear-gradient(135deg, #EF4444 0%, #F87171 100%);
}

@media (max-width: 768px) {
    .toast {
        bottom: 120px;
        max-width: calc(100% - 2rem);
        text-align: center;
    }
}

/* ==========================================================================
   MOBILE-OPTIMIZED SECTIONS (Hero, Comparison, Target Audience)
   ========================================================================== */

@media (max-width: 768px) {
    /* ===== HERO SECTION - Mobile ===== */
    .hero {
        padding: 2rem 0 2.5rem;
        min-height: auto;
    }

    .hero-content {
        padding: 0;
    }

    .hero-text h1 {
        font-size: 1.625rem;
        line-height: 1.35;
        margin-bottom: 1rem;
        text-align: center;
        word-break: break-word;
    }

    .hero-text h1 .hero-highlight {
        display: inline;
    }

    .hero-text .text-lead {
        font-size: 0.9375rem;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 1.5rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .hero-buttons {
        display: none; /* Hide - use bottom bar instead */
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-box {
        text-align: center;
        padding: 0;
        background: none;
    }

    .stat-number {
        display: block;
        font-size: 1.125rem;
        font-weight: 700;
        line-height: 1.2;
        color: #00B894;
    }

    .stat-label {
        display: block;
        font-size: 0.6875rem;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        opacity: 0.7;
        line-height: 1.4;
    }

    /* ===== COMPARISON SECTION - Mobile ===== */
    .comparison-section {
        padding: 2.5rem 0;
        overflow: visible !important;
    }

    .comparison-section .container {
        overflow: visible !important;
    }

    .comparison-section .section-header {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .comparison-section .section-title {
        font-size: 1.375rem;
        line-height: 1.4;
        text-align: center;
    }

    .comparison-section .section-subtitle {
        font-size: 0.875rem;
        text-align: center;
        margin-top: 0.5rem;
    }

    .comparison-premium {
        padding: 0;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: visible !important;
    }

    .comparison-header-card {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 0;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: visible !important;
    }

    .header-side {
        display: block !important;
        padding: 1.25rem;
        border-radius: 16px;
        margin-bottom: 0.75rem;
        text-align: center;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .header-side.settlement {
        background: linear-gradient(135deg, rgba(0, 184, 148, 0.15) 0%, rgba(0, 184, 148, 0.05) 100%);
        border: 1px solid rgba(0, 184, 148, 0.3);
    }

    .header-side.bankruptcy {
        background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 107, 107, 0.05) 100%);
        border: 1px solid rgba(255, 107, 107, 0.3);
    }

    .header-icon-wrapper {
        margin: 0 auto 0.75rem;
    }

    .header-icon {
        width: 48px;
        height: 48px;
    }

    .header-icon svg {
        width: 24px;
        height: 24px;
    }

    .header-side h3 {
        font-size: 1.125rem;
        margin-bottom: 0.25rem;
    }

    .header-side p {
        font-size: 0.8125rem;
        opacity: 0.8;
    }

    .header-vs {
        display: none;
    }

    .comparison-content-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem;
        padding: 0;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: visible !important;
        height: auto !important;
        min-height: auto;
    }

    .comparison-divider {
        display: none !important;
    }

    .comparison-column {
        display: flex !important;
        flex-direction: column !important;
        border-radius: 16px;
        padding: 1.25rem;
        height: auto !important;
        min-height: auto;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: visible;
    }

    .column-header {
        display: flex !important;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        visibility: visible !important;
    }

    .column-header h4,
    .comparison-column h4 {
        font-size: 0.875rem;
        margin: 0;
        color: white !important;
        visibility: visible !important;
    }

    .column-icon {
        width: 32px;
        height: 32px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .comparison-features {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.625rem;
        list-style: none;
        margin: 0 0 1rem 0;
        padding: 0;
        visibility: visible !important;
    }

    .comparison-features li {
        display: flex !important;
        gap: 0.75rem;
        align-items: flex-start;
        font-size: 0.8125rem;
        padding: 0.5rem 0;
        color: white;
        visibility: visible !important;
    }

    .comparison-features li div {
        display: block !important;
    }

    .comparison-features strong {
        display: block;
        color: white;
        font-size: 0.875rem;
        margin-bottom: 0.125rem;
    }

    .comparison-features p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.75rem;
        margin: 0;
        line-height: 1.4;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .column-footer {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem;
        padding: 1.25rem;
        margin-top: 1rem;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .column-footer .btn {
        display: inline-flex !important;
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1rem;
        visibility: visible !important;
        font-size: 0.875rem;
    }

    /* Comparison Stats - Mobile */
    .comparison-stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        margin-top: 1.5rem;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .stat-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
        padding: 1rem !important;
        min-height: auto !important;
        gap: 0.5rem !important;
        background: rgba(26, 35, 50, 0.6) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 12px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .stat-card .stat-icon {
        display: flex !important;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.25rem;
    }

    .stat-card .stat-icon svg {
        width: 28px !important;
        height: 28px !important;
    }

    .stat-card > div {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .stat-card .stat-value {
        display: block !important;
        font-size: 1.25rem !important;
        font-weight: 700 !important;
        color: #00B894 !important;
        visibility: visible !important;
    }

    .stat-card .stat-label {
        display: block !important;
        font-size: 0.6875rem !important;
        color: rgba(255, 255, 255, 0.7) !important;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        visibility: visible !important;
    }

    .comparison-info-box {
        margin-top: 1.5rem;
        padding: 1rem;
        border-radius: 12px;
    }

    .comparison-info-box h4 {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }

    .comparison-info-box ul {
        gap: 0.5rem;
    }

    .comparison-info-box li {
        font-size: 0.8125rem;
    }

    /* ===== TARGET AUDIENCE SECTION - Mobile ===== */
    .target-audience-section {
        padding: 2.5rem 0;
    }

    .target-audience-section .section-header {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .target-audience-section .header-badge {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }

    .target-audience-section .header-badge svg {
        width: 28px;
        height: 28px;
    }

    .target-audience-section .section-title {
        font-size: 1.375rem;
        line-height: 1.4;
        text-align: center;
    }

    .target-audience-section .section-subtitle {
        font-size: 0.875rem;
        text-align: center;
        margin-top: 0.5rem;
    }

    /* Audience Grid - Stack vertically */
    .audience-wrapper {
        padding: 0;
    }

    .audience-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .audience-card {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding-bottom: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .audience-card:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    /* Disable flip effect on mobile - show as simple cards */
    .audience-card {
        perspective: none;
        height: auto;
        cursor: default;
    }

    .audience-card.wide {
        grid-column: span 1;
    }

    .card-inner {
        transform-style: flat;
        transition: none;
    }

    .audience-card:hover .card-inner,
    .audience-card.flipped .card-inner {
        transform: none;
    }

    /* Show only front, no flip */
    .card-front {
        position: relative;
        height: auto;
        padding: 1.25rem;
        border-radius: 16px;
        display: grid;
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto auto;
        align-items: start;
        text-align: left;
        gap: 0.25rem 1rem;
    }

    .card-inner {
        display: flex;
        flex-direction: column;
    }

    .card-back {
        position: relative;
        transform: none;
        background: transparent;
        border-radius: 0;
        padding: 0.75rem 0 0 calc(48px + 1rem);
        height: auto;
        display: block;
        text-align: left;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 0.75rem;
    }

    .card-back h4 {
        font-size: 0.8125rem;
        font-weight: 600;
        margin: 0 0 0.25rem 0;
        color: #00B894;
    }

    .card-back p {
        font-size: 0.75rem;
        line-height: 1.5;
        margin: 0;
        color: rgba(255, 255, 255, 0.6);
    }

    .check-icon {
        display: none;
    }

    .card-icon {
        grid-row: 1 / 3;
        align-self: center;
        margin-bottom: 0;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 184, 148, 0.15);
        border-radius: 12px;
    }

    .card-icon svg {
        width: 24px;
        height: 24px;
        stroke: #00B894;
    }

    .card-front h3 {
        grid-column: 2;
        grid-row: 1;
        font-size: 1rem;
        margin: 0;
        line-height: 1.3;
        color: white;
    }

    .card-front p {
        grid-column: 2;
        grid-row: 2;
        font-size: 0.8125rem;
        line-height: 1.4;
        margin: 0;
        color: rgba(255, 255, 255, 0.7);
    }

    .card-arrow {
        display: none;
    }

    /* Stats Banner - Mobile */
    .audience-stats-banner {
        display: block !important;
        margin-top: 1.25rem;
        padding: 1rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.03);
        visibility: visible !important;
        opacity: 1 !important;
    }

    .audience-stats-banner .stats-content {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        gap: 1.5rem;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .audience-stats-banner .stat-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.125rem;
        padding: 0;
        text-align: center;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .audience-stats-banner .stat-icon {
        display: none !important;
    }

    .audience-stats-banner .stat-value {
        display: block !important;
        font-size: 1.125rem !important;
        font-weight: 700 !important;
        color: #00B894 !important;
        visibility: visible !important;
    }

    .audience-stats-banner .stat-label {
        display: block !important;
        font-size: 0.6875rem !important;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        color: rgba(255, 255, 255, 0.7) !important;
        line-height: 1.4;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* ===== TIMELINE INTERACTIVE - Mobile ===== */
    .process-timeline-interactive {
        margin-top: 1.5rem;
    }

    .timeline-interactive-header {
        margin-bottom: 1rem;
    }

    .timeline-interactive-header h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .timeline-interactive-header p {
        font-size: 0.75rem;
    }

    .timeline-interactive-track {
        height: auto;
        padding: 0.75rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
    }

    .timeline-interactive-progress {
        display: none;
    }

    .timeline-markers {
        position: relative;
        display: flex;
        justify-content: space-between;
        padding: 0;
        gap: 0.25rem;
    }

    .timeline-marker {
        flex: 1;
        flex-direction: column;
        gap: 0.25rem;
        font-size: 0.5625rem;
        padding: 0.5rem 0.25rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    .timeline-marker-dot {
        width: 8px;
        height: 8px;
        margin: 0;
        background: #00B894;
    }

    .timeline-marker span:last-child {
        color: rgba(255, 255, 255, 0.8);
    }

    /* ===== PROCESS SECTION - Mobile ===== */
    .process-section {
        padding: 2.5rem 0;
    }

    .process-section .section-title {
        font-size: 1.375rem;
    }

    .process-steps {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .process-step {
        flex: 1;
        max-width: 80px;
        opacity: 1;
        transform: none;
        animation: none;
    }

    .step-number {
        width: 40px;
        height: 40px;
        margin: 0 auto 0.5rem;
        border-width: 1.5px;
        box-shadow: none;
    }

    .step-number-inner {
        font-size: 1rem;
    }

    .step-icon {
        display: none;
    }

    .step-title {
        font-size: 0.625rem;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        margin-bottom: 0.125rem;
    }

    .step-duration {
        font-size: 0.5625rem;
        opacity: 0.7;
    }

    /* Process Cards - Mobile */
    .process-cards {
        gap: 0.75rem;
    }

    .process-card {
        padding: 1rem;
        border-radius: 12px;
    }

    .process-card-header {
        margin-bottom: 0.75rem;
    }

    .process-card-number {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }

    .process-card-title h3 {
        font-size: 1rem;
    }

    .process-card-title span {
        font-size: 0.75rem;
    }

    .process-card-content p {
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }

    .process-card-features {
        gap: 0.375rem;
    }

    .process-card-features li {
        font-size: 0.75rem;
        padding: 0.25rem 0;
    }

    /* Qualification Criteria - Mobile */
    .qualification-criteria {
        margin-top: 1.5rem;
        padding: 1.25rem;
        border-radius: 16px;
    }

    .criteria-header {
        margin-bottom: 1rem;
        text-align: center;
    }

    .criteria-header h3 {
        font-size: 1.125rem;
        margin-bottom: 0.375rem;
    }

    .criteria-header p {
        font-size: 0.8125rem;
        opacity: 0.7;
    }

    .criteria-grid {
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
    }

    .criteria-item {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.875rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .criteria-item.required {
        background: rgba(0, 184, 148, 0.08);
        border-color: rgba(0, 184, 148, 0.2);
    }

    .criteria-icon {
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 184, 148, 0.15);
        border-radius: 8px;
    }

    .criteria-icon svg {
        width: 16px;
        height: 16px;
        stroke: #00B894;
    }

    .criteria-content {
        flex: 1;
        min-width: 0;
    }

    .criteria-content strong {
        display: block;
        font-size: 0.9375rem;
        margin-bottom: 0.125rem;
    }

    .criteria-badge {
        display: inline-block;
        font-size: 0.625rem;
        padding: 0.125rem 0.5rem;
        border-radius: 100px;
        background: rgba(0, 184, 148, 0.2);
        color: #00B894;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        margin-bottom: 0.375rem;
    }

    .criteria-content p {
        font-size: 0.8125rem;
        line-height: 1.4;
        opacity: 0.8;
        margin: 0;
    }

    /* ===== LEGAL BASIS SECTION - Mobile ===== */
    .legal-basis-section {
        padding: 2.5rem 0;
        overflow-x: hidden;
    }

    .legal-basis-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
        overflow: hidden;
    }

    .legal-basis-wrapper {
        max-width: 100%;
        overflow: hidden;
    }

    .legal-basis-section .section-title {
        font-size: 1.25rem;
    }

    .legal-basis-section .section-subtitle {
        font-size: 0.8125rem;
    }

    .legal-basis-badge {
        width: 48px;
        height: 48px;
    }

    .legal-basis-badge svg {
        width: 24px;
        height: 24px;
    }

    .legal-panels {
        padding: 1rem;
        border-radius: 16px;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .legal-panel {
        max-width: 100%;
        overflow: hidden;
        word-wrap: break-word;
    }

    .legal-panel-header {
        margin-bottom: 1rem;
    }

    .legal-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .legal-icon-wrapper svg {
        width: 24px;
        height: 24px;
    }

    .legal-panel-header h3 {
        font-size: 1.125rem;
    }

    .legal-article-badge {
        font-size: 0.625rem;
        padding: 0.25rem 0.5rem;
    }

    .legal-article-quote {
        font-size: 0.8125rem;
        padding: 0.75rem;
        border-radius: 8px;
    }

    .legal-explanation h4 {
        font-size: 0.875rem;
    }

    .legal-explanation p {
        font-size: 0.8125rem;
    }

    .legal-feature-item {
        padding: 0.75rem;
        border-radius: 8px;
    }

    .legal-feature-icon {
        width: 32px;
        height: 32px;
    }

    .legal-feature-icon svg {
        width: 16px;
        height: 16px;
    }

    .legal-feature-item h5 {
        font-size: 0.8125rem;
    }

    .legal-feature-item p {
        font-size: 0.75rem;
    }

    .legal-info-card {
        padding: 0.75rem;
        border-radius: 8px;
    }

    .legal-info-card h5 {
        font-size: 0.8125rem;
    }

    .legal-info-card p,
    .legal-info-card li {
        font-size: 0.75rem;
    }

    .legal-features-grid,
    .legal-info-cards,
    .legal-security-grid {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        max-width: 100%;
    }

    .legal-article-quote {
        max-width: 100%;
        overflow: hidden;
    }

    .legal-explanation {
        max-width: 100%;
    }

    /* ===== STATS DASHBOARD - Mobile ===== */
    .stats-dashboard {
        padding: 2rem 0;
    }

    .stats-dashboard .section-title {
        font-size: 1.125rem;
        margin-bottom: 0.25rem;
    }

    .stats-dashboard .section-subtitle {
        font-size: 0.75rem;
        opacity: 0.7;
    }

    .dashboard-grid {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1rem;
        flex-wrap: wrap;
    }

    .dashboard-card {
        background: none;
        border: none;
        backdrop-filter: none;
        padding: 0;
        min-height: auto;
        text-align: center;
    }

    .dashboard-card::before {
        display: none;
    }

    .dashboard-value {
        font-size: 1.125rem;
        color: #00B894;
        margin-bottom: 0.125rem;
        display: block;
    }

    .dashboard-label {
        font-size: 0.5625rem;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        opacity: 0.6;
        display: block;
    }

    .dashboard-chart {
        display: none;
    }

    /* ===== FOOTER - Mobile (Compact & Elegant) ===== */
    .footer {
        padding: 1.5rem 0 1rem !important;
    }

    .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        margin-bottom: 1rem !important;
        text-align: center;
    }

    /* Brand - compact */
    .footer-brand {
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-brand h3 {
        font-size: 1rem !important;
        margin-bottom: 0.375rem !important;
    }

    .footer-brand p {
        font-size: 0.6875rem !important;
        line-height: 1.5 !important;
        opacity: 0.6;
        margin-bottom: 0 !important;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Navigation - horizontal compact */
    .footer-column:first-of-type {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-column h4 {
        display: none !important;
    }

    .footer-links {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.25rem 0.75rem !important;
    }

    .footer-links li {
        margin: 0 !important;
    }

    .footer-links a {
        font-size: 0.6875rem !important;
        padding: 0.25rem 0 !important;
        opacity: 0.7;
    }

    /* Contact - centered & compact */
    .footer-column:last-of-type {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
        padding-top: 0.5rem;
    }

    .footer-contact-text {
        font-size: 0.6875rem !important;
        margin-bottom: 0.25rem !important;
        opacity: 0.7;
    }

    .footer-cta {
        font-size: 0.75rem !important;
        padding: 0.5rem 1.25rem !important;
        margin-bottom: 0.25rem !important;
        border-radius: 100px;
    }

    .footer-email {
        font-size: 0.6875rem !important;
        opacity: 0.6;
    }

    /* Disclaimer - compact */
    .footer-disclaimer {
        margin-top: 1rem !important;
        margin-bottom: 0.75rem !important;
        padding: 0.75rem !important;
        border-radius: 8px !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        text-align: center;
    }

    .footer-disclaimer .disclaimer-icon {
        display: none !important;
    }

    .footer-disclaimer p {
        font-size: 0.625rem !important;
        line-height: 1.5 !important;
    }

    /* Bottom bar - compact */
    .footer-bottom {
        margin-top: 0.75rem !important;
        padding-top: 0.75rem !important;
        flex-direction: column !important;
        gap: 0.375rem !important;
    }

    .footer-bottom p {
        font-size: 0.625rem !important;
        opacity: 0.5;
    }

    .footer-legal {
        gap: 1rem !important;
    }

    .footer-legal a {
        font-size: 0.625rem !important;
        opacity: 0.5;
    }
}

/* Extra small phones - finer adjustments */
@media (max-width: 380px) {
    /* Navigation - extra small */
    .nav-container {
        padding: 0.5rem 0.75rem;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .logo-title {
        font-size: 0.8125rem;
    }

    .nav-cta .btn {
        padding: 0.4rem 0.625rem;
        font-size: 0.6875rem;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.625rem;
    }

    .comparison-section .section-title,
    .target-audience-section .section-title {
        font-size: 1.25rem;
    }

    .header-side h3 {
        font-size: 1rem;
    }

    /* Target audience - extra small */
    .card-front {
        padding: 1rem;
        gap: 0.75rem;
    }

    .card-icon {
        width: 40px;
        height: 40px;
    }

    .card-icon svg {
        width: 20px;
        height: 20px;
    }

    .card-front h3 {
        font-size: 0.9375rem;
    }

    .card-front p {
        font-size: 0.75rem;
    }

    .stat-value {
        font-size: 1.25rem;
        min-width: 50px;
    }

    .criteria-content strong {
        font-size: 0.875rem;
    }

    /* Timeline - extra small */
    .timeline-marker {
        font-size: 0.5rem;
        padding: 0.375rem 0.125rem;
    }

    .timeline-marker-dot {
        width: 6px;
        height: 6px;
    }
}
