/* CSS Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color System */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #f1f5f9;
    --accent: #10b981;
    --danger: #dc2626;
    --warning: #f59e0b;
    --success: #059669;
    
    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #0f172a;
    --bg-overlay: rgba(15, 23, 42, 0.95);
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Typography */
    --font-mono: 'JetBrains Mono', monospace;
    --font-sans: 'Inter', sans-serif;
}

/* Base Styles */
body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Layout Container */
.main-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header - Professional & Sticky */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header-content {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    padding: var(--space-sm) var(--space-md);
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--bg-secondary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: var(--space-sm);
}

.live-support {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: var(--accent);
    color: white;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.header-btn {
    padding: var(--space-sm) var(--space-lg);
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Hero Section - Split Layout */
.hero {
    margin-top: 80px;
    min-height: calc(120vh - 80px);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.06) 0%, transparent 30%),
        radial-gradient(circle at 60% 20%, rgba(245, 158, 11, 0.04) 0%, transparent 25%);
}

/* .hero-content {
    max-width: 1920px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-lg);
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--space-2xl);
    align-items: start;
    position: relative;
    z-index: 2;
    min-height: calc(120vh - 160px);
    padding-top: var(--space-md);
}

.impact-zone {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    justify-content: flex-start;
    align-items: flex-start;
} */

/* Complete solution: Restructure hero for centered content */
.hero-content {
    max-width: 1400px; /* Constrain max width for better centering */
    margin: 0 auto;
    padding: var(--space-lg) var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    min-height: calc(120vh - 160px);
    padding-top: var(--space-md);
}

.impact-zone {
    max-width: 1000px; /* Limit width for better readability */
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
    text-align: center;
}

.penalty-alert {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 100px;
    color: var(--danger);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.penalty-counter {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 16px;
}

.hero-headline {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-headline .highlight {
    background: linear-gradient(135deg, var(--danger) 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Input Form - Hero Element */
.input-section {
    width: 100%;              /* Add this line */
    max-width: 1200px;         /* Add this line - makes it larger */
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
    padding: var(--space-2xl);
    border: 2px solid rgba(37, 99, 235, 0.1);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    margin-bottom: var(--space-lg);
    position: relative;
    overflow: hidden;
}

.input-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.input-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.input-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 100px;
    padding: var(--space-sm) var(--space-lg);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.input-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.input-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.input-form {
    margin-bottom: var(--space-lg);
}

.input-wrapper {
    position: relative;
    margin-bottom: var(--space-md);
}

.input-field {
    width: 100%;
    padding: 20px 24px 20px 60px;
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 500;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.input-field:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

.input-field.valid {
    border-color: var(--success);
    background: rgba(5, 150, 105, 0.05);
}

.input-field.invalid {
    border-color: var(--warning);
    background: rgba(245, 158, 11, 0.05);
}

.input-field::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.submit-btn {
    width: 100%;
    padding: 20px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.4);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(0);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
    color: var(--success);
    font-weight: 700;
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
    border: 1px solid rgba(5, 150, 105, 0.3);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.1);
    transition: all 0.2s ease;
}

.feature:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
}

.feature i {
    font-size: 16px;
}

/* Right Column - Live Dashboard */
.live-dashboard {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-xl);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: sticky;
    top: 100px;
    height: fit-content;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    margin-top: 0;
    align-self: start;
}

.dashboard-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.dashboard-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.dashboard-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-grid {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 28px;
    font-weight: 900;
    font-family: var(--font-mono);
    margin-bottom: var(--space-xs);
}

.stat-number.danger { color: var(--danger); }
.stat-number.warning { color: var(--warning); }
.stat-number.success { color: var(--success); }
.stat-number.primary { color: var(--primary); }

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recent-activity {
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    padding-top: var(--space-lg);
}

.activity-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    margin-bottom: var(--space-xs);
    background: var(--bg-secondary);
    border-radius: var(--radius);
    font-size: 13px;
    animation: slideInRight 0.5s ease-out;
}

.activity-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
}

.activity-icon.penalty { background: var(--danger); }
.activity-icon.check { background: var(--success); }
.activity-icon.warning { background: var(--warning); }

/* Trust Indicators Bar */
.trust-bar {
    background: white;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: var(--space-lg) 0;
}

.trust-content {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    align-items: center;
}

.trust-item {
    text-align: center;
    padding: var(--space-md);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    font-size: 20px;
    color: white;
}

.trust-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.trust-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Enterprise Section */
.enterprise {
    padding: var(--space-2xl) 0;
    background: var(--bg-dark);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.enterprise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.1) 0%, transparent 25%);
}

.enterprise-content {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 2;
}

.enterprise-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.enterprise-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.enterprise-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.enterprise-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 0.3s ease;
}

.enterprise-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow);
}

.enterprise-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    font-size: 24px;
    color: white;
}

.enterprise-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.enterprise-card-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: var(--space-md);
}

.enterprise-card-features {
    list-style: none;
}

