/* =========================
   pricing.css
   다크 테마 요금제 페이지
========================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: #18191d;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Pretendard', 'Apple SD Gothic Neo', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── 공통 컨테이너 ── */
.pr-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}
.pr-container--narrow {
    max-width: 780px;
}

/* ── 섹션 공통 ── */
.pr-section {
    padding: 96px 0;
}
.pr-section--alt {
    background: #1e1f24;
}

.pr-section__head {
    text-align: center;
    margin-bottom: 56px;
}
.pr-section__title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}
.pr-section__desc {
    font-size: 17px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

/* ── 배지 ── */
.pr-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(234,84,26,0.12);
    border: 1px solid rgba(234,84,26,0.3);
    color: #ea541a;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
}
.pr-badge--sm { font-size: 12px; }

/* ── 버튼 ── */
.pr-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    white-space: nowrap;
}
.pr-btn--primary {
    background: #ea541a;
    color: #fff;
}
.pr-btn--primary:hover { background: #d44817; }
.pr-btn--ghost {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.1);
}
.pr-btn--ghost:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.pr-btn--lg { padding: 18px 36px; font-size: 17px; border-radius: 14px; }

/* ══ 1. 히어로 ══ */
.pr-hero {
    padding: 120px 32px 100px;
    text-align: center;
    background:
        radial-gradient(ellipse at 20% 60%, rgba(234,84,26,0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 30%, rgba(234,84,26,0.07) 0%, transparent 50%),
        #18191d;
}
.pr-hero__inner {
    max-width: 740px;
    margin: 0 auto;
}
.pr-hero__title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.15;
    margin: 24px 0 20px;
    letter-spacing: -1px;
}
.pr-hero__desc {
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    margin-bottom: 40px;
}
.pr-hero__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.pr-hero__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.pr-hero__stat strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}
.pr-hero__stat span {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.pr-hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
}

