/* Giggo Platform — 3D Crystal Style Main CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #9d4edd;
    --primary-dark: #5a189a;
    --primary-light: #c77dff;
    --primary-glow: rgba(157, 78, 221, 0.6);
    --secondary: #00f5d4;
    --secondary-glow: rgba(0, 245, 212, 0.5);
    --accent: #fee440;
    --success: #06d6a0;
    --warning: #ffd166;
    --danger: #ef476f;
    --info: #4cc9f0;
    
    --bg-dark: #05030a;
    --bg-dark2: #0a0614;
    
    /* Crystal Variables */
    --crystal-bg: rgba(255, 255, 255, 0.03);
    --crystal-blur: blur(24px);
    --crystal-border: rgba(255, 255, 255, 0.08);
    --crystal-highlight: rgba(255, 255, 255, 0.2);
    --crystal-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.1);
    
    --text-primary: #ffffff;
    --text-secondary: #b8b8cc;
    --text-muted: #7a7a99;
    
    --gradient-primary: linear-gradient(135deg, #9d4edd 0%, #c77dff 50%, #00f5d4 100%);
    --gradient-hero: radial-gradient(circle at center, #1b0f36 0%, #05030a 100%);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}
/* Global ambient background orbs */
body::after {
    content: ''; position: fixed; width: 800px; height: 800px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    top: -400px; left: -200px; z-index: -1; pointer-events: none; filter: blur(80px);
}
body::before {
    content: ''; position: fixed; width: 600px; height: 600px;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 60%);
    bottom: -300px; right: -100px; z-index: -1; pointer-events: none; filter: blur(80px);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Crystal Card Base */
.crystal-card {
    background: var(--crystal-bg);
    backdrop-filter: var(--crystal-blur);
    -webkit-backdrop-filter: var(--crystal-blur);
    border: 1px solid var(--crystal-border);
    border-top: 1px solid var(--crystal-highlight);
    border-left: 1px solid var(--crystal-highlight);
    box-shadow: var(--crystal-shadow);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}
.crystal-card::before {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg); transition: 0.5s; pointer-events: none;
}
.crystal-card:hover::before { left: 150%; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; border-radius: var(--radius-full); font-size: 0.95rem; font-weight: 700;
    font-family: 'Inter', sans-serif; cursor: pointer; border: none;
    transition: var(--transition); white-space: nowrap; text-transform: uppercase; letter-spacing: 1px;
    position: relative; overflow: hidden;
}
.btn-primary {
    background: rgba(157, 78, 221, 0.2);
    border: 1px solid rgba(157, 78, 221, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff; box-shadow: 0 8px 24px rgba(157, 78, 221, 0.4), inset 0 2px 4px rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}
.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(157, 78, 221, 0.6), inset 0 2px 4px rgba(255,255,255,0.2);
}
.btn-outline {
    background: rgba(255, 255, 255, 0.02);
    color: #fff; border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1); border-color: #fff; transform: translateY(-2px);
}
.btn-lg { padding: 18px 48px; font-size: 1rem; }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-full { width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* Navbar */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(5, 3, 10, 0.6);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--crystal-border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 1.6rem; font-weight: 900; }
.nav-logo .logo-icon {
    width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-top: 1px solid rgba(255,255,255,0.3); box-shadow: 0 4px 12px rgba(0,0,0,0.3), inset 0 1px 2px rgba(255,255,255,0.2);
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--text-secondary); font-weight: 600; transition: var(--transition); text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; }
.nav-links a:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }
.nav-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle { display: none; background: transparent; border: none; font-size: 1.5rem; color: #fff; cursor: pointer; transition: var(--transition); }
.nav-toggle:hover { color: var(--primary-light); }
.nav-mobile {
    position: fixed; top: 0; left: -100%; width: 280px; height: 100vh;
    background: rgba(5, 3, 10, 0.95); backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255,255,255,0.1);
    z-index: 999; padding: 100px 24px 24px; display: flex; flex-direction: column; gap: 16px;
    transition: var(--transition);
}
.nav-mobile.active { left: 0; }
.nav-mobile a {
    font-size: 1.1rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px;
    padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: block; transition: var(--transition);
}
.nav-mobile a:hover { color: var(--secondary); padding-left: 8px; }

