.home-showcase-section {
    padding: 20px 14px 14px;
    background: #f5f9fd;
    margin-top: 84px;
}

.home-showcase-container {
    max-width: 1460px;
    margin: 0 auto;
}

.home-showcase-top-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
    padding: 18px 22px;
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
    border: 1px solid rgba(14, 165, 233, 0.10);
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
}

.home-showcase-top-left {
    min-width: 0;
}

.home-showcase-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.10);
    color: #0284c7;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 10px;
}

.home-showcase-top-left h2 {
    margin: 0 0 6px;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 900;
    color: #0f172a;
}

.home-showcase-top-left p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
    max-width: 720px;
}

.home-showcase-top-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.home-showcase-top-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.25s ease;
}

.home-showcase-top-btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
    box-shadow: 0 12px 28px rgba(2, 132, 199, 0.16);
}

.home-showcase-top-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
}

.home-showcase-top-btn-secondary {
    background: #fff;
    color: #0369a1;
    border: 1px solid rgba(14, 165, 233, 0.18);
}

.home-showcase-top-btn-secondary:hover {
    color: #0284c7;
    transform: translateY(-2px);
}

.home-showcase-grid {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 270px;
    gap: 16px;
    align-items: stretch;
}

.home-menu-card,
.home-actions-col {
    min-width: 0;
}

.home-menu-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.08);
    height: 460px;
    display: flex;
    flex-direction: column;
}

.home-menu-title {
    margin: 2px 0 12px;
    font-size: 15px;
    font-weight: 900;
    color: #0f172a;
    padding: 0 6px;
}

.home-menu-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.home-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #334155;
    padding: 12px 12px;
    border-radius: 14px;
    transition: all 0.25s ease;
    font-size: 14px;
    font-weight: 600;
}

.home-menu-link i {
    width: 18px;
    font-size: 18px;
    color: #0284c7;
    flex-shrink: 0;
}

.home-menu-link:hover {
    background: #f0f9ff;
    color: #0284c7;
    transform: translateX(4px);
}

.home-slider-wrap {
    position: relative;
    min-height: 460px;
    height: 460px;
    border-radius: 20px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10);
    border: 1px solid rgba(14, 165, 233, 0.10);
}

.home-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.home-slide.active {
    opacity: 1;
    visibility: visible;
}

.home-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.home-slide-overlay {
    position: absolute;
    inset: 0;

    /* HERO IMAGE COLOR OVERLAY
       Change these rgba values later if you want the image darker or lighter.
       I have reduced the blue strength here. */
    background: linear-gradient(
        90deg,
        rgba(3, 105, 161, 0.58) 0%,
        rgba(2, 132, 199, 0.42) 40%,
        rgba(2, 132, 199, 0.10) 100%
    );
}

.home-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 36px 60px;
    max-width: 540px;
    color: #fff;
}

.home-slide-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
    backdrop-filter: blur(6px);
}

.home-slide-title {
    margin: 0 0 14px;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 900;
    color: #fff;
}

.home-slide-desc {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
    max-width: 490px;
}

.home-slide-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.home-slide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 13px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.25s ease;
}

.home-slide-btn-primary {
    background: #fff;
    color: #0284c7;
}

.home-slide-btn-primary:hover {
    color: #0369a1;
    transform: translateY(-2px);
}

.home-slide-btn-secondary {
    background: rgba(255,255,255,0.14);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
}

.home-slide-btn-secondary:hover {
    color: #fff;
    background: rgba(255,255,255,0.22);
    transform: translateY(-2px);
}

.home-slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.34);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
}

.home-slider-nav-btn:hover {
    background: rgba(255,255,255,0.22);
}

.home-slider-prev {
    left: 14px;
}

.home-slider-next {
    right: 14px;
}

.home-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.40);
    cursor: pointer;
    transition: all 0.25s ease;
}

.home-slider-dot.active {
    width: 26px;
    border-radius: 999px;
    background: #fff;
}

.home-actions-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 460px;
}

