/* ============================================================
   KRAXELBANDE – CTA Section  (creative bold design)
   ============================================================ */

/* ---- Outer wrapper: no padding, two distinct zones ---- */
.cta-section {
    position: relative;
    overflow: hidden;
}

/* ================================================================
   ZONE 1 – Bold headline block  (navy background)
   ================================================================ */
.cta-headline-wrap {
    background: var(--color-text);
    padding: 90px 0 110px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.cta-headline-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

/* Year pill */
.cta-year-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a4bd1e;
    border: 1.5px solid rgba(164, 189, 30, 0.4);
    border-radius: 4px;
    padding: 5px 14px;
}

/* Main title */
.cta-title {
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0;
}

.cta-title em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.38);
}

.cta-title-strong {
    color: #a4bd1e;
}

/* Subtitle line */
.cta-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
    margin: 0;
}

/* ================================================================
   ZONE 2 – Action strip  (light background)
   ================================================================ */
.cta-strip {
    background: #f5f7fa;
    padding: 70px 0 80px;
    margin-top: -2px;
    /* remove any gap from clip-path */
}

/* Content row: text + buttons side by side */
.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.cta-strip-text {
    max-width: 480px;
}

.cta-strip-text p {
    font-size: 1.05rem;
    color: #33365f;
    line-height: 1.7;
    margin: 0;
}

/* Button group */
.cta-strip-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Primary button */
.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-accent-2);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(89, 136, 185, 0.22);
    white-space: nowrap;
}

.cta-btn-primary svg {
    transition: transform 0.2s ease;
}

.cta-btn-primary:hover {
    background: var(--color-accent-2-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(89, 136, 185, 0.32);
}

.cta-btn-primary:hover svg {
    transform: translateX(4px);
}

/* Ghost / phone button */
.cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    padding: 13px 22px;
    border-radius: 8px;
    border: 1.5px solid rgba(51, 54, 95, 0.2);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.cta-btn-ghost svg {
    color: #a4bd1e;
}

.cta-btn-ghost:hover {
    border-color: var(--color-text);
    box-shadow: 0 4px 14px rgba(51, 54, 95, 0.12);
    transform: translateY(-2px);
}

/* Trust row */
.cta-trust {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(51, 54, 95, 0.1);
}

.cta-trust li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #5c5f82;
}

.cta-trust li svg {
    color: #a4bd1e;
    flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .cta-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-strip-actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .cta-headline-wrap {
        padding: 60px 0 80px;
        clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    }

    .cta-strip {
        padding: 48px 0 60px;
    }

    .cta-title {
        font-size: clamp(3rem, 13vw, 4.5rem);
    }

    .cta-strip-actions {
        width: 100%;
        flex-direction: column;
    }

    .cta-btn-primary,
    .cta-btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .cta-trust {
        gap: 16px;
    }
}