.brands-hero {
        background: #fdfdfd;
        padding: 5rem 2rem;
        text-align: center;
        border-bottom: 1px solid var(--gray-100);
      }
      .brands-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 2rem;
        padding: 4rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
      }
      .brand-card {
        background: white;
        border: 1px solid var(--gray-200);
        border-radius: 12px;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: all 0.3s;
        text-decoration: none;
        color: inherit;
      }
      .brand-card:hover {
        border-color: var(--blue-500);
        box-shadow: var(--shadow-sm);
        transform: translateY(-4px);
      }
      .brand-logo-placeholder {
        width: 100px;
        height: 100px;
        background: var(--gray-50);
        border-radius: 50%;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: var(--gray-400);
        font-size: 0.8rem;
      }
      .brand-name {
        font-weight: 700;
        color: var(--gray-900);
      }
