.agency-cta-section {
    --lime: #C6FF33;
    --violet: #7D53EB;
    --footer-bg: #0b0c10;
    --footer-deep: #050507;
    --text-soft: rgba(255,255,255,0.7);

    position: relative;
    width: 100%;
    min-height: 680px;
    padding:clamp(115.2px, 6.25vw, 160px) 6%;
    background-color: var(--footer-bg);
    overflow: hidden;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 18% 26%, rgba(125,83,235,0.16), transparent 24%),
        radial-gradient(circle at 82% 22%, rgba(198,255,51,0.10), transparent 22%),
        linear-gradient(180deg, var(--footer-bg) 0%, var(--footer-deep) 100%);
}

.hero-bg-media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 20%;
    display: block;
    overflow: hidden;
    z-index: 1;
    opacity: 1;
}

.hero-bg-media-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.agency-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 72px 72px;
    z-index: 2;
    opacity: 0.15;
}

.grain-texture {
    position: absolute;
    inset: 0;
    background-image: url("../../../images/ui/asfalt-light-WlTWgi7.svg");
    opacity: 0.05;
    pointer-events: none;
    z-index: 3;
}

.white-curve-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 62%;
    height: 100%;
    z-index: 5;
    transform: translateX(-100%);
    will-change: transform;
}

.white-curve-container svg {
    display: block;
    width: 100%;
    height: 100%;
}

.green-decoration-layer {
    position: absolute;
    right: 0;
    bottom: 40px;
    width: 42%;
    height: 300px;
    z-index: 6;
    transform: translateY(100%);
    opacity: 0;
    will-change: transform, opacity;
}

.green-decoration-layer svg {
    display: block;
    width: 100%;
    height: 100%;
}

.agency-cta-section.is-visible .white-curve-container {
    animation: revealWhite 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.agency-cta-section.is-visible .green-decoration-layer {
    animation: revealGreen 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 0.35s;
}

@keyframes revealWhite {
    to { transform: translateX(0); }
}

@keyframes revealGreen {
    to { transform: translateY(0); opacity: 1; }
}

.agency-wave {
    position: absolute;
    left: 50%;
    width: 100vw;
    height: 120px;
    transform: translateX(-50%);
    z-index: 12;
    pointer-events: none;
    line-height: 0;
}

.agency-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

.agency-wave-top {
    top: 0;
}

.agency-wave-top svg {
    transform: scaleY(-1);
    transform-origin: center;
}

.agency-wave-bottom {
    bottom: 0;
}

.agency-cta-section .container-fluid {
    position: relative;
    z-index: 15;
    width: min(var(--tc-shell-max), 100%);
    margin: 0 auto;
    padding: 0;
}

.hero-content-box {
    max-width: 650px;
}

.agency-title {
    margin: 0 0 24px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size:clamp(1.8rem, 2vw, 3.2rem);
    font-weight: 900;
    line-height: .94;
    letter-spacing: -.04em;
    text-transform: uppercase;
}

.txt-outline {
    display: inline-block;
    color: #ffffff;
    filter: url(#agency-cta-true-outline);
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    transform: translateZ(0);
    line-height: 0.82;
    position: relative;
    top: 4px;
}

.txt-lime {
    color: var(--lime);
}

.txt-white {
    color: #ffffff;
}

.agency-description {
    max-width: 600px;
    margin: 0 0 30px;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 1.04rem;
    line-height: 1.75;
}

.btn-primary-agency {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    background-color: var(--lime);
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .055em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .28s ease, background-color .28s ease;
}

.btn-primary-agency:hover {
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .agency-cta-section {
        min-height: 640px;
        padding: 132px 6%;
    }

    .white-curve-container {
        width: 100%;
    }

    .green-decoration-layer {
        width: 55%;
        height: 220px;
        bottom: 25px;
    }

    .agency-wave {
        left: -5px;
        width: calc(100% + 10px);
        height: 90px;
        transform: none;
    }

    .agency-wave svg {
        width: calc(100% + 2px);
        margin-left: -1px;
    }
}

@media (max-width: 767px) {
    .agency-cta-section {
        min-height: 600px;
        padding: 112px 18px;
    }

    .agency-cta-section .container-fluid {
        width: 100%;
    }

    .agency-title {
        font-size: clamp(1.65rem, 7vw, 2.15rem);
    }

    .agency-description {
        font-size: .96rem;
        line-height: 1.68;
    }

    .btn-primary-agency {
        width: 100%;
    }

    .green-decoration-layer {
        width: 60%;
        height: 170px;
        bottom: 18px;
    }

    .agency-wave {
        height: 84px;
    }
}

.tc-inline-34a667b2ea1a {
    width:0;height:0;position:absolute;
}
