.hero-split-modern-34433310 {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
}

.hero-glow-effect {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(173, 198, 54, 0.08) 0%, rgba(32, 96, 183, 0.03) 50%, rgba(255,255,255,0) 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-col-text {
    flex: 1.2;
}

.hero-col-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Eyebrow Badge */
.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(173, 198, 54, 0.1);
    border: 1px solid #ADC636;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-pill-badge span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #2060B7;
    text-transform: uppercase;
}

/* Title Styling */
.hero-display-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    color: #212121;
    margin: 0 0 24px 0;
    letter-spacing: -1px;
}

.gradient-accent {
    color: #2060B7;
    background: linear-gradient(135deg, #2060B7 0%, #0184CB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

/* Paragraph */
.hero-paragraph {
    font-size: 18px;
    line-height: 1.6;
    color: #545454;
    margin-bottom: 40px;
    max-width: 520px;
}

/* Interactive Buttons */
.hero-button-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #2060B7;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(32, 96, 183, 0.15);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(32, 96, 183, 0.25);
    color: #ffffff;
}

.hero-btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid #2060B7;
    color: #2060B7;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: rgba(32, 96, 183, 0.05);
    color: #2060B7;
}

/* Editorial Image Frame */
.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.hero-image-offset-border {
    position: absolute;
    top: 20px;
    left: -20px;
    right: 20px;
    bottom: -20px;
    border: 2px solid #ADC636;
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
}

.hero-main-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    position: relative;
    z-index: 2;
    object-fit: cover;
}

/* Floating Glassmorphism Badge */
.hero-floating-glass-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 4px solid #ADC636;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: floating-badge 3s ease-in-out infinite alternate;
}

.badge-icon {
    background: rgba(173, 198, 54, 0.15);
    color: #2060B7;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-title {
    font-size: 16px;
    font-weight: 800;
    color: #212121;
    margin: 0;
}

.badge-sub {
    font-size: 11px;
    color: #545454;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

@keyframes floating-badge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }
    .hero-display-title {
        font-size: 42px;
    }
    .hero-paragraph {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-button-group {
        justify-content: center;
    }
    .hero-floating-glass-badge {
        right: 10px;
    }
}
