/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 13 2025 | 06:47:59 */
  .soft-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fdfdfd;
    border-radius: 26px;
    padding: 34px 40px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    color: #2c3a4a;
    position: relative;
    overflow: hidden;
  }

  /* мягкие пастельные пятна */
  .soft-banner::before,
  .soft-banner::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
  }

  .soft-banner::before {
    background: #ffbee4;
    top: -40px;
    left: -40px;
  }

  .soft-banner::after {
    background: #c9e9ff;
    bottom: -40px;
    right: -40px;
  }

  .soft-info {
    flex: 1.2;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .soft-eyebrow {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #728093;
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #ececec;
    margin-bottom: 14px;
    width: fit-content;
  }

  .soft-title {
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 700;
    color: #2c3a4a;
    margin-bottom: 14px;
  }

  .soft-title span {
    color: #6b79ff;
    font-weight: 800;
  }

  .soft-sub {
    font-size: 1rem;
    color: #5a6b7b;
    margin-bottom: 24px;
    max-width: 48ch;
  }

  .soft-btn {
    display: inline-block;
    background: #6b79ff;
    padding: 12px 28px;
    border-radius: 14px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(107,121,255,0.25);
    transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
    width: fit-content;
  }

  .soft-btn:hover {
    background: #5e6aff;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(107,121,255,0.32);
  }

  .soft-media {
    flex: 0.8;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
  }

  .soft-media img {
    width: 200px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.1));
    transition: transform .2s ease;
  }

  .soft-media img:hover {
    transform: scale(1.03);
  }

  /* адаптив */
  @media (max-width: 850px) {
    .soft-banner {
      flex-direction: column-reverse;
      padding: 26px 26px;
      text-align: center;
    }

    .soft-media {
      padding: 0;
      margin-bottom: 16px;
    }

    .soft-title { font-size: 1.7rem; }
    .soft-btn { align-self: center; }
  }