.cta-section {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(109, 139, 87, 0.28) 0%, transparent 42%),
        radial-gradient(circle at 82% 78%, rgba(198, 167, 94, 0.22) 0%, transparent 45%),
        linear-gradient(155deg, var(--burgundy-dark) 0%, #2a1218 52%, var(--olive-dark) 100%);
}

.cta-section__glow {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(90px);
}

.cta-section__glow--left {
    top: -12%;
    left: -8%;
    width: 26rem;
    height: 26rem;
    background: rgba(109, 139, 87, 0.22);
}

.cta-section__glow--right {
    right: -6%;
    bottom: -18%;
    width: 30rem;
    height: 30rem;
    background: rgba(198, 167, 94, 0.18);
}

.cta-section__inner {
    position: relative;
    z-index: 1;
}

.cta-panel {
    display: grid;
    gap: 2.5rem;
    padding: 2.25rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 28px 60px -32px rgba(0, 0, 0, 0.75);
}

@media (min-width: 1024px) {
    .cta-panel {
        grid-template-columns: 1.15fr 0.85fr;
        align-items: center;
        gap: 3rem;
        padding: 3rem 3.25rem;
    }
}

.cta-panel__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
}

.cta-panel__title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
    line-height: 1.12;
    color: #fff;
}

.cta-panel__title-accent {
    font-style: italic;
    color: var(--gold-light);
}

.cta-panel__text {
    margin-top: 1.1rem;
    max-width: 34rem;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
    .cta-panel__text {
        font-size: 1.0625rem;
    }
}

.cta-panel__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.5rem;
    padding: 0;
    list-style: none;
}

.cta-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.cta-trust-chip svg {
    width: 0.85rem;
    height: 0.85rem;
    color: var(--gold);
}

.cta-panel__actions {
    display: grid;
    gap: 0.85rem;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.95rem 1.1rem;
    border-radius: 0.95rem;
    text-decoration: none;
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

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

.cta-btn__icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 0.75rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-btn__icon svg {
    width: 1.2rem;
    height: 1.2rem;
}

.cta-btn__body {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.cta-btn__label {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.cta-btn__hint {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.75rem;
    opacity: 0.78;
}

.cta-btn__arrow {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    opacity: 0.65;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cta-btn:hover .cta-btn__arrow {
    transform: translateX(3px);
    opacity: 1;
}

.cta-btn--primary {
    color: #fff;
    background: var(--gradient-gold);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 14px 32px -18px rgba(198, 167, 94, 0.85);
}

.cta-btn--primary .cta-btn__label,
.cta-btn--primary .cta-btn__hint,
.cta-btn--primary .cta-btn__arrow {
    color: #fff;
}

.cta-btn--primary .cta-btn__hint {
    opacity: 0.88;
}

.cta-btn--primary .cta-btn__icon {
    color: var(--burgundy);
    background: rgba(255, 255, 255, 0.55);
}

.cta-btn--primary:hover {
    color: #fff;
    box-shadow: 0 18px 38px -16px rgba(198, 167, 94, 0.95);
}

.cta-btn--primary:hover .cta-btn__label,
.cta-btn--primary:hover .cta-btn__hint,
.cta-btn--primary:hover .cta-btn__arrow {
    color: #fff;
}

.cta-btn--ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.cta-btn--ghost .cta-btn__icon {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(198, 167, 94, 0.45);
}

@media (max-width: 639px) {
    .cta-section {
        padding: 4rem 0;
    }

    .cta-panel {
        padding: 1.65rem;
    }
}
