/* VoteSecured Design System - Glassmorphism Theme */

/* ==========================================
   GOOGLE FONTS IMPORT
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ==========================================
   CSS VARIABLES - BASE DESIGN SYSTEM
   ========================================== */
:root {
    /* Backgrounds - Deep Navy Theme */
    --bg-primary: #020617;      /* Deep navy - main background */
    --bg-secondary: #0A1628;    /* Medium navy - sections */
    --bg-tertiary: #1E293B;     /* Light navy - cards */
    
    /* Text Colors */
    --text-primary: #F8FAFC;    /* White - headlines */
    --text-secondary: #CBD5E1;  /* Light gray - body text */
    --text-muted: #94A3B8;      /* Medium gray - labels */
    
    /* Accent Colors - Blue/Cyan/Purple Palette */
    --accent-blue: #3B82F6;     /* Primary blue - CTAs */
    --accent-cyan: #06B6D4;     /* Cyan - highlights */
    --accent-purple: #8B5CF6;   /* Purple - gradients */
    --accent-green: #10B981;    /* Green - success states */
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.06);
    
    /* Spacing System */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-padding: clamp(1.5rem, 5vw, 2rem);
    --card-padding: 2.5rem;
    --gap-small: 0.75rem;
    --gap-medium: 1.5rem;
    --gap-large: 3rem;
    
    /* Transition Speeds */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-small: 12px;
    --radius-medium: 16px;
    --radius-large: 20px;
    --radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.15);
}

/* ==========================================
   GLOBAL RESETS
   ========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

body.intro-active {
    overflow: hidden;
}

/* ==========================================
   BACKGROUND EFFECTS
   ========================================== */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.mesh-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    animation: meshFloat 20s ease-in-out infinite;
}

@keyframes meshFloat {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(0deg, rgba(59, 130, 246, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.02) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

/* ==========================================   INTRO SCREEN
   ========================================== */
.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #B22234 0%, #000000 50%, #002868 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    cursor: pointer;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    /* Auto-dismiss after 1 second as fallback if JavaScript fails */
    animation: auto-dismiss 0.8s ease-in-out 1s forwards;
}

@keyframes auto-dismiss {
    to {
        transform: translateY(-100%) scale(0.95);
        opacity: 0;
        pointer-events: none;
    }
}

.intro-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon fill="%23FFFFFF" points="25,5 30,20 45,20 35,30 40,45 25,35 10,45 15,30 5,20 20,20"/></svg>') repeat;
    background-size: 50px 50px;
    animation: hero-stars 120s linear infinite;
}

@keyframes hero-stars {
    from { transform: translateY(0); }
    to { transform: translateY(-50px); }
}

.intro-screen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle at center,
        rgba(59, 130, 246, 0.15) 0%,
        rgba(6, 182, 212, 0.08) 30%,
        transparent 70%);
    animation: pulseGlow 8s ease-in-out infinite;
}

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

.intro-screen.dismissed {
    transform: translateY(-100%) scale(0.95);
    opacity: 0;
    pointer-events: none;
}

.intro-content {
    text-align: center;
    animation: heroEnter 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    position: relative;
    z-index: 1;
    max-width: 600px;
}

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

.intro-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.6));
}

.intro-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.intro-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.intro-btn {
    animation: fadeInLate 1s ease-out 1s forwards;
    opacity: 0;
}

@keyframes fadeInLate {
    to {
        opacity: 1;
    }
}

.skip-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 0.875rem;
    opacity: 0;
    animation: fadeInLate 1s ease-out 2s forwards;
    z-index: 1;
    text-align: center;
}

.skip-arrow {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

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

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

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

/* ==========================================   INTRO DISMISSAL - SHOW CONTENT
   ========================================== */
/* Initially hide sidebar and main-content behind intro screen */
.sidebar,
.main-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

/* Show them when intro is dismissed (JavaScript adds .visible class) */
.sidebar.visible,
.main-content.visible {
    opacity: 1;
    visibility: visible;
}

/* ==========================================   TYPOGRAPHY SYSTEM
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h4 {
    font-size: 1.75rem;
}

h5 {
    font-size: 1.375rem;
}

h6 {
    font-size: 1.125rem;
}

p {
    margin-bottom: 1.25rem;
}

.stats-font, .monospace {
    font-family: 'JetBrains Mono', monospace;
}

/* ==========================================
   CONSISTENT DARK THEME - Light text throughout
   ========================================== */

/* ==========================================
   INTRO SCREEN (HERO SPLASH)
   ========================================== */
.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1E3A8A 0%, #4F46E5 50%, #7C3AED 100%);
    transition: all var(--transition-slow);
    overflow: hidden;
}

.hero.dismissed {
    transform: translateY(-100%) scale(0.95);
    opacity: 0;
    pointer-events: none;
}

