/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

:root {
    --primary: #6366f1; /* Indigo */
    --secondary: #a855f7; /* Purple */
    --dark: #1e293b;
    --light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f3f4f6;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Header --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--glass);
    backdrop-filter: blur(10px); /* Frosted glass effect */
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    color: transparent; /* Text becomes the gradient */
    letter-spacing: -1px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    margin-left: 30px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

/* --- Hero Section --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 5%;
    min-height: 90vh;
    background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.1), transparent 40%),
                radial-gradient(circle at bottom left, rgba(99, 102, 241, 0.1), transparent 40%);
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-text p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 40px;
}

/* Abstract Shape CSS for the Image placeholder */
.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.floating-card {
    width: 400px;
    height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    animation: float 6s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.8);
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* --- Features Grid --- */
.features {
    padding: 100px 5%;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: left;
    transition: transform 0.3s;
    border: 1px solid #e2e8f0;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.icon {
    width: 50px;
    height: 50px;
    background: #e0e7ff;
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* --- Pricing --- */
.pricing {
    padding: 100px 5%;
    background: var(--dark);
    color: white;
    text-align: center;
}

.pricing-card {
    background: #334155;
    padding: 40px;
    border-radius: 20px;
    display: inline-block;
    width: 300px;
    margin: 20px;
    vertical-align: top;
    transition: transform 0.3s;
}

.pricing-card.popular {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0;
}

.pricing ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing ul li {
    margin-bottom: 10px;
    opacity: 0.9;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }
    .hero-text h1 { font-size: 2.5rem; }
    .floating-card { width: 100%; height: 300px; margin-top: 50px; }
    .pricing-card { width: 100%; margin: 20px 0; }
    .pricing-card.popular { transform: scale(1); }
}