@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* SaaS Modern Palette */
    --brand-primary: #6366f1;
    --brand-dark: #38393b;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
    
    /* Animation Speeds */
    --transition-base: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: -0.025em;
}

.fw-800 { font-weight: 800; }
.text-primary { color: var(--brand-primary) !important; }

/* 1. Hero Section Layout */
.hero-section {
    padding: 100px 0;
    background: radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.1), transparent),
                radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.05), transparent);
}

/* 2. Glassmorphism Card for Form */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

/* 3. Forms & Buttons */
.form-control, .form-select {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    font-weight: 500;
    transition: var(--transition-base);
}

.form-control:focus, .form-select:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.btn-saas {
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-primary.btn-saas {
    background-color: var(--brand-primary);
    border: none;
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.2);
}

.btn-primary.btn-saas:hover {
    background-color: #4f46e5;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}

/* 4. Feature Visuals (Simplified) */
.stat-card {
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 20px;
    background: #fff;
    text-align: center;
    transition: var(--transition-base);
}

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

.step-number {
    width: 32px;
    height: 32px;
    background: var(--brand-primary);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* 5. Trust Icons / Logos */
.trusted-by {
    filter: grayscale(1) opacity(0.6);
    transition: var(--transition-base);
}

.trusted-by:hover {
    filter: grayscale(0) opacity(1);
}

/* 6. Utility Overrides */
.bg-light { background-color: var(--bg-light) !important; }
.bg-dark { background-color: var(--brand-dark) !important; }

@media (max-width: 768px) {
    .hero-section { padding: 40px 0; }
    h1.display-3 { font-size: 2.5rem; }
}