/* ============================================
   BRANDS PAGE - HOMEPAGE DESIGN
   Exact match with homepage brand cards
   ============================================ */

/* Modern Hero Section */
.modern-hero-section {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.modern-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 100%;
    padding: 0;
    text-align: left;
}

.hero-text-content {
    text-align: center;
    margin-bottom: 3rem;
}

.modern-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.gradient-text-elegant {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-hero-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Hero Stats Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

.hero-stat-card {
    background: white;
    border-radius: 16px;
    padding: 1.25rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    min-width: 0;
    flex: 1;
}

.hero-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hero-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hero-stat-icon.primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

.hero-stat-icon.success {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
}

.hero-stat-icon.warning {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
}

.hero-stat-icon.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
}

.hero-stat-content {
    flex: 1;
}

.hero-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
    margin-bottom: 0.25rem;
    white-space: nowrap;
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: #6b7280;
    font-weight: 500;
    white-space: nowrap;
}

/* Modern Filter Section */
.modern-filter-section {
    background: white;
    padding: 2.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.modern-filter-form {
    background: #f9fafb;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

.filter-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.filter-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-card-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-card-label i {
    color: #6366f1;
}

.filter-card-input,
.filter-card-select {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 0.9375rem;
    color: #1f2937;
    background: white;
    transition: all 0.2s ease;
    outline: none;
}

.filter-card-input:focus,
.filter-card-select:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.filter-card-select {
    cursor: pointer;
}

/* Filter Actions */
.filter-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-filter-apply,
.btn-filter-clear {
    padding: 0.875rem 2rem;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-filter-apply {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

.btn-filter-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.btn-filter-clear {
    background: #f3f4f6;
    color: #6b7280;
}

.btn-filter-clear:hover {
    background: #e5e7eb;
    color: #374151;
}

/* Active Filters Tags */
.active-filters-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.filter-chip i {
    font-size: 0.75rem;
}

.filter-chip-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
}

.filter-chip-remove:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* OLD STYLES - Keep for backwards compatibility */
/* Hero Section */
.brands-hero-section {
    background: #ffffff;
    padding: 3rem 0 2.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.hero-content-center {
    text-align: center;
    margin-bottom: 2.5rem;
}

.brands-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.brands-hero-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stats Grid */
.brands-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.brands-stat-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

.brands-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    background: #f9fafb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #6366f1;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-text {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
}

/* Filter Section */
.brands-filter-section {
    background: #f9fafb;
    padding: 2rem 0 0 0;
}

.brands-filter-form {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.75rem;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.filter-label i {
    color: #6366f1;
    font-size: 0.75rem;
}

.filter-input,
.filter-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1f2937;
    background: white;
    transition: all 0.2s ease;
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.filter-select {
    cursor: pointer;
}

/* Filter Actions */
.filter-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.btn-filter {
    padding: 0.75rem 1.75rem;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-filter:hover {
    background: #4f46e5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-clear {
    padding: 0.75rem 1.5rem;
    background: white;
    color: #6b7280;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-clear:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    color: #374151;
}

/* Active Filters */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
    margin-bottom: 0;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #374151;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.filter-tag i {
    font-size: 0.75rem;
    color: #6366f1;
}

.tag-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-left: 0.25rem;
}

.tag-remove:hover {
    background: #ef4444;
    color: white;
}

.tag-remove i {
    font-size: 0.625rem;
}

/* Brands Grid Section */
.brands-grid-section {
    padding: 2rem 0;
    background: #fafbfc;
}

/* Success Modern Grid - 4 Columns */
.success-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Success Modern Card - Homepage Design */
.success-modern-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.06),
        0 2px 4px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    color: inherit;
    display: block;
}

.success-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--card-color, #6366f1) 0%, var(--card-color-light, #818cf8) 100%);
}

.success-modern-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, var(--card-color, #6366f1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-modern-card:hover::after {
    opacity: 0.3;
}

.success-modern-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.12);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #fbbf24;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.featured-badge i {
    font-size: 0.875rem;
}

