:root {
    --rf-green: #559723;
    --rf-green-dark: #427E15;
    --rf-green-bg: #E9F1E2;
    --rf-green-border: #BCD5A9;
    --rf-card-bg: #FFFFFF;
    --rf-border: #DFE0E5;
    --rf-border-hover: #CBD0D6;
    --rf-text: #191919;
    --rf-text-muted: #757575;
    --rf-radius-m: 12px;
    --rf-radius-l: 16px;
    --rf-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    --rf-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.refund-page {
    font-family: inherit;
    color: var(--rf-text);
    padding-bottom: 40px;
}

.refund-page h1.h2,
.refund-page .h2 {
    margin-top: 14px;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.refund-header-lead {
    background: var(--rf-card-bg);
    border: 1px solid var(--rf-border);
    border-radius: var(--rf-radius-l);
    padding: 24px 28px;
    margin-bottom: 24px;
    box-shadow: var(--rf-shadow);
}
.refund-header-lead p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--rf-text);
    margin: 0 0 12px 0;
}
.refund-lead-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}
.refund-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--rf-green-bg);
    color: var(--rf-green-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

/* ЧИПСЫ ВЫБОРА ПРИЧИНЫ */
.refund-chips-section {
    margin-bottom: 24px;
}
.refund-chips-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--rf-text);
}
.refund-chips-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 4px;
}
.refund-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 120px;
    background-color: #ffffff;
    border: 1px solid var(--rf-border);
    color: var(--rf-text);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
    transition: var(--rf-transition);
    user-select: none;
}
.refund-chip:hover {
    border-color: var(--rf-green-bg);
    background-color: var(--rf-green-bg);
    color: var(--rf-green);
}
.refund-chip.is-active,
.refund-chip.is-active:hover {
    border-color: var(--rf-green-bg);
    background-color: var(--rf-green-bg);
    color: var(--rf-green-dark);
    font-weight: 600;
    box-shadow: none;
}

/* КАРТОЧКА ФОРМЫ */
.refund-form-card {
    background: var(--rf-card-bg);
    border: 1px solid var(--rf-border);
    border-radius: var(--rf-radius-l);
    padding: 32px;
    box-shadow: var(--rf-shadow);
    margin-bottom: 32px;
}
.refund-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
}
.refund-field--full {
    grid-column: 1 / -1;
}
.refund-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--rf-text);
}
.refund-req {
    color: #e53935;
    font-weight: bold;
}
.refund-input,
.refund-textarea {
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    font-size: 15px;
    padding: 12px 16px;
    border: 1px solid var(--rf-border);
    border-radius: var(--rf-radius-m);
    background: #ffffff;
    color: var(--rf-text);
    transition: var(--rf-transition);
    outline: none;
    font-family: inherit;
}
.refund-input:focus,
.refund-textarea:focus {
    border-color: var(--rf-green);
    box-shadow: 0 0 0 3px rgba(85, 151, 35, 0.15);
}

/* ============================================================
   СКРУГЛЕННЫЙ АККУРАТНЫЙ СКРОЛЛБАР (TEXTAREA И ДРУГИЕ ПОЛЯ)
   ============================================================ */
.refund-textarea {
    min-height: 140px;
    line-height: 1.5;
    resize: vertical;
    scrollbar-width: thin;
    scrollbar-color: #CBD5E1 transparent;
    overflow-y: auto;
}
.refund-textarea::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.refund-textarea::-webkit-scrollbar-track {
    background: transparent;
    margin: 8px 0;
    border-radius: 999px;
}
.refund-textarea::-webkit-scrollbar-thumb {
    background-color: #CBD5E1;
    border-radius: 999px;
    border: 1px solid transparent;
    background-clip: padding-box;
    transition: background-color 0.2s ease;
}
.refund-textarea::-webkit-scrollbar-thumb:hover {
    background-color: #94A3B8;
}
.refund-textarea::-webkit-scrollbar-thumb:active {
    background-color: #64748B;
}
.refund-textarea::-webkit-scrollbar-corner {
    background: transparent;
}
.refund-page * {
    scrollbar-width: thin;
    scrollbar-color: #CBD5E1 transparent;
}
.refund-page *::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.refund-page *::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 999px;
}
.refund-page *::-webkit-scrollbar-thumb {
    background-color: #CBD5E1;
    border-radius: 999px;
    border: 1px solid transparent;
    background-clip: padding-box;
}
.refund-page *::-webkit-scrollbar-thumb:hover {
    background-color: #94A3B8;
}

.refund-field-note {
    font-size: 12px;
    color: var(--rf-text-muted);
    margin-top: 5px;
    display: block;
}

