.filab-cta-band {
    position: relative;
    overflow: hidden;
    background: #070f24;
    color: #fff;
    padding: 96px 0;
    text-align: center;
}
.filab-cta-band::before,
.filab-cta-band::after {
    content: "";
    position: absolute;
    inset: 0;
}
.filab-cta-band::before {
    background-image: var(--filab-cta-bg);
    background-position: center;
    background-size: cover;
    opacity: 1;
}
.filab-cta-band::after {
    background: rgba(7, 15, 36, .18);
}
.filab-cta-band .filab-container {
    position: relative;
    z-index: 1;
    max-width: 1152px;
}
.filab-cta-band h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 5.5vw, 60px);
    font-weight: 800;
    line-height: 1.05;
}
.filab-cta-band .filab-eyebrow {
    margin: 12px 0 0;
    color: #f58a2c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
    line-height: 1.4;
    text-transform: uppercase;
}
.filab-cta-band__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    margin: 32px 0 40px;
    text-align: left;
}
.filab-cta-band__grid--4,
.filab-cta-band__grid--5,
.filab-cta-band__grid--6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.filab-cta-band .filab-icon {
    display: inline-block;
    flex: none;
    background: currentColor;
    -webkit-mask-image: var(--filab-icon);
    mask-image: var(--filab-icon);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}
.filab-cta-band article {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    background: rgba(255, 255, 255, .05);
    padding: 24px;
    backdrop-filter: blur(4px);
}
.filab-cta-band article > div {
    display: flex;
    align-items: center;
    gap: 8px;
}
.filab-cta-band__icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    color: #f58a2c;
}
.filab-cta-band h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}
.filab-cta-band p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.6;
}
.filab-cta-band article p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    line-height: 1.625;
}
.filab-cta-band .filab-btn {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #f58a2c 0%, #c2410c 100%);
    padding: 0 32px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px -6px rgba(245, 138, 44, .45);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.filab-cta-band .filab-btn:hover,
.filab-cta-band .filab-btn:focus {
    background: linear-gradient(90deg, #ed7a18 0%, #a8350a 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -6px rgba(245, 138, 44, .55);
}
@media (max-width: 900px) {
    .filab-cta-band__grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .filab-cta-band {
        padding: 72px 0;
    }
    .filab-cta-band h2 {
        font-size: 40px;
    }
}
