/* Fonts */
:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Light Glass Theme Colors */
    --primary: #6366F1; /* Indigo 500 */
    --primary-dark: #4F46E5; /* Indigo 600 */
    --secondary: #A855F7; /* Purple 500 */
    --accent: #F472B6; /* Pink 400 */

    --bg-main: #F1F5F9; /* Slate 100 */
    --bg-card: rgba(255, 255, 255, 0.4);
    --text-main: #0F172A; /* Slate 900 */
    --text-muted: #475569; /* Slate 600 */

    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

    --gradient-main: linear-gradient(135deg, #6366F1 0%, #A855F7 100%);
    --gradient-glow: linear-gradient(135deg, #6366F1 0%, #EC4899 50%, #A855F7 100%);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    /* Soft colorful background for glass effect */
    background-image: 
        radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(168, 85, 247, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(244, 114, 182, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(99, 102, 241, 0.1) 0px, transparent 50%);
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Utilities */
.text-gradient {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn.full-width {
    width: 100%;
}

/* Navbar */
.navbar {
    padding: 16px 0;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    box-shadow: var(--glass-shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-main);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 32px;
    }

    .nav-links a {
        color: var(--text-muted);
        font-weight: 500;
    }

    .nav-links a:hover {
        color: var(--primary);
    }
}

/* Hero */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1.2fr 1fr;
    }
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-main);
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 4rem;
    }
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--text-main);
    color: white;
    padding: 10px 24px;
    border-radius: 16px;
    min-width: 170px;
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.2);
}

.store-btn.outline {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

.store-btn.white {
    background: white;
    color: black;
}

.store-btn.white-outline {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatars {
    display: flex;
    margin-left: 10px;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-left: -12px;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

/* Hero Image Mockup */
.hero-image-container {
    position: relative;
    z-index: 10;
}

.hero-mockup-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.2);
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    border: 4px solid white;
}

.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
}

.blob-1 {
    background: var(--primary);
    top: -50px;
    right: -50px;
    animation: liquid 12s infinite alternate ease-in-out;
}

.blob-2 {
    background: var(--accent);
    bottom: -50px;
    left: -50px;
    animation: liquid 15s infinite alternate-reverse ease-in-out;
}

.blob-3 {
    background: var(--secondary);
    top: 40%;
    left: 20%;
    width: 250px;
    height: 250px;
    animation: liquid 10s infinite alternate ease-in-out;
}

@keyframes liquid {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(0, 0) scale(1); }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: translate(30px, 50px) scale(1.1); }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(0, 0) scale(1); }
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 32px;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.5);
    border-color: var(--primary);
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.icon-box span {
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: center;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 48px 40px;
    box-shadow: var(--glass-shadow);
    position: relative;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 10;
    background: rgba(255, 255, 255, 0.7);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 20px 0;
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-weight: 500;
}

.features-list li .material-icons-round {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    padding: 4px;
    border-radius: 50%;
    font-size: 18px;
}

/* Testimonials */
.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 32px;
    border-radius: 28px;
    box-shadow: var(--glass-shadow);
}

/* CTA */
.cta-box {
    background: var(--gradient-main);
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    pointer-events: none;
}

/* Footer */
footer {
    background: white;
    padding: 100px 0 40px;
    border-top: 1px solid #E2E8F0;
}

.footer-bottom {
    border-top: 1px solid #E2E8F0;
    padding-top: 32px;
    margin-top: 60px;
    color: var(--text-muted);
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .navbar {
        top: 10px;
        width: 95%;
        padding: 12px 0;
    }
    .hero {
        padding-top: 140px;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
}
