:root {
    --bg-dark: #05070a;
    --bg-card: rgba(16, 20, 28, 0.65);
    --primary: #00E5FF;
    --secondary: #8A2BE2;
    --text-main: #ffffff;
    --text-muted: #a1a7b4;
    --glass-border: rgba(255, 255, 255, 0.12);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --radius: 16px;
    --font: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; position: relative; z-index: 2; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 12px; font-weight: 700; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }
.gradient-text { background: linear-gradient(90deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Glassmorphism */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Loader */
.loader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-dark); display: flex; justify-content: center; align-items: center;
    z-index: 9999; transition: opacity 0.5s, visibility 0.5s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-spinner { width: 50px; height: 50px; border: 3px solid rgba(255,255,255,0.1); border-top-color: var(--primary); border-radius: 50%; animation: spin 1s linear infinite; }
.loader-text { margin-left: 15px; font-size: 1.5rem; font-weight: 600; letter-spacing: 1px; }
@keyframes spin { 100% { transform: rotate(360deg); } }

/* Navbar */
#navbar {
    position: sticky; top: 0; z-index: 100;
    background: rgba(5, 7, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 0; transition: 0.3s;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 700; color: var(--text-main); }
.logo span { color: var(--primary); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-weight: 500; color: var(--text-muted); position: relative; }
.nav-links a.active, .nav-links a:hover { color: var(--text-main); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary)); transition: 0.3s;
}
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.mobile-toggle { display: none; background: none; border: none; color: var(--text-main); font-size: 1.5rem; cursor: pointer; }

