﻿.hardware-sales-section {
    background: var(--trust-bg);
}

.hardware-sales-card {
    height: 100%;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .hardware-sales-card:hover {
        transform: translateY(-6px);
        border-color: var(--hardware-brand, var(--ionet-green));
        box-shadow: var(--shadow-premium);
    }

.hardware-sales-icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: var(--hardware-brand, var(--ionet-green));
    border-radius: 8px;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.hardware-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    height: 100%;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
}

.hardware-step-number {
    flex: 0 0 auto;
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: var(--hardware-brand, var(--ionet-green));
    border-radius: 999px;
    font-weight: 800;
}

.hardware-buy-note {
    background-color: color-mix(in srgb, var(--hardware-brand, var(--ionet-green)) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--hardware-brand, var(--ionet-green)) 35%, transparent);
    border-radius: 8px;
    padding: 1rem 1.25rem;
}

.hardware-logo-tile {
    width: 4rem;
    height: 4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #ffffff;
    padding: .55rem;
    margin-bottom: 1rem;
}

.hardware-logo-tile img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