/* ДИНАМИЧЕСКИЕ СЕКЦИИ (Салатовая область) */
.refund-dynamic-section {
    grid-column: 1 / -1;
    background: #f9fbf8;
    border: 1px solid #e2ebd9;
    border-radius: var(--rf-radius-m);
    padding: 20px 24px;
    margin: 4px 0 8px;
    display: none;
}
.refund-dynamic-section.is-visible {
    display: block;
}
.refund-dynamic-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--rf-green-dark);
    margin-bottom: 14px;
}
.refund-dynamic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
}

/* ЧИПЫ В САЛАТОВОЙ ОБЛАСТИ (Pills) */
.refund-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-top: 6px;
}
.refund-pill {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    margin: 0;
    position: relative;
}
.refund-pill input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    margin: 0;
}
.refund-pill-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 120px;
    background-color: #ffffff;
    border: 1px solid var(--rf-border);
    color: var(--rf-text);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--rf-transition);
    user-select: none;
    box-shadow: none;
    box-sizing: border-box;
}
.refund-pill:hover .refund-pill-text {
    border-color: var(--rf-green-bg);
    background-color: var(--rf-green-bg);
    color: var(--rf-green);
}
.refund-pill input[type="radio"]:checked + .refund-pill-text {
    border-color: var(--rf-green-bg);
    background-color: var(--rf-green-bg);
    color: var(--rf-green-dark);
    font-weight: 600;
    box-shadow: none;
}

/* СЕТКА СЛОТОВ ЗАГРУЗКИ ФОТО */
.refund-slots-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)) !important;
    gap: 16px !important;
    margin-top: 8px;
}
.refund-slot-card {
    background: #ffffff;
    border: 2px dashed #d5ded0;
    border-radius: var(--rf-radius-m);
    padding: 20px 14px;
    text-align: center;
    cursor: pointer;
    transition: var(--rf-transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}
.refund-slot-card:hover,
.refund-slot-card.is-dragover {
    border-color: var(--rf-green);
    background: #f7faf5;
    transform: translateY(-2px);
}
.refund-slot-card.has-files {
    border-color: var(--rf-green);
    border-style: solid;
    background: #fbfdfa;
}
.refund-slot-card.is-hidden {
    display: none !important;
}

.refund-slot-icon {
    width: 36px !important;
    height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto 10px auto !important;
}
.refund-slot-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--rf-text);
    margin-bottom: 4px;
    line-height: 1.3;
}
.refund-slot-hint {
    font-size: 11px;
    color: var(--rf-text-muted);
    line-height: 1.35;
}
.refund-slot-file-input {
    display: none !important;
}

.refund-slot-previews {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
}
.refund-preview-item {
    position: relative;
    width: 56px;
    height: 56px;
    border: 1px solid var(--rf-border);
    border-radius: 6px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.refund-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.refund-preview-doc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 4px 2px;
    box-sizing: border-box;
    background: #f8faf6;
}
.refund-preview-doc-icon {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
    margin-bottom: 2px !important;
    display: block !important;
}
.refund-preview-doc-name {
    font-size: 8px;
    line-height: 1.1;
    color: #4a5568;
    text-align: center;
    max-width: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: break-all;
}
.refund-preview-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: var(--rf-transition);
}
.refund-preview-remove:hover {
    background: #e53935;
}

