.clients-showcase-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 160px 24px 100px 24px;
    background-color: #04010a;
    min-height: 100vh;
}

/* Minimalist Breadcrumbs Architecture */
.clients-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.breadcrumb-link {
    font-size: 13px;
    font-weight: 400;
    color: #8a8f9c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #ffffff;
}

.breadcrumb-separator {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.15);
}

.breadcrumb-current {
    font-size: 13px;
    font-weight: 400;
    color: #f43f5e;
    letter-spacing: 0.01em;
}

/* Header Text */
.clients-main-header {
    margin-bottom: 80px;
}

.clients-main-header .header-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.02em;
}

/* Premium Glassmorphic Accordion Stack */
.clients-stack-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.client-premium-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: transparent;
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

.client-row-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 16px;
    cursor: pointer;
    user-select: none;
}

.client-meta-box {
    display: flex;
    align-items: center;
    gap: 40px;
}

.client-index {
    font-size: 14px;
    font-family: 'Geist Sans', sans-serif;
    color: #8a8f9c;
    font-weight: 500;
    width: 24px;
    transition: color 0.4s ease;
}

.client-name {
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    transition: color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: #8a8f9c;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.accordion-arrow {
    width: 16px;
    height: 16px;
}

/* Hover States Interaction */
.client-row-trigger:hover .client-name {
    color: #f43f5e;
    transform: translateX(6px);
}

.client-row-trigger:hover .client-index {
    color: #ffffff;
}

.client-row-trigger:hover .client-icon-wrapper {
    background: rgba(244, 63, 94, 0.1);
    border-color: rgba(244, 63, 94, 0.2);
    color: #f43f5e;
}

/* Active Expanded System State */
.item-expanded {
    background: rgba(255, 255, 255, 0.01);
    border-color: rgba(244, 63, 94, 0.15);
}

.item-expanded .client-name {
    color: #f43f5e;
}

.item-expanded .client-index {
    color: #f43f5e;
}

.item-expanded .client-icon-wrapper {
    transform: rotate(180deg);
    background: #f43f5e;
    border-color: #f43f5e;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.4);
}

/* Inner Collapsible Description Content */
.client-collapsible-panel {
    overflow: hidden;
}

.client-body-inner {
    padding: 0px 16px 40px 80px; /* Aligned with company name offset */
}

.client-project-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #8a8f9c;
    max-width: 800px;
    font-weight: 400;
}

/* Stack Footer Styling */
.clients-stack-footer {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 56px;
    padding: 0 16px;
}

.footer-note-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    flex-grow: 1;
}

.clients-stack-footer p {
    font-size: 13px;
    color: #4a4e57;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}

/* Responsive Media Queries Optimization */
@media (max-width: 992px) {
    .clients-showcase-container {
        padding-top: 130px;
    }

    .clients-main-header .header-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .clients-main-header {
        margin-bottom: 48px;
    }

    .client-meta-box {
        gap: 24px;
    }

    .client-name {
        font-size: 18px;
    }

    .client-body-inner {
        padding: 0px 16px 32px 48px; /* Shifted alignment on smaller tablets */
    }

    .client-project-desc {
        font-size: 14px;
    }
}

@media (max-width: 48px) {
    .clients-main-header .header-title {
        font-size: 28px;
    }

    .client-row-trigger {
        padding: 24px 8px;
    }

    .client-index {
        display: none; /* Hide index numbering on super tight structures */
    }

    .client-body-inner {
        padding: 0px 8px 24px 8px; /* Standardize full-bleed padding on mobile */
    }
}