:root {
    --bg-dark: #0a0a0f;
    --bg-card: rgba(15, 15, 25, 0.7);
    --text-main: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #94a3b8;
    --primary: #6366f1;
    --primary-light: #818cf8;
    --secondary: #ec4899;
    --accent: #14b8a6;
    --success: #22c55e;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glow-primary: rgba(99, 102, 241, 0.4);
    --glow-secondary: rgba(236, 72, 153, 0.4);
    --font-head: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 0%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(20, 184, 166, 0.1) 0%, transparent 50%);
    animation: bgPulse 10s ease-in-out infinite alternate;
    z-index: -2;
}

@keyframes bgPulse {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Grid Background */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 30s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Floating Orbs */
.gradient-sphere {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -2;
    animation: orbFloat 20s ease-in-out infinite;
}

.sphere-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    top: -150px;
    left: -100px;
    opacity: 0.3;
}

.sphere-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    bottom: -100px;
    right: -100px;
    opacity: 0.25;
    animation-delay: -7s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 30px) scale(1.1); }
}

/* Navigation */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 6%;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-main);
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px var(--glow-primary);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--glow-primary);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5rem 6% 4rem;
    animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(34, 197, 94, 0.1);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--success);
    margin-bottom: 2rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

h1 {
    font-family: var(--font-head);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 4s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* App Gallery */
.app-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin-bottom: 2rem;
}

.app-gallery img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: all 0.5s ease;
    cursor: pointer;
    background: var(--bg-card);
}

.app-gallery img:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--glow-primary);
}

/* Features Table */
#features {
    padding: 2rem 6% 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% 100%;
    animation: borderFlow 3s linear infinite;
}

@keyframes borderFlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

tbody tr {
    transition: all 0.3s ease;
}

tbody tr:hover {
    background: rgba(99, 102, 241, 0.05);
}

tbody tr:hover td:first-child {
    color: var(--primary);
}

tbody tr:last-child td {
    border-bottom: none;
}

/* Bypass Section Title */
.bypass-title {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary), var(--primary), var(--accent));
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 5s ease infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* How It Works Section */
.how-section {
    padding: 5rem 6%;
    max-width: 1200px;
    margin: 0 auto;
}

.how-section h2 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.step-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    transition: transform 0.4s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-icon svg {
    width: 32px;
    height: 32px;
}

