/* ==========================================
   Hero CTA Buttons - Extended Variants
   ========================================== */

/* Hero CTA Container */
.hero__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.hero__cta .btn {
    min-width: 200px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition-base);
    cursor: pointer;
}

.hero__cta .btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Primary CTA - Main conversion action */
.btn--cta-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.35);
}

.btn--cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.5);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

/* Secondary CTA - Alternative action */
.btn--cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn--cta-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.25);
}

/* Accent/Green CTA - Success action */
.btn--cta-accent {
    background: linear-gradient(135deg, var(--accent-color) 0%, #20c997 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.35);
}

.btn--cta-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5);
}

/* Outline Accent */
.btn--cta-outline-accent {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn--cta-outline-accent:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

/* Expert/Gold CTA - Premium action */
.btn--cta-expert {
    background: linear-gradient(135deg, var(--expert-color) 0%, #e0a800 100%);
    color: var(--dark-color);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.35);
}

.btn--cta-expert:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
}

/* Dark CTA - Corporate action */
.btn--cta-dark {
    background: var(--dark-color);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(33, 37, 41, 0.3);
}

.btn--cta-dark:hover {
    background: #343a40;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 37, 41, 0.45);
}

/* Ghost CTA - Minimal action */
.btn--cta-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.btn--cta-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Icon-only CTA for additional actions */
.btn--cta-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    padding: 0;
    border-radius: 50%;
}

/* Telegram CTA */
.btn--cta-telegram {
    background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(34, 158, 217, 0.35);
}

.btn--cta-telegram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 158, 217, 0.5);
}

/* Demo CTA - Interactive demo request */
.btn--cta-demo {
    background: linear-gradient(135deg, #6c5ce7 0%, #a855f7 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.35);
}

.btn--cta-demo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.5);
}

/* Size Variants */
.hero__cta .btn--sm {
    padding: 12px 24px;
    font-size: 0.875rem;
    min-width: 160px;
}

.hero__cta .btn--lg {
    padding: 20px 40px;
    font-size: 1.125rem;
    min-width: 240px;
}

.hero__cta .btn--xl {
    padding: 24px 48px;
    font-size: 1.25rem;
    min-width: 280px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero__cta {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .hero__cta .btn {
        width: 100%;
        min-width: unset;
    }
}

/* Animation for attention */
@keyframes pulse-cta {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.35);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 123, 255, 0.6);
    }
}

.btn--cta-primary.btn--pulse {
    animation: pulse-cta 2s ease-in-out infinite;
}