/* Card Header */
.success-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.5rem 1.25rem;
    background: linear-gradient(to bottom, #fafbfc 0%, #ffffff 100%);
    position: relative;
}

.success-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
    color: #ffffff;
    background: var(--card-color, #6366f1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.success-modern-card:hover .success-logo {
    transform: scale(1.1);
}

.success-logo::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
}

.success-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.25rem;
    position: relative;
    z-index: 1;
}

.success-info {
    flex: 1;
    min-width: 0;
}

.success-brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.success-brand-desc {
    font-size: 0.6875rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.success-brand-desc i {
    font-size: 0.625rem;
    color: var(--card-color, #6366f1);
}

/* Metrics Grid */
.success-metrics-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 1.5rem;
}

.metric-box {
    background: transparent;
    border-radius: 0;
    padding: 0.875rem 0;
    border: none;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-box:last-child {
    border-bottom: none;
}

.success-modern-card:hover .metric-box {
    padding-left: 0.5rem;
}

.metric-label {
    font-size: 0.6875rem;
    color: #64748b;
    font-weight: 600;
    margin: 0;
    display: block;
}

.metric-value {
    font-size: 1.125rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
    display: block;
}

.metric-progress {
    display: none;
}

.metric-progress-bar {
    display: none;
}

/* Score Badge */
.success-score-badge {
    background: linear-gradient(135deg, var(--card-color, #6366f1) 0%, var(--card-color-dark, #4f46e5) 100%);
    border: none;
    border-radius: 0 0 24px 24px;
    padding: 1rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 1.25rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.success-score-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
}

.success-score-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -30%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
}

.score-label {
    font-size: 0.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.375rem;
    display: block;
    position: relative;
    z-index: 1;
}

.score-value {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    display: block;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    border: 2px dashed #e5e7eb;
}

.empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #d1d5db;
}

.empty-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.empty-text {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.btn-reset {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: #6366f1;
    color: white;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-reset:hover {
    background: #4f46e5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Modern Pagination */
.modern-pagination {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.pagination-info {
    display: flex;
    gap: 2rem;
    font-size: 0.9375rem;
    color: #6b7280;
}

.pagination-showing,
.pagination-total {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.pagination-info strong {
    color: #1f2937;
    font-weight: 700;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn,
.pagination-page {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    background: white;
    color: #6b7280;
}

.pagination-btn:not(.disabled):hover,
.pagination-page:hover {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
    transform: translateY(-2px);
}

.pagination-page.active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-color: #6366f1;
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-ellipsis {
    padding: 0 0.5rem;
    color: #9ca3af;
}

/* CTA Section */
.brands-cta-section {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    padding: 4rem 0;
    border-top: none;
    position: relative;
    overflow: hidden;
}

.brands-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    background: white;
    color: #6366f1;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1280px) {
    .success-modern-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .success-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .success-card-header {
        padding: 1.35rem 1.35rem 1.15rem;
    }

    .success-logo {
        width: 46px;
        height: 46px;
        font-size: 1.25rem;
    }

    .metric-value {
        font-size: 1.0625rem;
    }

    .score-value {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .brands-hero-title {
        font-size: 2rem;
    }

    .brands-hero-subtitle {
        font-size: 1rem;
    }

    .brands-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }

    .filter-grid {
        grid-template-columns: 1fr;
    }

    .success-modern-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .success-card-header {
        padding: 1.25rem 1.25rem 1rem;
    }

    .success-logo {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }

    .success-brand-name {
        font-size: 0.9375rem;
    }

    .success-brand-desc {
        font-size: 0.625rem;
    }

    .success-metrics-grid {
        padding: 0 1.25rem;
    }

    .metric-box {
        padding: 0.75rem 0;
    }

    .metric-label {
        font-size: 0.625rem;
    }

    .metric-value {
        font-size: 1rem;
    }

    .score-value {
        font-size: 1.625rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .pagination-info {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .pagination-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .brands-hero-title {
        font-size: 1.75rem;
    }

    .brands-stats-grid {
        grid-template-columns: 1fr;
    }
}
