/* Clients */
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.client-logo {
    width: 160px;
    height: 90px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.client-logo:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

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

.client-logo:last-child {
    padding: 4px;
}

.client-logo:last-child img {
    max-width: 100%;
    max-height: 100%;
}

/* Text-based client name cards */
.clients-text-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    justify-items: stretch;
}

.client-name-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    transition: var(--transition);
}

.client-name-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--primary);
    color: #fff;
    padding: 16px 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 3000;
    opacity: 0;
    transition: all 0.4s ease;
    max-width: 420px;
    width: 90%;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-icon {
    font-size: 1.3rem;
    color: var(--accent);
    flex-shrink: 0;
}

.toast-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.85rem;
}

.toast-text strong {
    font-size: 0.95rem;
    color: var(--accent);
}

.toast-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    transition: var(--transition);
}

.toast-close:hover {
    color: #fff;
}
