.site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 40px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.site-btn--primary {
    background: linear-gradient(135deg, #d946ef 0%, #c026d3 100%);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(217, 70, 239, 0.24);
}

.site-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(217, 70, 239, 0.32);
}

.site-btn--secondary {
    background: #f3f4f6;
    color: #1f2937;
    border: 2px solid #d946ef;
}

.site-btn--secondary:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(217, 70, 239, 0.2);
}
