/* Color Palette & Variables */
:root {
    --purple: #7C3AED;
    --blue: #06B6D4;
    --pink: #EC4899;
    --orange: #F97316;
    --green: #10B981;
    
    --bg-main: #F8FAFC;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-soft: 0 10px 30px -10px rgba(124, 58, 237, 0.15);
    --shadow-hover: 0 20px 40px -10px rgba(124, 58, 237, 0.25);
    
    --gradient-btn: linear-gradient(135deg, #FF6B6B, #FF007F);
    --gradient-text: linear-gradient(135deg, var(--purple), var(--blue));
}

/* Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, .logo, .price, .btn {
    font-family: 'Poppins', sans-serif;
}

/* Background Blobs */
.bg-shapes {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(to bottom, #ffffff, #F1F5F9);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 10s infinite alternate ease-in-out;
}

.blob-1 { top: -10%; left: -10%; width: 500px; height: 500px; background: var(--purple); opacity: 0.15; }
.blob-2 { bottom: -20%; right: -10%; width: 600px; height: 600px; background: var(--blue); opacity: 0.15; }
.blob-3 { top: 40%; left: 40%; width: 400px; height: 400px; background: var(--pink); opacity: 0.1; animation-delay: -5s; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

/* Utilities */
.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-padding { padding: 6rem 0; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-3 { margin-top: 3rem; }
.w-100 { width: 100%; display: flex; justify-content: center; }

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-muted { color: var(--text-muted); }
.text-blue { color: var(--blue); }
.text-purple { color: var(--purple); }
.text-orange { color: var(--orange); }
.text-green { color: var(--green); }
.text-gradient-icon { background: var(--gradient-btn); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Glassmorphism Elements */
.glass-nav, .glass-card, .glass-tag {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
}

.glass-card {
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.float-hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

/* Buttons */
.btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-btn);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 0, 127, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 12px 25px rgba(255, 0, 127, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--purple);
    border: 2px solid var(--purple);
}

.btn-secondary:hover {
    background: rgba(124, 58, 237, 0.05);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15);
}

.btn-large { font-size: 1.1rem; padding: 16px 36px; }
.hover-lift:hover { transform: translateY(-3px); }

/* Navbar */
nav {
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}
.nav-container {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 5%; max-width: 1200px; margin: 0 auto; height: 70px;
}
.logo { font-size: 1.8rem; font-weight: 800; color: var(--text-dark); text-decoration: none; }
.navbar-logo {
    height: 45px;
    width: 55px;
    object-fit: contain;
    /* display: block; */
}
.nav-links { list-style: none; display: flex; gap: 2.5rem; }
.nav-links a { color: var(--text-dark); text-decoration: none; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--purple); }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--text-dark); }

.nav-scrolled {
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.glass-nav {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding-top: 100px;
}
.badge-pill {
    display: inline-block;
    padding: 8px 20px; border-radius: 50px;
    font-size: 0.9rem; font-weight: 600;
    margin-bottom: 1.5rem;
    background: rgba(255, 107, 107, 0.1);
    color: #FF007F; border: 1px solid rgba(255, 0, 127, 0.2);
}
.trust-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--green); border: 1px solid rgba(16, 185, 129, 0.2);
}
.hero-title { font-size: 4rem; line-height: 1.2; margin-bottom: 1.5rem; letter-spacing: -1px; }
.hero .subtext { font-size: 1.25rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 2.5rem auto; }
.button-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.align-center { align-items: center; }

/* Icons inside cards */
.icon-circle {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 1.5rem;
}
.icon-blue { background: rgba(6, 182, 212, 0.1); color: var(--blue); }
.icon-purple { background: rgba(124, 58, 237, 0.1); color: var(--purple); }
.icon-orange { background: rgba(249, 115, 22, 0.1); color: var(--orange); }
.icon-green { background: rgba(16, 185, 129, 0.1); color: var(--green); }

/* Lists */
.feature-list { list-style: none; margin-top: 1.5rem; text-align: left; }
.feature-list li { margin-bottom: 0.8rem; display: flex; align-items: center; gap: 10px; font-weight: 500; }

/* Pricing Cards */
.pricing-card { display: flex; flex-direction: column; height: 100%; text-align: center; }
.pricing-card .price { font-size: 3.5rem; font-weight: 800; margin: 1rem 0; }
.premium-card {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box, 
                var(--gradient-text) border-box;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
}
.premium-card:hover { transform: scale(1.05) translateY(-5px); }
.popular-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--gradient-btn); color: white;
    padding: 6px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 700;
}

/* Kit Grid */
.kit-grid { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.glass-tag {
    padding: 12px 20px; border-radius: 50px;
    display: flex; align-items: center; gap: 10px; font-weight: 600;
    transition: all 0.3s; cursor: default;
}
.glass-tag:hover { transform: scale(1.05); box-shadow: var(--shadow-soft); }

/* Footer */
.footer { background: white; padding: 4rem 0 2rem 0; text-align: center; border-top: 1px solid rgba(0,0,0,0.05); }
.social-links { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.social-icon {
    padding: 10px 20px; border-radius: 50px;
    background: var(--bg-main); color: var(--text-dark); text-decoration: none;
    font-weight: 500; transition: 0.3s; display: flex; align-items: center; gap: 8px;
}
.social-icon:hover { background: var(--purple); color: white; }
.footer-bottom { border-top: 1px solid rgba(0,0,0,0.05); padding-top: 1.5rem; color: var(--text-muted); font-size: 0.9rem; }
.l2{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}
.navbar-logo2 {
    height: 60px;
    width: 70px;
    object-fit: contain;
    /* display: block; */
}

/* Center CTA Button */
.center-cta {
    display: flex; justify-content: center; align-items: center;
}

.center-cta .btn-large {
    width: auto;
    display: inline-block;
}

/* Mobile Floating CTA */
.mobile-floating-btn {
    position: fixed; bottom: 20px; left: 5%; width: 90%;
    z-index: 999; text-align: center; display: none;
    font-size: 1.1rem; padding: 16px; border-radius: 50px;
}

.glow-more {
    background: linear-gradient(135deg, #7C3AED, #06B6D4);
    color: white;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.4),
                0 0 30px rgba(6, 182, 212, 0.3);
    animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 10px rgba(124, 58, 237, 0.3),
                    0 0 20px rgba(6, 182, 212, 0.2);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 20px rgba(124, 58, 237, 0.6),
                    0 0 40px rgba(6, 182, 212, 0.5);
        transform: scale(1.05);
    }
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.pulse-anim { animation: pulse 2s infinite; }

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive Media Queries (Mobile First) */
@media (max-width: 992px) {
    .grid-2, .grid-4 { grid-template-columns: 1fr; }
    .hero-title { font-size: 3rem; }
    .premium-card { transform: scale(1); margin-top: 2rem; }
    .premium-card:hover { transform: translateY(-5px); }
    .button-group { flex-direction: column; width: 100%; }
    .btn-large { width: 100%; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: block; }
    
    .nav-links.show {
        display: flex; flex-direction: column; position: absolute;
        top: 100%; left: 0; width: 100%;
        background: rgba(211, 203, 203, 0.75);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 2rem 0; text-align: center; border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }
    .mobile-floating-btn { display: block; }
    body { padding-bottom: 0px; } /* Prevent footer from being hidden behind float button */
}