
  html,
  body {
    overflow-x: hidden;
  }

  .ynf-collections-hero-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #f5f6f8;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }

  .ynf-collections-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    background: #ffffff;
    box-sizing: border-box;
  }

  .ynf-collections-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    min-height: 450px;
    overflow: hidden;
    background: #f8fafc;
  }

  .ynf-collections-hero::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 52%;
    height: 100%;
    background: #fff2f2;
    clip-path: polygon(0 0, 92% 0, 78% 100%, 0% 100%);
    z-index: 0;
  }

  .ynf-collections-hero-text {
    position: relative;
    z-index: 2;
    padding: 70px 40px 45px;
    box-sizing: border-box;
  }

  .ynf-hero-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 14px;
    margin-bottom: 30px;
    border: 1px solid #fecaca;
    border-radius: 999px;
    background: #fff7f7;
    color: #d71920;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
  }

  .ynf-collections-hero-text h1 {
    margin: 0 0 22px;
    color: #111827;
    font-size: 54px;
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: -0.8px;
  }

  .ynf-collections-hero-text p {
    max-width: 610px;
    margin: 0 0 28px;
    color: #4b5563;
    font-size: 22px;
    line-height: 1.52;
    font-weight: 400;
  }

  .ynf-hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .ynf-hero-btn {
    min-width: 180px;
    height: 54px;
    padding: 0 26px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.25s ease;
  }

  .ynf-hero-btn-primary {
    background: #d71920;
    color: #ffffff;
    border: 2px solid #d71920;
  }

  .ynf-hero-btn-primary:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(215, 25, 32, 0.22);
  }

  .ynf-hero-btn-outline {
    background: #ffffff;
    color: #d71920;
    border: 2px solid #d71920;
  }

  .ynf-hero-btn-outline:hover {
    background: #fff1f1;
    color: #b91c1c;
    transform: translateY(-2px);
  }

  .ynf-collections-hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 55px 40px 50px 20px;
    box-sizing: border-box;
  }

  .ynf-engine-visual-card {
    width: 100%;
    max-width: 560px;
    min-height: 305px;
    border-radius: 18px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ynf-engine-svg {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    filter: drop-shadow(0 16px 24px rgba(15, 23, 42, 0.12));
  }

  .ynf-collections-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0 40px 35px;
    background: #f8fafc;
    box-sizing: border-box;
  }

  .ynf-trust-item {
    color: #16a34a;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
  }

  @media (max-width: 991px) {
    .ynf-collections-hero {
      grid-template-columns: 1fr;
    }

    .ynf-collections-hero::before {
      width: 100%;
      clip-path: none;
    }

    .ynf-collections-hero-text {
      padding: 55px 24px 20px;
    }

    .ynf-collections-hero-text h1 {
      font-size: 42px;
    }

    .ynf-collections-hero-text p {
      font-size: 18px;
    }

    .ynf-collections-hero-visual {
      padding: 20px 24px 40px;
    }

    .ynf-collections-trust {
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      padding: 0 24px 35px;
    }
  }

  @media (max-width: 575px) {
    .ynf-collections-hero-text {
      padding: 45px 15px 20px;
    }

    .ynf-collections-hero-text h1 {
      font-size: 34px;
    }

    .ynf-collections-hero-text p {
      font-size: 16px;
    }

    .ynf-hero-buttons {
      gap: 12px;
    }

    .ynf-hero-btn {
      width: 100%;
      min-width: 100%;
      height: 50px;
      font-size: 16px;
    }

    .ynf-collections-hero-visual {
      padding: 10px 15px 35px;
    }

    .ynf-collections-trust {
      grid-template-columns: 1fr;
      padding: 0 15px 32px;
    }

    .ynf-trust-item {
      font-size: 17px;
    }
  }
