/* ===========================
   БАЗА
   =========================== */
.oplata-main {
    padding-top: 35px;
}
.payment-page {
    padding: 32px 0 64px;
}

.payment-page__hero-inner,
.payment-page__section,
.payment-page__faq-inner,
.payment-page__cta-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ===========================
   HERO
   =========================== */

.payment-page__hero {
    margin-bottom: 32px;
    /* background: #ffffff; */
}

.payment-page__hero-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    /* border-radius: 10px; */
    /* border: 1px solid #f0f0f0; */
    /* box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04); */
    /* background: radial-gradient(circle at top left, #fffbe5 0, #ffffff 48%, #ffffff 100%); */
}

.payment-page__hero-text {
    max-width: 760px;
}

.payment-page__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 600;
    color: #fac207; /* фирменный жёлтый */
    margin-bottom: 6px;
}

.payment-page__title {
    margin: 0 0 10px;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 700;
}

.payment-page__lead {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #4b4b4b;
}

.payment-page__hero-bullets {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.payment-page__hero-bullets li {
    position: relative;
    padding-left: 16px;
    font-size: 13px;
    line-height: 1.5;
}

.payment-page__hero-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0.05em;
    font-size: 15px;
    color: #fac207;
}

/* правый блок в hero */

.payment-page__hero-panel {
    border-radius: 3px;
    background: #ffffff;
    border: 1px solid #ffe08a;
    padding: 14px 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.payment-page__hero-panel-title {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
}

.payment-page__hero-panel-list {
    margin: 0;
}

.payment-page__hero-panel-row {
    display: grid;
    grid-template-columns: minmax(0, 110px) minmax(0, 1fr);
    gap: 4px 10px;
    font-size: 13px;
    line-height: 1.4;
    padding: 6px 0;
    border-bottom: 1px dashed #f0e0a5;
}

.payment-page__hero-panel-row:last-child {
    border-bottom: none;
}

.payment-page__hero-panel-row dt {
    font-weight: 600;
    color: #7a5a00;
}

.payment-page__hero-panel-row dd {
    margin: 0;
}

/* ===========================
   ОБЩИЕ БЛОКИ
   =========================== */

.payment-page__section {
    margin: 0 auto 32px;
}

.payment-page__section-header {
    max-width: 780px;
    margin-bottom: 14px;
}

.payment-page__subtitle {
    position: relative;
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    padding-left: 14px;
}

.payment-page__subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    bottom: 0.2em;
    width: 3px;
    border-radius: 2px;
    background: #fac207;
}

.payment-page__subtitle--inline {
    padding-left: 0;
}

.payment-page__subtitle--inline::before {
    display: none;
}

.payment-page__text {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #4b4b4b;
}

/* общий список */

.payment-page__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.payment-page__list li {
    position: relative;
    padding-left: 16px;
    font-size: 13px;
    line-height: 1.5;
}

.payment-page__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fac207;
}

/* ===========================
   СПОСОБЫ ОПЛАТЫ
   =========================== */

.payment-page__methods-grid {
    display: grid;
    gap: 16px;
}

.payment-page__method-card {
    position: relative;
    padding: 16px 16px 18px;
    border-radius: 3px;
    background: #ffffff;
    border: 1px solid #ececec;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.payment-page__method-card::before {
    content: "";
    position: absolute;
    left: -40px;
    top: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff7c5 0, rgba(255, 247, 197, 0) 65%);
    opacity: 0.9;
}

.payment-page__method-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #fff7c5;
    color: #7a5a00;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.payment-page__method-title {
    position: relative;
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
}

.payment-page__method-text {
    position: relative;
    margin: 0 0 8px;
    font-size: 13px;
    line-height: 1.5;
    color: #4b4b4b;
}

.payment-page__method-list {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 4px;
}

.payment-page__method-list li {
    font-size: 13px;
    line-height: 1.5;
    position: relative;
    padding-left: 14px;
}

.payment-page__method-list li::before {
    content: "–";
    position: absolute;
    left: 0;
    top: 0;
    color: #999;
}

/* ===========================
   БЛОКИ "ФИЗЛИЦА / ОРГАНИЗАЦИИ"
   =========================== */

.payment-page__section--split {
    display: grid;
    gap: 16px;
}

.payment-page__info-card {
    padding: 14px 16px 16px;
    border-radius: 3px;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
}

/* ===========================
   ШАГИ ОПЛАТЫ
   =========================== */

.payment-page__section--steps {
    margin-bottom: 34px;
}

.payment-page__steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.payment-page__step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px 12px;
    padding: 10px 12px;
    border-radius: 4px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.03);
}

.payment-page__step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fac207;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-page__step-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.payment-page__step-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #4b4b4b;
}

/* ===========================
   FAQ
   =========================== */

.payment-page__section--faq {
    margin-bottom: 32px;
}

.payment-page__faq-grid {
    display: grid;
    gap: 14px;
    margin-top: 8px;
}

.payment-page__faq-item {
    padding: 12px 14px 14px;
    border-radius: 4px;
    background: #ffffff;
    border: 1px solid #ececec;
}

.payment-page__faq-title {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 600;
}

.payment-page__faq-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #4b4b4b;
}

/* ===========================
   CTA
   =========================== */

.payment-page__cta {
    margin-top: 4px;
    margin-bottom: 60px;
}

.payment-page__cta-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 18px 18px 22px;
    text-align: center;
    border-radius: 4px;
    /* background: #fffbe5; */
    border: 1px solid #ffec99;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.payment-page__cta-title {
    margin: 0 0 6px;
    font-size: 19px;
    font-weight: 700;
}

.payment-page__cta-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

/* ===========================
   АДАПТИВ
   =========================== */

@media (min-width: 768px) {
    .payment-page {
        padding-top: 40px;
        padding-bottom: 72px;
    }

    .payment-page__title {
        font-size: 30px;
    }

    .payment-page__methods-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .payment-page__section--split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .payment-page__faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .payment-page__hero-inner {
        flex-direction: row;
        align-items: stretch;
        gap: 28px;
    }

    .payment-page__hero-text {
        flex: 1.6;
    }

    .payment-page__hero-panel {
        flex: 1;
    }

    .payment-page__title {
        font-size: 33px;
    }

    .payment-page__section--steps .payment-page__steps {
        max-width: 780px;
    }
}
