/* =========================
   HERO SECTION
========================= */
.hero-section {
    position: relative;
    height: 90vh;
    background: url("../img/hero-industrial.jpg") center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(13, 27, 42, 0.85),
        rgba(13, 27, 42, 0.6)
    );
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.text-accent {
    color: #2ea7db;
}

.hero-desc {
    max-width: 520px;
    opacity: 0.9;
}

/* =========================
   SECTION BACKGROUNDS
========================= */
.section-light {
    padding: 80px 0;
    background: #f8fafc;
}

.section-white {
    padding: 80px 0;
    background: #fff;
}

.tenant-section {
    padding: 64px 0;
    background: #fff;
}

.section-dark {
    padding: 80px 0;
    background: #0d1b2a;
    color: white;
}

/* LABEL */
.section-label {
    color: #1f5faf;
    font-weight: 600;
}

/* =========================
   CARD SOFT
========================= */
.card-soft {
    padding: 24px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: 0.2s;
}

.card-soft:hover {
    transform: translateY(-4px);
}

/* IMAGE */
.shadow-soft {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.tenant-intro {
    max-width: 620px;
}

.tenant-logo-grid {
    width: min(100%, 1040px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
}

.tenant-logo-card {
    grid-column: span 3;
}

.tenant-logo-card:nth-child(-n + 3) {
    grid-column: span 4;
}

.tenant-logo-card {
    min-height: 176px;
    padding: 24px 18px;
    border: 1px solid #eef2f7;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.tenant-logo-img {
    width: 96px;
    height: 76px;
    object-fit: contain;
}

.tenant-company-name {
    min-height: 38px;
    color: #334155;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
    display: flex;
    align-items: center;
    text-align: center;
}

.os-section {
    padding: 56px 0 72px;
    background: #f8fafc;
}

.os-logo-swiper {
    width: min(100%, 1080px);
    margin: 0 auto;
    padding: 4px 4px 42px;
}

.os-logo-card {
    min-height: 168px;
    padding: 24px 18px;
    border: 1px solid #e8edf5;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.os-logo-img {
    width: 108px;
    height: 78px;
    object-fit: contain;
}

.os-company-name {
    min-height: 38px;
    color: #334155;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
    display: flex;
    align-items: center;
    text-align: center;
}

.os-logo-pagination {
    bottom: 0 !important;
}

.os-logo-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #1f5faf;
    opacity: 0.25;
}

.os-logo-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 991.98px) {
    .tenant-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tenant-logo-card,
    .tenant-logo-card:nth-child(-n + 3) {
        grid-column: auto;
    }
}

@media (max-width: 575.98px) {
    .tenant-logo-grid {
        grid-template-columns: 1fr;
    }

    .os-section {
        padding: 48px 0 64px;
    }
}
