/* =============================
   LOYALTY PAGE
   ============================= */

/* ХІРО */
.lp-hero {
    position: relative;
    background: url('../image/loyalty/JUL_9399.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}
.lp-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 180px 105px 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}
.lp-hero__title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 16px;
}
.lp-hero__desc {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 56px;
    opacity: 0.9;
    white-space: nowrap;
}
.lp-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 28px;
    background: #fff;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background .2s;
}
.lp-hero__btn:hover {
    background: #f0f0f0;
    color: #222;
    text-decoration: none;
}

@media (max-width: 767px) {
    .lp-hero {
        background-position: 20% 10%;
    }
    .lp-hero__content {
        padding: 46px 25px;
        align-items: flex-start;
        text-align: left;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
    .lp-hero__title {
        font-size: 26px;
        font-weight: 600;
        margin: 0 0 12px;
        word-break: break-word;
    }
    .lp-hero__desc {
        font-size: 12px;
        font-weight: 400;
        margin: 0 0 24px;
        white-space: normal;
        word-break: break-word;
    }
    .lp-hero__btn {
        font-size: 12px;
        padding: 14px 24px;
    }
}


/* СЕКЦІЯ 2: ЯК ЦЕ ПРАЦЮЄ */
.lp-how {
    padding: 80px;
    background: #fff;
}
.lp-how__inner {
    display: flex;
    gap: 80px;
    align-items: stretch;
}
.lp-how__left {
    flex: 1;
}
.lp-how__title {
    font-size: 30px;
    font-weight: 600;
    color: #222;
    margin: 0 0 36px;
}
.lp-how__subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #8F9193;
    margin: 0 0 36px;
}
.lp-how__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lp-how__item {
    display: flex;
    align-items: flex-start;
    gap: 29px;
    padding: 32px 0;
    border-top: 1px solid #DFE8EF;
}
.lp-how__item:last-child {
    border-bottom: 1px solid #DFE8EF;
}
.lp-how__num {
    font-size: 16px;
    font-weight: 400;
    color: #8F9193;
    flex-shrink: 0;
}
.lp-how__item-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lp-how__item-title {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    display: block;
}
.lp-how__item-text {
    font-size: 16px;
    font-weight: 400;
    color: #8F9193;
    margin: 0;
}
.lp-how__right {
    flex-shrink: 0;
    width: 430px;
}
.lp-how__img {
    border-radius: 10px;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 767px) {
    .lp-how {
        padding: 40px 25px;
    }
    .lp-how__inner {
        flex-direction: column;
        gap: 24px;
    }
    .lp-how__title {
        font-size: 24px;
        font-weight: 600;
        margin: 0 0 20px;
    }
    .lp-how__subtitle {
        font-size: 12px;
        font-weight: 400;
        margin: 0 0 20px;
    }
    .lp-how__item {
        gap: 24px;
        padding: 16px 0;
    }
    .lp-how__num {
        font-size: 14px;
        font-weight: 400;
    }
    .lp-how__item-body {
        gap: 8px;
    }
    .lp-how__item-title {
        font-size: 14px;
        font-weight: 500;
    }
    .lp-how__item-text {
        font-size: 12px;
    }
    .lp-how__right {
        width: 100%;
        order: 2;
    }
    .lp-how__left {
        order: 1;
    }
   .lp-how__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
}
}


/* СЕКЦІЯ 3: РІВНІ КЕШБЕКУ */
.lp-levels {
    background: #F0F0F0;
    padding: 80px;
}
.lp-levels__title {
    font-size: 30px;
    font-weight: 600;
    color: #222;
    margin: 0 0 36px;
}
.lp-levels__desc {
    font-size: 16px;
    font-weight: 400;
    color: #222;
    margin: 0 0 36px;
}
.lp-levels__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.lp-levels__card {
    background: #fff;
    border-radius: 10px;
    padding: 49px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.lp-levels__card--dark {
    background: #222;
}
.lp-levels__percent {
    font-size: 96px;
    font-weight: 400;
    line-height: 1;
    color: #222;
    display: block;
}
.lp-levels__card--dark .lp-levels__percent {
    color: #fff;
}
.lp-levels__label {
    font-size: 12px;
    font-weight: 400;
    color: #8F9193;
    margin-top: 12px;
    display: block;
}
.lp-levels__from {
    font-size: 16px;
    font-weight: 400;
    color: #222;
    margin: 36px 0 0;
    line-height: 1.5;
    text-align: center;
}
.lp-levels__card--dark .lp-levels__from {
    color: #fff;
}
.lp-levels__from strong {
    font-weight: 600;
    display: block;
}

@media (max-width: 767px) {
    .lp-levels {
        padding: 40px 25px;
    }
    .lp-levels__title {
        font-size: 24px;
        font-weight: 600;
        margin: 0 0 20px;
    }
    .lp-levels__desc {
        font-size: 12px;
        font-weight: 400;
        margin: 0 0 20px;
    }
    .lp-levels__cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .lp-levels__card {
        padding: 24px;
    }
    .lp-levels__percent {
        font-size: 52px;
        font-weight: 400;
    }
    .lp-levels__label {
        font-size: 10px;
        margin-top: 6px;
    }
    .lp-levels__from {
        font-size: 12px;
        font-weight: 400;
        margin-top: 12px;
    }
}

/* СЕКЦІЯ 4: ПОДАРУНОК ДО ДНЯ НАРОДЖЕННЯ */
.lp-bday {
    background: #fff;
    padding: 80px;
}
.lp-bday__inner {
    display: flex;
    gap: 80px;
    align-items: stretch;
}
.lp-bday__left {
    flex: 1;
}
.lp-bday__title {
    font-size: 30px;
    font-weight: 600;
    color: #222;
    margin: 0 0 36px;
}
.lp-bday__desc {
    font-size: 16px;
    font-weight: 400;
    color: #222;
    margin: 0 0 36px;
    line-height: 1.6;
}
.lp-bday__cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lp-bday__card {
    background: #F0F0F0;
    border-radius: 10px;
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 26px;
}
.lp-bday__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp-bday__card-text {
    font-size: 16px;
    font-weight: 400;
    color: #222;
    margin: 0;
    line-height: 1.6;
}
.lp-bday__right {
    flex-shrink: 0;
    width: 430px;
}
.lp-bday__img {
    border-radius: 10px;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767px) {
  .lp-bday {
    padding: 40px 25px;
    box-sizing: border-box;
  }

  .lp-bday__inner {
    flex-direction: column;
    gap: 20px;
  }

  .lp-bday__left {
    order: 1;
  }

  .lp-bday__right {
    order: 2;
    width: 100%;
    aspect-ratio: 1/1;;
    overflow: hidden;
    border-radius: 10px;
  }

  .lp-bday__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 10%;
  }

  .lp-bday__title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px;
  }

  .lp-bday__desc {
    font-size: 12px;
    font-weight: 400;
    margin: 0 0 20px;
  }

  .lp-bday__cards {
    flex-direction: row;
    gap: 4px;
  }

  .lp-bday__card {
    flex: 1;
    padding: 14px;
    gap: 10px;
    align-items: center;
  }

  .lp-bday__icon svg {
    width: 34px;
    height: 34px;
  }

  .lp-bday__card-text {
    font-size: 12px;
    font-weight: 400;
  }
}

