/* Dark Theme - Spicy Marketing */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #ff006e; --secondary: #8338ec; --accent: #3a86ff; --success: #06ffa5;
    --bg-dark: #0a0a0f; --bg-card: rgba(255, 255, 255, 0.03); --bg-card-hover: rgba(255, 255, 255, 0.06);
    --text-primary: #fff; --text-secondary: rgba(255, 255, 255, 0.7); --text-muted: rgba(255, 255, 255, 0.4);
    --border: rgba(255, 255, 255, 0.08); --border-hover: rgba(255, 255, 255, 0.15);
    --gradient-1: linear-gradient(135deg, #ff006e 0%, #8338ec 50%, #3a86ff 100%);
    --shadow-glow: 0 0 40px rgba(131, 56, 236, 0.3);
    --radius-md: 12px; --radius-lg: 20px; --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body { background: #0a0a0f !important; color: var(--text-primary) !important; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; min-height: 100vh; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Background */
.bg-gradient {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; pointer-events: none;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(131, 56, 236, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 0% 100%, rgba(58, 134, 255, 0.1) 0%, transparent 50%);
}
.bg-orbs { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; animation: float 20s ease-in-out infinite; }
.orb-1 { width: 400px; height: 400px; background: var(--primary); top: -100px; right: -100px; }
.orb-2 { width: 300px; height: 300px; background: var(--secondary); bottom: 10%; left: -50px; animation-delay: -7s; }
.orb-3 { width: 250px; height: 250px; background: var(--accent); top: 40%; right: 10%; animation-delay: -14s; }
@keyframes float { 0%, 100% { transform: translate(0, 0) scale(1); } 25% { transform: translate(30px, -30px) scale(1.05); } 50% { transform: translate(-20px, 20px) scale(0.95); } 75% { transform: translate(20px, 10px) scale(1.02); } }

/* Navigation */
.navbar { display: none !important; }

/* Hero */
.hero { padding: 6rem 2rem; text-align: center; background: linear-gradient(180deg, #8338ec 0%, #ff006e 100%); min-height: 70vh; display: flex; align-items: center; justify-content: center; }
.hero > * { position: relative; z-index: 1; }
.hero-content { max-width: 800px; margin: 0 auto; }
.hero-badge { display: inline-block; padding: 0.5rem 1.25rem; background: rgba(0, 0, 0, 0.2) !important; border: 1px solid rgba(255, 255, 255, 0.2) !important; border-radius: 50px; font-size: 0.85rem; color: #fff !important; margin-bottom: 1.5rem; backdrop-filter: blur(10px); }
.hero-title { font-size: clamp(2.5rem, 7vw, 4.5rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1.5rem; line-height: 1.1; color: #fff !important; text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3); }
.hero-subtitle { font-size: 1.2rem; color: #fff !important; margin-bottom: 2.5rem; font-weight: 400; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.7; opacity: 0.95; }
.hero-stats { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.stat { display: flex; flex-direction: row; align-items: center; gap: 0.5rem; justify-content: center; }
.stat-number { font-size: 1.1rem; font-weight: 600; color: #fff !important; }
.stat-label { font-size: 1rem; color: #fff !important; font-weight: 400; }
.stat-divider { display: none !important; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2rem; border-radius: var(--radius-md); font-weight: 600; font-size: 1rem; text-decoration: none; transition: var(--transition); cursor: pointer; border: none; }
.btn-primary { background: #ffb3d9 !important; color: #fff !important; box-shadow: 0 4px 20px rgba(255, 179, 217, 0.4); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(131, 56, 236, 0.5); }
.btn-secondary { background: transparent !important; color: #3a86ff !important; border: none !important; text-decoration: underline; }
.btn-secondary:hover { background: var(--bg-card-hover); }

/* Sections */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-badge { display: inline-block; padding: 0.4rem 1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 50px; font-size: 0.8rem; color: var(--secondary); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.section-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 1rem; color: rgba(255, 255, 255, 0.95) !important; }
.section-subtitle { font-size: 1.1rem; color: rgba(255, 255, 255, 0.85) !important; max-width: 600px; margin: 0 auto; }

/* Steps */
.steps-section { padding: 6rem 0; background: #0a0a1a !important; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.step-card { position: relative; background: var(--bg-card) !important; border: 1px solid var(--border) !important; border-radius: var(--radius-lg); padding: 2rem; transition: var(--transition); color: var(--text-primary) !important; }
.step-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-1); opacity: 0; transition: opacity 0.3s; }
.step-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); transform: translateY(-5px); box-shadow: var(--shadow-glow); }
.step-card:hover::before { opacity: 1; }
.step-card:nth-child(1) .step-number { color: var(--primary); }
.step-card:nth-child(2) .step-number { color: var(--secondary); }
.step-card:nth-child(3) .step-number { color: var(--accent); }
.step-card:nth-child(4) .step-number { color: #ffbe0b; }
.step-number { font-size: 3rem; font-weight: 800; opacity: 0.3; position: absolute; top: 1rem; right: 1.5rem; }
.step-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.step-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; color: #fff !important; }
.step-description { font-size: 0.95rem; color: rgba(255, 255, 255, 0.9) !important; line-height: 1.6; }

/* Proof */
.proof-section { padding: 4rem 0; }
.proof-card { background: var(--bg-card) !important; border: 1px solid var(--border) !important; border-radius: var(--radius-lg); padding: 2.5rem; max-width: 900px; margin: 0 auto; position: relative; color: var(--text-primary) !important; }
.proof-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--gradient-1); }
.proof-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.proof-icon { font-size: 2rem; }
.proof-title { font-size: 1.5rem; font-weight: 700; color: var(--text-primary); }
.proof-content p { font-size: 1.05rem; color: rgba(255, 255, 255, 0.9) !important; line-height: 1.8; margin-bottom: 1rem; }
.proof-content p:last-child { margin-bottom: 0; }
.proof-highlight { color: var(--primary) !important; font-weight: 600; }

/* Preview */
.preview-section { padding: 6rem 0; }
.preview-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 600px; margin: 0 auto 4rem; }
.gallery-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; aspect-ratio: 1; background: var(--bg-card); border: 1px solid var(--border); transition: var(--transition); }
.gallery-photo:hover { transform: translateY(-5px); box-shadow: var(--shadow-glow); border-color: var(--border-hover); }
.gallery-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.6); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; transition: opacity 0.3s; }
.gallery-photo:hover .photo-overlay { background: rgba(0, 0, 0, 0.4); }
.expand-text { color: white; font-size: 0.9rem; font-weight: 500; }

/* Video */
.video-section { max-width: 900px; margin: 0 auto; }
.video-title { font-size: 1.25rem; font-weight: 600; color: var(--text-secondary); text-align: center; margin-bottom: 1.5rem; }
.video-wrapper { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5); }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; background: #000; }
.video-container iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* Modal */
.modal { display: none; position: fixed; inset: 0; z-index: 10000; }
.modal.active { display: flex; align-items: center; justify-content: center; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(10px); }
.modal-content { position: relative; z-index: 10001; max-width: 90vw; max-height: 90vh; }
.modal-close { position: absolute; top: -50px; right: 0; background: var(--bg-card); border: 1px solid var(--border); color: var(--text-primary); font-size: 1.5rem; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.modal-close:hover { background: var(--bg-card-hover); transform: rotate(90deg); }
.modal-photo-container img { max-width: 100%; max-height: 85vh; border-radius: var(--radius-lg); box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5); }

/* Pricing */
.pricing-section { padding: 6rem 0; }
.pricing-card { position: relative; max-width: 500px; margin: 0 auto; background: var(--bg-card) !important; border: 1px solid var(--border) !important; border-radius: var(--radius-xl); padding: 3rem; text-align: center; color: var(--text-primary) !important; }
.pricing-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-1); }
.pricing-badge { display: inline-block; padding: 0.4rem 1rem; background: linear-gradient(135deg, rgba(255, 0, 110, 0.15) 0%, rgba(131, 56, 236, 0.15) 100%); border: 1px solid rgba(131, 56, 236, 0.3); border-radius: 50px; font-size: 0.8rem; color: var(--secondary); font-weight: 600; margin-bottom: 1.5rem; }
.pricing-name { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.75rem; line-height: 1.3; color: #fff !important; }
.pricing-description { color: rgba(255, 255, 255, 0.8) !important; margin-bottom: 2rem; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 0; color: rgba(255, 255, 255, 0.9) !important; border-bottom: 1px solid var(--border); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check { color: var(--success); font-weight: bold; }
.pricing-btn { display: block; width: 100%; padding: 1.25rem; background: var(--gradient-1); color: var(--text-primary); text-decoration: none; border-radius: var(--radius-md); font-weight: 700; font-size: 1.1rem; transition: var(--transition); box-shadow: 0 4px 20px rgba(131, 56, 236, 0.4); }
.pricing-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(131, 56, 236, 0.5); }

/* Testimonials */
.testimonials-section { padding: 6rem 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--bg-card) !important; border: 1px solid var(--border) !important; border-radius: var(--radius-lg); padding: 1.75rem; transition: var(--transition); color: var(--text-primary) !important; }
.testimonial-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); transform: translateY(-3px); }
.testimonial-card:nth-child(1) { border-left: 3px solid var(--primary); }
.testimonial-card:nth-child(2) { border-left: 3px solid var(--secondary); }
.testimonial-card:nth-child(3) { border-left: 3px solid var(--accent); }
.testimonial-card:nth-child(4) { border-left: 3px solid #ffbe0b; }
.testimonial-card:nth-child(5) { border-left: 3px solid #fb5607; }
.testimonial-card:nth-child(6) { border-left: 3px solid var(--success); }
.testimonial-content p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.9) !important; line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 40px; height: 40px; background: var(--gradient-1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; }
.author-name { font-weight: 600; color: var(--text-primary); font-size: 0.95rem; }
.author-title { font-size: 0.8rem; color: var(--text-muted); }

/* CTA */
.cta-section { padding: 4rem 0 6rem; }
.cta-card { background: var(--bg-card) !important; border: 1px solid var(--border) !important; border-radius: var(--radius-xl); padding: 4rem 2rem; text-align: center; position: relative; color: var(--text-primary) !important; }
.cta-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(255, 0, 110, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(131, 56, 236, 0.1) 0%, transparent 50%); pointer-events: none; }
.cta-card > * { position: relative; z-index: 1; }
.cta-title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 0.75rem; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-subtitle { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 2rem; }