.home-quick-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.08);
    flex: 1;
    min-height: 0;
}

.home-quick-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    color: #0f172a;
    padding: 10px 6px;
    border-radius: 14px;
    transition: all 0.25s ease;
}

.home-quick-item + .home-quick-item {
    margin-top: 8px;
}

.home-quick-item:hover {
    background: #f0f9ff;
    transform: translateX(3px);
    color: #0284c7;
}

.home-quick-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
    color: #0284c7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.home-quick-text strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 3px;
}

.home-quick-text span {
    display: block;
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

.home-promo-card {
    position: relative;
    overflow: hidden;
    min-height: 160px;
    border-radius: 18px;
    padding: 18px 18px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
    box-shadow: 0 14px 30px rgba(2, 132, 199, 0.16);
}

.home-promo-card::before {
    content: "";
    position: absolute;
    right: -24px;
    top: -26px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
}

.home-promo-card::after {
    content: "";
    position: absolute;
    bottom: -36px;
    right: 28px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.home-promo-label {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.home-promo-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 900;
    color: #fff;
}

.home-promo-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
    max-width: 230px;
}

.home-promo-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    min-height: 40px;
    padding: 0 15px;
    border-radius: 12px;
    background: #fff;
    color: #0284c7;
    font-size: 13px;
    font-weight: 800;
    transition: all 0.25s ease;
}

.home-promo-btn:hover {
    color: #0369a1;
    transform: translateY(-2px);
}

@media (max-width: 1260px) {
    .home-showcase-grid {
        grid-template-columns: 220px minmax(0, 1fr) 250px;
    }

    .home-menu-card {
        height: 440px;
    }

    .home-actions-col {
        height: 440px;
    }

    .home-slider-wrap {
        min-height: 440px;
        height: 440px;
    }

    .home-slide-title {
        font-size: 34px;
    }
}

@media (max-width: 991px) {
    .home-showcase-top-strip {
        display: none;
    }

    .home-showcase-section {
        padding: 0;
        margin-top: 76px;
    }

    .home-showcase-container {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }

    .home-showcase-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .home-menu-card,
    .home-actions-col {
        display: none;
    }

    .home-slider-wrap {
        width: 100%;
        min-height: 390px;
        height: 390px;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        margin-top: 14px;
        box-shadow: none;
    }

    .home-slide-content {
        max-width: 100%;
        padding: 30px 22px 52px;
    }

    .home-slide-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
        flex-wrap: nowrap;
    }

    .home-slide-btn {
        width: calc(50% - 6px);
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .home-showcase-section {
        padding: 0;
        margin-top: 72px;
    }

    .home-showcase-container {
        width: 100%;
        max-width: 100%;
    }

    .home-showcase-grid {
        gap: 0;
    }

    .home-slider-wrap {
        width: 100%;
        min-height: 340px;
        height: 340px;
        border-radius: 0;
        margin-top: 12px;
        border-left: 0;
        border-right: 0;
    }

    .home-slide-content {
        padding: 26px 18px 48px;
    }

    .home-slide-title {
        font-size: 28px;
    }

    .home-slide-desc {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .home-slide-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        flex-wrap: nowrap;
    }

    .home-slide-btn {
        width: calc(50% - 5px);
        min-height: 42px;
        padding: 0 10px;
        font-size: 13px;
        justify-content: center;
    }

    .home-slider-nav-btn {
        width: 38px;
        height: 38px;
    }

    .home-slider-prev {
        left: 10px;
    }

    .home-slider-next {
        right: 10px;
    }
}

