@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg: #050507;
    --bg-card: #0f0f16;
    --bg-card-hover: #161622;
    --bg-elevated: #13131f;
    --border: #1e1e2e;
    --border-hover: #2a2a40;
    --text: #e2e8f0;
    --text-dim: #94a3b8;
    --accent: #00ff88;
    --accent-dim: #00cc6a;
    --accent-glow: rgba(0, 255, 136, 0.15);
    --gold: #ffd700;
    --danger: #ff3366;
    --blue: #00d4ff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #222; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #333; }

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

/* ANIMATIONS */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
}
@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* PARTICLES BG */
#particles {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* SPLASH OVERLAY */
.splash-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 0;
    z-index: 10000;
    background: rgba(5, 5, 7, 0.95);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    overflow: hidden;
}
.splash-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.splash-content {
    text-align: center;
    padding: 0 24px;
    max-width: 100%;
    box-sizing: border-box;
    animation: fadeInUp 0.6s ease-out;
}
.splash-logo {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.splash-logo span { color: var(--accent); text-shadow: 0 0 30px rgba(0, 255, 136, 0.3); }
.splash-tag {
    font-size: 1rem;
    color: var(--text-dim);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.splash-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    color: #000;
    border: none;
    padding: 18px 48px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.35);
    animation: pulse 2s infinite;
}
.splash-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.5);
}
.splash-hint {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-dim);
    opacity: 0.7;
}

/* TOP BAR */
.topbar {
    background: linear-gradient(90deg, rgba(0,255,136,0.08), rgba(0,212,255,0.05), rgba(0,255,136,0.08));
    background-size: 200% 100%;
    animation: gradientShift 8s ease infinite;
    border-bottom: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.78rem;
    padding: 10px 0;
    position: relative;
    z-index: 2;
}
.topbar-inner { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.topbar span { display: flex; align-items: center; gap: 8px; }
.topbar i { color: var(--accent); }

/* NAV */
.nav {
    background: rgba(5, 5, 7, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
}
.nav-logo span { color: var(--accent); text-shadow: 0 0 15px rgba(0, 255, 136, 0.4); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); text-shadow: 0 0 10px rgba(0, 255, 136, 0.3); }
.nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    color: #000;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: 0.3s;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.25);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0, 255, 136, 0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: var(--accent); border-radius: 2px; box-shadow: 0 0 5px var(--accent); transition: 0.3s; }

/* HERO */
.hero {
    min-height: 70vh;
    display: flex; align-items: flex-start; justify-content: center;
    padding: 30px 24px 20px;
    position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.06) 0%, transparent 40%),
                radial-gradient(circle at 70% 80%, rgba(0, 212, 255, 0.04) 0%, transparent 40%);
    pointer-events: none; z-index: 0;
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 900px; margin: 0 auto; }
.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0, 255, 136, 0.1); border: 1px solid rgba(0, 255, 136, 0.25);
    padding: 8px 20px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    color: var(--accent); margin-bottom: 28px;
    animation: fadeInUp 0.6s ease-out;
}
.hero-tag .pulse { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900; line-height: 1.1;
    color: #fff; margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}
.hero h1 span { color: var(--accent); text-shadow: 0 0 30px rgba(0, 255, 136, 0.3); }
.hero-desc {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-dim); max-width: 640px;
    margin: 0 auto 36px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}
.hero-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; animation: fadeInUp 0.6s ease-out 0.3s both; }
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px; border-radius: 10px;
    font-weight: 700; text-decoration: none; border: none;
    cursor: pointer; transition: 0.3s; font-size: 0.9rem;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    color: #000;
    box-shadow: 0 4px 25px rgba(0, 255, 136, 0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 35px rgba(0, 255, 136, 0.45); }
.btn-outline {
    background: transparent; color: var(--accent);
    border: 2px solid var(--accent);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.1);
}
.btn-outline:hover { background: rgba(0, 255, 136, 0.1); box-shadow: 0 0 25px rgba(0, 255, 136, 0.2); transform: translateY(-3px); }
.hero-stats { display: flex; justify-content: center; gap: 48px; animation: fadeInUp 0.6s ease-out 0.4s both; }
.stat { text-align: center; }
.stat h3 { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 900; color: var(--accent); text-shadow: 0 0 15px rgba(0, 255, 136, 0.3); }
.stat p { font-size: 0.8rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }

/* BANNER */
.banner {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
    position: relative; z-index: 1;
}
.banner-inner { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.banner-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.9rem; color: var(--text-dim); }
.banner-item i { color: var(--accent); font-size: 1.1rem; }

