  /* ===== Hero ===== */
  .bsc-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #050810;
  }

  .bsc-hero__bg { position: absolute; inset: 0; z-index: 0; }

  .bsc-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 0.45;
  }

  .bsc-hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      rgba(5, 8, 16, 0.97) 0%,
      rgba(5, 8, 16, 0.88) 35%,
      rgba(5, 8, 16, 0.55) 60%,
      rgba(5, 8, 16, 0.15) 100%
    );
  }

  .bsc-hero__content {
    position: relative;
    z-index: 1;
    text-align: left !important;
    padding: 7rem 4rem 10rem 6rem;
    max-width: 620px;
    animation: pi-fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .bsc-hero__content .pi-hero__badge { display: inline-block; }
  .bsc-hero__content .pi-hero__cta { justify-content: flex-start; }

  .bsc-hero__stats {
    position: absolute;
    bottom: 3rem;
    right: 5%;
    z-index: 2;
    display: flex;
    align-items: center;
    background: rgba(10, 10, 20, 0.72);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 2rem;
  }

  .bsc-hero__stat { text-align: center; padding: 0 1.2rem; }

  .bsc-hero__stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .bsc-hero__stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.4rem;
    letter-spacing: 0.03em;
  }

  .bsc-hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
  }

  /* ===== Product Trio Grid ===== */
  .bsc-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .bsc-prod {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
  }
  .bsc-prod:hover { border-color: rgba(175,23,57,0.4); transform: translateY(-3px); }

  .bsc-prod__visual {
    height: 240px; overflow: hidden;
    background: #111;
    display: flex; align-items: center; justify-content: center;
    padding: 1rem;
  }
  .bsc-prod__visual img { max-width: 100%; max-height: 100%; object-fit: contain; }

  .bsc-prod__info { padding: 1.25rem; }
  .bsc-prod__badge {
    display: inline-block;
    font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
    color: #AF1739; background: rgba(175,23,57,0.1);
    padding: 0.2rem 0.6rem; border-radius: 4px; margin-bottom: 0.5rem;
  }
  .bsc-prod__info h3 { color: #fff; font-size: 1.15rem; margin-bottom: 0.15rem; }
  .bsc-prod__en { color: rgba(255,255,255,0.45); font-size: 0.75rem; margin-bottom: 0.75rem; }
  .bsc-prod__list { list-style: none; padding: 0; margin: 0 0 1rem; }
  .bsc-prod__list li {
    position: relative; padding-left: 1rem; color: rgba(255,255,255,0.7); font-size: 0.8rem; line-height: 1.7;
  }
  .bsc-prod__list li::before { content: '›'; position: absolute; left: 0; color: #AF1739; font-weight: 700; }
  .bsc-prod__sizes { display: flex; align-items: center; gap: 0.3rem; flex-wrap: wrap; }
  .bsc-prod__sizes-label {
    font-size: 0.65rem; color: rgba(255,255,255,0.45); margin-right: 0.25rem;
  }
  .bsc-prod__size {
    font-size: 0.7rem; color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.06); padding: 0.15rem 0.4rem; border-radius: 3px;
  }

  /* ===== Comparison Table ===== */
  .bsc-compare {
    margin-top: 2.5rem;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
  }
  .bsc-compare-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; background: transparent !important; }
  .bsc-compare-table th {
    background: rgba(175,23,57,0.18) !important;
    color: #fff !important;
    font-weight: 600;
    padding: 0.875rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
  }
  .bsc-compare-table thead tr:hover th { background: rgba(175,23,57,0.25) !important; color: #fff !important; }
  .bsc-compare-table td {
    padding: 0.875rem 1.25rem;
    color: rgba(255,255,255,0.7) !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: transparent !important;
  }
  .bsc-compare-table tbody tr:last-child td { border-bottom: none; }
  .bsc-compare-table tbody tr:hover { background: rgba(255,255,255,0.06) !important; }
  .bsc-compare-table tbody tr:hover td { color: #fff !important; background: inherit !important; }

  /* ===== Application Cards ===== */
  .bsc-apps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
  }
  .bsc-app-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1.25rem;
    transition: border-color 0.3s;
  }
  .bsc-app-card:hover { border-color: rgba(175,23,57,0.3); }
  .bsc-app-card h3 { color: #fff; font-size: 0.95rem; margin-bottom: 0.5rem; }
  .bsc-app-card p { color: rgba(255,255,255,0.6); font-size: 0.8rem; line-height: 1.6; }

  /* ===== Wiper Cards ===== */
  .bsc-wipers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
  }
  .bsc-wiper-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1.25rem;
    transition: border-color 0.3s;
  }
  .bsc-wiper-card:hover { border-color: rgba(175,23,57,0.3); }
  .bsc-wiper-card h3 { color: #fff; font-size: 0.95rem; margin-bottom: 0.5rem; }
  .bsc-wiper-card p { color: rgba(255,255,255,0.6); font-size: 0.8rem; line-height: 1.6; margin-bottom: 0.75rem; }
  .bsc-wiper-tag {
    display: inline-block;
    font-size: 0.65rem; font-weight: 600;
    color: #AF1739; background: rgba(175,23,57,0.1);
    padding: 0.15rem 0.5rem; border-radius: 3px;
  }

  /* ===== Responsive ===== */
  @media (max-width: 768px) {
    .bsc-hero__content { padding: 5rem 2rem 8rem; }
    .bsc-hero__stats {
      position: relative; bottom: auto; right: auto;
      margin: -4rem auto 0; max-width: 90%;
      flex-wrap: wrap; gap: 0.75rem; padding: 0.75rem 1rem;
    }
    .bsc-hero__stat-divider { display: none; }
    .bsc-trio { grid-template-columns: 1fr; }
    .bsc-apps { grid-template-columns: 1fr; }
    .bsc-wipers { grid-template-columns: 1fr; }
  }
