/* ========================================
   KULLANIM-ALANLARI.CSS — /kullanim-alanlari sayfa-özel
   Ortak parçalar style-main.css'tedir — burada yalnız sektör kartı stilleri var.
======================================== */

.industry-card {
    background: #fff;
    border-radius: var(--qr-radius);
    padding: 1.6rem 1.4rem;
    height: 100%;
    border: 1px solid rgba(148, 163, 184, .25);
    transition: all .3s;
}
.industry-card:hover {
    border-color: var(--qr-primary);
    box-shadow: 0 20px 50px rgba(255, 0, 51, .1);
}
.industry-icon {
    width: 44px; height: 44px;
    border-radius: var(--qr-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--qr-primary-soft);
    color: var(--qr-primary);
    margin-bottom: .8rem;
    font-size: 1.2rem;
}
.industry-card h6 { font-weight: 700; margin-bottom: .5rem; }
.industry-card p { color: var(--qr-muted); font-size: .85rem; margin-bottom: 0; line-height: 1.6; }