/* Footer */
.footer { padding: 3rem 2rem; border-top: 1px solid var(--border); text-align: center; }
.footer-container { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 1.1rem; }
.footer-links { display: flex; align-items: center; gap: 0.75rem; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--text-primary); }
.footer-divider { color: var(--text-muted); }
.footer-copy { font-size: 0.85rem; color: var(--text-muted); }

/* Proxies Popup */
.proxies-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}
.proxies-popup.active {
    display: flex;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.proxies-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}
.proxies-popup-content {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(20, 15, 30, 0.95) 100%);
    border: 1px solid rgba(131, 56, 236, 0.2);
    border-radius: 24px;
    padding: 3rem 3.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    min-width: 380px;
    max-width: 90%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(131, 56, 236, 0.1) inset;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.proxies-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    line-height: 1;
}
.proxies-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: rotate(90deg);
}
.proxies-text {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.4;
}
.proxies-link {
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #8338ec 0%, #3a86ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}
.proxies-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #8338ec 0%, #3a86ff 100%);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.proxies-link:hover {
    opacity: 0.9;
}
.proxies-link:hover::after {
    opacity: 1;
}
.proxies-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: stretch;
}
.proxies-button {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 2.5rem;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.03);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.proxies-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.1) 0%, rgba(58, 134, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.proxies-button:hover {
    border-color: rgba(131, 56, 236, 0.5);
    background: rgba(131, 56, 236, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(131, 56, 236, 0.2);
}
.proxies-button:hover::before {
    opacity: 1;
}
.proxies-button:active {
    transform: translateY(0);
}
.guide-button {
    border-color: rgba(131, 56, 236, 0.4);
    color: rgba(131, 56, 236, 1);
    background: rgba(131, 56, 236, 0.05);
}
.guide-button:hover {
    border-color: rgba(131, 56, 236, 0.6);
    background: rgba(131, 56, 236, 0.15);
    box-shadow: 0 8px 24px rgba(131, 56, 236, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero { padding: 8rem 1.5rem 4rem; }
    .hero-stats { padding: 1.5rem 2rem; }
    .container { padding: 0 1.5rem; }
    .steps-section, .preview-section, .pricing-section, .testimonials-section { padding: 4rem 0; }
    .preview-gallery { grid-template-columns: 1fr; max-width: 300px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .proof-card, .pricing-card { padding: 1.75rem; }
    .cta-card { padding: 3rem 1.5rem; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .btn { width: 100%; justify-content: center; }
    .step-card { padding: 1.5rem; }
    .step-number { font-size: 2.5rem; }
}