/* Pulsing Ambient Glow Background */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

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

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

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.skip-intro {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    animation: bounce-fade 2s ease-in-out infinite;
}

.skip-arrow {
    display: block;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

@keyframes bounce-fade {
    0%, 100% {
        opacity: 0.7;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(8px);
    }
}

/* ==========================================
   NAVIGATION BAR
   ========================================== */
#navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    opacity: 0;
    transform: translateY(-100%);
    transition: all var(--transition-slow);
}

#navbar.visible {
    opacity: 1;
    transform: translateY(0);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: transform var(--transition-fast);
}

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

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

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-small);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all var(--transition-medium);
    line-height: 1.4;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.btn-ghost {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: var(--glass-hover);
    border-color: var(--accent-blue);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--glass-hover);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

/* Button Sizes */
.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
}

.btn-lg,
.btn-large {
    padding: 1.125rem 2rem;
    font-size: 1.0625rem;
}

/* ==========================================
   GLASS CARD SYSTEM
   ========================================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-large);
    padding: var(--card-padding);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

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

/* ==========================================
   LAYOUT & GRID SYSTEM
   ========================================== */
.content-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--section-padding) var(--container-padding);
}

.section-heading {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--gap-large);
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grid {
    display: grid;
    gap: var(--gap-large);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--section-padding) var(--container-padding);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1,
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--gap-medium);
    margin: 3rem 0;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-large);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ==========================================
   CARD CONTENT
   ========================================== */
.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--gap-large);
    margin: 3rem 0;
}

.feature-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-large);
    padding: 2rem;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.6));
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================
   COMPLIANCE GRID
   ========================================== */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--gap-medium);
    margin: 2rem 0;
}

.compliance-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-medium);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-medium);
}

.compliance-item:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.1);
}

.compliance-badge {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.compliance-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-medium);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-fast);
    user-select: none;
}

.faq-question:hover {
    color: var(--accent-blue);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================
   CTA & CONTACT SECTIONS
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1), 
        rgba(139, 92, 246, 0.1));
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-large);
    padding: 4rem 2rem;
    text-align: center;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--accent-blue), 
        var(--accent-cyan), 
        var(--accent-purple));
    animation: gradientShift 6s ease-in-out infinite;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--gap-medium);
    margin: 2rem 0;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-medium);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-medium);
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.1);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-blue);
    filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.6));
}

.contact-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-value {
    color: var(--text-muted);
}

.contact-value a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-value a:hover {
    color: var(--accent-blue);
}

/* ==========================================
   SIDEBAR NAVIGATION
   ========================================== */
.content-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--gap-large);
    max-width: 1600px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    background: var(--glass-bg);
    border-right: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    overflow-y: auto;
}

.sidebar.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Custom Scrollbar for Sidebar */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.15);
}

.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.6));
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-section {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.nav-category {
    margin-bottom: 0.5rem;
}

.category-toggle,
.nav-category-header {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.875rem 1.5rem;
    text-align: left;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.category-toggle::before,
.nav-category-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    border-radius: 0 2px 2px 0;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-toggle:hover,
.nav-category-header:hover {
    background: var(--glass-hover);
    color: var(--text-primary);
}

.category-toggle.active,
.category-toggle.expanded,
.nav-category-header.active,
.nav-category-header.expanded {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    color: var(--text-primary);
}

.category-toggle.active::before,
.category-toggle.expanded::before,
.nav-category-header.active::before,
.nav-category-header.expanded::before {
    height: 70%;
}

.category-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-icon {
    font-size: 1.25rem;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.3));
}

.category-name {
    flex: 1;
}

.category-arrow,
.category-chevron {
    font-size: 0.875rem;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
}

.category-toggle.expanded .category-arrow,
.nav-category-header.expanded .category-chevron {
    transform: rotate(90deg);
    color: var(--accent-cyan);
}

.category-links,
.nav-items {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    padding-left: 2.75rem;
}

.category-toggle.expanded + .category-links,
.nav-category-header.expanded + .nav-items {
    max-height: 1000px;
}

.nav-link,
.nav-item {
    display: block;
    width: 100%;
    padding: 0.625rem 1.5rem;
    color: #F8FAFC !important;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.2s;
    margin-bottom: 0.25rem;
    cursor: pointer;
}

.nav-link:hover,
.nav-item:hover {
    background: rgba(59, 130, 246, 0.15);
    color: #FFFFFF !important;
    transform: translateX(4px);
}

.nav-link.active,
.nav-item.active {
    background: rgba(59, 130, 246, 0.2);
    color: #60A5FA !important;
    font-weight: 600;
    border-left: 3px solid var(--accent-cyan);
}

