:root {
    --primary: #0052FF;
    --primary-dark: #003ECC;
    --secondary: #6366F1;
    --accent: #F59E0B;
    --dark: #0F172A;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--dark);
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-light {
    background-color: var(--light) !important;
}

/* Buttons */
.btn-premium {
    background: var(--primary);
    color: var(--white) !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 14px 0 rgba(0, 82, 255, 0.39);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 82, 255, 0.45);
    background: var(--primary-dark);
}

.btn-outline-premium {
    background: transparent;
    color: var(--primary) !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid var(--primary);
    transition: all 0.4s ease;
}

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

/* Hero Section */
.hero-spline {
    background: radial-gradient(circle at 0% 0%, rgba(0, 82, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    padding: 100px 0 140px;
    position: relative;
    overflow: hidden;
}

.hero-spline::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.08) 0%, transparent 70%);
    z-index: 0;
    border-radius: 50%;
}

/* Feature Cards */
.glass-card-premium {
    background: var(--white);
    border: 1px solid #f1f5f9;
    padding: 40px;
    border-radius: 24px;
    transition: all 0.4s ease;
    height: 100%;
}

.glass-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(0, 82, 255, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 18px;
    margin-bottom: 25px;
}

/* Grid Layouts */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

/* Animations */
.hover-float {
    transition: transform 0.3s ease;
}

.hover-float:hover {
    transform: translateY(-5px);
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .hero-spline {
        padding: 80px 0;
        text-align: center;
    }
}