/* =============================================
   CTA CONVERSION BLOCK — Green theme
   Replaces old form-based CTA with action buttons
   ============================================= */

/* Layout */
.cta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: linear-gradient(135deg, #059669 0%, #047857 40%, #065f46 100%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    min-height: 420px;
}
.cta__inner::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.cta__inner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Content Column */
.cta__content {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Badge */
.cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 8px 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
}
.cta__badge svg {
    flex-shrink: 0;
    color: #fbbf24;
}

/* Title */
.cta .cta__title {
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-extrabold);
    font-size: 42px;
    line-height: 1.15;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
}

/* Description */
.cta .cta__description {
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 460px;
}

/* Features */
.cta__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}
.cta__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}
.cta__feature svg {
    flex-shrink: 0;
    color: #34d399;
}

/* Actions Column */
.cta__actions {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.06);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.cta__actions-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 4px 0;
}

/* Action Buttons */
.cta__action-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.cta__action-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.cta__action-btn:active {
    transform: translateY(0);
}

/* Telegram hover */
.cta__action-btn--telegram:hover {
    background: rgba(42, 171, 238, 0.2);
    border-color: rgba(42, 171, 238, 0.35);
}

/* Max hover */
.cta__action-btn--max:hover {
    background: rgba(255, 107, 0, 0.2);
    border-color: rgba(255, 107, 0, 0.35);
}

/* Phone hover */
.cta__action-btn--phone:hover {
    background: rgba(16, 185, 129, 0.25);
    border-color: rgba(16, 185, 129, 0.4);
}

.cta__action-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
}
.cta__action-icon svg,
.cta__action-icon img {
    width: 28px;
    height: 28px;
    display: block;
}

.cta__action-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}
.cta__action-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.cta__action-hint {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
}

.cta__action-arrow {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
}
.cta__action-btn:hover .cta__action-arrow {
    color: rgba(255, 255, 255, 0.7);
    transform: translateX(3px);
}

/* Trust Line */
.cta__trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cta__trust-avatars {
    display: flex;
}
.cta__trust-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(5, 150, 105, 0.8);
    margin-right: -8px;
}
.cta__trust-avatar:last-child {
    margin-right: 0;
}
.cta__trust-avatar svg {
    width: 14px;
    height: 14px;
}
.cta__trust-text {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== IMAGE — Hide old image ===== */
.cta__image {
    display: none !important;
}

/* ===== OLD FORM — Hide ===== */
.cta__form {
    display: none !important;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
    .cta__inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .cta__content {
        padding: 44px 40px 32px;
    }
    .cta__actions {
        padding: 32px 40px 44px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .cta .cta__title {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cta__inner {
        border-radius: 20px;
    }
    .cta__content {
        padding: 36px 28px 24px;
        gap: 18px;
    }
    .cta__actions {
        padding: 24px 28px 36px;
        gap: 12px;
    }
    .cta .cta__title {
        font-size: 30px;
    }
    .cta .cta__description {
        font-size: 16px;
    }
    .cta__feature {
        font-size: 14px;
    }
    .cta__action-btn {
        padding: 16px 18px;
        border-radius: 14px;
    }
    .cta__action-icon {
        width: 40px;
        height: 40px;
    }
    .cta__action-name {
        font-size: 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .cta__inner {
        border-radius: 16px;
    }
    .cta__content {
        padding: 28px 20px 20px;
        gap: 16px;
    }
    .cta__actions {
        padding: 20px 20px 28px;
        gap: 10px;
    }
    .cta .cta__title {
        font-size: 26px;
    }
    .cta .cta__description {
        font-size: 15px;
    }
    .cta__badge {
        font-size: 12px;
        padding: 6px 14px;
    }
    .cta__action-btn {
        padding: 14px 16px;
        gap: 12px;
    }
    .cta__actions-label {
        font-size: 12px;
    }
}