.link-text {
    color: inherit !important;
}

.link-icon {
    font-size: 1rem;
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.nav-item.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
    border: 1px solid var(--accent-blue);
    color: var(--text-primary);
}

.nav-item.coming-soon {
    opacity: 0.5;
    cursor: not-allowed;
}

.item-icon {
    font-size: 1.125rem;
}

/* ==========================================
   MAIN CONTENT AREA
   ========================================== */
.main-content {
    margin-left: 280px;
    min-height: 100vh;
    padding: 2rem;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    transition: margin-left 0.4s ease;
}

.content-section {
    display: none;
    animation: fadeInScale 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-section.active {
    display: block;
}

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

.content-header {
    margin-bottom: var(--gap-large);
}

/* Glass Hero Banner */
.glass-hero {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-large);
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.glass-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--accent-blue), 
        var(--accent-cyan), 
        var(--accent-purple));
    animation: gradientShift 6s ease-in-out infinite;
}

.content-breadcrumb {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-title {
    margin-bottom: 1rem;
}

.content-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================
   DETAIL CARDS
   ========================================== */
.detail-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--card-padding);
    margin-bottom: var(--gap-large);
}

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: var(--gap-large);
    padding-bottom: var(--gap-large);
    border-bottom: 1px solid var(--glass-border);
}

.card-icon-large {
    font-size: 4rem;
    line-height: 1;
}

.card-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-header p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.card-sections {
    display: flex;
    flex-direction: column;
    gap: var(--gap-large);
}

.card-section {
    position: relative;
    padding-left: 2rem;
}

.card-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 4px;
    height: calc(100% - 0.5rem);
    background: linear-gradient(180deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 2px;
}

.card-section h3 {
    font-size: 1.125rem;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.card-section ul {
    list-style: none;
    padding-left: 0;
}

.card-section ul li {
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.card-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
}

.card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--gap-large);
    padding: 1.5rem;
    background: var(--glass-hover);
    border-radius: var(--radius-medium);
    border: 1px solid var(--glass-border);
}

.card-cta h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.card-cta p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ==========================================
   GRADIENT TEXT EFFECT
   ========================================== */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ==========================================
   PAGE CONTENT WRAPPER
   ========================================== */
.page-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-slow);
}

.page-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
    .main-content {
        margin-left: 0;
        padding: 1.5rem;
    }
    
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.visible {
        transform: translateX(0);
    }
    
    .grid-2 {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .grid-3 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .hero-content h1,
    .hero-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
    
    .hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--gap-small);
        padding: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: clamp(2rem, 8vw, 4rem);
        --card-padding: 1.5rem;
        --gap-large: 2rem;
    }
    
    .main-content {
        margin-left: 0;
        padding: 1rem;
    }
    
    .sidebar {
        width: 100%;
        position: fixed;
        transform: translateX(-100%);
        z-index: 2000;
    }
    
    .sidebar.visible {
        transform: translateX(0);
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-actions {
        width: 100%;
        justify-content: center;
    }
    
    .hero-actions,
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .card-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .card-cta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .card-section {
        padding-left: 1.25rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .compliance-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .cta-section {
        padding: 3rem 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .glass-hero {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.gap-1 {
    gap: 1rem;
}

.gap-2 {
    gap: 2rem;
}

.items-center {
    align-items: center;
}

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

/* ==========================================
   ACCESSIBILITY
   ========================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ==========================================
   CONTACT MODAL
   ========================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInScale 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: #666;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.modal-close:hover {
    color: #000;
}

.modal-content h2 {
    margin: 0 0 1.5rem 0;
    color: var(--text-primary);
    font-size: 1.875rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

/* Dynamically Loaded Content Styling */
.dynamic-page-content {
    padding: 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .dynamic-page-content {
        padding: 40px 40px;
    }
}

@media (max-width: 768px) {
    .dynamic-page-content {
        padding: 30px 20px;
    }
}

.dynamic-page-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dynamic-page-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 40px 0 20px;
}

.dynamic-page-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-blue);
    margin: 30px 0 15px;
}

.dynamic-page-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 25px 0 12px;
}

.dynamic-page-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 20px 0 10px;
}

.dynamic-page-content h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    margin: 15px 0 8px;
}

.dynamic-page-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.dynamic-page-content section {
    margin-bottom: 60px;
}

.dynamic-page-content section:last-child {
    margin-bottom: 0;
}

.dynamic-page-content .intro {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(59, 130, 246, 0.08);
    border-left: 4px solid var(--accent-blue);
    border-radius: 12px;
}

.dynamic-page-content ul {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.dynamic-page-content ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.dynamic-page-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: 600;
}

/* How It Works Specific Styles */
.tier-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.tier {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    border-color: var(--accent-blue);
}

