
  .tv-oem-section {
    padding: 96px 32px;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    color: #1b1c1c;
  }

  .tv-oem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  @media (max-width: 768px) {
    .tv-oem-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .tv-oem-section {
      padding: 64px 20px;
    }
  }

  /* Left column */
  .tv-oem-title {
    font-family: 'Manrope', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1b1c1c;
    letter-spacing: -0.025em;
    margin: 0 0 24px 0;
    line-height: 1.2;
  }

  .tv-oem-desc {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #414754;
    margin: 0 0 40px 0;
  }

  .tv-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .tv-feature-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .tv-feature-icon {
    font-family: 'Material Symbols Outlined';
    font-size: 2rem;
    color: #0057bf;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    line-height: 1;
  }

  .tv-feature-title {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1b1c1c;
    margin: 0;
  }

  .tv-feature-desc {
    font-size: 0.75rem;
    color: #414754;
    margin: 0;
    line-height: 1.5;
  }

  /* Right column - workflow card */
  .tv-workflow-outer {
    background-color: #f0eded;
    padding: 4px;
    border-radius: 16px;
  }

  .tv-workflow-inner {
    background: #ffffff;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  }

  .tv-workflow-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 0 32px 0;
    color: #1b1c1c;
  }

  .tv-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
  }

  /* Vertical connecting line */
  .tv-steps::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background-color: rgba(193, 198, 215, 0.4);
  }

  .tv-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
  }

  .tv-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0057bf;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .tv-step-content h5 {
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 0 4px 0;
    color: #1b1c1c;
    padding-top: 8px;
  }

  .tv-step-content p {
    font-size: 0.875rem;
    color: #414754;
    margin: 0;
    line-height: 1.5;
  }
