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

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

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

  .mc-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%
    );
  }

  .mc-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);
  }

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

  .mc-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;
  }

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

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

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

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

  /* ===== Product Trio Grid ===== */
  .mc-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .mc-prod {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .mc-prod__visual {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #0a0a0f;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mc-prod__visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.4s;
  }
  .mc-prod:hover .mc-prod__visual img { transform: scale(1.04); }
  .mc-prod__info {
    padding: 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .mc-prod__badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    background: rgba(175,23,57,0.15);
    border: 1px solid rgba(175,23,57,0.3);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #e8a0b0;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
    width: fit-content;
  }
  .mc-prod__info h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.2rem;
  }
  .mc-prod__en {
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
    font-style: italic;
    margin: 0 0 0.6rem;
  }
  .mc-prod__list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem;
    flex: 1;
  }
  .mc-prod__list li {
    position: relative;
    padding-left: 1em;
    margin-bottom: 0.35rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .mc-prod__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #AF1739;
  }
  .mc-prod__sizes {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
  }
  .mc-prod__sizes-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    margin-right: 0.1rem;
  }
  .mc-prod__size {
    display: inline-block;
    padding: 0.15rem 0.45rem;
    background: rgba(175,23,57,0.1);
    border: 1px solid rgba(175,23,57,0.22);
    border-radius: 4px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
  }
  .mc-prod__link {
    color: #AF1739;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
    margin-top: auto;
  }
  .mc-prod__link:hover { color: #d4264e; }

  /* Bottom row: overview chart + comparison table */
  .mc-slide-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .mc-slide-bottom__chart {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .mc-slide-bottom__chart img {
    max-width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
  }
  .mc-slide-bottom__caption {
    margin-top: 0.75rem;
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    font-style: italic;
    text-align: center;
  }
  .mc-slide-bottom__table {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
  }

  @media (max-width: 900px) {
    .mc-trio { grid-template-columns: 1fr; }
    .mc-slide-bottom { grid-template-columns: 1fr; }
  }

  /* ===== Feature Grid ===== */
  .mc-feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.25rem;
  }
  .mc-feat-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .mc-feat-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
  }
  .mc-feat-card:hover {
    border-color: rgba(175,0,54,0.25);
    transform: translateY(-2px);
  }
  .mc-feat-series-title {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    margin: 2.5rem 0 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(175,23,57,0.2);
    letter-spacing: 0.02em;
  }
  .mc-feat-series-title:first-of-type { margin-top: 0; }
  .mc-feat-series-title span {
    font-weight: 400;
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
    margin-left: 0.5rem;
  }
  .mc-feat-card__img {
    height: 150px;
    overflow: hidden;
    background: #0a0a0f;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mc-feat-card__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 0.75rem;
    transition: transform 0.4s;
  }
  .mc-feat-card:hover .mc-feat-card__img img { transform: scale(1.04); }
  .mc-feat-card h3 {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin: 0;
    padding: 0.75rem 1rem 0.2rem;
  }
  .mc-feat-card p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
    margin: 0;
    padding: 0 1rem 0.875rem;
  }

  /* ===== Compare Table ===== */
  .mc-compare-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; background: transparent !important; }
  .mc-compare-table th {
    background: rgba(175,0,54,0.12) !important;
    color: rgba(255,255,255,0.7) !important;
    font-weight: 600;
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    white-space: normal;
  }
  .mc-compare-table td {
    padding: 0.875rem 1rem;
    color: rgba(255,255,255,0.7) !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: transparent !important;
  }
  .mc-compare-table tbody tr:last-child td { border-bottom: none; }
  .mc-compare-table tbody tr:hover { background: rgba(255,255,255,0.08) !important; }
  .mc-compare-table tbody tr:hover td { background: inherit !important; }
  .mc-compare-table thead tr:hover { background: rgba(175,0,54,0.12) !important; }
  .mc-compare-table thead tr:hover th { background: inherit !important; }

  /* ===== Application Cards ===== */
  .mc-apps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .mc-app-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s;
    display: flex;
    flex-direction: column;
  }
  .mc-app-card:hover { border-color: rgba(175,0,54,0.25); }
  .mc-app-card__img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111;
  }
  .mc-app-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: opacity 0.3s;
  }
  .mc-app-card:hover .mc-app-card__img img { opacity: 1; }
  .mc-app-card__body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .mc-app-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    margin: 0 0 0.625rem;
  }
  .mc-app-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem;
    flex: 1;
  }
  .mc-app-list li {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    padding-left: 0.875rem;
    position: relative;
  }
  .mc-app-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(175,0,54,0.5);
  }
  .mc-app-card__series {
    font-size: 0.75rem;
    font-weight: 600;
    color: #af0036;
    letter-spacing: 0.04em;
    margin-top: auto;
  }

  /* ===== Docs Grid ===== */
  .mc-docs-group-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 2rem 0 0;
  }
  .mc-docs-group-title:first-of-type { margin-top: 0; }
  .mc-docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 0.75rem;
  }
  .mc-doc-card {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    transition: all 0.2s;
  }
  .mc-doc-card:hover {
    border-color: rgba(175,0,54,0.3);
    background: rgba(175,0,54,0.04);
  }
  .mc-doc-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin: 0 0 0.3rem;
  }
  .mc-doc-card p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
    line-height: 1.5;
  }
  .mc-doc-arrow {
    margin-left: auto;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.3);
    flex-shrink: 0;
    padding-left: 1rem;
  }

  /* ===== Responsive ===== */
  @media (max-width: 1200px) {
    .mc-feat-grid, .mc-feat-grid--4 { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 900px) {
    .mc-feat-grid, .mc-feat-grid--4 { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .mc-hero__content { padding: 5rem 1.5rem 8rem 1.5rem; }
    .mc-hero__stats {
      position: relative;
      bottom: auto;
      right: auto;
      margin: 0 1.5rem 2rem;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 0.75rem;
    }
    .mc-hero__stat { padding: 0 0.75rem; }
    .mc-hero__stat-value { font-size: 1.2rem; }
    .mc-feat-grid, .mc-feat-grid--ms, .mc-feat-grid--msq { grid-template-columns: 1fr; }
    .mc-docs-grid { grid-template-columns: 1fr; }
    .mc-apps-grid { grid-template-columns: 1fr; }
  }
