/* ===== CSS Variables ===== */
:root {
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --accent-cyan: #00d9ff;
    --accent-purple: #8a2be2;
    --accent-gradient: linear-gradient(135deg, #00d9ff 0%, #8a2be2 100%);
    --success: #00ff88;
    --warning: #ffb800;
    --error: #ff4444;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;
    --border-color: #2a2a35;
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.4);
}

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

.btn-secondary:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

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

.logo .pro {
    color: var(--accent-cyan);
}

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

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    padding: 10px 24px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 217, 255, 0.05) 0%, transparent 70%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--accent-cyan);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: 20px;
    max-width: 500px;
}

@media (max-width: 968px) {
    .hero-subtitle {
        margin: 20px auto 0;
    }
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}

@media (max-width: 968px) {
    .hero-stats {
        justify-content: center;
    }
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

@media (max-width: 968px) {
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.hero-note {
    margin-top: 24px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 968px) {
    .hero-visual {
        display: none;
    }
}

.app-preview {
    perspective: 1000px;
}

.app-window {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 217, 255, 0.1);
    transform: rotateY(-5deg) rotateX(5deg);
    animation: float 6s ease-in-out infinite;
}

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

.app-titlebar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #0a0a10;
    border-bottom: 1px solid var(--border-color);
}

.app-dots {
    display: flex;
    gap: 6px;
}

.app-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
}

.app-dots span:first-child { background: #ff5f57; }
.app-dots span:nth-child(2) { background: #febc2e; }
.app-dots span:last-child { background: #28c840; }

.app-title {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.app-content {
    padding: 24px;
    min-width: 350px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.metric-card {
    text-align: center;
}

.metric-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
}

.metric-circle.cpu {
    background: rgba(0, 217, 255, 0.2);
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
}

.metric-circle.gpu {
    background: rgba(138, 43, 226, 0.2);
    border: 2px solid var(--accent-purple);
    color: var(--accent-purple);
}

.metric-circle.ram {
    background: rgba(0, 255, 136, 0.2);
    border: 2px solid var(--success);
    color: var(--success);
}

.metric-circle.temp {
    background: rgba(255, 184, 0, 0.2);
    border: 2px solid var(--warning);
    color: var(--warning);
}

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

.boost-btn-preview {
    background: var(--accent-gradient);
    padding: 16px;
    border-radius: 10px;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(0, 217, 255, 0.5); }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    margin: 8px auto 0;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.5; }
}

/* ===== Logos Section ===== */
.logos-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.logos-title {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.game-logo {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--text-muted);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.game-logo:hover {
    opacity: 1;
    color: var(--accent-cyan);
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    margin-top: 16px;
}

/* ===== Features Section ===== */
.features-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    border-color: rgba(0, 217, 255, 0.3);
}

@media (max-width: 768px) {
    .feature-card.featured {
        grid-column: span 1;
    }
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.feature-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.feature-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

/* ===== How It Works ===== */
.how-section {
    background: var(--bg-dark);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

@media (max-width: 768px) {
    .steps-grid {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}

.step {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    max-width: 280px;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--accent-cyan);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 20px;
}

.step-content h3 {
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.step-arrow {
    color: var(--accent-cyan);
    font-size: 2rem;
    opacity: 0.5;
}

/* ===== Benchmarks Section ===== */
.benchmarks-section {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.benchmark-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.benchmark-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
}

.benchmark-game {
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 20px;
}

.benchmark-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bar-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bar-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    width: 50px;
}

.bar {
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.75rem;
    transition: width 1s ease-out;
}

.bar-before {
    background: rgba(255, 255, 255, 0.1);
}

.bar-after {
    background: var(--accent-gradient);
}

.benchmark-gain {
    margin-top: 16px;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--success);
}

.latency-section {
    text-align: center;
}

.latency-section h3 {
    margin-bottom: 32px;
}

.latency-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

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

.latency-value {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
}

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

.latency-item.after .latency-value {
    color: var(--success);
}

.latency-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.latency-arrow {
    color: var(--accent-cyan);
}

/* ===== Safety Section ===== */
.safety-section {
    background: var(--bg-dark);
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .safety-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.safety-content h2 {
    margin-bottom: 16px;
}

.safety-content > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.safety-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 768px) {
    .safety-list {
        align-items: center;
    }
}

.safety-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.safety-list svg {
    color: var(--success);
    flex-shrink: 0;
}

.safety-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield {
    width: 200px;
    height: 200px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    animation: shield-pulse 3s ease-in-out infinite;
}

@keyframes shield-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.2); }
    50% { box-shadow: 0 0 0 30px rgba(0, 255, 136, 0); }
}

