.cta2-section {
    background-image: linear-gradient(135deg, #050505, #111111);
    display: flex;
    min-height: 50vh;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    border-top: 1px solid #CC0B0D
}

.cta2-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    background: radial-gradient(circle at center, #1d1d1d 0%, #111111 70%);
    border-radius: 0.25rem;
    padding: 4rem 3rem;
    margin: 8rem auto;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(204, 11, 13, 0.15);
}

.cta2-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #CC0B0D, transparent);
    z-index: 1;
}

.cta2-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--gradient-position, 70% 30%), rgba(204, 11, 13, 0.15) 0%, transparent 70%);
    transition: background-position 0.2s ease-out;
    z-index: 0;
}

.cta2-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta2-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    margin-top: 2rem;
    color: #F0F0F0;
    line-height: 1.2;
}

.cta2-title span {
    color: #CC0B0D;
}

.cta2-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
}

.cta2-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta2-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta2-benefit-icon {
    color: #CC0B0D;
    font-size: 1.2rem;
}

.cta2-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.cta2-btn {
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 220px;
    z-index: 5;
}

.cta2-btn-primary {
    background-color: #CC0B0D;
    color: #F0F0F0;
    border: none;
}

.cta2-btn-primary:hover {
    background-color: #e60d10;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(204, 11, 13, 0.5);
}

.cta2-btn-secondary {
    background-color: transparent;
    color: #F0F0F0;
    border: 1px solid rgba(240, 240, 240, 0.3);
}

.cta2-btn-secondary:hover {
    border-color: #CC0B0D;
    background-color: rgba(204, 11, 13, 0.1);
    transform: translateY(-2px);
}

.cta2-btn::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: all 0.6s ease;
}

.cta2-btn:hover::before {
    left: 100%;
}

.cta2-no-commitment {
    margin-top: 4rem;
    font-size: 0.9rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta2-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.cta2-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: rgba(204, 11, 13, 0.5);
    border-radius: 50%;
}

.cta2-price-tag {
    position: relative;
    transform-origin: top center;
    display: inline-flex;
    align-items: center;
    padding-top: 2px;
}

.cta2-envelope-icon {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
}

.cta2-envelope-body {
    position: absolute;
    top: 0;
    left: 0;
}

.cta2-envelope-flap {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: top;
}

.cta2-hidden {
    opacity: 0;
}

@media (max-width: 768px) {
    .cta2-container {
        padding: 3rem 1.5rem;
    }

    .cta2-title {
        font-size: 2rem;
    }

    .cta2-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta2-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta2-btn {
        width: 100%;
    }
}