/* Buttons */
.btn-primary, .btn-glow, .btn-outline {
    padding: 12px 28px; border-radius: 50px; font-weight: 600; cursor: pointer; display: inline-block; text-align: center;
}
.btn-primary { background: var(--primary); color: var(--bg-dark); }
.btn-glow { background: linear-gradient(90deg, var(--primary), var(--secondary)); color: #fff; box-shadow: 0 0 15px rgba(0,229,255,0.4); transition: transform 0.3s, box-shadow 0.3s; }
.btn-glow:hover { transform: translateY(-2px); box-shadow: 0 5px 25px rgba(0,229,255,0.6); }
.btn-outline { border: 2px solid var(--glass-border); color: var(--text-main); background: transparent; }
.btn-outline:hover { border-color: var(--primary); background: rgba(0,229,255,0.08); }
.full-width { width: 100%; margin-top: 20px; }

/* Hero */
.hero { min-height: 90vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px; }
.particles-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.blob { position: absolute; width: 400px; height: 400px; border-radius: 50%; filter: blur(80px); opacity: 0.3; z-index: 0; animation: float 10s infinite ease-in-out; }
.blob-1 { background: var(--primary); top: -10%; right: -10%; }
.blob-2 { background: var(--secondary); bottom: -15%; left: -5%; animation-delay: 2s; }
@keyframes float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

.hero-content { text-align: center; position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.hero-title { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; }
.hero-sub { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-visuals { margin-top: 40px; display: flex; justify-content: center; }
.floating-server { width: 100%; max-width: 350px; height: auto; animation: float 6s infinite ease-in-out; }
@keyframes animate-dash { to { stroke-dashoffset: 0; } }

/* Pricing */
.pricing-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; background: rgba(255,255,255,0.05); padding: 6px; border-radius: 50px; width: max-content; margin-left: auto; margin-right: auto; }
.tab-btn { padding: 8px 20px; background: transparent; color: var(--text-muted); border: none; border-radius: 50px; cursor: pointer; font-weight: 500; transition: 0.3s; }
.tab-btn.active { background: var(--primary); color: var(--bg-dark); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; align-items: center; }
.pricing-card { padding: 32px; position: relative; transition: transform 0.3s, box-shadow 0.3s; }
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 12px 40px rgba(0,229,255,0.2); }
.pricing-card.popular { border: 2px solid var(--primary); }
.badge-popular { position: absolute; top: -12px; right: 20px; background: var(--primary); color: var(--bg-dark); padding: 6px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.price-container { display: flex; align-items: baseline; margin: 16px 0 24px; gap: 5px; }
.price-container .currency { font-size: 1.5rem; font-weight: 500; color: var(--primary); }
.price-container .price { font-size: 2.8rem; font-weight: 800; color: #fff; }
.price-container .period { font-size: 0.9rem; color: var(--text-muted); }
.features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.features li { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.95rem; }
.features li i { color: var(--primary); font-size: 0.8rem; }

/* WP Hosting & Features */
.feature-grid, .services-grid, .infra-grid, .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.feature-card, .service-card, .infra-item, .why-card { padding: 24px; text-align: center; transition: 0.3s; }
.feature-card:hover, .service-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.feature-card i, .service-card i, .infra-item i, .why-card i { font-size: 2rem; margin-bottom: 12px; background: linear-gradient(90deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.feature-card h4, .service-card h4, .infra-item span, .why-card span { font-weight: 600; margin-bottom: 8px; }
.infra-grid, .why-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.wp-banner { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; padding: 30px; margin-top: 40px; align-items: center; }
.wp-content ul, .wp-why ul { padding-left: 20px; margin-top: 10px; color: var(--text-muted); }
.wp-why h4 { color: var(--primary); margin-bottom: 10px; }
.wp-banner li::marker { color: var(--secondary); }

/* Bonus */
.bonus-glass { padding: 40px; text-align: center; position: relative; overflow: hidden; }
.bonus-highlight { font-size: 1.3rem; color: var(--text-main); margin-bottom: 24px; }
.bonus-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 24px; }
.bonus-card { background: rgba(255,255,255,0.05); padding: 16px; border-radius: 12px; min-width: 140px; transition: 0.3s; }
.bonus-card:hover { background: rgba(255,255,255,0.1); }
.bonus-card i { font-size: 1.5rem; color: var(--primary); margin-bottom: 8px; display: block; }
.badge-free { background: linear-gradient(90deg, var(--secondary), var(--primary)); color: #fff; padding: 12px 24px; border-radius: 50px; font-weight: 800; display: inline-block; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); box-shadow: 0 0 10px var(--secondary); } 50% { transform: scale(1.05); box-shadow: 0 0 25px var(--primary); } }

/* Security */
.security-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.security-card { padding: 32px; text-align: center; transition: 0.4s; }
.glow-hover:hover { box-shadow: 0 0 25px rgba(0,229,255,0.4); border-color: var(--primary); }
.icon-large { font-size: 3rem; margin-bottom: 16px; background: linear-gradient(180deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.security-card p { color: var(--text-muted); margin-top: 10px; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; text-align: center; padding: 40px; background: linear-gradient(180deg, rgba(16,20,28,0.5), rgba(16,20,28,0.8)); border-radius: var(--radius); border: 1px solid var(--glass-border); }
.stat-item h3 { font-size: 2.5rem; display: inline; font-weight: 700; background: linear-gradient(90deg, #fff, var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-item p { color: var(--text-muted); font-size: 0.9rem; margin-top: 5px; }

/* Testimonials */
.testimonial-slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 24px; padding: 10px 0; scrollbar-width: none; }
.testimonial-slider::-webkit-scrollbar { display: none; }
.testimonial-card { min-width: 300px; padding: 28px; scroll-snap-align: center; flex-shrink: 0; }
.quote { font-style: italic; margin-bottom: 20px; color: #d0d4dc; font-size: 1.05rem; }
.author { display: flex; align-items: center; gap: 12px; }
.author img { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--primary); }
.author h4 { font-size: 1rem; margin-bottom: 2px; }
.author span { font-size: 0.8rem; color: var(--text-muted); }

/* FAQ */
.faq-container { padding: 0 20px; }
.faq-item { border-bottom: 1px solid var(--glass-border); padding: 18px 0; cursor: pointer; }
.faq-question { display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 1.05rem; }
.faq-question i { transition: 0.3s; color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s; color: var(--text-muted); padding-top: 0; }
.faq-item.active .faq-answer { max-height: 200px; padding-top: 10px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* CTA */
.cta-section { padding: 60px 0; text-align: center; }
.cta-content { max-width: 700px; margin: 0 auto; padding: 48px; }
.cta-content h2 { margin-bottom: 16px; }
.cta-content p { color: var(--text-muted); margin-bottom: 28px; }

/* Footer */
footer { border-top: 1px solid var(--glass-border); padding: 60px 0 20px; background: #030406; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin-bottom: 40px; }
.footer-col h3 { font-size: 1.5rem; margin-bottom: 10px; }
.footer-col h3 span { color: var(--primary); }
.footer-col p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.social-icons { display: flex; gap: 12px; }
.social-icons a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.social-icons a:hover { background: var(--primary); color: var(--bg-dark); }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: var(--text-muted); }
.footer-col ul a:hover { color: var(--primary); }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input { flex: 1; padding: 10px; border-radius: 50px; background: rgba(255,255,255,0.08); border: 1px solid var(--glass-border); color: #fff; outline: none; }
.newsletter-form button { width: 40px; border-radius: 50%; border: none; background: var(--primary); color: var(--bg-dark); cursor: pointer; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid var(--glass-border); color: var(--text-muted); font-size: 0.85rem; }

/* Floating Buttons */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; background: #25D366; width: 60px; height: 60px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 28px; box-shadow: 0 4px 12px rgba(37,211,102,0.4); z-index: 999;
    transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.scroll-top {
    position: fixed; bottom: 30px; right: 100px; background: var(--secondary); width: 45px; height: 45px;
    border-radius: 50%; border: none; color: #fff; font-size: 18px; cursor: pointer;
    opacity: 0; pointer-events: none; transition: 0.3s; z-index: 998;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { position: fixed; top: 0; right: -100%; width: 250px; height: 100vh; background: #080a0d; flex-direction: column; padding: 80px 30px; transition: 0.3s; border-left: 1px solid var(--glass-border); }
    .nav-links.active { right: 0; }
    .mobile-toggle { display: block; }
    .hero-title { font-size: 2.2rem; }
    .hero-sub { font-size: 1rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.popular { order: -1; }
    .scroll-top { right: 20px; bottom: 100px; }
}