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

:root {
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --secondary: #7c3aed;
    --dark: #0f172a;
    --darker: #f8fafc;
    --glass: #ffffff;
    --glass-border: #e2e8f0;
    --text: #0f172a;
    --text-muted: #475569;
    --success: #059669;
    --danger: #dc2626;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    background-color: var(--darker);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Background blur decorations */
.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.08;
    filter: blur(80px);
    z-index: -1;
}

.blob-1 { top: -100px; right: -100px; }
.blob-2 { bottom: 20%; left: -100px; background: radial-gradient(circle, var(--secondary) 0%, transparent 70%); }

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

header {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    max-width: 100%;
    text-align: center;
}

.nav-btn:hover {
    transform: translateY(-2px);
    background: var(--primary-hover);
}

.nav-btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--text);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid var(--glass-border);
}

.nav-btn-outline:hover {
    background: var(--glass);
    border-color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.gradient-text {
    background: linear-gradient(to right, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); /* Lighter shadow for light mode */
    border: 1px solid var(--glass-border);
}

/* Comparison Section */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 6rem;
}

.comp-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 24px;
    transition: 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.comp-card.featured {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.comp-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.comp-list {
    list-style: none;
    margin: 2rem 0;
}

.comp-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.icon-check { color: var(--success); }
.icon-cross { color: var(--danger); }

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.feature-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

/* Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.step-card {
    background: var(--glass);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    position: relative;
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.step-num {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 3rem;
    right: 3rem; /* Safe distance on desktop */
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: 0.3s;
}

.floating-wa:hover {
    transform: scale(1.1);
}

footer {
    padding: 4rem 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
}

footer p {
    max-width: 800px;
    margin: 0.5rem auto;
}

.cta-section {
    padding: 4rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    margin: 4rem 0;
    overflow: hidden;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: 1.5rem;
}

.cta-section p {
    max-width: 100%;
    margin: 0 auto 2.5rem;
    font-size: 1rem;
}

.cta-btn {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
    .hero {
        padding: 3rem 0;
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { margin: 0 auto 2.5rem; font-size: 1.1rem; }
    .comparison-grid { grid-template-columns: 1fr; }
    .comp-card { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    .container { 
        padding: 0 1rem; 
        overflow: hidden;
    }
    header { 
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 0;
    }
    .hero-content h1 { font-size: 2rem; }
    .cta-section { 
        padding: 2.5rem 1rem;
        margin: 2rem 0; 
    }
    .nav-btn { 
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
    }
    header .nav-btn, header .nav-btn-outline {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    .nav-links {
        gap: 0.5rem;
    }
    .floating-wa {
        bottom: 1.5rem;
        right: 1.5rem; /* Tucked comfortably inside the mobile screen */
    }
}

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

.float-anim {
    animation: float 4s ease-in-out infinite;
}