.enterprise-card-features li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.enterprise-card-features li i {
    color: var(--accent);
    font-size: 12px;
}

/* Social Proof Section */
.social-proof {
    padding: var(--space-2xl) 0;
    background: var(--bg-secondary);
}

.social-proof-content {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.social-proof-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.social-proof-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.social-proof-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.testimonial-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-info p {
    font-size: 12px;
    color: var(--text-muted);
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.stats-showcase-item {
    text-align: center;
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.stats-showcase-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stats-showcase-number {
    font-size: 32px;
    font-weight: 900;
    font-family: var(--font-mono);
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.stats-showcase-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Modal Styles - Extracted from JavaScript */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

.modal-container {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.3s ease-out;
    position: relative;
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 30px;
}

.progress-container {
    margin-bottom: 30px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #06b6d4 100%);
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 4px;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #64748b;
}

.domain-text {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: #2563eb;
}

.scanning-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 400px;
}

.scanning-status {
    text-align: center;
    margin-bottom: 25px;
}

.status-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
    animation: pulse 2s infinite;
}

.scanning-icon {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

#scanning-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 20px;
}

.estimated-time {
    text-align: center;
    color: #64748b;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Quick Preview Styles - Extracted from JavaScript */
.mirror-results-preview {
    background: transparent !important;
    border-radius: 0;
    padding: 0;
    border: none !important;
    max-width: 100%;
    margin: 0;
    box-shadow: none !important;
    animation: slideInPreview 0.5s ease-out;
    color: #1e293b !important;
}

.results-progress-container {
    margin-bottom: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.results-progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

.results-progress-fill {
    height: 100%;
    width: 85%;
    border-radius: 4px;
    transition: width 0.8s ease;
    position: relative;
    overflow: hidden;
}

.results-progress-fill.compliant {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.results-progress-fill.non-compliant {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.results-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

.results-progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.completion-status {
    font-weight: 700;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.domain-analyzed {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    color: #3b82f6;
    font-size: 12px;
    font-weight: 600;
    background: rgba(59, 130, 246, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.results-status {
    text-align: center;
    margin: 25px 0;
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.results-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: white;
    position: relative;
    animation: iconPulse 2s infinite;
}

.results-icon.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.results-icon.warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.results-summary {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 10px 0;
    line-height: 1.4;
}

.transfer-info {
    font-size: 14px;
    color: #64748b;
    margin: 8px 0;
    font-weight: 500;
}

.email-capture-section {
    background: white !important;
    border-radius: 12px;
    padding: 25px;
    margin-top: 25px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.email-capture-section:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.email-prompt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #374151;
    font-size: 16px;
}

.email-prompt i {
    font-size: 20px;
    color: #3b82f6;
}

.email-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.mirror-email-input {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid #d1d5db;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white !important;
    font-family: inherit;
    color: #1e293b !important;
}

.mirror-email-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.mirror-email-input:valid {
    border-color: #10b981;
}

.mirror-email-input::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.mirror-submit-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.mirror-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.mirror-submit-btn:active {
    transform: translateY(0);
}

.mirror-submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.mirror-submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

.quick-benefits {
    text-align: center;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.quick-benefits::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
    margin-bottom: 15px;
}

/* Confirmation Modal Styles */
.confirmation-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: confirmationFadeIn 0.3s ease-out;
}

.confirmation-modal-container {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: confirmationSlideIn 0.3s ease-out;
    overflow: hidden;
}

.confirmation-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.success-checkmark {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
    animation: checkmarkPulse 2s infinite;
}

.confirmation-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.confirmation-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.confirmation-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.confirmation-body {
    padding: 30px;
    text-align: center;
}

.email-sent-message {
    margin-bottom: 25px;
}

.email-sent-message i {
    font-size: 24px;
    color: #3b82f6;
    margin-bottom: 15px;
}

.email-sent-message p {
    font-size: 16px;
    color: #374151;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.email-address {
    font-size: 18px;
    font-weight: 700;
    color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 12px 20px;
    border-radius: 10px;
    border: 2px solid #bfdbfe;
    font-family: 'JetBrains Mono', monospace;
    word-break: break-all;
}

.next-steps-simple {
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    border: 1px solid #cbd5e1;
}

.next-steps-simple p {
    margin: 0 0 8px 0;
    font-size: 15px;
    color: #475569;
    line-height: 1.4;
}

.next-steps-simple p:last-child {
    margin-bottom: 0;
}

.note {
    font-size: 14px !important;
    color: #64748b !important;
    font-style: italic;
}

.done-button {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.done-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

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

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

@keyframes countUp {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

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

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

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

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    }
}

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

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

@keyframes checkmarkPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

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

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading .submit-btn {
    background: var(--text-light);
}

.loading .submit-btn::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1439px) {
    .hero-content {
        gap: var(--space-xl);
    }
    
    .enterprise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1023px) {
    .header-content {
        grid-template-columns: 1fr auto;
        gap: var(--space-md);
    }
    
    .nav {
        display: none;
    }
    
    .hero {
        min-height: calc(100vh - 80px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        min-height: calc(100vh - 160px);
    }
    
    .trust-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .email-input-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .mirror-submit-btn {
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .header-content {
        padding: 0 var(--space-md);
    }
    
    .hero {
        min-height: calc(100vh - 80px);
    }
    
    .hero-content {
        padding: var(--space-sm) var(--space-md);
        min-height: calc(100vh - 160px);
        padding-top: var(--space-sm);
    }
    
    .input-section {
        padding: var(--space-lg);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-content {
        grid-template-columns: 1fr;
    }
    
    .enterprise-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr;
    }

    .hero-headline {
        font-size: clamp(24px, 5.5vw, 36px);
    }
    
    .results-progress-container,
    .results-status,
    .email-capture-section {
        margin: 10px;
        padding: 15px;
    }
    
    .results-summary {
        font-size: 16px;
    }
    
    .quick-benefits {
        flex-direction: column;
        gap: 8px;
        font-size: 12px;
    }
    
    .results-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .confirmation-modal-container {
        margin: 10px;
    }
    
    .confirmation-header,
    .confirmation-body {
        padding: 20px;
    }
    
    .confirmation-header h2 {
        font-size: 24px;
    }
    
    .success-checkmark {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
}

/* Utility Classes */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* =============================================================================
   NEW CSS ADDITIONS FOR CLEAN WAITING EXPERIENCE
   Add these styles to your existing styles.css file
   ============================================================================= */

/* Enhanced Modal Body Styles */
 .modal-body {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.progress-section {
    width: 100%;
    margin-bottom: 25px;
}

.domain-display {
    background: #eff6ff;
    border: 1px solid #3b82f6;
    border-radius: 20px;
    padding: 8px 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: #2563eb;
    margin-bottom: 20px;
    display: inline-block;
}

.main-progress {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
    width: 100%;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #06b6d4 100%);
    width: 0%;
    transition: width 0.8s ease;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: shimmer 2s infinite;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #64748b;
}

.progress-message {
    font-weight: 500;
}

.progress-percentage {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: #2563eb;
}

.scanning-icon-container {
    margin: 30px 0;
}

.scanning-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto;
    animation: pulse 2s infinite;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.content-rotator {
    width: 100%;
    height: 120px;
    position: relative;
    margin-bottom: 20px;
}

.content-section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.content-section.active {
    opacity: 1;
    transform: translateY(0);
}

.gdpr-fact {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.fact-title {
    font-size: 16px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.fact-content {
    font-size: 14px;
    color: #a16207;
    line-height: 1.4;
}

.highlight-stat {
    color: #dc2626;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

.industry-stats {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #10b981;
    border-radius: 12px;
    padding: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 20px;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    color: #059669;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: #065f46;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-updates {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #3b82f6;
    border-radius: 12px;
    padding: 20px;
}

.update-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.update-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e40af;
}

.update-content {
    font-size: 13px;
    color: #1d4ed8;
    line-height: 1.4;
}

.processing-steps {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border: 1px solid #6b7280;
    border-radius: 12px;
    padding: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #374151;
}

.step:last-child {
    margin-bottom: 0;
}

.step-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
    font-weight: 600;
}

.step-icon.pending {
    background: #9ca3af;
}

.step-icon.active {
    background: #3b82f6;
    animation: pulse 1.5s infinite;
}

.step-icon.complete {
    background: #10b981;
}

.time-estimate {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #0369a1;
    font-weight: 600;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

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

.error-state {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fca5a5;
    border-radius: 12px;
}

.error-icon {
    width: 60px;
    height: 60px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.error-state h3 {
    color: #dc2626;
    margin-bottom: 10px;
    font-size: 20px;
}

.error-message {
    color: #991b1b;
    margin-bottom: 20px;
    font-size: 14px;
}

.retry-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background 0.3s ease;
}

.retry-btn:hover {
    background: #dc2626;
}

.error-help {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #fca5a5;
    border-radius: 8px;
    padding: 15px;
    text-align: left;
}

.error-help p {
    color: #991b1b;
    font-weight: 600;
    margin-bottom: 8px;
}

.error-help ul {
    color: #b91c1c;
    font-size: 13px;
    padding-left: 20px;
}

.error-help li {
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .modal-body {
        padding: 20px;
    }
    
    .content-rotator {
        height: 140px;
    }
    
    .scanning-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .fact-title {
        font-size: 14px;
    }
    
    .fact-content {
        font-size: 13px;
    }
    
    .step {
        font-size: 12px;
    }
    
    .update-content {
        font-size: 12px;
    }
    
    .domain-display {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .progress-text {
        font-size: 12px;
    }
    
    .time-estimate {
        font-size: 12px;
        padding: 10px;
    }
} 

.stats-disclaimer {
    font-size: 10px;
    color: #64748b;
    margin-top: 4px;
    font-style: italic;
}








