/* 08 — INDUSTRIES */

.ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ind-card {
    position: relative;
    padding: 28px 24px 26px;
    background: #fff;
    border: 1px solid var(--line-2);
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    transition:
        transform 240ms ease,
        border-color 240ms ease,
        box-shadow 240ms ease;
}

.ind-card:hover {
    transform: translateY(-3px);
    border-color: var(--brand);
    box-shadow: 0 22px 36px -24px rgba(93, 46, 222, 0.3);
}

.ind-card:hover .ind-arrow {
    color: var(--brand);
    transform: translate(3px, -3px);
}

.ind-card:hover .ind-ico {
    background: var(--brand);
    color: #fff;
}

.ind-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--brand-soft);
    color: var(--brand);
    display: grid;
    place-items: center;
    transition:
        background 220ms ease,
        color 220ms ease;
}

.ind-arrow {
    position: absolute;
    top: 28px;
    right: 24px;
    color: var(--muted-2);
    transition:
        color 220ms ease,
        transform 220ms ease;
}

.ind-card h4 {
    margin: 60px 0 8px;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--ink);
}

.ind-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted);
}

.ind-tag {
    display: inline-block;
    margin-top: 18px;
    padding: 5px 11px;
    background: var(--brand-soft);
    color: var(--brand);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: -0.005em;
}

@media (max-width: 1100px) {
    .ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .ind-grid {
        grid-template-columns: 1fr;
    }
}