.step-icon-blue {
    background: linear-gradient(135deg, var(--primary), #3b82f6);
}

.step-icon-cyan {
    background: linear-gradient(135deg, var(--accent), #06b6d4);
}

.step-icon-purple {
    background: linear-gradient(135deg, #a855f7, var(--secondary));
}

.step-card h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.btn-telegram,
.btn-discord {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-telegram {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
}

.btn-telegram:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.btn-discord {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
}

.btn-discord:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

.btn-telegram svg,
.btn-discord svg {
    width: 16px;
    height: 16px;
}

/* About Section */
.about-section {
    padding: 5rem 6%;
    max-width: 1000px;
    margin: 0 auto;
}

.about-container {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 300% 100%;
    animation: borderFlow 4s linear infinite;
}

.about-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-light);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.about-section h2 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.about-text strong {
    color: var(--primary-light);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Proof Section */
.proof-section {
    padding: 4rem 6%;
    max-width: 1200px;
    margin: 0 auto;
}

.proof-section h2 {
    font-family: var(--font-head);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.proof-section .subtext {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.proof-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    background: var(--bg-card);
    cursor: pointer;
    transition: all 0.5s ease;
    aspect-ratio: 9/16;
}

.proof-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

.proof-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: all 0.5s ease;
}

.proof-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    color: var(--success);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.proof-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 50px var(--glow-primary);
}

.proof-card:hover img {
    transform: scale(1.1);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 6%;
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-number {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 40px;
}

.faq-question h3 {
    flex: 1;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.5;
}

.faq-icon {
    color: var(--text-muted);
    transition: all 0.4s ease;
    width: 20px;
    height: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 4rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.98);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    backdrop-filter: blur(20px);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 0 100px var(--glow-primary);
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.4s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
}

.lightbox-close:hover {
    color: var(--secondary);
    transform: rotate(90deg) scale(1.1);
}

/* ============================================
   RESPONSIVE DESIGN - All Devices
   ============================================ */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .hero {
        padding: 6rem 8%;
    }
    
    h1 {
        font-size: 5rem;
    }
    
    .app-gallery {
        max-width: 1000px;
    }
    
    #features {
        max-width: 1200px;
    }
}

/* Large Tablets / Small Laptops (1200px) */
@media (max-width: 1200px) {
    .glass-nav {
        padding: 1rem 4%;
    }
    
    .hero {
        padding: 4rem 4%;
    }
    
    h1 {
        font-size: 3.5rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .proof-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-container {
        padding: 3rem;
    }
}

/* Tablets - iPad, Galaxy Tab (1024px) */
@media (max-width: 1024px) {
    .glass-nav {
        padding: 0.8rem 4%;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
    
    .btn-primary {
        padding: 0.7rem 1.4rem;
        font-size: 0.8rem;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .hero {
        padding: 3rem 4%;
    }
    
    .app-gallery {
        grid-template-columns: repeat(3, 1fr);
        max-width: 700px;
        gap: 0.8rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .proof-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .bypass-title {
        font-size: 3.5rem;
    }
    
    .how-section h2,
    .about-section h2,
    .faq-section h2,
    .proof-section h2 {
        font-size: 2rem;
    }
}

/* Small Tablets / Large Phones - iPad Mini (768px) */
@media (max-width: 768px) {
    /* Navigation */
    .glass-nav {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem 4%;
        text-align: center;
    }
    
    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
    }
    
    .btn-primary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Hero */
    .hero {
        padding: 2.5rem 4%;
    }
    
    h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .badge {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
        margin-bottom: 1.5rem;
    }

    .bypass-title {
        font-size: 2.5rem;
    }
    
    /* App Gallery */
    .app-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        max-width: 100%;
        padding: 0 2%;
    }
    
    .app-gallery img {
        border-radius: 12px;
    }
    
    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
    
    .step-card h3 {
        font-size: 1.1rem;
    }
    
    .step-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .btn-telegram, .btn-discord {
        padding: 0.6rem 1rem;
        font-size: 0.7rem;
    }
    
    /* Proof Grid */
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .proof-card {
        border-radius: 16px;
    }
    
    .proof-overlay {
        font-size: 0.65rem;
        padding: 0.8rem;
    }

    /* Table */
    .glass-card {
        border-radius: 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 500px;
    }
    
    td, th {
        padding: 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    /* About */
    .about-container {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .about-section h2 {
        font-size: 1.8rem;
    }
    
    .about-text {
        font-size: 0.95rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* FAQ */
    .faq-section {
        padding: 3rem 4%;
    }
    
    .faq-question {
        padding: 1.2rem;
        gap: 0.8rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        padding: 0 1.2rem 1.2rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .faq-number {
        display: none;
    }
    
    /* Sections */
    .how-section,
    .about-section,
    .proof-section {
        padding: 3rem 4%;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
}

/* Mobile Phones - iPhone, Android (480px) */
@media (max-width: 480px) {
    /* Navigation */
    .glass-nav {
        padding: 0.8rem 3%;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .btn-primary {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
        border-radius: 10px;
    }
    
    /* Hero */
    .hero {
        padding: 2rem 3%;
    }
    
    h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .bypass-title {
        font-size: 2rem;
    }
    
    /* App Gallery */
    .app-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .app-gallery img {
        border-radius: 10px;
    }
    
    /* Steps */
    .step-card {
        padding: 1.2rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        margin-bottom: 1rem;
    }
    
    .step-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .step-card h3 {
        font-size: 1rem;
    }
    
    .step-card p {
        font-size: 0.8rem;
    }
    
    .step-buttons {
        flex-direction: column;
    }
    
    /* Proof */
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .proof-card {
        border-radius: 12px;
    }
    
    .proof-overlay {
        font-size: 0.6rem;
        padding: 0.6rem;
        gap: 0.3rem;
    }
    
    .proof-overlay svg {
        width: 12px;
        height: 12px;
    }
    
    /* About */
    .about-container {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .about-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
    }
    
    .about-section h2 {
        font-size: 1.5rem;
    }
    
    .about-text {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .about-stats {
        gap: 1rem;
        padding-top: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    /* FAQ */
    .faq-item {
        border-radius: 12px;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.85rem;
    }
    
    .faq-icon {
        width: 16px;
        height: 16px;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Sections */
    .how-section h2,
    .faq-section h2,
    .proof-section h2 {
        font-size: 1.5rem;
    }
    
    .section-subtitle,
    .proof-section .subtext {
        font-size: 0.8rem;
        margin-bottom: 2rem;
    }
    
    /* Lightbox */
    .lightbox {
        padding: 1rem;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }
    
    .lightbox-content {
        border-radius: 12px;
    }
}

/* Small Phones - iPhone SE, Galaxy S (360px) */
@media (max-width: 360px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .bypass-title {
        font-size: 1.6rem;
    }
    
    .btn-primary {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .app-gallery {
        gap: 0.4rem;
    }
    
    .proof-grid {
        gap: 0.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .how-section h2,
    .about-section h2,
    .faq-section h2,
    .proof-section h2 {
        font-size: 1.3rem;
    }
}
