.hero {
    position: relative;
    overflow: hidden;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 130px 0 70px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(47, 167, 160, 0.12),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #f8faff 0%,
            #ffffff 100%
        );
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;
}

/* =========================
   CONTENT
========================= */

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;

    padding: 8px 14px;

    margin-bottom: 22px;

    border-radius: 999px;

    background: rgba(47, 167, 160, 0.1);
    color: var(--secondary);

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.3px;
}

.hero-title {
    max-width: 650px;

    margin-bottom: 22px;

    font-size: clamp(42px, 5vw, 68px);
    font-weight: 800;

    letter-spacing: -2px;

    color: var(--heading);
}

.hero-title span {
    color: var(--primary);
}

.hero-description {
    max-width: 580px;

    margin-bottom: 32px;

    font-size: 17px;

    color: var(--text);

    line-height: 1.8;
}

/* =========================
   BUTTONS
========================= */

.hero-actions {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 42px;
}

.btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 24px;

    border-radius: 14px;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;

    box-shadow: 0 10px 30px rgba(32, 54, 109, 0.18);
}

.btn-primary:hover {
    background: var(--primary-dark);

    transform: translateY(-3px);
}

.btn-secondary {
    background: #ffffff;

    color: var(--primary);

    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--secondary);

    color: var(--secondary);

    transform: translateY(-3px);
}

.play-icon {
    width: 28px;
    height: 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(47, 167, 160, 0.12);

    color: var(--secondary);

    font-size: 10px;
}

/* =========================
   STATISTICS
========================= */

.hero-stats {
    display: flex;
    align-items: center;

    gap: 38px;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.hero-stat-item strong {
    font-family: "Manrope", sans-serif;

    font-size: 25px;
    font-weight: 800;

    color: var(--primary);
}

.hero-stat-item span {
    margin-top: 2px;

    font-size: 12px;

    color: var(--text);
}

/* =========================
   HERO IMAGE
========================= */

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin-left: auto;
}

.hero-image {
    position: relative;
    z-index: 2;

    width: 100%;
    aspect-ratio: 4 / 3;

    object-fit: cover;
    object-position: center;

    border-radius: 42px 42px 90px 42px;

    box-shadow: 0 30px 70px rgba(32, 54, 109, 0.15);
}

/* =========================
   DECORATION
========================= */

.hero-shape {
    position: absolute;

    border-radius: 50%;
}

.hero-shape-one {
    width: 170px;
    height: 170px;

    top: -35px;
    right: -40px;

    background: rgba(47, 167, 160, 0.15);
}

.hero-shape-two {
    width: 120px;
    height: 120px;

    left: -40px;
    bottom: -25px;

    background: rgba(32, 54, 109, 0.08);
}

/* =========================
   FLOATING CARD
========================= */

.hero-floating-card {
    position: absolute;

    z-index: 3;

    left: -55px;
    bottom: 45px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 15px 18px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 18px 50px rgba(32, 54, 109, 0.14);
}

.floating-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    background: rgba(47, 167, 160, 0.12);

    color: var(--secondary);

    font-size: 20px;
}

.hero-floating-card div {
    display: flex;
    flex-direction: column;
}

.hero-floating-card strong {
    font-size: 13px;

    color: var(--primary);
}

.hero-floating-card span:last-child {
    font-size: 10px;

    color: var(--text);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .hero {
        min-height: auto;

        padding-top: 120px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title,
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-stats {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-inline: auto;
    }
}

@media (max-width: 600px) {

    .hero {
        padding: 105px 0 55px;
    }

    .hero-title {
        font-size: 40px;

        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 20px;

        justify-content: space-between;
    }

    .hero-stat-item strong {
        font-size: 21px;
    }

    .hero-stat-item span {
        font-size: 10px;
    }

    .hero-image {
        height: 430px;

        border-radius: 28px 28px 60px 28px;
    }

    .hero-floating-card {
        left: 15px;
        bottom: 18px;
    }
}