@media (max-width: 560px) {
    .home-showcase-section {
        padding: 0;
        margin-top: 70px;
    }

    .home-showcase-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .home-showcase-grid {
        gap: 0;
    }

    .home-slider-wrap {
        width: 100%;
        min-height: 300px;
        height: 300px;
        border-radius: 0;
        margin-top: 10px;
        border-left: 0;
        border-right: 0;
        box-shadow: none;
    }

    .home-slide-content {
        padding: 22px 14px 44px;
    }

    .home-slide-badge {
        font-size: 11px;
        padding: 7px 12px;
        margin-bottom: 10px;
    }

    .home-slide-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .home-slide-desc {
        font-size: 12px;
        margin-bottom: 14px;
        max-width: 100%;
    }

    .home-slide-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        width: 100%;
        flex-wrap: nowrap;
    }

    .home-slide-btn {
        width: calc(50% - 4px);
        min-height: 40px;
        padding: 0 8px;
        font-size: 12px;
        justify-content: center;
    }

    .home-slider-dots {
        bottom: 10px;
    }

    .home-slider-dot {
        width: 8px;
        height: 8px;
    }

    .home-slider-dot.active {
        width: 22px;
    }
}




/* ===============================
   VALUE STRIP / WHY CHOOSE US
=============================== */
.value-strip-section {
    padding: 60px 14px 24px;
    background:
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.08), transparent 20%),
        linear-gradient(180deg, #f8fbff 0%, #eef7fd 100%);
}

.value-strip-container {
    max-width: 1320px;
    margin: 0 auto;
}

.value-strip-header {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.value-strip-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.10);
    color: #0284c7;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    margin-bottom: 14px;
}

.value-strip-title {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 900;
    color: #0f172a;
}

.value-strip-text {
    margin: 0 auto;
    max-width: 680px;
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
}

.value-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.value-strip-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 24px 22px 22px;
    border: 1px solid rgba(14, 165, 233, 0.10);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.value-strip-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.03), transparent 45%);
    pointer-events: none;
}

.value-strip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(2, 132, 199, 0.12);
    border-color: rgba(14, 165, 233, 0.18);
}

.value-strip-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.value-strip-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 12px 28px rgba(2, 132, 199, 0.20);
}

.value-strip-line {
    flex: 1;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.85), rgba(14, 165, 233, 0.12));
}

.value-strip-content {
    position: relative;
    z-index: 2;
}

.value-strip-content h4 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 900;
    color: #0f172a;
}

.value-strip-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #64748b;
}

@media (max-width: 991px) {
    .value-strip-section {
        padding: 50px 14px 20px;
    }

    .value-strip-title {
        font-size: 28px;
    }

    .value-strip-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-strip-card {
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .value-strip-section {
        padding: 42px 10px 18px;
    }

    .value-strip-header {
        margin-bottom: 22px;
    }

    .value-strip-title {
        font-size: 24px;
    }

    .value-strip-text {
        font-size: 14px;
    }

    .value-strip-card {
        padding: 20px 18px 18px;
    }

    .value-strip-icon {
        width: 54px;
        height: 54px;
        font-size: 21px;
        border-radius: 16px;
    }

    .value-strip-content h4 {
        font-size: 19px;
    }
}

@media (max-width: 560px) {
    .value-strip-section {
        padding: 36px 8px 14px;
    }

    .value-strip-badge {
        font-size: 11px;
        padding: 7px 12px;
    }

    .value-strip-title {
        font-size: 21px;
    }

    .value-strip-text {
        font-size: 13px;
        line-height: 1.75;
    }

    .value-strip-card {
        border-radius: 18px;
        padding: 18px 15px 16px;
    }

    .value-strip-card-top {
        gap: 12px;
        margin-bottom: 14px;
    }

    .value-strip-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-radius: 15px;
    }

    .value-strip-content h4 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .value-strip-content p {
        font-size: 13px;
        line-height: 1.7;
    }
}



/* ================================
   NETWORK HUB SECTION
================================ */
.network-hub-section {
    padding: 46px 14px 20px;
    background:
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.07), transparent 18%),
        linear-gradient(180deg, #f8fbff 0%, #eef6fc 100%);
}

.network-hub-container {
    max-width: 1320px;
    margin: 0 auto;
}

/* ================================
   HEADER
================================ */
.network-hub-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 24px;
}

.network-hub-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.10);
    color: #0284c7;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    margin-bottom: 14px;
}

