
  .ape-section {
    padding: 40px 0;
    background-color: #f6f3f2;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
  }

  .ape-section *, .ape-section *::before, .ape-section *::after {
    box-sizing: border-box;
  }

  .ape-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* Header Row */
  .ape-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    gap: 16px;
  }

  .ape-header-left h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1b1c1c;
    letter-spacing: -0.025em;
    margin: 0;
    line-height: 1.2;
  }

  .ape-header-left p {
    color: #414754;
    margin: 8px 0 0;
    font-size: 1.125rem;
  }

  .ape-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #0057bf;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    white-space: nowrap;
    text-decoration: none;
    transition: gap 0.2s ease;
  }

  .ape-view-all-btn:hover {
    gap: 12px;
    color: #0057bf;
    text-decoration: none;
  }

  .ape-view-all-btn .material-symbols-outlined {
    font-size: 20px;
    transition: transform 0.2s ease;
  }

  .ape-view-all-btn:hover .material-symbols-outlined {
    transform: translateX(4px);
  }

  /* Bento Grid */
  .ape-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Card base */
  .ape-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 320px;
    background-color: #1b1c1c;
  }

  .ape-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 0.7s ease;
  }

  .ape-card:hover img {
    transform: scale(1.05);
  }

  .ape-card-body {
    position: relative;
    height: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .ape-badge {
    display: inline-block;
    background-color: #d8e2ff;
    color: #001a42;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    width: fit-content;
  }

  .ape-card-title-lg {
    font-family: 'Manrope', sans-serif;
    font-size: 1.875rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
  }

  .ape-card-title-md {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
  }

  .ape-card-desc {
    color: #e2e8f0;
    margin: 8px 0 0;
    max-width: 28rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* OEM card (blue bg, no image) */
  .ape-card-oem {
    background-color: #102754;
  }

  .ape-card-oem .ape-card-body {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .ape-card-oem .material-symbols-outlined {
    font-size: 60px;
    color: #ffffff;
    margin-bottom: 16px;
  }

  .ape-card-oem .ape-card-desc {
    color: #bfdbfe;
  }

  .ape-oem-btn {
    margin-top: 24px;
    background: #ffffff;
    color: #0057bf;
    border: none;
    padding: 8px 24px;
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .ape-oem-btn:hover {
    background-color: #eff6ff;
  }

  /* Desktop grid layout */
  @media (min-width: 768px) {
    .ape-header {
      flex-direction: row;
    }

    .ape-grid {
      grid-template-columns: repeat(12, 1fr);
    }

    .ape-card-home {
      grid-column: span 8;
    }

    .ape-card-solar {
      grid-column: span 4;
    }

    .ape-card-baby {
      grid-column: span 4;
    }

    .ape-card-pet {
      grid-column: span 4;
    }

    .ape-card-oem {
      grid-column: span 4;
    }
  }
  .tool_inquiry_btn {
    margin-top: 20px;
  }
