/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    line-height: 1.5;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
}

/* Text button style (used in industry cards) */
.btn-text {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: var(--weight-semibold);
    text-decoration: none;
    transition: color 0.2s ease;
    margin-top: auto;
    padding: 0.5rem 0;
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-text:hover {
    color: var(--primary-light);
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--neutral-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--neutral-white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: var(--text-lg);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: var(--text-sm);
}