/* SECTIONS */
.section { padding: 100px 24px; position: relative; z-index: 1; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block; color: var(--accent);
    font-size: 0.7rem; font-weight: 800;
    letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 900; color: #fff; margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}
.section-sub { color: var(--text-dim); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 20px; padding: 40px 32px; text-align: center;
    transition: all 0.4s; position: relative; overflow: hidden;
}
.feat-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0; transition: 0.4s;
}
.feat-card:hover::before { opacity: 1; }
.feat-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); }
.feat-icon {
    width: 64px; height: 64px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--accent); margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.1);
}
.feat-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.feat-card p { color: var(--text-dim); font-size: 0.9rem; }

/* COMPARISON */
.compare-table { width: 100%; border-collapse: collapse; background: var(--bg-card); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.compare-table th { background: linear-gradient(135deg, rgba(0,255,136,0.1), rgba(0,212,255,0.05)); color: var(--accent); padding: 18px; font-size: 0.85rem; font-weight: 800; text-align: left; text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid var(--border); }
.compare-table td { padding: 16px 18px; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text-dim); }
.compare-table tr:last-child td { border: none; }
.compare-table .check { color: var(--accent); font-weight: 700; }
.compare-table .cross { color: var(--danger); font-weight: 700; }
.compare-table .highlight { background: rgba(0, 255, 136, 0.04); color: #fff; font-weight: 600; }

/* ELITE */
.elite-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.elite-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.elite-stat {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; padding: 28px; text-align: center;
    transition: 0.3s;
}
.elite-stat:hover { border-color: rgba(0, 255, 136, 0.3); transform: translateY(-4px); }
.elite-stat h4 { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 900; color: var(--accent); text-shadow: 0 0 15px rgba(0, 255, 136, 0.2); }
.elite-stat p { font-size: 0.8rem; color: var(--text-dim); margin-top: 4px; }

/* RESELLER */
.reseller-box {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 24px; padding: 60px 40px;
    text-align: center; position: relative; overflow: hidden;
}
.reseller-box::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.reseller-box h3 { font-family: 'Poppins', sans-serif; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; color: #fff; margin-bottom: 16px; position: relative; }
.reseller-box p { color: var(--text-dim); margin-bottom: 12px; position: relative; max-width: 700px; margin-left: auto; margin-right: auto; }
.reseller-box .highlight { color: var(--accent); font-weight: 700; }
.reseller-box .big { font-size: 2.2rem; color: var(--accent); font-weight: 900; text-shadow: 0 0 20px rgba(0, 255, 136, 0.3); }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.price-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 24px; padding: 32px 16px; text-align: center;
    position: relative; transition: all 0.4s;
}
.price-card:hover { transform: translateY(-8px); border-color: var(--border-hover); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5); }
.price-card.popular { border: 2px solid var(--accent); box-shadow: 0 0 40px rgba(0, 255, 136, 0.08); }
.price-card.popular::before {
    content: attr(data-badge); position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-dim)); color: #000;
    font-family: 'Poppins', sans-serif; font-size: 0.7rem; font-weight: 900; padding: 8px 20px;
    border-radius: 20px; box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}
.price-duration { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 800; color: #fff; letter-spacing: 1px; margin-bottom: 8px; }
.price-num { font-family: 'Poppins', sans-serif; font-size: 3.2rem; font-weight: 900; color: var(--accent); text-shadow: 0 0 20px rgba(0, 255, 136, 0.25); margin-bottom: 4px; }
.price-num span { font-size: 1rem; color: var(--text-dim); }
.price-note { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 24px; }
.price-features { list-style: none; text-align: left; margin-bottom: 28px; }
.price-features li { display: flex; align-items: center; gap: 10px; padding: 9px 0; font-size: 0.88rem; color: var(--text-dim); border-bottom: 1px solid rgba(255,255,255,0.03); }
.price-features li:last-child { border: none; }
.price-features .ok { color: var(--accent); font-weight: 700; }
.price-btn {
    display: block; width: 100%; padding: 14px; border-radius: 12px;
    font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 800;
    text-transform: uppercase; text-decoration: none; text-align: center;
    border: 2px solid var(--accent); color: var(--accent); background: transparent;
    transition: all 0.3s; letter-spacing: 0.5px;
}
.price-btn:hover { background: var(--accent); color: #000; box-shadow: 0 0 30px rgba(0, 255, 136, 0.3); }

/* TRUST */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 40px; }
.trust-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; padding: 32px 24px; text-align: center;
    transition: 0.3s;
}
.trust-card:hover { border-color: rgba(0, 255, 136, 0.2); transform: translateY(-4px); }
.trust-icon { font-size: 2rem; color: var(--accent); margin-bottom: 14px; text-shadow: 0 0 15px rgba(0, 255, 136, 0.2); }
.trust-card h4 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.trust-card p { font-size: 0.85rem; color: var(--text-dim); }

