:root {
    --bg-dark: #070913;
    --primary-color: #8a2be2; /* Purple */
    --secondary-color: #4361ee; /* Blue */
    --accent-color: #00f5d4; /* Cyan */
    --text-light: #ffffff;
    --text-muted: #a3a8b7;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --font-main: 'Poppins', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Background Abstract Blobs */
.bg-blob {
    position: absolute;
    filter: blur(120px);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    animation: drift 20s infinite alternate ease-in-out;
}
.blob-purple { width: 500px; height: 500px; background: var(--primary-color); top: -100px; left: -100px; }
.blob-blue { width: 600px; height: 600px; background: var(--secondary-color); top: 40%; right: -200px; }
.blob-cyan { width: 400px; height: 400px; background: rgba(0, 245, 212, 0.3); bottom: -100px; left: 20%; }

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Utility Classes */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 100px 0; }
.text-gradient {
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 50px; font-weight: 700; }
.w-100 { width: 100%; display: block; text-align: center; padding: 15px; }
.relative-wrap { position: relative; overflow: hidden; }

/* Glassmorphism */
.glass-effect {
    background: rgba(7, 9, 19, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px 0 rgba(67, 97, 238, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Navbar */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 15px 0; }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.logo i { color: #d63384; font-size: 1.8rem; }
.logo span { font-weight: 300; }

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 1rem;
    border: none;
}
.btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.2); }
.btn-outline {
    border: 1px solid var(--accent-color);
    color: var(--text-light);
    background: transparent;
}
.btn-outline:hover { background: rgba(0, 245, 212, 0.1); }
.shadow-glow:hover { box-shadow: 0 0 20px rgba(138, 43, 226, 0.6); }

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding-top: 100px;
    gap: 40px;
}
.hero-content { flex: 1; max-width: 600px; }
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--accent-color);
}
.badge-dot { width: 8px; height: 8px; background: var(--accent-color); border-radius: 50%; box-shadow: 0 0 10px var(--accent-color); }
.hero-title { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; font-weight: 800; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image-wrapper { flex: 1; display: flex; justify-content: center; position: relative; }
.hero-image { max-width: 100%; height: auto; border-radius: 20px; }
.float-anim { animation: float 6s ease-in-out infinite; }
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Pricing Section */
.pricing-section { display: flex; justify-content: center; }
.pricing-card {
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 50px 30px;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(transparent, var(--primary-color), transparent 30%);
    animation: rotateGlow 4s linear infinite;
    z-index: -1; opacity: 0.2;
}
@keyframes rotateGlow { 100% { transform: rotate(1turn); } }
.pricing-header h3 { font-size: 1.5rem; color: var(--text-muted); margin-bottom: 10px; }
.price { font-size: 4rem; font-weight: 800; color: white; margin-bottom: 5px; text-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
.validity { font-size: 1rem; color: var(--accent-color); margin-bottom: 30px; font-weight: 500; }
.highlight-tag { display: inline-block; background: rgba(0, 245, 212, 0.1); color: var(--accent-color); padding: 8px 16px; border-radius: 20px; font-weight: 600; font-size: 0.9rem; }

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.feature-card { text-align: center; padding: 40px 20px; }
.icon-wrapper {
    width: 70px; height: 70px;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(67, 97, 238, 0.2));
    border-radius: 20px;
    font-size: 1.8rem;
    color: var(--accent-color);
}
.feature-card h4 { font-size: 1.2rem; margin-bottom: 15px; font-weight: 600; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Why Us Section */
.flex-row-reverse { display: flex; align-items: center; flex-direction: row-reverse; gap: 50px; }
.why-us-content { flex: 1; }
.benefit-list { list-style: none; }
.benefit-list li {
    font-size: 1.1rem; margin-bottom: 20px;
    display: flex; align-items: center; gap: 15px;
    background: rgba(255, 255, 255, 0.02); padding: 15px 20px;
    border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.05);
}
.glow-icon { color: var(--accent-color); font-size: 1.4rem; text-shadow: 0 0 10px var(--accent-color); }
.why-us-visual { flex: 1; min-height: 400px; display: flex; align-items: center; justify-content: center; position: relative; }
.abstract-shape {
    width: 250px; height: 250px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 8s ease-in-out infinite;
    box-shadow: 0 0 50px rgba(138, 43, 226, 0.5);
}
@keyframes morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}
.overlay-text { position: absolute; font-size: 2rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }

/* Important Note box */
.warning-box { border-color: rgba(255, 87, 34, 0.4); box-shadow: 0 0 30px rgba(255, 87, 34, 0.1); position: relative; }
.warning-box::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
    background: linear-gradient(to bottom, #ff5722, #ff9800);
}
.warning-header { font-size: 1.4rem; font-weight: 700; color: #ff9800; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.warning-list { list-style: none; padding-left: 20px; }
.warning-list li { margin-bottom: 15px; position: relative; color: var(--text-light); }
.warning-list li::before { content: '•'; position: absolute; left: -20px; color: #ff9800; font-size: 1.5rem; line-height: 1; }
.warning-list strong { color: white; }

/* FAQ Section */
.faq-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item { padding: 5px 20px; }
.faq-question {
    width: 100%; text-align: left; background: none; border: none; color: white;
    font-size: 1.1rem; font-weight: 600; padding: 20px 0; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; font-family: inherit;
}
.faq-question .icon { transition: transform 0.3s ease; color: var(--accent-color); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer p { color: var(--text-muted); padding-bottom: 20px; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-item.active .faq-answer { max-height: 200px; }

/* Bottom CTA */
.bottom-cta-content { padding: 80px 40px; }
.bottom-cta h2 { font-size: 3rem; margin-bottom: 20px; font-weight: 800; }
.bottom-cta p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; max-width: 600px; margin-inline: auto; }
.justify-center { justify-content: center; }

/* Footer */
.footer { border-top: 1px solid var(--glass-border); padding: 40px 0; text-align: center; margin-top: 50px; background: rgba(0,0,0,0.3); }
.footer-links { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent-color); }
.copyright { color: #6c757d; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 991px) {
    .hero { flex-direction: column; text-align: center; padding-top: 120px; }
    .hero-content { align-items: center; display: flex; flex-direction: column; }
    .hero-title { font-size: 2.8rem; }
    .flex-row-reverse { flex-direction: column; }
    .why-us-content { text-align: center; }
    .section-title { font-size: 2rem; }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .hero-title { font-size: 2.2rem; }
    .price { font-size: 3rem; }
    .navbar .logo { font-size: 1.2rem; }
    .btn { padding: 10px 20px; font-size: 0.9rem; }
    .bottom-cta h2 { font-size: 2rem; }
}
