﻿.hero {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Badge */

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: #f8f0f3;
    color: var(--primary);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .5px;
}

/* Heading */

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.05;
    color: var(--dark);
    margin-bottom: 28px;
}

    .hero-title span { 
        color: var(--primary);
    }

/* Description */

.hero-text {
    max-width: 560px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 40px;
}

/* Features */

.hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 42px;
}

    .hero-features li {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 18px;
        font-size: 1.05rem;
        font-weight: 500;
    }

    .hero-features i {
        width: 24px;
        color: var(--primary);
        font-size: 18px;
    }

/* Buttons */

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* Image */

.hero-image {
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .12);
}

/* Responsive */

@media (max-width: 991px) {

    .hero {
        padding: 80px 0;
        text-align: center;
    }

    .hero-title {
        font-size: 54px;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        display: inline-block;
        text-align: left;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-top: 50px;
    }
}

@media (max-width: 576px) {

    .hero-title {
        font-size: 42px;
    }

    .hero-text {
        font-size: 1.05rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}