/* КАРТОЧКА ЗАЯВЛЕНИЯ */
.refund-statement-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 2px dashed #d5ded0;
    border-radius: var(--rf-radius-m);
    padding: 16px 20px;
    cursor: pointer;
    transition: var(--rf-transition);
    position: relative;
}
.refund-statement-card:hover {
    border-color: var(--rf-green);
    background: #f7faf5;
}
.refund-statement-icon {
    width: 36px !important;
    height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
    display: block !important;
}
.refund-statement-info {
    flex-grow: 1;
}
.refund-statement-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--rf-text);
    margin-bottom: 3px;
}
.refund-statement-hint {
    font-size: 12px;
    color: var(--rf-text-muted);
}
.refund-statement-browse-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 24px !important;
    background: var(--rf-green, #559723) !important;
    color: #ffffff !important;
    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    border-radius: var(--rf-radius-m, 12px) !important;
    border: none !important;
    white-space: nowrap !important;
    pointer-events: none !important;
    transition: var(--rf-transition, all 0.25s ease) !important;
    box-shadow: 0 3px 10px rgba(85, 151, 35, 0.25) !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    -webkit-font-smoothing: antialiased !important;
    box-sizing: border-box !important;
    user-select: none !important;
}
.refund-statement-card:hover .refund-statement-browse-btn {
    background: var(--rf-green-dark, #427E15) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 14px rgba(85, 151, 35, 0.35) !important;
}

/* ЧЕКБОКС СОГЛАСИЯ */
.refund-consent-row {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 6px 0 !important;
    cursor: pointer !important;
    user-select: none !important;
}
.refund-consent-row input[type="checkbox"] {
    position: absolute !important;
    opacity: 0 !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    pointer-events: none !important;
}
.refund-consent-box {
    display: inline-block !important;
    flex: 0 0 18px !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    border: 1.8px solid #CBD0D6 !important;
    border-radius: 4px !important;
    background-color: #ffffff !important;
    transition: background-color .15s, border-color .15s !important;
}
.refund-consent-row:hover .refund-consent-box {
    border-color: #559723 !important;
}
.refund-consent-row input[type="checkbox"]:checked + .refund-consent-box {
    background-color: #559723 !important;
    border-color: #559723 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M2 6.2 4.8 9 10 3.4'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 11px 11px !important;
}
.refund-consent-label-text {
    font-size: 13px !important;
    line-height: 1.4 !important;
    color: var(--rf-text-muted) !important;
}
.refund-consent-label-text a {
    color: #559723 !important;
    text-decoration: underline !important;
}

/* КНОПКА ОТПРАВКИ */
.refund-submit-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}
.refund-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: var(--rf-green) !important;
    color: #ffffff !important;
    font-family: inherit !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    padding: 14px 36px !important;
    border-radius: var(--rf-radius-m) !important;
    border: none !important;
    cursor: pointer !important;
    transition: var(--rf-transition) !important;
    box-shadow: 0 4px 12px rgba(85, 151, 35, 0.25) !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    -webkit-font-smoothing: antialiased !important;
    box-sizing: border-box !important;
    user-select: none !important;
}
.refund-btn-text {
    font-family: inherit !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: normal !important;
    color: #ffffff !important;
}
.refund-btn:hover {
    background: var(--rf-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(85, 151, 35, 0.35);
}
.refund-btn:disabled,
.refund-btn.is-loading {
    background: #a5d68b;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.refund-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: rfSpin 0.7s infinite linear;
    display: none;
}
.refund-btn.is-loading .refund-spinner {
    display: inline-block;
}
@keyframes rfSpin {
    to { transform: rotate(360deg); }
}
.refund-submit-hint {
    font-size: 13px;
    color: var(--rf-text-muted);
}
.refund-alert {
    background: #fde8e8;
    color: #c81e1e;
    padding: 12px 16px;
    border-radius: var(--rf-radius-m);
    font-size: 14px;
    margin-bottom: 20px;
    border-left: 4px solid #e53935;
    display: none;
}
.refund-success-card {
    background: #f6fbf4;
    border: 2px solid var(--rf-green);
    border-radius: var(--rf-radius-l);
    padding: 40px 32px;
    text-align: center;
    display: none;
}
.refund-success-icon {
    width: 64px !important;
    height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto 16px auto !important;
}
.refund-success-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--rf-text);
    margin-bottom: 12px;
}
.refund-ref-badge {
    display: inline-block;
    background: #ffffff;
    border: 1px solid var(--rf-green);
    color: var(--rf-green-dark);
    font-size: 16px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.refund-success-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--rf-text);
    max-width: 600px;
    margin: 0 auto 24px;
}

