/* ============================================
   NIZASMS - COMPLETE CSS
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0c15;
    color: #eef2ff;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1a1d2e; }
::-webkit-scrollbar-thumb { background: linear-gradient(135deg, #02A9F4, #A259FF); border-radius: 10px; }

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

/* ============================================
   PAGE LOADER
   ============================================ */
#pageLoader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a0c15;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s ease;
}

#pageLoader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(2, 169, 244, 0.15);
    border-top-color: #02A9F4;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    color: #a0a8c0;
    font-size: 14px;
    margin-top: 16px;
}

.loader-dots span {
    animation: dot 1.4s infinite;
    display: inline-block;
}
.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dot {
    0%, 80%, 100% { opacity: 0; }
    40% { opacity: 1; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #02A9F4, #A259FF);
    color: white;
    box-shadow: 0 4px 15px rgba(2, 169, 244, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(2, 169, 244, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(2, 169, 244, 0.5);
}

.btn-secondary:hover {
    background: rgba(2, 169, 244, 0.2);
    border-color: #02A9F4;
}

.btn-outline {
    background: transparent;
    border: 1px solid #02A9F4;
    color: #02A9F4;
}

.btn-outline:hover {
    background: rgba(2,169,244,0.1);
    transform: scale(1.05);
}

.btn-hindi {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    padding: 8px 18px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    font-family: 'Noto Sans Devanagari', sans-serif;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hindi:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px 0;
    background: rgba(10, 12, 21, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(2, 169, 244, 0.15);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(135deg, #fff, #02A9F4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo span {
    color: #02A9F4;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-list a {
    padding: 8px 16px;
    color: #a0a8c0;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-list a:hover {
    color: #02A9F4;
    background: rgba(2, 169, 244, 0.1);
}

.nav-list a.active {
    color: white;
    background: linear-gradient(135deg, #02A9F4, #A259FF);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 160px 0 80px;
    background: radial-gradient(circle at 20% 50%, #0a0c15, #05070f);
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(2,169,244,0.15), transparent);
    top: -150px;
    right: -150px;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(162,89,255,0.1), transparent);
    bottom: -200px;
    left: -200px;
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff, #02A9F4, #A259FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    max-width: 900px;
    margin: 0 auto;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 10px rgba(2,169,244,0.3); }
    50% { text-shadow: 0 0 30px rgba(2,169,244,0.6); }
}

.hero p {
    font-size: 18px;
    color: #a0a8c0;
    margin: 24px auto;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUSINESS VERIFICATION
   ============================================ */
.business-verify {
    padding: 30px 0;
    background: #0a0c15;
}

.verify-box {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.verify-box i {
    font-size: 32px;
    color: #10b981;
}

.verify-box h4 {
    color: #10b981;
    font-size: 16px;
    font-weight: 600;
}

.verify-box p {
    color: #a0a8c0;
    font-size: 14px;
    margin: 4px 0 0 0;
}

/* ============================================
   COMPLIANCE NOTICE
   ============================================ */
.compliance-notice-section {
    padding: 20px 0;
    background: #0a0c15;
}

.compliance-box {
    background: rgba(2, 169, 244, 0.05);
    border: 1px solid rgba(2, 169, 244, 0.2);
    border-radius: 16px;
    padding: 24px 28px;
}

.compliance-box h4 {
    color: #02A9F4;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.compliance-box ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px 20px;
}

.compliance-box ul li {
    font-size: 13px;
    color: #a0a8c0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.compliance-box ul li i {
    color: #02A9F4;
    font-size: 12px;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: white;
}

.section-header h2 span {
    background: linear-gradient(135deg, #02A9F4, #A259FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-header p {
    color: #a0a8c0;
    font-size: 18px;
    margin-top: 10px;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
    background: #0a0c15;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(18, 22, 40, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(2,169,244,0.15);
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s;
}

.feature-card:hover {
    border-color: #02A9F4;
    transform: translateY(-8px);
}

.feature-card .feature-icon {
    font-size: 48px;
    background: linear-gradient(135deg, #02A9F4, #A259FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: #a0a8c0;
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   STATS
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, #0a0c15, #1a1d2e);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    background: rgba(18, 22, 40, 0.6);
    backdrop-filter: blur(8px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(2,169,244,0.15);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #02A9F4;
}

.stat-label {
    font-size: 14px;
    color: #a0a8c0;
    margin-top: 4px;
}

/* ============================================
   RESELLER
   ============================================ */
.reseller {
    background: #0a0c15;
}

.reseller-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.reseller-card {
    background: linear-gradient(135deg, rgba(2,169,244,0.1), rgba(162,89,255,0.1));
    border: 1px solid rgba(2,169,244,0.2);
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s;
}

.reseller-card:hover {
    transform: translateY(-8px);
    border-color: #02A9F4;
}

.reseller-card i {
    font-size: 48px;
    color: #02A9F4;
}

.reseller-card h3 {
    font-size: 24px;
    color: white;
    margin: 15px 0;
}

.reseller-card .price {
    font-size: 32px;
    font-weight: 800;
    color: #02A9F4;
    margin: 15px 0;
}

.reseller-card .price span {
    font-size: 16px;
    font-weight: 400;
    color: #a0a8c0;
}

.reseller-card p {
    color: #a0a8c0;
    font-size: 14px;
    line-height: 1.6;
}

.profit-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 12px;
}

/* Calculator */
.calculator-box {
    background: rgba(18, 22, 40, 0.6);
    border-radius: 24px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.calculator-box h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.calculator-box h3 i {
    color: #02A9F4;
}

.calculator-input {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.calculator-input input {
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(2,169,244,0.3);
    background: rgba(0,0,0,0.3);
    color: white;
    font-size: 16px;
    width: 180px;
}

.calculator-input input:focus {
    outline: none;
    border-color: #02A9F4;
}

.calculator-result {
    font-size: 28px;
    font-weight: 700;
    color: #02A9F4;
}

.calculator-box small {
    color: #5a607a;
    font-size: 13px;
    display: block;
    margin-top: 8px;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    background: linear-gradient(135deg, #0a0c15, #1a1d2e);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.pricing-card {
    background: rgba(18, 22, 40, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(2,169,244,0.15);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #02A9F4;
}

.pricing-card.popular {
    border-color: #f59e0b;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f59e0b;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h4 {
    font-size: 20px;
    color: white;
    font-weight: 700;
}

.pricing-card .price {
    font-size: 42px;
    font-weight: 800;
    color: #02A9F4;
    margin: 20px 0;
}

.pricing-card .price span {
    font-size: 14px;
    font-weight: 400;
    color: #a0a8c0;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin: 25px 0;
}

.pricing-card ul li {
    margin: 10px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a0a8c0;
}

.pricing-card ul li i {
    color: #4CAF50;
    width: 20px;
}

/* ============================================
   SECURITY
   ============================================ */
.security {
    background: #0a0c15;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.security-item {
    text-align: center;
    padding: 30px;
    background: rgba(18,22,40,0.5);
    border-radius: 20px;
    border: 1px solid rgba(2,169,244,0.1);
    transition: all 0.3s;
}

.security-item:hover {
    transform: translateY(-5px);
    border-color: #02A9F4;
}

.security-item i {
    font-size: 40px;
    color: #02A9F4;
    margin-bottom: 15px;
}

.security-item h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.security-item p {
    color: #a0a8c0;
    font-size: 14px;
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #02A9F4, #A259FF);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: white;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin: 20px 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    background: #0a0c15;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(18, 22, 40, 0.5);
    border: 1px solid rgba(2,169,244,0.15);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    border-color: #02A9F4;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    color: white;
    transition: all 0.3s;
}

.faq-question:hover {
    color: #02A9F4;
}

.faq-question i {
    transition: all 0.3s;
    color: #02A9F4;
    font-size: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #a0a8c0;
    font-size: 14px;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px 24px;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    background: linear-gradient(135deg, #0a0c15, #1a1d2e);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    color: #a0a8c0;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-details {
    background: rgba(18, 22, 40, 0.5);
    border-radius: 16px;
    padding: 24px;
    margin-top: 20px;
    text-align: left;
}

.about-details div {
    color: #a0a8c0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.about-details div:last-child {
    border-bottom: none;
}

.about-details strong {
    color: white;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #05070f;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(2,169,244,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    font-size: 24px;
}

.footer-col h3 span {
    color: #02A9F4;
}

.footer-col p {
    color: #a0a8c0;
    font-size: 14px;
    line-height: 1.8;
    margin: 12px 0;
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #a0a8c0;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: #02A9F4;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #02A9F4;
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    gap: 10px;
    color: #a0a8c0;
    font-size: 13px;
    padding: 4px 0;
}

.contact-info li i {
    color: #02A9F4;
    width: 20px;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #5a607a;
    font-size: 13px;
}

.legal-notice {
    color: #5a607a !important;
    font-size: 12px !important;
    margin-top: 8px !important;
}

.footer-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 12px;
}

.footer-links a {
    color: #5a607a;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #02A9F4;
}

/* ============================================
   WHATSAPP FAB
   ============================================ */
.whatsapp-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
    z-index: 100;
    text-decoration: none;
    animation: pulse-ring 2s infinite;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

@keyframes pulse-ring {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 0; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .nav.open {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #0a0c15;
        padding: 20px;
        border-bottom: 1px solid rgba(2, 169, 244, 0.1);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .reseller-grid {
        grid-template-columns: 1fr;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .calculator-input {
        flex-direction: column;
        align-items: center;
    }
    
    .calculator-input input {
        width: 100%;
    }
    
    .compliance-box ul {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .social-links {
        justify-content: center;
    }
}