/* CTA BLOCK */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 3rem 1rem;
    text-align: center;
    color: white;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.cta::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 2;
    animation: pulse 4s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* CTA CONTAINER */
.cta__container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

/* CTA HEADER */
.cta__header {
    margin-bottom: 2rem;
}

.cta__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta__title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta__subtitle {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.cta__description {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* CTA FEATURES */
.cta__features {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.cta__feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta__feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.cta__feature-icon {
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta__feature-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA ACTIONS */
.cta__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta__button:hover::before {
    left: 100%;
}

.cta__button--primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.cta__button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.cta__button--secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta__button--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cta__button-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.cta__button:hover .cta__button-icon {
    transform: translateX(3px);
}

/* CTA STATS */
.cta__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta__stat {
    text-align: center;
}

.cta__stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.25rem;
}

.cta__stat-label {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* TABLET STYLES */
@media (min-width: 768px) {
    .cta {
        padding: 4rem 2rem;
    }

    .cta__container {
        max-width: 720px;
    }

    .cta__title {
        font-size: 2.5rem;
    }

    .cta__subtitle {
        font-size: 1.125rem;
    }

    .cta__features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cta__actions {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }

    .cta__button {
        padding: 1.125rem 2.5rem;
        font-size: 1.125rem;
    }

    .cta__stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* DESKTOP STYLES */
@media (min-width: 1024px) {
    .cta {
        padding: 6rem 2rem;
    }

    .cta__container {
        max-width: 1200px;
    }

    .cta__title {
        font-size: 3rem;
    }

    .cta__subtitle {
        font-size: 1.25rem;
    }

    .cta__description {
        font-size: 1rem;
    }

    .cta__features {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .cta__feature {
        padding: 1rem 1.5rem;
    }

    .cta__button {
        padding: 1.25rem 3rem;
        font-size: 1.125rem;
    }

    .cta__stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .cta__stat-number {
        font-size: 2rem;
    }
}

/* LARGE DESKTOP */
@media (min-width: 1440px) {
    .cta {
        padding: 8rem 2rem;
    }

    .cta__container {
        max-width: 1400px;
    }

    .cta__title {
        font-size: 3.5rem;
    }
}