/* Custom Variables & Root Settings */
:root {
    --primary-color: #0d6efd;
    --primary-hover: #0b5ed7;
    --success-color: #198754;
    --dark-color: #212529;
    --light-bg: #f8f9fa;
    --font-family: 'Inter', sans-serif;
}

body {
    font-family: var(--font-family);
    color: #495057;
    -webkit-font-smoothing: antialiased;
}

/* Utilities */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.btn-primary { 
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}
.btn {
    transition: all 0.3s ease;
}

.leading-tight { line-height: 1.2; }
.letter-spacing-1 { letter-spacing: 1px; }
.max-w-700 { max-width: 700px; }

.hover-white:hover { color: #fff !important; }
.transition { transition: all 0.3s ease; }

.cursor-pointer { cursor: pointer; }
.hover-bg-light:hover { background-color: #f8f9fa !important; }

/* Gradients */
.bg-light-gradient {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.bg-primary-gradient {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}
.bg-success-subtle { background-color: #d1e7dd !important; }
.bg-primary-subtle { background-color: #cfe2ff !important; }
.bg-info-subtle { background-color: #cff4fc !important; }
.bg-warning-subtle { background-color: #fff3cd !important; }

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}
.blur-blob {
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.15;
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Steps Section */
.step-number {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.step-box::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 2px;
    background-color: #dee2e6;
    z-index: -1;
}
@media (max-width: 991px) {
    .step-box::after {
        display: none;
    }
}
.step-box:last-child::after {
    display: none;
}

/* Partner Logos */
.grayscale-hover {
    filter: grayscale(100%);
    transition: filter 0.3s ease, opacity 0.3s ease;
}
.grayscale-hover:hover {
    filter: grayscale(0%);
    opacity: 1 !important;
}

/* Pricing Cards */
.pricing-card {
    transition: transform 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-5px);
}
.transform-scale {
    transform: scale(1.05);
    z-index: 2;
}
@media (max-width: 991px) {
    .transform-scale {
        transform: scale(1);
    }
}

/* Stats Section Pattern */
.bg-pattern {
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Custom Colors for Icons */
.text-purple { color: #6f42c1; }
