/*
 * Supply Solution — Homepage (v2 redesign, Venture2-inspired)
 * Full-width 4-tile category hero + trust strip.
 */

.ss-hero-v2 {
    background: #ffffff;
    padding: 40px 0 20px;
}
.ss-hero-v2__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Lede (small headline + subtitle above the tiles) */
.ss-hero-v2__lede {
    text-align: left;
    margin-bottom: 28px;
    max-width: 720px;
}
.ss-hero-v2__title {
    font-family: 'Plus Jakarta Sans', -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
}
.ss-hero-v2__subtitle {
    font-size: 15px;
    color: #475569;
    line-height: 1.55;
    margin: 0;
}

/* 4-tile grid — 4 cols desktop, 2 cols tablet, 1 col mobile */
.ss-hero-v2__tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1023px) {
    .ss-hero-v2__tiles { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 599px) {
    .ss-hero-v2__tiles { grid-template-columns: 1fr; gap: 12px; }
}

/* Category tile — image top, text below on a white card */
.ss-hero-tile {
    display: block;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease, border-color .15s;
    position: relative;
}
.ss-hero-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.10);
    border-color: #1a2543;
}
.ss-hero-tile__img {
    aspect-ratio: 4 / 3;
    background: #f8fafc;
    overflow: hidden;
    display: block;
    position: relative;
}
.ss-hero-tile__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    display: block;
}
.ss-hero-tile__body {
    padding: 14px 16px 16px;
    border-top: 1px solid #f1f5f9;
    background: #ffffff;
}
.ss-hero-tile__sub {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin-bottom: 4px;
}
.ss-hero-tile__label {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 6px;
}
.ss-hero-tile__cta {
    font-size: 12px;
    font-weight: 700;
    color: #1a2543;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.ss-hero-tile:hover .ss-hero-tile__cta {
    color: #1a2543;
}

/* ── Trust strip ──────────────────────────────────────────────── */
.ss-trust-strip-v2 {
    background: #ffffff;
    padding: 24px 0 40px;
    border-bottom: 1px solid #f1f5f9;
}
.ss-trust-strip-v2__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1023px) {
    .ss-trust-strip-v2__inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 599px) {
    .ss-trust-strip-v2__inner { grid-template-columns: 1fr; gap: 14px; }
}

.ss-trust-strip-v2__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #0f172a;
}
.ss-trust-strip-v2__item svg {
    flex-shrink: 0;
    color: #1a2543;
}
.ss-trust-strip-v2__title {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}
.ss-trust-strip-v2__sub {
    font-size: 11px;
    color: #64748b;
    line-height: 1.35;
    margin-top: 2px;
}

/* ── Suppress the old carousel section leftovers if template got cached ── */
.ss-hero,
.ss-trust-strip {
    display: none !important;
}