/* Auth Pages (Login/Register/Logout) */
.auth-page {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    padding: 100px 24px 40px; position: relative;
    background: var(--gradient-hero);
}
.auth-card {
    background: var(--crystal-bg); backdrop-filter: var(--crystal-blur); -webkit-backdrop-filter: var(--crystal-blur);
    border: 1px solid var(--crystal-border); border-top: 1px solid var(--crystal-highlight); border-left: 1px solid var(--crystal-highlight);
    border-radius: var(--radius-xl); padding: 48px; width: 100%; max-width: 480px;
    box-shadow: var(--crystal-shadow), 0 0 80px rgba(157, 78, 221, 0.15); z-index: 2;
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo .nav-logo { display: inline-flex; font-size: 1.8rem; }
.auth-title { font-size: 2rem; font-weight: 900; text-align: center; margin-bottom: 8px; letter-spacing: -0.5px; }
.auth-subtitle { text-align: center; color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 40px; }

/* Forms Crystalized */
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }
.form-control {
    width: 100%; padding: 16px 20px; background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05); border-top: 1px solid rgba(0,0,0,0.5);
    border-radius: var(--radius-md); color: #fff; font-size: 1rem; font-family: 'Inter', sans-serif;
    transition: var(--transition); outline: none; box-shadow: inset 0 4px 8px rgba(0,0,0,0.3);
}
.form-control:focus {
    border-color: var(--primary); background: rgba(0,0,0,0.5);
    box-shadow: inset 0 4px 8px rgba(0,0,0,0.3), 0 0 0 3px rgba(157, 78, 221, 0.2);
}
.form-control::placeholder { color: var(--text-muted); }
.input-icon-wrapper { position: relative; }
.input-icon-wrapper .form-control { padding-left: 48px; }
.input-icon-wrapper .input-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 1.1rem; }
.input-icon-wrapper .toggle-pw { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--text-muted); cursor: pointer; transition: var(--transition); background: none; border: none; font-size: 1rem; }
.input-icon-wrapper .toggle-pw:hover { color: #fff; }

.auth-footer { text-align: center; margin-top: 32px; font-size: 0.95rem; color: var(--text-secondary); }
.auth-footer a { color: var(--secondary); font-weight: 700; transition: var(--transition); }
.auth-footer a:hover { color: #fff; text-shadow: 0 0 10px var(--secondary-glow); }
.forgot-link { display: block; text-align: right; font-size: 0.85rem; color: var(--text-muted); margin-top: 12px; transition: var(--transition); }
.forgot-link:hover { color: var(--secondary); }

/* Alerts */
.alert { padding: 16px 20px; border-radius: var(--radius-md); font-size: 0.9rem; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; backdrop-filter: blur(10px); font-weight: 500; border-top: 1px solid rgba(255,255,255,0.2); }
.alert-danger { background: rgba(239, 71, 111, 0.15); border: 1px solid rgba(239, 71, 111, 0.3); color: #ffb3c6; box-shadow: 0 8px 16px rgba(239, 71, 111, 0.15); }
.alert-success { background: rgba(6, 214, 160, 0.15); border: 1px solid rgba(6, 214, 160, 0.3); color: #99f2c8; box-shadow: 0 8px 16px rgba(6, 214, 160, 0.15); }

/* Animated Particles & Orbs */
@keyframes bgDrift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes floatUp {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    20% { opacity: 0.8; }
    80% { opacity: 0.8; }
    100% { transform: translateY(-20vh) scale(1.5); opacity: 0; }
}
@keyframes orbPulse {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(30px, -30px); }
}

/* Hero Section */
.hero {
    min-height: 100vh; 
    background: linear-gradient(-45deg, #05030a, #1b0f36, #0a0614, #2d0042);
    background-size: 400% 400%;
    animation: bgDrift 15s ease infinite;
    position: relative; display: flex; align-items: center; padding-top: 80px; z-index: 1;
    overflow: hidden;
}

.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none;
}
.hero-orb {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.6;
    animation: orbPulse 10s ease-in-out infinite alternate;
}
.hero-orb-1 { width: 50vw; height: 50vw; background: var(--primary-glow); top: -20vh; left: -20vw; animation-duration: 12s; }
.hero-orb-2 { width: 60vw; height: 60vw; background: var(--secondary-glow); bottom: -30vh; right: -20vw; animation-duration: 15s; animation-delay: 2s; }
.hero-orb-3 { width: 40vw; height: 40vw; background: rgba(254, 228, 64, 0.2); top: 30vh; left: 40vw; animation-duration: 20s; }

.particle {
    position: absolute;
    width: 6px; height: 6px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 12px #fff, 0 0 20px var(--primary-light);
    animation: floatUp linear infinite;
}

.hero-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; padding: 80px 0; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px; background: rgba(0, 245, 212, 0.1);
    border: 1px solid rgba(0, 245, 212, 0.3); border-radius: var(--radius-full); padding: 8px 24px;
    font-size: 0.85rem; font-weight: 700; color: var(--secondary); margin-bottom: 32px;
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.1);
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--secondary); border-radius: 50%; box-shadow: 0 0 10px var(--secondary); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }

.hero-title { font-size: clamp(3rem, 6vw, 5rem); font-weight: 900; line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px; }
.hero-subtitle { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 48px; max-width: 500px; line-height: 1.7; }
.hero-cta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat .number { font-size: 2rem; font-weight: 900; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-stat .label { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* Crystal Hero Visual Elements */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-card-main {
    width: 380px; padding: 40px;
    animation: floatingObj 8s ease-in-out infinite; z-index: 2;
}
.hero-card-label { font-size: 0.85rem; color: var(--text-secondary); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.hero-card-balance { font-size: 3rem; font-weight: 900; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 32px; letter-spacing: -1px; text-shadow: 0 10px 20px rgba(157, 78, 221, 0.2); }
.hero-task-item {
    display: flex; align-items: center; justify-content: space-between; padding: 16px 20px;
    background: rgba(0,0,0,0.3); border-radius: var(--radius-md); margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.05); border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-task-item .task-name { font-size: 0.95rem; font-weight: 600; }
.hero-task-item .task-reward { font-size: 1rem; font-weight: 800; color: var(--secondary); }

.hero-card-float {
    position: absolute; padding: 20px 24px; z-index: 3;
}
.hero-card-float-1 { top: -30px; right: -50px; animation: floatingObj 6s ease-in-out infinite 1s; }
.hero-card-float-2 { bottom: -30px; left: -60px; animation: floatingObj 7s ease-in-out infinite 2.5s; }
@keyframes floatingObj { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(2deg); } }
.float-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.float-value { font-size: 1.2rem; font-weight: 800; color: var(--secondary); margin-top: 4px; }

/* General Sections */
.section-header { text-align: center; margin-bottom: 80px; }
.section-tag {
    display: inline-block; background: rgba(255,255,255,0.05); color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-full); padding: 8px 24px;
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px;
}
.section-title { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 900; margin-bottom: 24px; letter-spacing: -1px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; line-height: 1.8; }

/* Features */
.features { padding: 120px 0; position: relative; z-index: 2; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-card {
    background: var(--crystal-bg); backdrop-filter: var(--crystal-blur); -webkit-backdrop-filter: var(--crystal-blur);
    border: 1px solid var(--crystal-border); border-top: 1px solid var(--crystal-highlight); border-left: 1px solid var(--crystal-highlight);
    border-radius: var(--radius-xl); padding: 40px; transition: var(--transition); box-shadow: var(--crystal-shadow);
}
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 2px 4px rgba(255,255,255,0.2), 0 0 40px rgba(157, 78, 221, 0.2); border-color: rgba(157, 78, 221, 0.5); }
.feature-icon {
    width: 64px; height: 64px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-top: 1px solid rgba(255,255,255,0.3); border-radius: var(--radius-md); box-shadow: inset 0 2px 4px rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 24px; color: var(--secondary);
}
.feature-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 16px; }
.feature-desc { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; }

