html {
    scroll-behavior: smooth;
}

/* HERO */
.hero {
    background-color: #111;
    padding: 100px 0;
}

@media (max-width: 768px) {
    .hero {
        padding: 70px 20px;
        text-align: center;
    }
}

.hero h1 {
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
}

.hero-img {
    width: 100%;
    max-width: 340px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: float 4s ease-in-out infinite;
}

/* Space on mobile */
@media (max-width: 992px) {
    .hero-img {
        margin-top: 40px;
    }
}

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* CARDS */
.card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.pricing-card {
    background: #111;
    color: white;
}

.pricing-card .text-muted {
    color: #ccc !important;
}