/* Global Styles */
:root {
    --primary-color: #39ff14;
    --secondary-color: #00f0ff;
    --bg-dark: #050505;
    --card-bg: rgba(20, 20, 20, 0.8);
    --text-light: #f0f0f0;
    --text-dim: #a0a0a0;
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Background Mesh */
.background-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 50%, rgba(57, 255, 20, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 240, 255, 0.05) 0%, transparent 25%);
    z-index: -1;
    pointer-events: none;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    height: 40px;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language Switcher */
.language-dropdown {
    position: relative;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-main);
    transition: var(--transition);
}

.lang-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.language-dropdown:hover .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-dim);
    transition: var(--transition);
}

.lang-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
}

.cta-header {
    background: rgba(0, 136, 204, 0.2); 
    color: #40B3E0;
    border: 1px solid rgba(0, 136, 204, 0.4);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.cta-header:hover {
    background: rgba(0, 136, 204, 0.4);
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.3);
    color: #fff;
}

/* Hero Section */
#hero {
    padding: 6rem 0;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-wrapper {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.8), rgba(0, 200, 10, 0.8));
    color: #000;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(57, 255, 20, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--text-light);
    background: rgba(255, 255, 255, 0.05);
}

.hero-visual {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.radar-mockup {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.2) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Features */
#features {
    padding: 5rem 0;
    background: #080808;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(25, 25, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(57, 255, 20, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    background: rgba(57, 255, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-icon { color: var(--secondary-color); background: rgba(0, 240, 255, 0.1); }
.settings-icon { color: #ff0055; background: rgba(255, 0, 85, 0.1); }

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.feature-extra {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #fff;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Customization */
#customization {
    padding: 6rem 0;
}

.customization-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.custom-visual {
    flex: 1;
}

.custom-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-text {
    flex: 1;
}

.custom-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.custom-text p {
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.feature-list li {
    list-style: none;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.feature-list i {
    color: var(--primary-color);
}

/* Footer */
footer {
    background: #020202;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand img {
    height: 30px;
    opacity: 0.8;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.footer-social a {
    color: var(--text-dim);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: #40B3E0;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content, .customization-layout {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-wrapper {
        justify-content: center;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .customization-layout {
        flex-direction: column-reverse;
    }
}

#particles-js { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
main { position: relative; z-index: 1; }
/* Pricing Section Styles */
.pricing-header { text-align: center; margin-bottom: 3rem; padding-top: 2rem; }
.pricing-header h1 { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 2rem; }
.features-check-list { display: flex; justify-content: center; gap: 2rem; font-size: 1.2rem; font-weight: 600; flex-wrap: wrap; margin-bottom: 2rem; }
.check-item { background: rgba(57, 255, 20, 0.1); color: var(--primary-color); padding: 0.5rem 1rem; border-radius: 4px; border: 1px solid rgba(57, 255, 20, 0.3); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.price-card { background: rgba(25, 25, 25, 0.7); border: 1px solid rgba(255, 255, 255, 0.05); padding: 2rem; border-radius: 8px; text-align: center; position: relative; transition: var(--transition); }
.price-card:hover { transform: translateY(-5px); border-color: var(--primary-color); box-shadow: 0 10px 30px rgba(57, 255, 20, 0.1); }
.price-card h3 { color: var(--text-dim); font-size: 1.1rem; margin-bottom: 0.5rem; font-weight: 500; }
.price-card .price { font-family: var(--font-heading); font-size: 2.5rem; color: var(--text-light); font-weight: 700; }
.price-card.popular { border-color: var(--primary-color); background: rgba(57, 255, 20, 0.05); }
.badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary-color); color: #000; padding: 0.2rem 0.8rem; border-radius: 4px; font-size: 0.8rem; font-weight: 700; }
.payment-info { text-align: center; margin-top: 2rem; background: rgba(25, 25, 25, 0.5); padding: 1.5rem; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.05); }
.payment-info p { margin: 0.5rem 0; color: var(--text-dim); }
.payment-info .warning { color: #ffcc00; }
.payment-info .recommended { color: var(--secondary-color); font-weight: 500; }

/* Video Section */
#video-demo { padding: 6rem 0; text-align: center; }
.video-container { max-width: 900px; margin: 0 auto; position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 0 50px rgba(57, 255, 20, 0.1); border: 1px solid rgba(57, 255, 20, 0.3); }
.video-container video { width: 100%; display: block; border-radius: 12px; }
.video-glow { position: absolute; top: -10px; left: -10px; right: -10px; bottom: -10px; z-index: -1; background: radial-gradient(circle, rgba(57, 255, 20, 0.2) 0%, transparent 60%); filter: blur(20px); }
