.hero {
    min-height: var(--hero-min-height);
    height: auto;
    margin: 0;
    position: relative;
    padding: var(--hero-padding-y) 0;
    color: var(--hero-text-color);
}

.hero h1,
.hero .hero-subtitle,
.hero .hero-badge,
.hero .hero-trust,
.hero .hero-card-label,
.hero .hero-card-trust,
.hero .hero-image-subtitle {
    color: var(--hero-text-color);
}

.hero .hero-badge {
    background: var(--hero-badge-bg);
}

.hero .hero-stat-value,
.hero .hero-card-value,
.hero .hero-image-title {
    color: var(--hero-stat-color);
}

.hero-with-bg-image,
.hero-with-bg {
    position: relative;
    background: transparent !important;
}

.hero-bg-image,
.hero-with-bg .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay-bg);
    z-index: 1;
}

.hero-with-bg .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay-dark-bg);
    z-index: 1;
}

.hero-with-bg-image .container,
.hero-with-bg .container {
    position: relative;
    z-index: 2;
}

.hero-image-badge-number {
    font-size: var(--hero-image-badge-number-size);
    font-weight: var(--hero-image-badge-number-weight);
    color: var(--hero-image-badge-text);
    line-height: var(--hero-image-badge-number-line-height);
    margin-bottom: var(--hero-image-badge-number-margin-bottom);
    text-shadow: none;
}

.hero-image-badge-text {
    font-size: var(--hero-image-badge-text-size);
    color: var(--hero-image-badge-text);
    opacity: 1;
    font-weight: var(--hero-image-badge-text-weight);
    letter-spacing: var(--hero-image-badge-text-letter-spacing);
}

.hero-image-title {
    font-size: var(--hero-image-title-size);
    font-weight: var(--hero-image-title-weight);
    margin-bottom: var(--hero-image-title-margin-bottom);
}

.hero-image-subtitle {
    font-size: var(--hero-image-subtitle-size);
}

.hero-image-icon {
    font-size: var(--hero-image-icon-size);
    margin-bottom: var(--hero-image-icon-margin-bottom);
}

.section-bg-light .hero-image-badge {
    background: var(--hero-section-light-image-badge-bg);
    box-shadow: var(--hero-section-light-image-badge-shadow);
}

/* ===== HERO BASE ELEMENTS ===== */

.hero-badge {
    display: inline-block;
    padding: var(--hero-badge-padding-y) var(--hero-badge-padding-x);
    border-radius: var(--hero-badge-radius);
    font-size: var(--hero-badge-font-size);
    margin-bottom: var(--hero-badge-margin-bottom);
}

.hero h1 {
    font-size: var(--hero-title-size);
    margin-bottom: var(--hero-title-margin-bottom);
    line-height: var(--hero-title-line-height);
}

.hero-subtitle {
    font-size: var(--hero-subtitle-size);
    margin-bottom: var(--hero-subtitle-margin-bottom);
    opacity: var(--hero-subtitle-opacity);
}

.hero-stats {
    display: flex;
    gap: var(--hero-stats-gap);
    margin: var(--hero-stats-margin-y) 0;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: var(--hero-stat-value-size);
    font-weight: var(--hero-stat-value-weight);
    display: block;
}

.hero-stat-label {
    font-size: var(--hero-stat-label-size);
    opacity: var(--hero-stat-label-opacity);
}

.hero-buttons {
    display: flex;
    gap: var(--hero-buttons-gap);
    justify-content: center;
    margin: var(--hero-buttons-margin-y) 0;
}

.hero-trust {
    display: flex;
    gap: var(--hero-trust-gap);
    justify-content: center;
    margin-top: var(--hero-trust-margin-top);
    font-size: var(--hero-trust-font-size);
}

@media (max-width: 992px) {
    .hero-variant-2 .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-variant-2 .hero-content {
        text-align: center;
    }

    .hero-variant-2 .hero-buttons,
    .hero-variant-2 .hero-trust {
        justify-content: center;
    }

    .hero-variant-3 .hero-cards {
        grid-template-columns: var(--hero-v3-cards-columns-tablet);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: var(--hero-padding-y-mobile) 0;
    }

    .hero h1 {
        font-size: var(--hero-title-size-mobile);
    }

    .hero-subtitle {
        font-size: var(--hero-subtitle-size-mobile);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--hero-stats-gap-mobile);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--hero-buttons-gap-mobile);
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: var(--hero-trust-gap-mobile);
    }

    .hero-variant-3 .hero-cards {
        grid-template-columns: var(--hero-v3-cards-columns-mobile);
    }

    .hero-variant-2 .hero-image-badge {
        position: static;
        margin-top: 20px;
    }
}