/* ============================================================
   CALL US / CTA BLOCK
   ============================================================ */

.cta-section {
    position: relative;
    padding: 50px 0;
    background: transparent;
    /* No overflow:hidden — canvas bleeds above and below */
}

/* ── Dot canvas — sits at main level, absolutely positioned.
   top/height are set by JS after measuring the section.
   z-index:1 keeps it above the section (z-index:auto) but
   below the card (z-index:2). The JS fills the section area
   black so the canvas provides the dark background.          */
#cta-canvas {
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: auto;
    z-index: 1;
}

@media (max-width: 991.98px) {
    #cta-canvas { display: none; }
}

/* ── Card — above canvas ── */
.cta-card {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 38px 48px;
    text-align: center;
    pointer-events: none;
}

.cta-card .content {
    max-width: 676px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.cta-card .content.unwrapped {
    max-width: 1000px;
}

.cta-card .content.unwrapped .cta-heading{
    width: 100%;
    max-width: 676px;
    margin-inline: auto;
}

.cta-card .content.unwrapped .cta-sub{
    max-width: 100%;
}

.cta-card a,
.cta-card button {
    pointer-events: auto;
}

/* ── Eyebrow ── */
.cta-eyebrow {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-primary);
    display: block;
}

/* ── Heading ── */
.cta-heading {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 50px;
    line-height: 57px;
    letter-spacing: -0.037em;
    color: var(--clr-primary);
    margin: 0;
}

/* ── Subtext ── */
.cta-sub {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: var(--clr-white);
    max-width: 560px;
    margin: 0;
}

.cta-sub .regular{
    font-weight: 300;
}

/* ── CTA button arrow ── */
.cta-section .cta-arrow {
    width: 19px;
    height: 19px;
    display: block;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .cta-section { padding: 48px 0; }

    .cta-heading {
        font-size: clamp(28px, 5vw, 50px);
        line-height: 1.15;
        letter-spacing: -0.02em;
    }
}

@media (max-width: 767px) {
    .cta-card {
        padding: 32px 32px;
    }

    .cta-sub {
        font-size: 18px;
        line-height: 1.5;
    }
}

@media (max-width: 575px) {
    .cta-section { padding: 40px 0; }

    .cta-card {
        padding: 32px 24px;
        gap: 12px;
    }

    .cta-heading { font-size: clamp(24px, 7vw, 36px); }

    .cta-sub {
        font-size: 16px;
        line-height: 1.5;
    }
}