/* ══ 2. 플랜 ══ */
.pr-plans {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.pr-plan {
    background: #26272b;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* 인기 뱃지 */
.pr-plan__popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #ea541a;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

.pr-plan--standard {
    border-color: rgba(234,84,26,0.4);
    background: linear-gradient(180deg, rgba(234,84,26,0.06) 0%, #26272b 40%);
    padding-top: 36px;
}

.pr-plan__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.pr-plan__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.pr-plan__icon--lite  { background: rgba(59,130,246,0.12); color: #60a5fa; }
.pr-plan__icon--standard { background: rgba(234,84,26,0.12); color: #ea541a; }
.pr-plan__icon--premium { background: rgba(234,179,8,0.12); color: #facc15; }

.pr-plan__tag {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.06);
    padding: 3px 10px;
    border-radius: 6px;
}
.pr-plan__credit {
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
}
.pr-plan__credit--lite     { background: rgba(59,130,246,0.12); color: #60a5fa; }
.pr-plan__credit--standard { background: rgba(234,84,26,0.15); color: #ea541a; }
.pr-plan__credit--premium  { background: rgba(234,179,8,0.12); color: #facc15; }

.pr-plan__name {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}
.pr-plan__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 10px;
}
.pr-plan__price strong {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
}
.pr-plan__price span {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.pr-plan__sub {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    margin-bottom: 24px;
}

.pr-plan__features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.pr-plan__features li {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}
.pr-plan__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ea541a;
    font-weight: 700;
}

.pr-plan__quote {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 12px 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pr-plan__btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}
.pr-plan__btn--outline {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.1);
}
.pr-plan__btn--outline:hover { background: rgba(255,255,255,0.1); color: #fff; }
.pr-plan__btn--lite {
    background: #3b82f6;
    color: #fff;
}
.pr-plan__btn--lite:hover { background: #2563eb; }
.pr-plan__btn--standard {
    background: #ea541a;
    color: #fff;
}
.pr-plan__btn--standard:hover { background: #d44817; }
.pr-plan__btn--premium {
    background: linear-gradient(135deg, #f59e0b, #ea541a);
    color: #fff;
}
.pr-plan__btn--premium:hover { opacity: 0.9; }

/* ══ 3. 플랜별 활용 예시 ══ */
.pr-examples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.pr-example {
    background: #26272b;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 28px 24px;
}
.pr-example--highlight {
    border-color: rgba(234,84,26,0.35);
}

.pr-example__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.pr-example__badge {
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
}
.pr-example__badge--lite     { background: rgba(59,130,246,0.15); color: #60a5fa; }
.pr-example__badge--standard { background: rgba(234,84,26,0.15); color: #ea541a; }
.pr-example__badge--premium  { background: rgba(234,179,8,0.12); color: #facc15; }

.pr-example__credit {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.pr-example__desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin-bottom: 20px;
}

.pr-example__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pr-example__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    background: #1e1f24;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 12px 14px;
}
.pr-example__num {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pr-example__num--standard { background: rgba(234,84,26,0.12); color: #ea541a; }
.pr-example__num--premium  { background: rgba(234,179,8,0.12); color: #facc15; }

/* 크레딧 조합 안내 */
.pr-credit-info {
    background: rgba(234,84,26,0.05);
    border: 1px solid rgba(234,84,26,0.2);
    border-radius: 16px;
    padding: 24px 28px;
}
.pr-credit-info__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #ea541a;
    margin-bottom: 10px;
}
.pr-credit-info__desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.pr-credit-info__rates {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.pr-credit-info__rates span {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

/* ══ 4. 기능 비교 테이블 ══ */
.pr-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
}
.pr-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.pr-table thead tr {
    background: #26272b;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pr-table th {
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-align: center;
}
.pr-table th:first-child { text-align: left; }
.pr-table__th--lite     { color: #60a5fa !important; }
.pr-table__th--standard { color: #ea541a !important; }
.pr-table__th--premium  { color: #facc15 !important; }

.pr-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: #1e1f24;
    transition: background 0.15s;
}
.pr-table tbody tr:hover { background: #222326; }
.pr-table tbody tr:last-child { border-bottom: none; }

.pr-table td {
    padding: 16px 20px;
    text-align: center;
    color: rgba(255,255,255,0.55);
}
.pr-table__feature,
.pr-table__label {
    text-align: left !important;
    font-weight: 600;
    color: rgba(255,255,255,0.7) !important;
}
.pr-table__muted { color: rgba(255,255,255,0.3) !important; }
.pr-table__val--lite     { color: #60a5fa !important; font-weight: 600; }
.pr-table__val--standard { color: #ea541a !important; font-weight: 600; }
.pr-table__val--premium  { color: #facc15 !important; font-weight: 600; }

.pr-check { color: rgba(255,255,255,0.3); font-weight: 700; }
.pr-check--lite     { color: #60a5fa; }
.pr-check--standard { color: #ea541a; }
.pr-check--premium  { color: #facc15; }

/* ══ 5. 기업 컨설팅 ══ */
.pr-consult-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}
.pr-consult-card {
    background: #26272b;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 28px 24px;
}
.pr-consult-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(59,130,246,0.12);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.pr-consult-card__icon--2 { background: rgba(168,85,247,0.12); color: #c084fc; }
.pr-consult-card__icon--3 { background: rgba(16,185,129,0.12); color: #34d399; }

.pr-consult-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.pr-consult-card__desc {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    margin-bottom: 18px;
}
.pr-consult-card__list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.pr-consult-card__list li {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.pr-consult-cta {
    background: rgba(234,84,26,0.06);
    border: 1px solid rgba(234,84,26,0.2);
    border-radius: 18px;
    padding: 36px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.pr-consult-cta__left { flex: 1; min-width: 280px; }
.pr-consult-cta__title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}
.pr-consult-cta__desc {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    margin-bottom: 16px;
}
.pr-consult-cta__list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.pr-consult-cta__list li {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.pr-consult-cta__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.pr-consult-cta__note {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* ══ 6. FAQ ══ */
.pr-faq {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
}
.pr-faq__item {
    border-bottom: 1px solid rgba(255,255,255,0.07);
    background: #26272b;
}
.pr-faq__item:last-child { border-bottom: none; }
.pr-faq__item--open { background: #2a2b30; }

.pr-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color 0.15s;
}
.pr-faq__q:hover { color: #fff; }
.pr-faq__item--open .pr-faq__q { color: #ea541a; }

.pr-faq__arrow {
    flex-shrink: 0;
    color: rgba(255,255,255,0.3);
    transition: transform 0.25s;
}
.pr-faq__item--open .pr-faq__arrow {
    transform: rotate(180deg);
    color: #ea541a;
}

.pr-faq__a {
    max-height: 0;
    overflow: hidden;
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    padding: 0 28px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.pr-faq__item--open .pr-faq__a {
    max-height: 200px;
    padding: 0 28px 22px;
}

/* ══ Footer CTA ══ */
.pr-footer-cta {
    padding: 100px 32px;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(234,84,26,0.15) 0%, transparent 60%),
        #18191d;
}
.pr-footer-cta__title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}
.pr-footer-cta__desc {
    font-size: 17px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 40px;
}
.pr-footer-cta__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ══ 결제 모달 ══ */
.pay-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.pay-overlay.is-open {
    display: flex;
}

.pay-modal {
    position: relative;
    background: #1e1f24;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    width: 100%;
    max-width: 860px;
    max-height: 90vh;
    overflow-y: auto;
    animation: payFadeIn 0.2s ease;
}
@keyframes payFadeIn {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.pay-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
    z-index: 1;
}
.pay-modal__close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.pay-modal__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* ── 왼쪽: 플랜 요약 ── */
.pay-modal__plan {
    padding: 40px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px 0 0 24px;
}

.pay-modal__plan-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.pay-modal__plan-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.pay-modal__plan-icon--lite     { background: rgba(59, 130, 246, 0.12); }
.pay-modal__plan-icon--standard { background: rgba(234, 84, 26, 0.12); }
.pay-modal__plan-icon--premium  { background: rgba(234, 179, 8, 0.12); }

.pay-modal__plan-badge {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
}
.pay-modal__plan-badge--lite     { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.pay-modal__plan-badge--standard { background: rgba(234, 84, 26, 0.15); color: #ea541a; }
.pay-modal__plan-badge--premium  { background: rgba(234, 179, 8, 0.12); color: #facc15; }

.pay-modal__plan-name {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 6px;
}

.pay-modal__plan-price {
    font-size: 22px;
    font-weight: 800;
    color: #ea541a;
    margin-bottom: 8px;
}

.pay-modal__plan-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin-bottom: 24px;
}

.pay-modal__plan-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pay-modal__plan-features li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}
.pay-modal__plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ea541a;
    font-weight: 700;
}

/* ── 오른쪽: 폼 ── */
.pay-modal__form {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
}

.pay-modal__form-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.pay-modal__field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
}
.pay-modal__field label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}
.pay-modal__field input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 16px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.15s;
    font-family: inherit;
}
.pay-modal__field input::placeholder { color: rgba(255, 255, 255, 0.25); }
.pay-modal__field input:focus { border-color: rgba(234, 84, 26, 0.5); }
.pay-modal__field input.is-error { border-color: #ef4444; }

.pay-modal__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 8px 0 20px;
}
.pay-modal__total span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}
.pay-modal__total strong {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.pay-modal__submit {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    background: #ea541a;
    color: #fff;
    transition: background 0.2s;
    font-family: inherit;
}
.pay-modal__submit:hover { background: #d44817; }
.pay-modal__submit--free { background: rgba(255, 255, 255, 0.1); color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.pay-modal__submit--free:hover { background: rgba(255, 255, 255, 0.15); }
.pay-modal__submit--lite     { background: #3b82f6; }
.pay-modal__submit--lite:hover { background: #2563eb; }
.pay-modal__submit--premium  { background: linear-gradient(135deg, #f59e0b, #ea541a); }
.pay-modal__submit--premium:hover { opacity: 0.9; }

.pay-modal__note {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 12px;
}

/* ══ 반응형 ══ */
@media (max-width: 1024px) {
    .pr-plans {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pay-modal__inner { grid-template-columns: 1fr; }
    .pay-modal__plan {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 24px 24px 0 0;
        padding: 32px 24px 24px;
    }
    .pay-modal__form { padding: 24px; }
}

@media (max-width: 768px) {
    .pr-hero__title { font-size: 36px; }
    .pr-section__title { font-size: 26px; }
    .pr-section { padding: 64px 0; }

    .pr-plans { grid-template-columns: 1fr; }
    .pr-examples { grid-template-columns: 1fr; }
    .pr-consult-cards { grid-template-columns: 1fr; }
    .pr-consult-cta { flex-direction: column; }
    .pr-consult-cta__right { width: 100%; }
    .pr-btn { width: 100%; justify-content: center; }
    .pr-consult-cta__right .pr-btn { width: auto; }

    .pr-hero__stats { gap: 20px; }
    .pr-hero__stat-divider { display: none; }
    .pr-footer-cta__title { font-size: 28px; }
    .pr-credit-info__rates { flex-direction: column; gap: 8px; }

    .pr-container { padding: 0 16px; }
    .pr-faq__q { padding: 18px 20px; font-size: 15px; }
    .pr-faq__a { padding: 0 20px; }
    .pr-faq__item--open .pr-faq__a { padding: 0 20px 18px; }
}
