/* Landing Nav Links */
.landing-nav-link {
    transition: color 0.2s ease;
}

.landing-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: var(--bs-primary);
    transition: width 0.25s ease;
}

.landing-nav-link:hover {
    color: var(--bs-primary);
}

.landing-nav-link:hover::after {
    width: 100%;
}

/* Sticky polish */
.landing-header[data-kt-sticky="on"] {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Feature cards */
.feature-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* Pricing cards */
.pricing-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.pricing-card-featured {
    transform: scale(1.03);
}

#contact .card {
    border-radius: 0.75rem;
}