:root {
    --primary: #0052FF;
    --secondary: #00a3ff;
    --dark: #1e293b;
    --light: #f8fafc;
    --border: #e2e8f0;
    --text: #334155;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background-color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.bento-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    transition: transform 0.2s ease;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    border-bottom: 1px solid var(--border);
    background: white;
    sticky: top;
}

.logo img { height: 40px; }

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
}

.btn-primary {
    background: var(--primary);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
}

.btn-ghost {
    color: var(--primary) !important;
    font-weight: 600;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 5rem 5%;
    background: radial-gradient(circle at center, #f0f7ff 0%, #ffffff 100%);
}

h1 { font-size: 3.5rem; color: var(--dark); line-height: 1.1; margin-bottom: 1.5rem; }

/* Responsive */
/* Updated Responsive Section */
@media (max-width: 768px) {
    h1 { 
        font-size: 2.2rem; 
        padding: 0 10px;
    }

    nav {
        flex-direction: column; /* Stacks logo over links */
        padding: 1.5rem 5%;
    }

    .logo {
        margin-bottom: 1.2rem;
    }

    .nav-links { 
        display: flex; /* Forces them to show */
        flex-wrap: wrap; /* Lets them wrap to a second line if the phone is narrow */
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .nav-links a { 
        margin: 0; /* Removes that large 2rem left margin */
        font-size: 0.9rem;
        padding: 5px 10px;
    }

    /* Makes the "Book a Demo" button fit better on mobile */
    .btn-primary {
        padding: 0.6rem 1rem;
        border-radius: 8px;
    }
}