/* Page-specific Components */

/* Base font family for all pages */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Conversion Research Page Components */
.highlight-stat {
    background: linear-gradient(135deg, #3B82F6 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.research-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.research-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Navigation Components for Legal Pages */
.legal-nav {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 2rem;
}

.legal-nav .nav-container {
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-nav .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

.legal-nav .back-link {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-nav .back-link:hover {
    color: #000;
}

/* Legal Page Content */
.legal-content {
    padding: 4rem 2rem;
}

.legal-container {
    max-width: 64rem;
    margin: 0 auto;
}

.legal-header {
    margin-bottom: 3rem;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.legal-date {
    color: #6b7280;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}

.legal-section p {
    color: #374151;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: #374151;
    line-height: 1.75;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

/* Research Page Specific */
.research-header {
    text-align: center;
    margin-bottom: 5rem;
}

.research-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 700;
    color: #000;
    margin-bottom: 2rem;
}

.research-subtitle {
    font-size: 1.25rem;
    color: #374151;
    line-height: 1.75;
    max-width: 64rem;
    margin: 0 auto;
}

.research-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.stat-card {
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid;
}

.stat-card.blue {
    background: linear-gradient(to bottom right, #dbeafe, #c7d2fe);
    border-color: #93c5fd;
}

.stat-card.green {
    background: linear-gradient(to bottom right, #d1fae5, #a7f3d0);
    border-color: #6ee7b7;
}

.stat-card.purple {
    background: linear-gradient(to bottom right, #e9d5ff, #ddd6fe);
    border-color: #c4b5fd;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-number.blue { color: #1d4ed8; }
.stat-number.green { color: #047857; }
.stat-number.purple { color: #7c3aed; }

.stat-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.stat-label.blue { color: #1e40af; }
.stat-label.green { color: #065f46; }
.stat-label.purple { color: #6d28d9; }

.stat-description {
    font-size: 0.875rem;
    color: #374151;
}

@media (max-width: 1024px) {
    .research-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .research-title {
        font-size: 2rem;
    }
    
    .research-subtitle {
        font-size: 1.125rem;
    }
    
    .research-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .legal-content {
        padding: 2rem 1rem;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-nav {
        padding: 1rem;
    }
}