.le-calc-section {
    padding: 80px 0;
    background: #fff;
  }

  .le-calc {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
    padding: 36px;
    border-radius: 36px;
    background: #fff1f3;
  }

  .le-calc__left,
  .le-calc__result {
    background: #fff;
    border-radius: 30px;
    padding: 32px;
  }

  .le-calc__group {
    margin-top: 24px;
  }

  .le-calc__label {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 800;
    color: #444;
  }

  .le-calc__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .le-calc__tab {
    min-height: 46px;
    padding: 0 20px;
    border: 2px solid #ea5167;
    border-radius: 30px;
    background: #fff;
    color: #444;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: .25s;
  }

  .le-calc__tab.active,
  .le-calc__tab:hover {
    background: #ea5167;
    color: #fff;
  }

  .le-calc__result {
    position: sticky;
    top: 20px;
  }

  .le-calc__emoji {
    font-size: 48px;
    margin-bottom: 12px;
  }

  .le-calc__result-title-payments {
    padding-top: 25px;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 16px;
    color: #444;
  }

  .le-calc__result-title {
    font-size: 30px;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 16px;
    color: #444;
  }

  .le-calc__result-text {
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, #fff7d7 0%, #fff1b8 100%);
    font-size: 17px;
    line-height: 1.45;
    font-weight: 700;
  }

  .le-calc__choice-title {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 14px;
  }

  .le-calc__choice-list {
    display: grid;
    gap: 10px;
  }

  .le-calc__choice-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .le-calc__choice-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ea5167;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
  }

  .le-calc__payments {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0;
  }

  .le-calc__payment {
    min-width: 160px;
    height: 48px;
    padding: 0 22px;
    border-radius: 30px;
    background: #fff;
    font-size: 17px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .le-calc__payment--split {
    border: 2px solid #27a046;
    color: #444;
    background-image: radial-gradient(73.06% 50% at 50% 0,
        rgba(71, 241, 108, 0.3) 0%,
        rgba(59, 211, 94, 0.25) 25%,
        rgba(45, 179, 79, 0.07) 75%,
        rgba(32, 147, 65, 0) 100%);
  }

  .le-calc__payment--dolyami {
    border: 2px solid #e5e5e5;
    color: #444;
  }

  .le-calc__payment--installment {
    border: 2px solid #3cc3e1;
    color: #444;
  }

  .le-calc__form {
    display: grid;
    gap: 12px;
    margin-top: 16px;
  }

  .le-calc__form input {
    width: 100%;
    height: 56px;
    padding: 0 20px;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    font-size: 16px;
  }

  .le-calc__submit {
    height: 60px;
    border: 0;
    border-radius: 34px;
    background: #ea5167;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
  }

  .le-calc__note {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.35;
    color: #777;
  }

  @media (max-width: 900px) {
    .le-calc {
      grid-template-columns: 1fr;
      padding: 20px;
    }

    .le-calc__left,
    .le-calc__result {
      padding: 24px;
    }

    .le-calc__result {
      position: static;
    }
  }