
    /* ----- reset & base ----- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #fff;
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    }

    /* ----- section with wavy pseudo-elements (exact same SVG) ----- */
    .plush-custom-section {
      width: 100%;
      background: #f5fbfc;
      padding: 30px 20px 40px;
      position: relative;
      overflow: visible !important;
    }

    .plush-custom-section::before,
    .plush-custom-section::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      height: 80px;
      display: block;
      background-size: 100% 100%;
      background-repeat: no-repeat;
      z-index: 1;
      pointer-events: none;
    }
    .plush-custom-section::before {
      top: -80px;
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 80" preserveAspectRatio="none"><path fill="%23e6f3f5" opacity="0.5" d="M473,67.3c-203.9,88.3-263.1-34-320.3,0C66,119.1,0,59.7,0,59.7V0h1000v59.7 c0,0-62.1,26.1-94.9,29.3c-32.8,3.3-62.8-12.3-75.8-22.1C806,49.6,745.3,8.7,694.9,4.7S492.4,59,473,67.3z"></path><path fill="%23e6f3f5" opacity="0.8" d="M734,67.3c-45.5,0-77.2-23.2-129.1-39.1c-28.6-8.7-150.3-10.1-254,39.1 s-91.7-34.4-149.2,0C115.7,118.3,0,39.8,0,39.8V0h1000v36.5c0,0-28.2-18.5-92.1-18.5C810.2,18.1,775.7,67.3,734,67.3z"></path><path fill="%23e6f3f5" d="M766.1,28.9c-200-57.5-266,65.5-395.1,19.5C242,1.8,242,5.4,184.8,20.6C128,35.8,132.3,44.9,89.9,52.5C28.6,63.7,0,0,0,0 h1000c0,0-9.9,40.9-83.6,48.1S829.6,47,766.1,28.9z"></path></svg>');
    }
    .plush-custom-section::after {
      bottom: -80px;
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 80" preserveAspectRatio="none"><path fill="%23e6f3f5" opacity="0.5" d="M473,67.3c-203.9,88.3-263.1-34-320.3,0C66,119.1,0,59.7,0,59.7V0h1000v59.7 c0,0-62.1,26.1-94.9,29.3c-32.8,3.3-62.8-12.3-75.8-22.1C806,49.6,745.3,8.7,694.9,4.7S492.4,59,473,67.3z"></path><path fill="%23e6f3f5" opacity="0.8" d="M734,67.3c-45.5,0-77.2-23.2-129.1-39.1c-28.6-8.7-150.3-10.1-254,39.1 s-91.7-34.4-149.2,0C115.7,118.3,0,39.8,0,39.8V0h1000v36.5c0,0-28.2-18.5-92.1-18.5C810.2,18.1,775.7,67.3,734,67.3z"></path><path fill="%23e6f3f5" d="M766.1,28.9c-200-57.5-266,65.5-395.1,19.5C242,1.8,242,5.4,184.8,20.6C128,35.8,132.3,44.9,89.9,52.5C28.6,63.7,0,0,0,0 h1000c0,0-9.9,40.9-83.6,48.1S829.6,47,766.1,28.9z"></path></svg>');
    }

    .plush-container {
      max-width: 1380px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* ----- title & description ----- */
    .plush-title-wrap {
      text-align: center;
      margin-bottom: 12px;
    }
    .plush-title-wrap h2 {
      color: #ff9b54;
      font-size: 34px;
      margin: 0 0 6px;
      font-weight: 700;
      font-family: 'Inter', system-ui, sans-serif;
      letter-spacing: -0.02em;
    }
    .plush-desc {
      max-width: 1100px;
      margin: 0 auto;
      color: #2b4b4f;
      font-size: 15px;
      line-height: 1.5;
      font-weight: 400;
      font-family: 'Inter', system-ui, sans-serif;
    }

    /* ----- middle row (arc wrapper) ----- */
    .plush-middle-row {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 12px;
      padding: 4px 0;
    }

    .plush-arc-wrapper {
      position: relative;
      width: 1300px;
      max-width: 100%;
      height: 580px;
      margin: 0 auto;
    }

    /* center bear */
    .arc-center {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: 5;
      width: 440px;
      max-width: 55%;
      height: auto;
      aspect-ratio: auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .arc-center .bear-img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    /* dashed ellipse guide */
    .arc-guide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    /* ----- arc items (left / right) ----- */
    .arc-item {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 18px;
      z-index: 3;
      max-width: 500px;
    }

    /* left positions */
    .left-item.pos-top {
      top: 50px;
      left: 10px;
    }
    .left-item.pos-mid {
      top: 235px;
      left: -20px;
    }
    .left-item.pos-bot {
      top: 420px;
      left: 10px;
    }
    .left-item {
      justify-content: flex-start;
    }
    .left-item .plush-icon-box {
      order: 0;
    }
    .left-item .plush-label {
      order: 1;
    }

    /* right positions */
    .right-item.pos-top {
      top: 40px;
      right: 10px;
    }
    .right-item.pos-mid {
      top: 230px;
      right: -20px;
    }
    .right-item.pos-bot {
      top: 420px;
      right: 10px;
    }
    .right-item {
      justify-content: flex-end;
    }
    .right-item .plush-icon-box {
      order: 1;
    }
    .right-item .plush-label {
      order: 0;
    }

    /* icon circle */
    .plush-icon-box {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #ff9b54;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 25px;
      flex-shrink: 0;
      box-shadow: 0 4px 16px rgba(255, 155, 84, 0.3);
      transition: transform 0.2s;
      z-index: 2;
    }
    .arc-item:hover .plush-icon-box {
      transform: scale(1.1);
    }

    /* label bubble */
    .plush-label {
      color: #1f4a4f;
      font-size: 17px;
      line-height: 1.4;
      font-weight: 700;
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(4px);
      padding: 7px 24px 7px 22px;
      border-radius: 40px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
      max-width: 380px;
      white-space: normal;
      word-break: break-word;
      letter-spacing: 0.02em;
      text-align: left;
    }
    .plush-label .desc {
      font-weight: 400;
      font-size: 14px;
      color: #34495e;
      display: block;
      margin-top: 2px;
    }
    .right-item .plush-label {
      text-align: right;
    }
    .right-item.pos-bot .plush-label {
      max-width: 300px;
    }

    /* ----- slider (hidden in this restoration, but kept as structure) ----- */
    .plush-slider-wrap {
      overflow-x: auto;
      overflow-y: hidden;
      scrollbar-width: thin;
      padding: 4px 0 10px;
    }
    .plush-slider-wrap::-webkit-scrollbar {
      height: 5px;
    }
    .plush-slider-wrap::-webkit-scrollbar-track {
      background: #e8f0f1;
      border-radius: 4px;
    }
    .plush-slider-wrap::-webkit-scrollbar-thumb {
      background: #c5d5d8;
      border-radius: 4px;
    }
    .plush-slider {
      display: flex;
      gap: 14px;
      width: max-content;
    }
    .plush-slide-item {
      width: 260px;
      flex-shrink: 0;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.24s ease;
    }
    .plush-slide-item:hover {
      transform: translateY(-4px);
    }
    .plush-slide-item img {
      width: 100%;
      height: 175px;
      object-fit: cover;
      display: block;
    }

    /* ----- responsive (exact same breakpoints) ----- */
    @media (max-width: 992px) {
      .plush-arc-wrapper {
        width: 100%;
        height: auto;
        padding: 6px 0;
      }
      .arc-item {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        margin: 0 auto 12px auto;
        max-width: 480px;
        width: 100%;
        justify-content: flex-start !important;
        gap: 14px;
      }
      .right-item {
        justify-content: flex-start !important;
      }
      .right-item .plush-label {
        text-align: left;
      }
      .right-item .plush-icon-box {
        order: 0;
      }
      .right-item .plush-label {
        order: 1;
      }
      .right-item.pos-bot .plush-label {
        max-width: 400px;
      }
      .arc-center {
        position: relative !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        margin: 8px auto;
        width: 300px !important;
        max-width: 80% !important;
      }
      .arc-guide {
        display: none;
      }
      .plush-label {
        font-size: 16px;
        padding: 4px 16px;
        max-width: 400px;
      }
      .plush-icon-box {
        width: 44px;
        height: 44px;
        font-size: 19px;
      }
    }

    @media (max-width: 768px) {
      .plush-title-wrap h2 {
        font-size: 26px;
      }
      .plush-label {
        font-size: 15px;
        padding: 4px 14px;
        max-width: 340px;
      }
      .plush-icon-box {
        width: 40px;
        height: 40px;
        font-size: 17px;
      }
      .plush-slide-item {
        width: 220px;
      }
      .plush-slide-item img {
        height: 150px;
      }
      .arc-center {
        width: 220px !important;
      }
      .plush-arc-wrapper {
        height: auto;
      }
      .arc-item {
        max-width: 420px;
      }
      .right-item.pos-bot .plush-label {
        max-width: 340px;
      }
    }

    @media (max-width: 600px) {
      .arc-center {
        width: 160px !important;
      }
      .plush-slide-item {
        width: 190px;
      }
      .plush-slide-item img {
        height: 130px;
      }
      .plush-label {
        font-size: 13px;
        padding: 3px 12px;
        max-width: 240px;
      }
      .plush-label .desc {
        font-size: 12px;
      }
      .plush-icon-box {
        width: 36px;
        height: 36px;
        font-size: 15px;
      }
      .arc-item {
        gap: 10px;
        max-width: 340px;
      }
      .right-item.pos-bot .plush-label {
        max-width: 240px;
      }
    }
  