:root {
    /* ——— Colors (Bolt Design System) ——— */
    --primary: #2563eb;
    /* Blue 600 */
    --primary-hover: #1d4ed8;
    /* Blue 700 */
    --primary-light: #eff6ff;
    /* Blue 50 */

    --secondary: #64748b;
    /* Slate 500 */

    --text-main: #0f172a;
    /* Slate 900 */
    --text-body: #475569;
    /* Slate 600 */

    --bg-white: #ffffff;
    --bg-gray-50: #f8fafc;
    /* Slate 50 */
    --bg-footer: #0f172a;
    /* Slate 900 */

    --border-color: #e2e8f0;
    /* Slate 200 */

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background-color: var(--bg-white);
    line-height: 1.6;
    padding-top: 80px;
    /* Clearance for fixed navbar */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
}

/* ——— Utilities ——— */
.text-primary {
    color: var(--primary) !important;
}

.bg-gray-light {
    background-color: var(--bg-gray-50);
}

.section-padding {
    padding: 80px 0;
}

.hero-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.badge-bolt {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

/* ——— Components ——— */

/* Navbar Bolt */
.navbar-bolt {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-link-bolt {
    color: var(--text-body);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.nav-link-bolt:hover,
.nav-link-bolt.active {
    color: var(--primary);
    background-color: var(--primary-light);
}

/* Dropdown Menu Bolt */
.dropdown-menu {
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    margin-top: 0.5rem;
    animation: fadeIn 0.2s ease-out;
}

.dropdown-item {
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: var(--text-body);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    transform: translateX(5px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn-primary-bolt {
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.btn-primary-bolt:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
    color: white;
}

.btn-outline-bolt {
    background-color: transparent;
    color: var(--text-body);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
}

.btn-outline-bolt:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: var(--primary-light);
}

/* Cards */
.card-bolt {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-bolt:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-light);
}

/* Icon Box */
.icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-box-blue {
    background-color: #eff6ff;
    color: #2563eb;
}

.icon-box-green {
    background-color: #f0fdf4;
    color: #16a34a;
}

.icon-box-orange {
    background-color: #fff7ed;
    color: #ea580c;
}

.icon-box-purple {
    background-color: #f3e8ff;
    color: #9333ea;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
    position: relative;
}

.avatar-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

/* Footer Bolt */
.footer-bolt {
    background-color: var(--bg-footer);
    color: #94a3b8;
    padding: 80px 0 40px;
}

.footer-bolt h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.social-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s;
}

.social-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Form Control Bolt */
.form-control-bolt {
    background-color: var(--bg-gray-50);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    width: 100%;
    transition: all 0.2s;
}

.form-control-bolt:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 4px var(--primary-light);
}

.contact-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

/* Logo Slider (Infinite Marquee) */
.logo-slider {
    overflow: hidden;
    padding: 2rem 0;
    background: white;
    white-space: nowrap;
    position: relative;
}

.logo-slider:before,
.logo-slider:after {
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    content: "";
    z-index: 2;
}

.logo-slider:before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.logo-slider:after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.logo-slide-track {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.logo-slide {
    display: inline-block;
    margin: 0 3rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    vertical-align: middle;
}

.logo-slide:hover {
    opacity: 1;
}

.logo-slide img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-slide:hover img {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}