/* ===== 子页面共享样式 ===== */

.page-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0d2c16 0%, #1a5c32 50%, #1f9f49 100%);
    color: #fff;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 40%, rgba(255, 140, 58, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 85% 60%, rgba(88, 201, 114, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero::after {
    display: none;
}

.page-hero .container::before {
    display: none;
}

.page-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-hero-tag .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.page-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    margin: 0 0 20px;
    line-height: 1.2;
    max-width: 720px;
}

.page-hero p {
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.88);
    max-width: 600px;
    margin: 0 0 32px;
    line-height: 1.8;
}

.page-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumb span {
    opacity: 0.5;
}

.sub-section {
    padding: 80px 0;
}

.sub-section.alt {
    background: var(--bg-light);
}

.sub-section.dark {
    background: #0d2c16;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== 场景解决方案页 ===== */

.scenario-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 20px;
}

.scenario-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    box-shadow: 0 8px 32px rgba(18, 63, 34, 0.08);
}

.scenario-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(18, 63, 34, 0.15);
}

.scenario-card.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(31, 159, 73, 0.15), 0 20px 48px rgba(18, 63, 34, 0.15);
}

.scenario-card:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.scenario-card:nth-child(2) { grid-column: span 4; }
.scenario-card:nth-child(3) { grid-column: span 3; }
.scenario-card:nth-child(4) { grid-column: span 4; }
.scenario-card:nth-child(5) { grid-column: span 3; }
.scenario-card:nth-child(6) { grid-column: span 5; }

.scenario-card-visual {
    height: 140px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.scenario-card:nth-child(1) .scenario-card-visual { height: 100%; min-height: 280px; }

.scenario-card-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 44, 22, 0.75) 0%, transparent 60%);
}

.scenario-card-body {
    padding: 20px 24px;
    position: relative;
}

.scenario-card:nth-child(1) .scenario-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    z-index: 2;
}

.scenario-card-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.scenario-card h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.scenario-card p {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.scenario-card:nth-child(1) p {
    color: rgba(255, 255, 255, 0.85);
}

.scenario-detail-panel {
    margin-top: 48px;
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    border: 1px solid rgba(31, 159, 73, 0.12);
    box-shadow: var(--card-shadow);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.scenario-detail-panel.visible {
    opacity: 1;
    transform: translateY(0);
}

.solution-flow {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 32px 0;
    overflow-x: auto;
    padding-bottom: 8px;
}

.flow-step {
    flex: 1;
    min-width: 140px;
    text-align: center;
    position: relative;
    padding: 0 12px;
}

.flow-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -8px;
    top: 28px;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
}

.flow-step-num {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-color), #58c972);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 12px;
    transition: transform 0.3s ease;
}

.flow-step:hover .flow-step-num {
    transform: scale(1.1) rotate(-3deg);
}

.flow-step h4 {
    margin: 0 0 6px;
    font-size: 15px;
}

