.is-style-homepage-hero {
    position: relative;
    width: 100%;
    min-height: 750px;
    display: flex;
    align-items: center;
    background-color: #002A35;
    background-image: url('../../assets/images/image%20588255230.png');
    background-size: cover;
    background-position: calc(50% + 280px) center;
    background-repeat: no-repeat;
    padding: 100px 0;
    overflow: hidden;
}

.is-style-homepage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #002A35 0%, rgba(0, 42, 53, 0.9) 35%, rgba(0, 42, 53, 0.6) 48%, rgba(0, 42, 53, 0) 65%);
    pointer-events: none;
    z-index: 1;
}

.is-style-homepage-hero .hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.is-style-homepage-hero .hero-content {
    max-width: 650px;
}

.is-style-homepage-hero .hero-pretitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #EDFAFF;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.is-style-homepage-hero .hero-pretitle .bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--wp--preset--color--accent-cyan);
}

.is-style-homepage-hero .hero-title {
    color: #ffffff;
    font-size: 68px;
    font-family: 'Satoshi', var(--wp--preset--font-family--body), sans-serif;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 24px 0;
    letter-spacing: -1px;
}

.is-style-homepage-hero .hero-title .italic-text {
    font-style: italic;
    color: var(--wp--preset--color--accent-cyan);
}

.is-style-homepage-hero .hero-subtitle {
    color: #D9D9D9;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 500px;
}

.is-style-homepage-hero .hero-subtitle .highlight-text {
    color: #ffffff;
    font-weight: 700;
}

.is-style-homepage-hero .hero-actions {
    margin-bottom: 48px;
}

.is-style-homepage-hero .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--wp--preset--color--accent);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 40px -12px rgba(9, 129, 159, 0.35);
}

.is-style-homepage-hero .btn-primary:hover {
    background-color: #07809E;
    transform: translateY(-2px);
    box-shadow: 0 15px 45px -10px rgba(9, 129, 159, 0.5);
}

.is-style-homepage-hero .hero-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.is-style-homepage-hero .hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.is-style-homepage-hero .hero-feature-item svg {
    color: var(--wp--preset--color--accent-cyan);
}

/* Floating overlay card */
.is-style-homepage-hero .hero-badge-card {
    background: #ffffff;
    border: 1px solid #E0E7EB;
    border-radius: 8px;
    padding: 16px;
    width: 150px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 15px 30px -10px rgba(18, 28, 33, 0.15);
    margin-right: 50px;
    transform: translateY(-60px);
    transition: transform 0.3s ease;
}

.is-style-homepage-hero .hero-badge-card:hover {
    transform: translateY(-60px) scale(1.05);
}

.is-style-homepage-hero .hero-badge-card .badge-label {
    color: #606F76;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.is-style-homepage-hero .hero-badge-card .badge-value {
    color: #121C21;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
}

.is-style-homepage-hero .hero-badge-card .badge-sub {
    color: #606F76;
    font-size: 10px;
    line-height: 1.3;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .is-style-homepage-hero {
        min-height: auto;
        padding: 80px 0;
        background-position: center;
    }
    .is-style-homepage-hero .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
    }
    .is-style-homepage-hero .hero-title {
        font-size: 52px;
    }
    .is-style-homepage-hero .hero-badge-card {
        margin-right: 0;
        align-self: flex-start;
        transform: translateY(0);
    }
    .is-style-homepage-hero .hero-badge-card:hover {
        transform: scale(1.05);
    }
    .is-style-homepage-hero::before {
        background: linear-gradient(180deg, rgba(0, 42, 53, 0.92) 0%, rgba(0, 42, 53, 0.65) 100%);
    }
}

@media (max-width: 575px) {
    .is-style-homepage-hero .hero-title {
        font-size: 38px;
    }
    .is-style-homepage-hero .hero-pretitle {
        font-size: 12px;
        letter-spacing: 1px;
    }
    .is-style-homepage-hero .hero-features {
        flex-direction: column;
        gap: 16px;
    }
}
