.hero-container-87002431 {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-bg-glows-87002431 {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.glow-warm-87002431 {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(230, 160, 77, 0.12) 0%, rgba(0,0,0,0) 70%);
    filter: blur(80px);
}

.glow-cool-87002431 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(0,0,0,0) 70%);
    filter: blur(80px);
}

.hero-content-87002431 {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Badge Styling */
.hero-badge-wrapper-87002431 {
    display: flex;
    justify-content: flex-start;
}

.hero-badge-87002431 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.pulse-dot-87002431 {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.pulse-dot-87002431::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: inherit;
    animation: badge-pulse-87002431 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes badge-pulse-87002431 {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

/* Heading Styling */
.hero-title-87002431 {
    margin-top: 0;
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    line-height: 1.1;
    font-weight: 400;
}

.hero-title-87002431 span.highlight {
    font-style: italic;
    border-bottom: 2px solid;
    padding-bottom: 2px;
    display: inline-block;
}

/* Description Styling */
.hero-desc-87002431 {
    margin-top: 0;
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    line-height: 1.6;
}

/* Buttons Styling */
.hero-ctas-87002431 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.btn-base-87002431 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 500;
    cursor: pointer;
}

.btn-arrow-87002431 {
    transition: transform 0.3s ease;
}

.btn-base-87002431:hover .btn-arrow-87002431 {
    transform: translate(3px, -3px);
}

.btn-primary-87002431 {
    border: 1px solid transparent;
}

.btn-secondary-87002431 {
    border-style: solid;
}
