
  html,
  body {
    overflow-x: hidden;
  }

  .ynf-home-hero-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 48%, #f8fafc 100%);
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    overflow: hidden;
  }

  .ynf-home-hero-inner {
    position: relative;
    max-width: 1440px;
    min-height: 560px;
    margin: 0 auto;
    padding: 80px 70px 60px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 30px;
    box-sizing: border-box;
  }

  .ynf-home-hero-inner::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 58%;
    height: 150px;
    background: #d71920;
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
  }

  .ynf-home-hero-inner::after {
    content: "";
    position: absolute;
    right: 4%;
    top: 12%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(215,25,32,0.08) 0%, rgba(215,25,32,0) 70%);
    z-index: 0;
  }

  .ynf-home-hero-content {
    position: relative;
    z-index: 2;
  }

  .ynf-home-hero-label {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 16px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: #fff1f1;
    border: 1px solid #fecaca;
    color: #d71920;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
  }

  .ynf-home-hero-content h1 {
    margin: 0 0 24px;
    color: #111827;
    font-size: 60px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.4px;
  }

  .ynf-home-hero-content h1 span {
    color: #d71920;
  }

  .ynf-home-hero-content p {
    max-width: 620px;
    margin: 0 0 32px;
    color: #374151;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
  }

  .ynf-home-hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

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

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

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

  .ynf-home-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(215, 25, 32, 0.18);
  }

  .ynf-home-hero-btn-red:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    color: #ffffff;
  }

  .ynf-home-hero-btn-outline:hover {
    background: #fff5f5;
    color: #b91c1c;
  }

  .ynf-home-hero-points {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .ynf-home-hero-point {
    padding: 9px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #111827;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  }

  .ynf-home-hero-point::before {
    content: "✓";
    margin-right: 6px;
    color: #16a34a;
    font-weight: 900;
  }

  .ynf-home-hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .ynf-home-hero-image img {
    width: 100%;
    max-width: 760px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.2));
  }

  @media (max-width: 991px) {
    .ynf-home-hero-inner {
      grid-template-columns: 1fr;
      min-height: auto;
      padding: 60px 28px 48px;
    }

    .ynf-home-hero-inner::before {
      display: none;
    }

    .ynf-home-hero-content h1 {
      font-size: 46px;
    }

    .ynf-home-hero-content p {
      font-size: 16px;
    }

    .ynf-home-hero-image {
      justify-content: center;
      margin-top: 24px;
    }

    .ynf-home-hero-image img {
      max-width: 620px;
    }
  }

  @media (max-width: 575px) {
    .ynf-home-hero-inner {
      padding: 48px 15px 38px;
    }

    .ynf-home-hero-label {
      font-size: 13px;
      margin-bottom: 18px;
    }

    .ynf-home-hero-content h1 {
      font-size: 34px;
      letter-spacing: -0.6px;
    }

    .ynf-home-hero-content p {
      font-size: 15px;
      line-height: 1.65;
    }

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

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

    .ynf-home-hero-points {
      gap: 8px;
    }

    .ynf-home-hero-point {
      font-size: 12px;
      padding: 8px 11px;
    }
  }