.process-steps {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.step {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.15);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
    border-color: var(--accent-blue);
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.compliance-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.compliance-item:hover {
    border-color: var(--accent-green);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.2);
}

.deployment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.deployment-option {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.deployment-option:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.2);
}

.performance-list {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 30px 30px 50px;
    margin: 30px 0;
}

.performance-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.performance-list li:last-child {
    border-bottom: none;
}

.verification-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.verification-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.verification-item:hover {
    border-color: var(--accent-green);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.2);
}

.key-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.benefit {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 20px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-primary);
}

/* State/Country Page Styling */
.state-page-content,
.country-page-content {
    padding: 60px 80px;
}

@media (max-width: 1024px) {
    .state-page-content,
    .country-page-content {
        padding: 40px 40px;
    }
}

.state-page-content h1,
.country-page-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
}

.state-page-content h2,
.country-page-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin: 50px 0 25px;
}

.state-page-content h3,
.country-page-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 35px 0 18px;
}

.state-page-content h4,
.country-page-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 25px 0 12px;
}

.state-page-content p,
.country-page-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.state-page-content .subtitle,
.country-page-content .subtitle,
.dynamic-page-content .subtitle {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-secondary) !important;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.state-page-content section,
.country-page-content section {
    margin-bottom: 60px;
}

/* Stats Grid and Boxes */
.india-stats,
.nigeria-stats,
.switzerland-stats,
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.stat-box {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 10px;
    line-height: 1;
}

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

/* Theme-specific stat colors */
.theme-india .stat-number {
    color: #FF9933;
}

.theme-india .stat-box {
    border-color: #FF9933;
}

.theme-india .stat-box:hover {
    border-color: #138808;
}

/* FAQ Styling */
.faq-section {
    margin: 40px 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.faq-item h3 {
    color: var(--accent-blue);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.faq-item p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.faq-item ul {
    margin: 20px 0 20px 0;
    padding-left: 0;
}

.faq-item ul li {
    padding: 10px 0 10px 35px;
    position: relative;
    line-height: 1.7;
}

.faq-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
    font-size: 18px;
}

.faq-item strong {
    color: var(--text-primary);
    font-weight: 600;
}

.theme-nigeria .stat-number {
    color: #008751;
}

.theme-nigeria .stat-box {
    border-color: #008751;
}

.theme-switzerland .stat-number {
    color: #FF0000;
}

.theme-switzerland .stat-box {
    border-color: #FF0000;
}

.theme-brazil .stat-number {
    color: #009739;
}

.theme-brazil .stat-box {
    border-color: #009739;
}

.theme-canada .stat-number {
    color: #FF0000;
}

.theme-canada .stat-box {
    border-color: #FF0000;
}

.theme-eu .stat-number {
    color: #003399;
}

.theme-eu .stat-box {
    border-color: #FFCC00;
}

/* Georgia Theme */
.theme-georgia h1,
.theme-georgia .page-title {
    color: #DA291C;
}

.theme-georgia h2 {
    color: #002244;
}

.theme-georgia h3 {
    color: #DA291C;
}

/* Florida Theme */
.theme-florida h1,
.theme-florida .page-title {
    color: #FF6000;
}

.theme-florida h2 {
    color: #003366;
}

.theme-florida h3 {
    color: #FF6000;
}

/* California Theme */
.theme-california h1,
.theme-california .page-title {
    color: #FDB515;
}

.theme-california h2 {
    color: #003262;
}

/* Texas Theme */
.theme-texas h1,
.theme-texas .page-title {
    color: #BF5700;
}

.theme-texas h2 {
    color: #333F48;
}

/* Federal Theme */
.theme-federal h1,
.theme-federal .page-title {
    color: #002868;
}

.theme-federal h2 {
    color: #B22234;
}

/* EU Theme */
.theme-eu h1,
.theme-eu .page-title {
    color: #003399;
}

.theme-eu h2 {
    color: #FFCC00;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* India Theme */
.theme-india h1,
.theme-india .page-title {
    color: #FF9933;
}

.theme-india h2 {
    color: #138808;
}

/* Brazil Theme */
.theme-brazil h1,
.theme-brazil .page-title {
    color: #009739;
}

.theme-brazil h2 {
    color: #FFDF00;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Canada Theme */
.theme-canada h1,
.theme-canada .page-title {
    color: #FF0000;
}

.theme-canada h2 {
    color: #003366;
}

/* Nigeria Theme */
.theme-nigeria h1,
.theme-nigeria .page-title {
    color: #008751;
}

.theme-nigeria h2 {
    color: #003366;
}

/* Switzerland Theme */
.theme-switzerland h1,
.theme-switzerland .page-title {
    color: #FF0000;
}

.theme-switzerland h2 {
    color: #003366;
}

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