﻿/*=========================================
    CTA
=========================================*/

.cta-section {
    padding: 120px 0;
    background: linear-gradient( 180deg, #ffffff 0%, #faf8ff 100% );
}

.cta-card {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 80px;
    padding: 80px;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 30px 70px rgba(30,35,90,.08);
    position: relative;
    overflow: hidden;
}

    .cta-card::after {
        content: "";
        position: absolute;
        right: -180px;
        top: 50%;
        transform: translateY(-50%);
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient( rgba(108,62,244,.12), transparent 70% );
    }

.cta-content {
    position: relative;
    z-index: 2;
}

    .cta-content h2 {
        font-size: 56px;
        line-height: 1.1;
        font-weight: 800;
        margin: 20px 0;
    }

    .cta-content p {
        font-size: 20px;
        color: #667085;
        line-height: 1.8;
        margin-bottom: 35px;
    }

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-bottom: 40px;
    list-style: none;
    padding: 0;
}

    .cta-benefits li {
        font-size: 18px;
        font-weight: 600;
    }

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

    .cta-image img {
        width: 100%;
        max-width: 650px;
    }