/* Legal Pages */
.legal-page { padding: 140px 0 100px; position: relative; z-index: 2; }
.legal-card {
    background: var(--crystal-bg); backdrop-filter: var(--crystal-blur); -webkit-backdrop-filter: var(--crystal-blur);
    border: 1px solid var(--crystal-border); border-top: 1px solid var(--crystal-highlight); border-left: 1px solid var(--crystal-highlight);
    border-radius: var(--radius-xl); padding: 60px; max-width: 800px; margin: 0 auto; box-shadow: var(--crystal-shadow);
}
.legal-card h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 12px; letter-spacing: -1px; }
.legal-card .last-updated { color: var(--primary-light); font-size: 0.95rem; font-weight: 600; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 1px; }
.legal-card h2 { font-size: 1.4rem; font-weight: 800; margin: 40px 0 16px; color: #fff; }
.legal-card p, .legal-card li { color: var(--text-secondary); line-height: 1.9; margin-bottom: 16px; font-size: 1.05rem; }
.legal-card ul { padding-left: 24px; list-style: disc; margin-bottom: 24px; }

/* Misc overrides to ensure Crystal */
.how-it-works, .earnings-preview, .testimonials, .cta-section { background: transparent; position: relative; z-index: 2; padding: 120px 0; }
.step-num { width: 80px; height: 80px;  box-shadow: 0 10px 30px rgba(157, 78, 221, 0.4), inset 0 2px 4px rgba(255,255,255,0.3); margin-bottom: 32px; }
/* Revert previous overrides for seamless integration */
.earnings-visual { background: var(--crystal-bg); backdrop-filter: var(--crystal-blur); border: 1px solid var(--crystal-border); border-top: 1px solid var(--crystal-highlight); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--crystal-shadow); }
.task-preview-item { background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.05); }
.testimonial-card {
    background: var(--crystal-bg); backdrop-filter: var(--crystal-blur); -webkit-backdrop-filter: var(--crystal-blur);
    border: 1px solid var(--crystal-border); border-top: 1px solid var(--crystal-highlight); border-left: 1px solid var(--crystal-highlight);
    border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--crystal-shadow); transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--primary); transform: translateY(-4px); }

/* Footer */
.footer { background: rgba(0,0,0,0.3); backdrop-filter: blur(20px); border-top: 1px solid var(--glass-border); padding: 80px 0 40px; position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand .nav-logo { margin-bottom: 24px; }
.footer-brand p { font-size: 1rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 32px; }
.social-btn { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-top: 1px solid rgba(255,255,255,0.2); border-radius: 12px; font-size: 1.1rem; transition: var(--transition); color: #fff; }
.social-btn:hover { background: var(--primary); transform: translateY(-4px); box-shadow: 0 8px 20px var(--primary-glow); border-color: var(--primary-light); color: #fff; }
.footer-heading { font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: #fff; margin-bottom: 24px; }
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a { font-size: 0.95rem; color: var(--text-secondary); transition: var(--transition); }
.footer-links a:hover { color: var(--secondary); transform: translateX(4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 32px; display: flex; align-items: center; justify-content: space-between; font-size: 0.95rem; color: var(--text-muted); }

/* Utilities */
.text-center { text-align: center; } .text-right { text-align: right; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.d-flex { display: flex; } .align-center { align-items: center; } .justify-between { justify-content: space-between; }
.gap-2 { gap: 16px; } .fw-bold { font-weight: 700; }
.text-success { color: var(--success); } .text-danger { color: var(--danger); }
.text-muted { color: var(--text-muted); } .text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }

/* Responsive */
@media(max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-visual { display: none; }
    .hero-cta, .hero-stats { justify-content: center; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .earnings-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-actions .btn-outline { display: none; }
    .steps-grid, .features-grid, .testimonials-grid, .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .auth-card { padding: 40px 24px; }
    .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
}