/* КАРТОЧКИ ДОКУМЕНТОВ ДЛЯ СКАЧИВАНИЯ */
.docs-list {
    display: grid;
    gap: 12px;
    margin: 0 0 32px 0;
    padding: 0;
    list-style: none;
}
.docs-item {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 16px 18px;
    border: 1px solid #e6e8ea;
    border-radius: 12px;
    background: #ffffff;
    transition: border-color .3s, box-shadow .3s;
}
.docs-item::after { content: none !important; }
.docs-item:hover {
    border-color: var(--rf-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .07);
}
.docs-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 6px;
    background: rgba(85, 151, 35, .12);
    color: var(--rf-green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.docs-item__body { display: block; min-width: 0; }
.docs-item__link {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    color: #363636;
    text-decoration: none;
    overflow-wrap: anywhere;
}
.docs-item__link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
}
.docs-item__link:hover { color: var(--rf-green); }
.docs-item__text {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    color: #5f6368;
    line-height: 1.35;
}
.docs-item__meta {
    display: block;
    margin-top: 4px;
    color: #757575;
    font-size: 12px;
    line-height: 1.3;
}
.docs-item__download {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 8px;
    background-color: var(--rf-green);
    color: #ffffff;
    border: 0;
    cursor: pointer;
    transition: background-color .2s ease, transform .1s ease;
    text-decoration: none;
}
.docs-item__download svg { width: 20px; height: 20px; display: block; stroke: #fff; }
.docs-item__download:hover,
.docs-item__download:focus-visible {
    background-color: #48821d;
    color: #ffffff;
    outline: none;
}
.docs-item__download:active {
    background-color: #3f7318;
    transform: translateY(1px);
}
@media (min-width: 992px) {
    .docs-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .docs-item { min-height: 80px; }
}

/* ============================================================
   АККОРДЕОНЫ (В ТОЧНОСТИ ПО ДИЗАЙН-СИСТЕМЕ /faq/)
   ============================================================ */
.refund-faq-section {
    margin-top: 36px;
}
.refund-faq-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #191919;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    border: 1px solid var(--rf-border);
    border-radius: var(--rf-radius-m);
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
    overflow: hidden;
}
.faq-item:hover {
    border-color: #C9CBCF;
}
.faq-item[open] {
    border-color: var(--rf-green-border);
    box-shadow: 0 4px 16px rgba(25, 25, 25, 0.06);
}
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    color: #191919;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}
.faq-q::-webkit-details-marker,
.faq-q::marker {
    display: none;
    content: '';
}
.faq-q:focus-visible {
    outline: 2px solid var(--rf-green);
    outline-offset: -2px;
    border-radius: var(--rf-radius-m);
}
.faq-item[open] .faq-q {
    color: var(--rf-green-dark);
}
.faq-q-ico {
    flex: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--rf-green-bg) url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 4.25L6 7.75L9.5 4.25' stroke='%23427E15' stroke-width='1.6' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E") center no-repeat;
    transition: transform 0.25s ease;
}
.faq-item[open] .faq-q-ico {
    transform: rotate(180deg);
}
.faq-a {
    overflow: hidden;
}
.faq-a-inner {
    padding: 2px 64px 20px 20px;
    font-size: 16px;
    line-height: 1.55;
    color: #363636;
}
.faq-a-inner p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: normal;
}
.faq-a-inner p:last-child,
.faq-a-inner ul:last-child,
.faq-a-inner ol:last-child {
    margin-bottom: 0;
}
.faq-a-inner ul,
.faq-a-inner ol {
    margin: 0 0 12px;
    padding-left: 22px;
}
.faq-a-inner ul {
    list-style: disc !important;
}
.faq-a-inner ol {
    list-style: decimal !important;
}
.faq-a-inner li {
    display: list-item !important;
    position: static;
    min-height: 0;
    margin: 0 0 8px;
    padding-left: 0;
    font-size: 16px;
    line-height: 1.55;
}
.faq-a-inner li:last-child {
    margin-bottom: 0;
}
.faq-a-inner ul li::after,
.faq-a-inner ol li::before {
    content: none !important;
}
.faq-a-inner li::marker {
    color: var(--rf-green);
}
.faq-a-inner a {
    color: var(--rf-green-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.faq-a-inner a:hover {
    color: var(--rf-green);
}
.faq-a-inner b,
.faq-a-inner strong {
    color: #191919;
}

@media (max-width: 768px) {
    .faq-q { gap: 12px; padding: 15px 16px; font-size: 16px; }
    .faq-q-ico { width: 28px; height: 28px; }
    .faq-a-inner { padding: 0 16px 16px; font-size: 15px; }
    .faq-a-inner p, .faq-a-inner li { font-size: 15px; }
    .refund-form-card { padding: 20px 16px; }
    .refund-textarea { min-height: 135px; }
    .refund-grid { grid-template-columns: 1fr; gap: 16px; }
    .refund-slots-grid { grid-template-columns: 1fr !important; }
    .refund-dynamic-grid { grid-template-columns: 1fr; }
    .refund-statement-card { flex-direction: column; text-align: center; }
    .refund-statement-browse-btn {
        width: 100% !important;
        padding: 12px 20px !important;
        font-family: inherit !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        line-height: 1.25 !important;
        letter-spacing: normal !important;
        border-radius: var(--rf-radius-m, 12px) !important;
        text-align: center !important;
    }
    .refund-submit-wrap { flex-direction: column; align-items: stretch; }
    .refund-btn {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        line-height: 1.25 !important;
        font-family: inherit !important;
        letter-spacing: normal !important;
        border-radius: var(--rf-radius-m) !important;
        text-align: center !important;
    }
    .refund-btn-text {
        font-size: 16px !important;
        font-weight: 600 !important;
        font-family: inherit !important;
    }
    .refund-header-lead { padding: 16px; }
    .refund-pill-text { padding: 10px 16px; font-size: 14px; }
    .docs-item { grid-template-columns: auto minmax(0, 1fr) auto; padding: 12px 14px; }
}