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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    font-weight: 400;
}

:root {
    --primary-color: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-light: #a78bfa;
    --accent-color: #ec4899;
    --accent-bg: #faf7ff;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-muted: #999999;
    --border-color: #e0e0e0;
    --border-light: #f0f0f0;
    --white: #ffffff;
    
    /* Section Background Colors */
    --hero-bg: linear-gradient(135deg, #faf7ff 0%, #f3e8ff 100%);
    --about-bg: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    --models-bg: linear-gradient(135deg, #f3e8ff 0%, #faf7ff 100%);
    --samples-bg: linear-gradient(135deg, #fdf4ff 0%, #fae8ff 100%);
    --architecture-bg: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    --platforms-bg: linear-gradient(135deg, #f3e8ff 0%, #faf7ff 100%);
    --privacy-bg: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --info-bg: linear-gradient(135deg, #faf7ff 0%, #f3e8ff 100%);
    --footer-bg: #1e1b4b;
    
    /* Status Colors */
    --status-available: #10b981;
    --status-best: #f59e0b;
    --status-upcoming: #8b5cf6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--border-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo span {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s ease;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.download-btn {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.download-btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.hamburger.active {
    background: transparent;
}

.hamburger.active::before {
    transform: rotate(45deg);
    top: 0;
}

.hamburger.active::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Hero Section */
.hero {
   padding-top: 120px !important;
    padding-bottom: 50px !important;
    background: var(--hero-bg);
    text-align: center;
    min-height: auto !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero h1 {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 15px;
}

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

.btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn.secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--about-bg);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.about h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 48px;
    text-align: center;
    color: var(--text-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.2s ease;
}

.stat:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
}

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

/* Models Section */
.models {
    padding: 80px 0;
    background: var(--models-bg);
    position: relative;
}

.models::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 70%, rgba(236, 72, 153, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.models h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: center;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-size: 16px;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.model-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
}

.model-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.model-card.flagship {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.08);
}

.model-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-bg);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary-color);
}

.model-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.model-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.model-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
}

.model-specs span {
    background: var(--accent-bg);
    border: 1px solid var(--primary-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
}

.status {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status.available {
    background: rgba(16, 185, 129, 0.1);
    color: var(--status-available);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status.best {
    background: rgba(245, 158, 11, 0.1);
    color: var(--status-best);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status.upcoming {
    background: rgba(139, 92, 246, 0.1);
    color: var(--status-upcoming);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.roadmap {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.roadmap h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 600;
}

.roadmap p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Samples Section */
.samples {
    padding: 80px 0;
    background: var(--samples-bg);
    position: relative;
}

.samples::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.samples h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: center;
    color: var(--text-primary);
}

.samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}

.sample-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.2s ease;
}

.sample-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.sample-card.flagship {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.08);
}

.sample-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.sample-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.tag {
    background: var(--accent-bg);
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--primary-color);
}

.sample-prompt {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.sample-response {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    background: var(--accent-bg);
    padding: 16px;
    border-radius: 8px;
}

/* Architecture Section */
.architecture {
    padding: 80px 0;
    background: var(--architecture-bg);
    position: relative;
}

.architecture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.architecture h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: center;
    color: var(--text-primary);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}

.tech-feature {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.2s ease;
}

.tech-feature:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.tech-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-bg);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary-color);
}

.tech-feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.tech-feature p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Platforms Section */
.platforms {
    padding: 80px 0;
    background: var(--platforms-bg);
    position: relative;
}

.platforms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 70%, rgba(236, 72, 153, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.platforms h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: center;
    color: var(--text-primary);
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.platform-icon {
    color: var(--primary-color);
    margin-bottom: 8px;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.platform-icon:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.platform-item span {
    font-weight: 500;
    color: var(--text-primary);
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 2;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    color: var(--primary-color);
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Privacy Section */
.privacy {
    padding: 80px 0;
    background: var(--privacy-bg);
    position: relative;
    overflow: hidden;
}

.privacy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.privacy-content {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.privacy-text {
    color: var(--white);
    max-width: 800px;
    text-align: center;
}

.privacy-text h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 48px;
    color: var(--white);
}

.privacy-points {
    margin-bottom: 48px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    text-align: left;
}

.privacy-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.privacy-point-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.privacy-point-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.privacy-point-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 14px;
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* Info Section */
.info-section {
    padding: 80px 0;
    background: var(--info-bg);
    position: relative;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.info-content {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    max-width: 600px;
    transition: all 0.2s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.info-icon {
    color: var(--primary-color);
    margin-bottom: 16px;
    display: block;
}

.info-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.info-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.info-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--footer-bg);
    border-top: 1px solid #312e81;
    padding: 48px 0 24px;
    color: #cbd5e1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-main {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-logo span {
    font-size: 18px;
    font-weight: 600;
    color: #f1f5f9;
}

.footer-main p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.group-title {
    display: block;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 16px;
    font-size: 14px;
}

.link-group a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.2s ease;
}

.link-group a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #312e81;
}

.footer-bottom p {
    color: #64748b;
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.social-links a:hover {
    color: var(--primary-light);
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        border-top: 1px solid var(--border-color);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

    .platform-icons {
        gap: 32px;
    }

    .platform-features {
        grid-template-columns: 1fr;
    }

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

    .privacy-point {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .container {
        padding: 0 16px;
    }

    .nav-content {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .about h2,
    .models h2,
    .samples h2,
    .architecture h2,
    .platforms h2,
    .privacy h2 {
        font-size: 24px;
    }

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

    .platform-icons {
        flex-direction: column;
        gap: 24px;
    }

    .platform-icon {
        width: 56px;
        height: 56px;
    }

    .feature {
        flex-direction: column;
        text-align: center;
    }

    .info-card {
        padding: 24px;
    }

    .privacy-text h2 {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .privacy-points {
        gap: 24px;
        margin-bottom: 32px;
    }
}


/* Footer Links Override - All on Same Row */
.footer-links {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
}