/* ===========================
   BUTTON COMPONENTS
   =========================== */

.btn {
    padding: 8px 16px;
    height: 36px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    text-decoration: none;
}

/* Outlined button — used inside dashboard and support form */
.btn-outline {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background-color: var(--bg-hover);
    color: var(--text-primary);
}

/* Primary button — dark inside dashboard, overridden to blue in landing */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--bg-panel);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

/* Large variant — used in hero CTAs */
.btn-lg {
    padding: 13px 32px;
    height: auto;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
}

/* Full width — used inside cards and forms */
.full-width {
    width: 100%;
    display: flex;
}

/* Landing pricing card CTA — outlined but with blue hover */
.pricing-card .btn-outline {
    border-color: var(--info);
    color: var(--info);
    font-size: 0.95rem;
    padding: 12px 24px;
    height: auto;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.pricing-card .btn-outline:hover {
    background-color: var(--info);
    color: #fff;
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.3);
}
