/* Fire Destroyer - Hero Section Widget */

.fd-hero {
    background-color: #050505;
    color: #ffffff;
    padding: 70px 40px;
    box-sizing: border-box;
    overflow: hidden;
}

.fd-hero--full-bleed {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.fd-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.fd-hero--image-right .fd-hero__inner {
    flex-direction: row-reverse;
}

.fd-hero__media {
    flex: 1 1 380px;
    text-align: center;
    min-width: 280px;
}

.fd-hero__media img,
.fd-hero__media video {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.fd-hero__video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
}

.fd-hero__video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.fd-hero__content {
    flex: 1 1 420px;
    min-width: 280px;
}

.fd-hero__overline {
    margin: 0 0 10px;
    color: #f7941d;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.fd-hero__title {
    margin: 0;
    font-weight: 400;
    font-size: 44px;
    line-height: 1.15;
    color: #ededed;
}

.fd-hero__title-line2 {
    display: block;
    font-weight: 800;
    font-size: 48px;
    color: #ffffff;
    margin-top: 4px;
}

.fd-hero__intro {
    margin: 22px 0 10px;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
}

.fd-hero__description {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.65;
    color: #c9c9c9;
}

.fd-hero__description p {
    margin: 0 0 14px;
}

.fd-hero__description p:last-child {
    margin-bottom: 0;
}

.fd-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0 0 32px;
}

.fd-stat {
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    padding: 14px 18px;
    min-width: 120px;
}

.fd-stat__label {
    font-size: 14px;
    font-weight: 600;
    color: #e5e5e5;
    line-height: 1.3;
}

.fd-stat__sublabel {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #9a9a9a;
}

.fd-stat__value {
    margin-top: 6px;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.fd-stat__unit {
    margin-left: 4px;
    font-size: 14px;
    font-weight: 400;
    color: #c9c9c9;
}

.fd-hero__button {
    display: inline-block;
    padding: 15px 34px;
    background-color: #f7941d;
    color: #000000;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-radius: 30px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.fd-hero__button:hover,
.fd-hero__button:focus {
    opacity: 0.88;
    color: #000000;
}

.fd-hero--placeholder {
    padding: 24px;
    border: 2px dashed #f7941d;
    border-radius: 6px;
    background: #1a1a1a;
    color: #f7941d;
    text-align: center;
}

.fd-hero--placeholder a {
    font-weight: 600;
    color: #ffffff;
}

.fd-hero.fd-hero--in-view {
    animation: fd-hero-fade-in 0.6s ease forwards;
}

@keyframes fd-hero-fade-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .fd-hero {
        padding: 48px 24px;
    }

    .fd-hero__inner {
        gap: 32px;
    }

    .fd-hero--image-right .fd-hero__inner {
        flex-direction: column;
    }

    .fd-hero__title {
        font-size: 32px;
    }

    .fd-hero__title-line2 {
        font-size: 34px;
    }

    .fd-hero__stats {
        gap: 10px;
    }

    .fd-stat {
        min-width: 100px;
        padding: 10px 14px;
    }

    .fd-stat__value {
        font-size: 22px;
    }
}