.network-hub-header h2 {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 900;
    color: #0f172a;
}

.network-hub-header p {
    margin: 0 auto;
    max-width: 660px;
    font-size: 15px;
    line-height: 1.75;
    color: #64748b;
}

/* ================================
   GRID
================================ */
.network-hub-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

/* ================================
   CARD
================================ */
.network-hub-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(14, 165, 233, 0.10);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.network-clickable {
    cursor: pointer;
}

.network-clickable:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(2, 132, 199, 0.12);
    border-color: rgba(14, 165, 233, 0.18);
}

/* disabled card should still show clearly */
.network-disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.82;
    filter: grayscale(0.08);
}

.network-disabled .network-hub-image img {
    opacity: 0.72;
}

.network-disabled .network-hub-arrow {
    opacity: 0.4;
}

.network-disabled .network-hub-title-row h4,
.network-disabled .network-hub-body p,
.network-disabled .network-hub-btn-disabled {
    opacity: 0.9;
}

/* ================================
   IMAGE
================================ */
.network-hub-image-wrap {
    position: relative;
    padding: 12px 12px 0;
}

.network-hub-image {
    position: relative;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 16px;
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-hub-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.30s ease;
}

.network-clickable:hover .network-hub-image img {
    transform: scale(1.05);
}

/* ================================
   TOP TAG
================================ */
.network-hub-top-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    max-width: calc(100% - 32px);
    padding: 0 12px;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.02em;
    z-index: 5;
    white-space: nowrap;
    text-transform: capitalize;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.tag-in {
    background: rgba(34, 197, 94, 0.92);
    color: #ffffff;
    border: 1px solid rgba(22, 163, 74, 0.95);
}

.tag-out {
    background: rgba(239, 68, 68, 0.92);
    color: #ffffff;
    border: 1px solid rgba(220, 38, 38, 0.95);
}

.tag-afa {
    background: rgba(14, 165, 233, 0.92);
    color: #ffffff;
    border: 1px solid rgba(2, 132, 199, 0.95);
}

/* keep tag clear even on disabled cards */
.network-disabled .network-hub-top-tag {
    opacity: 1 !important;
    filter: none !important;
}

/* ================================
   BODY
================================ */
.network-hub-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.network-hub-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.network-hub-title-row h4 {
    margin: 0;
    flex: 1;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
    color: #0f172a;
}

.network-hub-arrow {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: #f0f9ff;
    color: #0284c7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.network-clickable:hover .network-hub-arrow {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #ffffff;
}

/* ================================
   FOOTER
================================ */
.network-hub-footer {
    margin-top: auto;
}

.network-hub-btn {
    min-height: 42px;
    border-radius: 13px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.14);
    transition: all 0.25s ease;
}

.network-clickable:hover .network-hub-btn {
    transform: translateY(-1px);
}

.network-hub-btn-disabled {
    background: #e2e8f0;
    color: #64748b;
    box-shadow: none;
}

