.customers-page { background: #fff; color: #111827; }
.customers-icon-sm { width: 14px; height: 14px; }

.customers-hero { padding: 64px 0; border-bottom: 1px solid #f1f5f9; background: #fff; }
.customers-hero h1 {
    color: #030712;
    margin: 0;
    font-size: clamp(2rem, 4.6vw, 2.6rem);
    line-height: 1.1;
    font-weight: 900;
}
.customers-hero-succeed {
    margin: 0 0 10px;
    color: #ea580c;
    font-size: clamp(2rem, 4.6vw, 2.6rem);
    line-height: 1.1;
    font-weight: 900;
}
.customers-hero-lead {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 22px;
}
.customers-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 16px;
    background: linear-gradient(90deg, #f97316, #dc2626);
}

.customers-brand-card-wrap { position: relative; }
.customers-chart-badge {
    position: absolute;
    top: -14px;
    right: -8px;
    z-index: 2;
    width: 110px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 14px 26px rgba(15, 23, 42, .1);
    padding: 10px;
}
.customers-chart-badge svg { width: 100%; height: 44px; color: #f97316; }
.customers-brand-card {
    width: 292px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: 0 14px 26px rgba(15, 23, 42, .1);
    background: #fff;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.customers-brand-card div {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}
.customers-brand-card div:nth-child(2n) { border-right: 0; }
.customers-brand-card div:nth-last-child(-n+2) { border-bottom: 0; }
.customers-brand-card span { font-size: 24px; font-weight: 900; letter-spacing: -.02em; }

.customers-filters {
    position: sticky;
    top: 56px;
    z-index: 20;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}
.customers-filters-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; padding: 14px 0; }
.customers-select-wrap { position: relative; }
.customers-select-wrap svg {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}
.customers-select {
    appearance: none;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    color: #111827;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 30px 10px 12px;
    min-width: 145px;
}
.customers-search { position: relative; flex: 1 1 230px; }
.customers-search svg {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}
.customers-search input {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    color: #111827;
    font-size: 14px;
    padding: 10px 12px 10px 34px;
}
.customers-count { color: #6b7280; font-size: 14px; white-space: nowrap; }
.customers-count strong { color: #111827; }

.customers-grid-wrap { background: #f8fafc; padding: 48px 0 58px; }
.customers-empty {
    text-align: center;
    padding: 56px 16px;
    background: #fff;
    border: 1px dashed #d1d5db;
    border-radius: 14px;
    margin-bottom: 14px;
}
.customers-empty p { color: #6b7280; margin-bottom: 10px; }
.customers-empty button {
    border: 0;
    background: transparent;
    color: #ea580c;
    font-size: 14px;
    font-weight: 700;
}

.customer-card-v2 {
    height: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, .04);
    display: flex;
    flex-direction: column;
    transition: all .2s ease;
}
.customer-card-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, .1);
}
.customer-card-abbr {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.02em;
}
.customer-card-industry {
    margin: 0 0 5px;
    color: #6b7280;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.customer-card-v2 h3 { margin: 0 0 8px; color: #111827; font-size: 22px; line-height: 1.2; font-weight: 800; }
.customer-card-tagline { margin: 0 0 16px; color: #6b7280; font-size: 14px; line-height: 1.65; flex: 1; }
.customer-card-links { margin-top: auto; display: grid; gap: 6px; }
.customer-card-links button {
    border: 0;
    background: transparent;
    color: #4b5563;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    text-align: left;
}
.customer-card-links button svg { color: #3b82f6; fill: currentColor; }
.customer-card-links a {
    color: #ea580c;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.customer-card-links a:hover { text-decoration: underline; }

@media (max-width: 991.98px) {
    .customers-brand-card-wrap { margin-top: 12px; }
}
