/* ============================================================
 * CTA — All Services
 *
 * Shared CTA block: shown on the home page (replacing the prior
 * cta-band) and at the bottom of legal pages. Compact gradient
 * card with title, lead, primary CTA → /services/, and a chip
 * row that previews all seven services.
 * ============================================================ */

.cta-services {
    --cta-services-grad-1: #790000;
    --cta-services-grad-2: #a50000;
    --cta-services-text:   #fff;

    margin: 64px auto 0;
    padding: 0 24px;
    max-width: 1180px;
}

.cta-services__inner {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    padding: 56px 56px 48px;
    background: linear-gradient(135deg, var(--cta-services-grad-1) 0%, var(--cta-services-grad-2) 100%);
    color: var(--cta-services-text);
    box-shadow: 0 24px 60px -24px rgba(121, 0, 0, 0.45);
}

/* Decorative diagonal panel — subtle visual interest. */
.cta-services__inner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 60%;
    height: 180%;
    background: rgba(255, 255, 255, 0.06);
    transform: skewX(-12deg);
    pointer-events: none;
}

.cta-services__copy {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.cta-services__eyebrow {
    display: inline-block;
    font-family: ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 14px;
}

.cta-services__title {
    font-family: var(--lv-font-headline, 'Space Grotesk', system-ui, sans-serif);
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 0 0 14px;
    font-weight: 700;
}

.cta-services__lead {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    max-width: 540px;
    margin: 0 0 24px;
}

.cta-services__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cta-services__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #fff;
    color: #790000;
    border: 0;
    border-radius: 6px;
    font-family: var(--lv-font-body, 'Manrope', system-ui, sans-serif);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, color 150ms ease;
}
.cta-services__btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px -10px rgba(0, 0, 0, 0.45);
    background: #ffe9e9;
    color: #790000;
}
.cta-services__btn-icon {
    transition: transform 150ms ease;
}
.cta-services__btn-primary:hover .cta-services__btn-icon { transform: translateX(2px); }

.cta-services__chips {
    position: relative;
    z-index: 2;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cta-services__chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 6px;
    color: #fff;
    font-family: var(--lv-font-body, 'Manrope', system-ui, sans-serif);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}
.cta-services__chip:hover {
    background: #fff;
    color: #790000;
    border-color: #fff;
    transform: translateY(-1px);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 720px) {
    .cta-services { padding: 0 16px; margin-top: 48px; }
    .cta-services__inner { padding: 36px 24px 32px; }
    .cta-services__title { font-size: 28px; }
    .cta-services__lead  { font-size: 14px; }
    .cta-services__btn-primary { width: 100%; justify-content: center; }
}
