/*body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4 {
    font-weight: 600;
}

section {
    padding-top: 60px;
    padding-bottom: 60px;
}
    */
    /* SaaS Look & Feel */
body {
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    background: #f8fafc;
}

.hero {
    background: linear-gradient(120deg, #0d6efd, #4f46e5);
    color: white;
}

.hero h1 {
    font-weight: 700;
    letter-spacing: -1px;
}

.section {
    padding: 80px 0;
}

.card-saas {
    background: white;
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.card-saas:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.badge-saas {
    background: #e0e7ff;
    color: #1e40af;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.cta-box {
    background: linear-gradient(120deg, #0d6efd, #4f46e5);
    border-radius: 20px;
    color: white;
    padding: 60px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