.flow-step p {
    margin: 0;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.solution-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.metric-box {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.metric-box strong {
    display: block;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.metric-box span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== 智慧平台驾驶舱 ===== */

.dashboard-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    min-height: 600px;
}

.dashboard-sidebar {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 24px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.dashboard-nav-item:hover,
.dashboard-nav-item.active {
    background: rgba(31, 159, 73, 0.2);
    color: #fff;
}

.dashboard-nav-item .icon {
    font-size: 18px;
}

.dashboard-main {
    display: grid;
    gap: 20px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.stat-card.animate::before {
    transform: scaleX(1);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-change {
    font-size: 12px;
    margin-top: 8px;
    color: #58c972;
}

.stat-change.down {
    color: #ff8c3a;
}

.dashboard-grid-2 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.dashboard-panel {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
}

.dashboard-panel h3 {
    margin: 0 0 20px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(31, 159, 73, 0.25);
    color: #58c972;
    font-weight: 600;
}

.live-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #58c972;
    animation: pulse-dot 1.5s ease infinite;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 160px;
    padding-top: 20px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), rgba(31, 159, 73, 0.3));
    border-radius: 6px 6px 0 0;
    min-height: 20px;
    transition: height 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.chart-bar span {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
}

.device-list {
    display: grid;
    gap: 12px;
}

.device-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    transition: background 0.2s;
}

.device-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.device-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.device-status.online { background: #58c972; box-shadow: 0 0 8px rgba(88, 201, 114, 0.6); }
.device-status.warning { background: #ff8c3a; box-shadow: 0 0 8px rgba(255, 140, 58, 0.6); }
.device-status.offline { background: #666; }

.device-info h4 {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.device-info p {
    margin: 2px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

.arch-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 40px 20px;
}

.arch-node {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px 24px;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
}

.arch-node:hover {
    background: rgba(31, 159, 73, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.arch-node.highlight {
    background: linear-gradient(135deg, rgba(31, 159, 73, 0.3), rgba(31, 159, 73, 0.1));
    border-color: var(--primary-color);
}

.arch-node strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.arch-node span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.arch-arrow {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
}

/* ===== 方案配置器 ===== */

.configurator-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.progress-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    flex: 1;
    max-width: 160px;
}

.progress-step::before {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(50% + 24px);
    width: calc(100% - 48px);
    height: 3px;
    background: rgba(31, 159, 73, 0.15);
    z-index: 0;
}

.progress-step:last-child::before {
    display: none;
}

.progress-step.done::before {
    background: var(--primary-color);
}

.progress-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid rgba(31, 159, 73, 0.2);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.progress-step.active .progress-dot {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 0 6px rgba(31, 159, 73, 0.15);
}

.progress-step.done .progress-dot {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

.progress-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.progress-step.active .progress-label {
    color: var(--primary-color);
    font-weight: 600;
}

.config-step {
    display: none;
    animation: stepIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.config-step.active {
    display: block;
}

@keyframes stepIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.config-step h2 {
    text-align: center;
    font-size: 26px;
    margin: 0 0 8px;
}

.config-step .subtitle {
    text-align: center;
    color: var(--text-muted);
    margin: 0 0 36px;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.option-card {
    position: relative;
    padding: 28px 24px;
    border-radius: 20px;
    border: 2px solid rgba(31, 159, 73, 0.12);
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-family: inherit;
}

.option-card:hover {
    border-color: rgba(31, 159, 73, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(18, 63, 34, 0.1);
}

.option-card.selected {
    border-color: var(--primary-color);
    background: rgba(31, 159, 73, 0.04);
    box-shadow: 0 0 0 4px rgba(31, 159, 73, 0.1);
}

.option-card .emoji {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.option-card h3 {
    margin: 0 0 6px;
    font-size: 17px;
}

.option-card p {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.option-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.config-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.btn.secondary {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn.secondary:hover {
    background: var(--bg-light);
}

.result-card {
    background: linear-gradient(135deg, #f4f9f4, #fff);
    border-radius: 24px;
    padding: 36px;
    border: 1px solid rgba(31, 159, 73, 0.15);
    text-align: center;
}

.result-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.result-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 28px 0;
}

.result-product {
    background: #fff;
    border-radius: 16px;
    padding: 20px 16px;
    border: 1px solid rgba(31, 159, 73, 0.1);
}

.result-product img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 12px;
}

.result-product h4 {
    margin: 0;
    font-size: 14px;
}

/* ===== 品牌故事页 ===== */

.story-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), rgba(31, 159, 73, 0.1));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    padding-right: 48px;
    padding-left: 0;
}

.timeline-content {
    flex: 1;
    padding-left: 48px;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px rgba(31, 159, 73, 0.2);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-year {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.timeline-content h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.timeline-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.timeline-spacer {
    flex: 1;
}

.values-orbit {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.value-orbit-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(31, 159, 73, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-orbit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(31, 159, 73, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.value-orbit-card:hover::before {
    opacity: 1;
}

.value-orbit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow);
}

.value-orbit-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), #58c972);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.value-orbit-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.value-orbit-card p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.impact-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-card strong {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #58c972;
    margin-bottom: 8px;
    line-height: 1;
}

.impact-card span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

/* ===== 子页面导航 ===== */

.sub-nav-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sub-nav-links a {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.sub-nav-links a:hover,
.sub-nav-links a.active {
    color: var(--primary-color);
    background: rgba(31, 159, 73, 0.08);
    border-color: rgba(31, 159, 73, 0.2);
}

/* ===== 响应式 ===== */

@media (max-width: 920px) {
    .scenario-bento {
        grid-template-columns: 1fr;
    }

    .scenario-card:nth-child(n) {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    .scenario-card:nth-child(1) .scenario-card-visual {
        min-height: 180px;
        height: 180px;
    }

    .scenario-card:nth-child(1) .scenario-card-body {
        position: relative;
        color: inherit;
    }

    .scenario-card:nth-child(1) p {
        color: var(--text-muted);
    }

    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 12px;
    }

    .dashboard-nav-item {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-grid-2 {
        grid-template-columns: 1fr;
    }

    .option-grid {
        grid-template-columns: 1fr;
    }

    .result-products {
        grid-template-columns: 1fr;
    }

    .values-orbit {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-metrics {
        grid-template-columns: 1fr;
    }

    .story-timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
        padding-left: 48px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-content {
        text-align: left;
        padding-left: 0;
        padding-right: 0;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-spacer {
        display: none;
    }

    .solution-flow {
        flex-direction: column;
        align-items: stretch;
    }

    .flow-step:not(:last-child)::after {
        content: '↓';
        position: static;
        display: block;
        text-align: center;
        margin: 8px 0;
    }
}

.platform-preview {
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.platform-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.platform-preview figcaption {
    padding: 16px 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    background: rgba(0, 0, 0, 0.25);
}

.brand-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.brand-gallery figure {
    margin: 0;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(21, 61, 38, 0.1);
    box-shadow: var(--card-shadow);
}

.brand-gallery img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #f5faf7;
    padding: 10px;
    box-sizing: border-box;
}

.brand-gallery figcaption {
    padding: 12px 16px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

@media (max-width: 900px) {
    .brand-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .brand-gallery {
        grid-template-columns: 1fr;
    }
}
