html {
    scroll-behavior: smooth;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* CARD HOVER EFFECTS */
.card-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.10);
}

/* BUTTON STYLES */
.btn-primary {
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(5,150,105,0.30);
}

/* HERO SECTION */
h1 {
    letter-spacing: -0.5px;
}

/* SECTION SPACING */
section {
    transition: background 0.3s ease;
}

/* SERVICE CARDS */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* STEP CIRCLES */
.step-circle {
    transition: all 0.3s ease;
}

.step-circle:hover {
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
}

/* PRICING CARDS */
.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

/* MOBILE MENU */
.mobile-menu {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FOOTER */
footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}