/* СЕКЦІЯ 5: ЯК ВИКОРИСТОВУВАТИ БОНУСИ */
.lp-howuse {
    background: #F5F5F5;
    padding: 80px;
    box-sizing: border-box;
}

.lp-howuse__title {
    font-size: 30px;
    font-weight: 600;
    color: #222;
    margin: 0 0 36px;
}

.lp-howuse__desc {
    font-size: 16px;
    font-weight: 400;
    color: #222;
    margin: 0 0 36px;
    line-height: 1.6;
}

.lp-howuse__content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.lp-howuse__image {
    flex-shrink: 0;
    width: 380px;
}

.lp-howuse__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.lp-howuse__list {
    flex: 1;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-howuse__item {
    font-size: 16px;
    font-weight: 400;
    color: #222;
    line-height: 1.6;
    padding: 32px 0 32px 20px;
    border-top: 1px solid #E2DFD9;
    position: relative;
}
.lp-howuse__item:last-child {
    border-bottom: 1px solid #E2DFD9;
}

.lp-howuse__item::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #222;
}

@media (max-width: 767px) {
  .lp-howuse {
    padding: 40px 25px;
    box-sizing: border-box;
  }

  .lp-howuse__title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px;
  }

  .lp-howuse__desc {
    font-size: 12px;
    font-weight: 400;
    margin: 0 0 20px;
  }

  .lp-howuse__content {
    flex-direction: column;
    gap: 0;
  }

  .lp-howuse__image {
    display: none;
  }

  .lp-howuse__list {
    width: 100%;
  }

  .lp-howuse__item {
    font-size: 12px;
    font-weight: 400;
    padding: 16px 0 16px 16px;
  }
}


/* СЕКЦІЯ 6: РІВНІ НАРАХУВАННЯ КЕШБЕКУ */
.lp-perks {
    background: #fff;
    padding: 80px;
    box-sizing: border-box;
}

.lp-perks__title {
    font-size: 30px;
    font-weight: 600;
    color: #222;
    margin: 0 0 36px;
}

.lp-perks__desc {
    font-size: 16px;
    font-weight: 400;
    color: #222;
    line-height: 1.6;
    margin: 0 0 36px;
}

.lp-perks__cards {
    display: flex;
    gap: 8px;
}

.lp-perks__card {
    flex: 1;
    background: #F0F0F0;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 26px;
}

.lp-perks__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-perks__card-text {
    font-size: 16px;
    font-weight: 400;
    color: #222;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
  .lp-perks {
    padding: 40px 25px;
    box-sizing: border-box;
  }

  .lp-perks__title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px;
  }

  .lp-perks__desc {
    font-size: 12px;
    font-weight: 400;
    margin: 0 0 20px;
  }

  .lp-perks__cards {
    flex-direction: column;
    gap: 8px;
  }

  .lp-perks__card {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 16px;
    gap: 16px;
  }

  .lp-perks__card:nth-child(2) {
    flex-direction: row-reverse;
    text-align: right;
  }

  .lp-perks__icon svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .lp-perks__card-text {
    font-size: 12px;
    font-weight: 400;
  }
}


/* СЕКЦІЯ 7: CTA */
.lp-cta {
    background: #111;
    padding: 80px 164px;
    box-sizing: border-box;
}

.lp-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-cta__title {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.lp-cta__btn {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 28px;
    border-radius: 5px;
    transition: opacity .2s;
}

.lp-cta__btn:hover {
    opacity: .85;
    color: #111;
    text-decoration: none;
}

@media (max-width: 767px) {
  .lp-cta {
    padding: 40px 25px;
  }

  .lp-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .lp-cta__title {
    font-size: 24px;
    font-weight: 600;
  }

  .lp-cta__btn {
    font-size: 12px;
    font-weight: 600;
    padding: 13px 20px;
    white-space: nowrap;
  }
}