/* TESTIMONIALS - REAL CHAT CONVERSATIONS */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 24px; }
.testi-card {
    background: #0d1117; border: 1px solid var(--border);
    border-radius: 16px; padding: 0; transition: all 0.3s;
    overflow: hidden; position: relative;
    display: flex; flex-direction: column;
}
.testi-card:hover { border-color: rgba(0, 255, 136, 0.2); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3); }
.tg-topbar {
    background: #161b22; border-bottom: 1px solid var(--border);
    padding: 10px 16px; display: flex; align-items: center; gap: 12px;
    flex-shrink: 0;
}
.tg-back { color: #8b949e; font-size: 0.9rem; }
.tg-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 0.8rem; color: #fff;
    flex-shrink: 0;
}
.tg-info { flex: 1; min-width: 0; }
.tg-name { font-weight: 700; color: #fff; font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tg-status { font-size: 0.7rem; color: #8b949e; }
.tg-menu { color: #8b949e; font-size: 0.9rem; }
.tg-chat {
    padding: 12px 14px;
    background: linear-gradient(180deg, #0d1117 0%, #0a0e14 100%);
    flex: 1; overflow-y: auto;
    display: flex; flex-direction: column; gap: 2px;
}
.tg-bubble {
    padding: 10px 13px; max-width: 88%;
    position: relative; margin-bottom: 6px;
    border-radius: 18px;
    animation: fadeInUp 0.3s ease-out both;
}
.tg-bubble.tg-incoming {
    background: #21262d;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    margin-right: auto;
}
.tg-bubble.tg-outgoing {
    background: linear-gradient(135deg, #1a4a6e, #1a3a5c);
    border-bottom-right-radius: 4px;
    align-self: flex-end;
    margin-left: auto;
}
.tg-text { font-size: 0.86rem; line-height: 1.55; color: #e6edf3; position: relative; z-index: 1; }
.tg-meta {
    display: flex; justify-content: flex-end; align-items: center; gap: 4px;
    font-size: 0.68rem; color: #8b949e; margin-top: 4px; position: relative; z-index: 1;
}
.tg-meta .checks { color: #2AABEE; font-size: 0.75rem; letter-spacing: -2px; }
.tg-date {
    text-align: center; margin: 10px 0 6px; font-size: 0.7rem; color: #6e7681;
    font-weight: 600; letter-spacing: 0.5px;
}
.tg-footer {
    background: #161b22; border-top: 1px solid var(--border);
    padding: 10px 16px; display: flex; align-items: center; gap: 10px;
    flex-shrink: 0;
}
.tg-attach { color: #8b949e; font-size: 1.1rem; }
.tg-input {
    flex: 1; background: #0d1117; border-radius: 20px;
    padding: 8px 14px; font-size: 0.85rem; color: #6e7681;
}
.tg-mic { color: #8b949e; font-size: 1.1rem; }

/* FAQ */
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; margin-bottom: 12px; overflow: hidden; transition: 0.3s; }
.faq-item:hover { border-color: var(--border-hover); }
.faq-q { padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; color: #fff; font-size: 0.95rem; transition: 0.3s; }
.faq-q:hover { color: var(--accent); }
.faq-q i { transition: 0.3s; color: var(--text-dim); }
.faq-item.active .faq-q i { transform: rotate(180deg); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-a { max-height: 400px; padding: 0 24px 24px; }
.faq-a p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.7; }

/* CTA */
.cta-section { padding: 100px 24px; position: relative; z-index: 1; }
.cta-box {
    max-width: 850px; margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.06), rgba(0, 212, 255, 0.04));
    border: 1px solid rgba(0, 255, 136, 0.15); border-radius: 24px;
    padding: 60px 40px; text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.cta-box h2 { font-family: 'Poppins', sans-serif; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; color: #fff; margin-bottom: 12px; position: relative; }
.cta-box p { color: var(--text-dim); margin-bottom: 32px; position: relative; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* FOOTER */
.footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 60px 24px 30px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-brand { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 900; color: #fff; margin-bottom: 12px; }
.footer-brand span { color: var(--accent); text-shadow: 0 0 15px rgba(0, 255, 136, 0.2); }
.footer-desc { color: var(--text-dim); font-size: 0.85rem; line-height: 1.6; }
.footer-title { font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: 0.85rem; transition: 0.3s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid var(--border); color: var(--text-dim); font-size: 0.8rem; }
.footer-legal { margin-top: 10px; font-size: 0.7rem; color: rgba(148, 163, 184, 0.5); max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.5; }

/* MUSIC PLAYER FLOAT */
.music-player {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    background: rgba(15, 15, 22, 0.95);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}
.music-player:hover {
    border-color: var(--accent);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.15);
}
.music-btn {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 6px;
    transition: 0.3s;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.music-btn:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: scale(1.15);
}
.music-wave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
    width: 28px;
    justify-content: center;
}
.music-wave span {
    width: 3px;
    background: var(--accent);
    border-radius: 2px;
    animation: musicWave 1s ease-in-out infinite;
    animation-play-state: paused;
    height: 4px;
}
.music-wave.playing span { animation-play-state: running; }
.music-wave span:nth-child(1) { animation-delay: 0s; }
.music-wave span:nth-child(2) { animation-delay: 0.15s; }
.music-wave span:nth-child(3) { animation-delay: 0.3s; }
.music-wave span:nth-child(4) { animation-delay: 0.45s; }
@keyframes musicWave {
    0%, 100% { height: 4px; }
    50% { height: 18px; }
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}
.whatsapp-label {
    position: absolute;
    right: 70px;
    background: #25d366;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
    pointer-events: none;
}
.whatsapp-float:hover .whatsapp-label {
    opacity: 1;
    transform: translateX(0);
}

/* VPN APP SECTION */
.vpn-section { background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg) 100%); }
.vpn-banner {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 255, 136, 0.04));
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}
.vpn-banner-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #fff;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
    flex-shrink: 0;
}
.vpn-banner-text h4 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.vpn-banner-text p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.5; }
.vpn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vpn-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 20px; padding: 32px 24px;
    text-align: center; transition: all 0.4s;
}
.vpn-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); }
.vpn-icon {
    width: 72px; height: 72px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: #fff; margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.vpn-icon.openvpn { background: linear-gradient(135deg, #ff6b35, #ff8c5a); box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25); }
.vpn-icon.wireguard { background: linear-gradient(135deg, #22c55e, #16a34a); box-shadow: 0 8px 20px rgba(34, 197, 94, 0.25); }
.vpn-icon.proxies { background: linear-gradient(135deg, #3b82f6, #2563eb); box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25); }
.vpn-icon.ikev2 { background: linear-gradient(135deg, #a855f7, #9333ea); box-shadow: 0 8px 20px rgba(168, 85, 247, 0.25); }
.vpn-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.vpn-card p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 16px; }
.vpn-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dim);
}
.vpn-tag.openvpn-tag { color: #ff8c5a; border-color: rgba(255, 140, 90, 0.2); }
.vpn-tag.wireguard-tag { color: #4ade80; border-color: rgba(74, 222, 128, 0.2); }
.vpn-tag.proxies-tag { color: #60a5fa; border-color: rgba(96, 165, 250, 0.2); }
.vpn-tag.ikev2-tag { color: #c084fc; border-color: rgba(192, 132, 252, 0.2); }
.trust-banner {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(0, 212, 255, 0.04));
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
}
.trust-banner h3 { font-family: 'Poppins', sans-serif; font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.trust-banner p { color: var(--text-dim); max-width: 700px; margin: 0 auto; font-size: 1rem; line-height: 1.7; }
.trust-banner .highlight { color: var(--accent); font-weight: 700; }

/* RESPONSIVE */
@media (max-width: 1100px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 800px; }
    .vpn-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links { position: fixed; top: 72px; right: -100%; width: 100%; height: calc(100vh - 72px); background: rgba(5, 5, 7, 0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 40px 24px; gap: 24px; transition: right 0.4s ease; border-left: 1px solid var(--border); }
    .nav-links.active { right: 0; }
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .hero { padding: 20px 24px 20px; min-height: auto; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .elite-grid { grid-template-columns: 1fr; gap: 40px; }
    .section { padding: 70px 24px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
    .vpn-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .banner-inner { gap: 16px; }
    .cta-btns { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
}
