
  .ynf-about-machinery-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #fff;
    padding: 56px 24px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }

  .ynf-about-machinery-section * {
    box-sizing: border-box;
  }

  .ynf-about-machinery-container {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(360px, 1.05fr) minmax(620px, 1.65fr);
    gap: 42px;
    align-items: center;
  }

  .ynf-about-copy {
    padding: 10px 0;
  }

  .ynf-about-copy h2 {
    margin: 0 0 24px;
    color: #111;
    font-size: 34px;
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
  }

  .ynf-about-copy h2 span {
    color: #e60012;
  }

  .ynf-about-copy p {
    max-width: 660px;
    margin: 0 0 18px;
    color: #333;
    font-size: 17px;
    line-height: 1.72;
    font-weight: 400;
  }

  .ynf-about-copy p:last-child {
    margin-bottom: 0;
  }

  .ynf-about-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .ynf-stat-card {
    min-height: 190px;
    padding: 28px 16px 24px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .045);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }

  .ynf-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 0, 18, .25);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
  }

  .ynf-stat-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    color: #222;
  }

  .ynf-stat-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 3.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .ynf-stat-card strong {
    display: block;
    margin-bottom: 8px;
    color: #e60012;
    font-size: 36px;
    line-height: 1;
    font-weight: 800;
  }

  .ynf-stat-card span {
    color: #333;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 600;
  }

  @media (max-width: 1200px) {
    .ynf-about-machinery-container {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .ynf-about-copy {
      text-align: center;
    }

    .ynf-about-copy p {
      margin-left: auto;
      margin-right: auto;
    }
  }

  @media (max-width: 768px) {
    .ynf-about-machinery-section {
      padding: 46px 18px;
    }

    .ynf-about-copy h2 {
      font-size: 28px;
      margin-bottom: 18px;
    }

    .ynf-about-copy p {
      font-size: 15px;
      line-height: 1.65;
    }

    .ynf-about-stats {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .ynf-stat-card {
      min-height: 165px;
      padding: 22px 12px 20px;
    }

    .ynf-stat-icon {
      width: 46px;
      height: 46px;
      margin-bottom: 14px;
    }

    .ynf-stat-card strong {
      font-size: 29px;
    }

    .ynf-stat-card span {
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .ynf-about-machinery-section {
      padding: 42px 14px;
    }

    .ynf-about-stats {
      grid-template-columns: 1fr;
    }

    .ynf-stat-card {
      min-height: 150px;
    }
  }