/* ================================
   AFA CARD
================================ */
.network-afa-card .network-hub-image {
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1200px) {
    .network-hub-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .network-hub-title-row h4 {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .network-hub-section {
        padding: 38px 10px 16px;
    }

    .network-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .network-hub-header h2 {
        font-size: 27px;
    }

    .network-hub-image {
        height: 135px;
    }

    .network-hub-title-row h4 {
        font-size: 16px;
    }

    .network-hub-top-tag {
        top: 14px;
        left: 14px;
        min-height: 30px;
        max-width: calc(100% - 28px);
        padding: 0 11px;
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .network-hub-section {
        padding: 34px 8px 14px;
    }

    .network-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .network-hub-header {
        margin-bottom: 20px;
    }

    .network-hub-header h2 {
        font-size: 22px;
    }

    .network-hub-header p {
        font-size: 13px;
    }

    .network-hub-card {
        border-radius: 18px;
    }

    .network-hub-image-wrap {
        padding: 10px 10px 0;
    }

    .network-hub-image {
        height: 120px;
        border-radius: 14px;
    }

    .network-hub-top-tag {
        top: 12px;
        left: 12px;
        min-height: 28px;
        max-width: calc(100% - 24px);
        padding: 0 10px;
        font-size: 9px;
    }

    .network-hub-body {
        padding: 10px;
    }

    .network-hub-title-row {
        margin-bottom: 10px;
    }

    .network-hub-title-row h4 {
        font-size: 14px;
        line-height: 1.3;
    }

    .network-hub-arrow {
        width: 32px;
        height: 32px;
        border-radius: 10px;
        font-size: 13px;
    }

    .network-hub-btn {
        min-height: 36px;
        font-size: 11px;
        border-radius: 11px;
    }
}

@media (max-width: 480px) {
    .network-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .network-hub-header h2 {
        font-size: 20px;
    }

    .network-hub-header p {
        font-size: 12px;
    }

    .network-hub-image {
        height: 105px;
    }

    .network-hub-title-row h4 {
        font-size: 13px;
    }

    .network-hub-top-tag {
        top: 10px;
        left: 10px;
        min-height: 24px;
        max-width: calc(100% - 20px);
        padding: 0 8px;
        font-size: 8px;
        letter-spacing: 0.01em;
    }

    .network-hub-btn {
        min-height: 34px;
        font-size: 10px;
        padding: 0 8px;
    }
}


/* ================================
   WHY PREMIUM SECTION
================================ */
.why-premium-section {
    padding: 56px 14px 24px;
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.07), transparent 22%),
        linear-gradient(180deg, #f8fbff 0%, #eef6fc 100%);
}

.why-premium-container {
    max-width: 1320px;
    margin: 0 auto;
}

/* ================================
   HEADER
================================ */
.why-premium-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 30px;
}

.why-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.10);
    color: #0284c7;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    margin-bottom: 14px;
}

.why-premium-header h2 {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 900;
    color: #0f172a;
}

.why-premium-header p {
    margin: 0 auto;
    max-width: 660px;
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
}

/* ================================
   GRID
================================ */
.why-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

/* ================================
   CARD
================================ */
.why-premium-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 24px 20px;
    border: 1px solid rgba(14, 165, 233, 0.10);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.why-premium-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #38bdf8);
}

.why-premium-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(2, 132, 199, 0.12);
    border-color: rgba(14, 165, 233, 0.18);
}

/* ================================
   ICON
================================ */
.why-premium-icon-wrap {
    margin-bottom: 18px;
}

.why-premium-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 12px 28px rgba(2, 132, 199, 0.20);
}

/* ================================
   CONTENT
================================ */
.why-premium-content h4 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 900;
    color: #0f172a;
}

.why-premium-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #64748b;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1200px) {
    .why-premium-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .why-premium-section {
        padding: 42px 10px 18px;
    }

    .why-premium-header {
        margin-bottom: 24px;
    }

    .why-premium-header h2 {
        font-size: 24px;
    }

    .why-premium-header p {
        font-size: 14px;
    }

    .why-premium-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .why-premium-card {
        border-radius: 20px;
        padding: 20px 16px;
    }

    .why-premium-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        font-size: 21px;
    }

    .why-premium-content h4 {
        font-size: 18px;
    }

    .why-premium-content p {
        font-size: 13px;
        line-height: 1.7;
    }
}

@media (max-width: 560px) {
    .why-premium-section {
        padding: 36px 8px 14px;
    }

    .why-premium-badge {
        font-size: 11px;
        padding: 7px 12px;
    }

    .why-premium-header h2 {
        font-size: 21px;
    }

    .why-premium-header p {
        font-size: 13px;
        line-height: 1.7;
    }

    .why-premium-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .why-premium-card {
        border-radius: 18px;
        padding: 16px 12px;
    }

    .why-premium-icon-wrap {
        margin-bottom: 14px;
    }

    .why-premium-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 18px;
    }

    .why-premium-content h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .why-premium-content p {
        font-size: 12px;
        line-height: 1.65;
    }
}