.saas-banner-wrapper-e6a59ea1 {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
    background: linear-gradient(135deg, #0B1F4D 0%, #163A70 100%);
    border-radius: 0;
    overflow: hidden;
    padding: 60px 0;
    font-family: 'Inter', 'Manrope', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    box-shadow: 0 20px 40px rgba(11, 31, 77, 0.15);
}

.saas-banner-bg-graphics-e6a59ea1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.saas-banner-bg-graphics-e6a59ea1::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 150%;
    height: 150%;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 20px);
    z-index: 1;
}

.saas-banner-bg-graphics-e6a59ea1::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(22,58,112,0.8) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.saas-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    z-index: 2;
}

.shape-1 {
    top: 10%;
    right: 5%;
    width: 300px;
    height: 200px;
    transform: rotate(15deg);
}

.shape-2 {
    bottom: -10%;
    right: 25%;
    width: 250px;
    height: 150px;
    transform: rotate(-10deg);
}

.shape-3 {
    top: -20%;
    left: 40%;
    width: 150px;
    height: 300px;
    transform: rotate(45deg);
    background: rgba(141, 198, 63, 0.02);
}

.saas-banner-content-container-e6a59ea1 {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    padding: 0 40px;
    gap: 60px;
}

.saas-banner-text-content-e6a59ea1 {
    flex: 1 1 65%;
    max-width: 800px;
}

.saas-banner-headline-e6a59ea1 {
    color: #FFFFFF;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.saas-banner-headline-e6a59ea1 .highlight {
    background: linear-gradient(90deg, #32FF2A 0%, #43F45C 20%, #36E79D 40%, #2CC7C9 60%, #39A6F5 80%, #4A8CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.saas-banner-description-e6a59ea1 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.saas-banner-cta-container-e6a59ea1 {
    flex: 0 0 auto;
}

.saas-banner-button-e6a59ea1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #8DC63F;
    color: #0B1F4D;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(141, 198, 63, 0.2);
    position: relative;
    overflow: hidden;
}

.saas-banner-button-e6a59ea1:hover {
    background-color: #9cd44a;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(141, 198, 63, 0.3);
    color: #0B1F4D;
}

@media (max-width: 992px) {
    .saas-banner-content-container-e6a59ea1 {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .saas-banner-headline-e6a59ea1 {
        font-size: 32px;
    }
}
@media (max-width: 768px) {
    .saas-banner-wrapper-e6a59ea1 {
        padding: 40px 0;
    }
    .saas-banner-content-container-e6a59ea1 {
        padding: 0 25px;
    }
    .saas-banner-headline-e6a59ea1 {
        font-size: 28px;
    }
    .saas-banner-description-e6a59ea1 {
        font-size: 16px;
    }
}