.cahb-hero-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.cahb-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
    transition: transform 0.1s ease-out;
    transform: scale(1.01);
}

.cahb-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.cahb-soft-lighting {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 2;
    pointer-events: none;
}

.cahb-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 2;
    pointer-events: none;
}

.cahb-glow-1 {
    width: 300px;
    height: 300px;
    background: #e30613;
    top: 10%;
    left: 5%;
}

.cahb-glow-2 {
    width: 400px;
    height: 400px;
    background: #ff7e82;
    bottom: -10%;
    left: 30%;
}

.cahb-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    z-index: 3;
}

.cahb-content {
    max-width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: cahbFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.cahb-subtitle {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cahb-headline {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 25px 0;
    letter-spacing: -1px;
}

.cahb-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 35px 0;
}

.cahb-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.cahb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 1px solid transparent;
}

.cahb-btn-icon {
    display: inline-flex;
    margin-right: 10px;
}

.cahb-btn-icon svg {
    width: 16px;
    height: 16px;
}

.cahb-btn-primary {
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.2);
}

.cahb-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.35);
}

.cahb-btn-secondary {
    border: 1px solid #cccccc;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cahb-btn-secondary:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-color: #999999;
}

@keyframes cahbFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .cahb-content {
        max-width: 80%;
    }
}

@media (max-width: 767px) {
    .cahb-hero-wrapper {
        min-height: auto !important;
        padding: 60px 0;
    }
    .cahb-bg-image {
        opacity: 0.45 !important;
    }
    .cahb-content {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }
    .cahb-actions {
        justify-content: center;
        width: 100%;
    }
    .cahb-btn {
        width: 100%;
    }
}
