.consulting-cta-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #061325 0%, #0b2240 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.consulting-cta-inner {
    position: relative;
    z-index: 5;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Accents styling */
.cta-accent-dots {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(rgba(251, 192, 45, 0.3) 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    opacity: 0.6;
    pointer-events: none;
}

.cta-accent-arrow-wrapper {
    position: absolute;
    bottom: -10px;
    right: 30px;
    width: 160px;
    height: 160px;
    opacity: 0.45;
    pointer-events: none;
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}

.consulting-cta-container:hover .cta-accent-arrow-wrapper {
    transform: rotate(0deg) scale(1.05);
}

/* Header Text elements */
.cta-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 20px 0;
    letter-spacing: -0.75px;
}

.cta-title span {
    display: block;
}

.cta-title .title-norm {
    font-weight: 400;
    opacity: 0.95;
}

.cta-title .title-high {
    font-weight: 800;
    text-shadow: 0 4px 12px rgba(251, 192, 45, 0.2);
}

.cta-underline {
    width: 60px;
    height: 4px;
    margin-bottom: 35px;
    border-radius: 2px;
    background-color: #fbc02d;
    box-shadow: 0 2px 8px rgba(251, 192, 45, 0.4);
}

.cta-desc {
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    line-height: 1.65;
    margin: 0 auto 45px auto;
    font-weight: 400;
    max-width: 680px !important;
}

/* Buttons formatting */
.cta-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    letter-spacing: 0.2px;
}

.cta-btn:visited {
    text-decoration: none;
}

.cta-btn:hover,
.cta-btn:focus {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(251, 192, 45, 0.25);
    text-decoration: none;
}

.cta-btn-secondary:hover,
.cta-btn-secondary:focus {
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.cta-btn svg {
    transition: transform 0.3s ease;
}

.cta-btn:hover svg,
.cta-btn:focus svg {
    transform: translateX(2px) scale(1.05);
}

.cta-btn-secondary {
    border-style: solid;
}

/* Branding footer */
.cta-footer-branding {
    width: 100%;
    margin-top: 20px;
}

.badge-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.badge-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fbc02d;
    color: #fbc02d;
    font-size: 0.8rem;
    font-weight: 700;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    letter-spacing: 0.8px;
    box-shadow: 0 0 12px rgba(251, 192, 45, 0.15);
}

.badge-line {
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, rgba(251, 192, 45, 0.4), transparent);
}

.footer-slogan {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.5;
}

/* Responsiveness adjustments */
@media (max-width: 767px) {
    .cta-buttons-wrapper {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .cta-btn {
        width: 100%;
        padding: 14px 28px;
    }

    .cta-accent-dots,
    .cta-accent-arrow-wrapper {
        display: none;
    }

    .consulting-cta-container {
        border-radius: 0;
    }
}