/* ===== Pricing Section ===== */
.pricing-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
}

.pricing-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid var(--accent-cyan);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.price-period {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

.price-note {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 8px;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    color: var(--success);
    flex-shrink: 0;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pricing-guarantee svg {
    color: var(--success);
}

.payment-methods {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.payment-methods span {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.payment-logos {
    margin-top: 8px;
}

.stripe-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #635bff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== FAQ Section ===== */
.faq-section {
    background: var(--bg-dark);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    color: var(--text-secondary);
    padding-bottom: 24px;
    line-height: 1.7;
}

/* ===== Final CTA ===== */
.final-cta {
    text-align: center;
    padding: 100px 0;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 70%),
        var(--bg-dark);
}

.final-cta p {
    color: var(--text-secondary);
    margin: 16px 0 32px;
}

/* ===== Footer ===== */
.footer {
    background: #050508;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 300px;
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.footer-bottom p:last-child {
    margin-top: 8px;
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    max-width: 480px;
    width: 100%;
    animation: modal-in 0.3s ease;
}

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

.modal-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.modal-content h2 {
    margin-bottom: 16px;
}

.modal-content > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.modal-progress {
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    margin-bottom: 24px;
    overflow: hidden;
}

.modal-progress-bar {
    height: 100%;
    background: var(--accent-gradient);
    width: 0%;
    animation: progress 5s linear forwards;
}

@keyframes progress {
    to { width: 100%; }
}

.modal-note {
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== Full Responsive Styles ===== */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-container {
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card.featured {
        grid-column: span 2;
    }
    
    .benchmark-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .stat {
        min-width: 80px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        margin: 20px auto 0;
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-note {
        font-size: 0.75rem;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .logos-grid {
        gap: 20px;
    }
    
    .game-logo {
        font-size: 0.875rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-card,
    .feature-card.featured {
        grid-column: span 1;
        padding: 24px;
    }
    
    .steps-grid {
        flex-direction: column;
        gap: 16px;
    }
    
    .step {
        max-width: 100%;
        width: 100%;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 8px 0;
    }
    
    .benchmark-grid {
        grid-template-columns: 1fr;
    }
    
    .benchmark-card {
        padding: 20px;
    }
    
    .latency-comparison {
        flex-direction: column;
        gap: 24px;
    }
    
    .latency-arrow {
        transform: rotate(90deg);
    }
    
    .latency-value {
        font-size: 2.5rem;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .safety-visual {
        order: -1;
    }
    
    .shield {
        width: 150px;
        height: 150px;
    }
    
    .shield svg {
        width: 80px;
        height: 80px;
    }
    
    .pricing-card {
        padding: 32px 24px;
        margin: 0 10px;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .faq-question {
        padding: 20px 0;
        font-size: 0.9375rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.125rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9375rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .stat {
        min-width: 70px;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.625rem;
    }
    
    .logos-section {
        padding: 40px 0;
    }
    
    .logos-grid {
        flex-direction: column;
        gap: 12px;
    }
    
    .section-badge {
        font-size: 0.625rem;
        padding: 4px 10px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-card p {
        font-size: 0.875rem;
    }
    
    .step {
        padding: 24px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .bar {
        height: 28px;
        font-size: 0.625rem;
    }
    
    .bar-label {
        width: 40px;
        font-size: 0.625rem;
    }
    
    .benchmark-gain {
        font-size: 1rem;
    }
    
    .latency-value {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 28px 20px;
    }
    
    .pricing-badge {
        font-size: 0.625rem;
        padding: 4px 12px;
    }
    
    .price-currency,
    .price-period {
        font-size: 1.25rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .pricing-features li {
        font-size: 0.875rem;
        padding: 10px 0;
    }
    
    .faq-question {
        padding: 16px 0;
        font-size: 0.875rem;
    }
    
    .faq-answer p {
        font-size: 0.875rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-brand p {
        margin: 16px auto 0;
    }
    
    .modal-content {
        padding: 32px 24px;
    }
    
    .modal-icon {
        font-size: 3rem;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
}

/* Very Small Screens */
@media (max-width: 360px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        width: 100%;
        max-width: 150px;
    }
    
    .price-amount {
        font-size: 2rem;
    }
}

