/* RDPS.win — дополнительные стили каталога, сравнений и гайдов */

/* --- Шапка: dropdown поверх соседних пунктов меню --- */
.tp-header-menu nav > ul > li:hover {
    z-index: 25;
}

.tp-header-menu ul li .sub-menu {
    z-index: 25;
}

#header-sticky.header-sticky {
    z-index: 100;
}

/* --- Каталог: шапка, фильтры, сетка карточек --- */

.rdps-catalog-top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px 28px;
    margin-bottom: 28px;
}

.rdps-catalog-top__lead {
    margin: 14px 0 0;
    max-width: 640px;
    color: #475569;
}

/* Единая карточка: фильтры + калькулятор */
.rdps-catalog-panel {
    margin-bottom: 32px;
    padding: 22px 22px 20px;
    border-radius: 20px;
    border: 1px solid #e8edf5;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 55px rgba(7, 17, 31, 0.06);
    position: relative;
    z-index: 5;
    pointer-events: auto;
    isolation: isolate;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.rdps-catalog-panel.has-active-filters {
    border-color: rgba(0, 120, 212, 0.28);
    box-shadow:
        0 18px 55px rgba(7, 17, 31, 0.06),
        0 0 0 1px rgba(0, 120, 212, 0.08);
}

.rdps-catalog-panel input,
.rdps-catalog-panel select,
.rdps-catalog-panel button {
    pointer-events: auto;
    touch-action: manipulation;
}

.rdps-catalog-panel .rdps-native-select {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 2;
}

.rdps-catalog-panel__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px 24px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #eef2f7;
}

.rdps-catalog-panel__kicker {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--tp-theme-color, #0078d4);
}

.rdps-catalog-panel__title {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.25;
    color: #0f172a;
}

.rdps-catalog-panel__stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.rdps-catalog-panel__stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e8edf5;
    font-size: 13px;
    line-height: 1;
    color: #64748b;
    white-space: nowrap;
}

.rdps-catalog-panel__stat strong {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.rdps-catalog-panel__stat--link {
    text-decoration: none;
    color: #0f172a;
    font-weight: 700;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.rdps-catalog-panel__stat--link:hover {
    border-color: rgba(0, 120, 212, 0.35);
    background: rgba(0, 120, 212, 0.06);
    color: #004578;
}

.rdps-catalog-panel__stat--count.is-filtered {
    border-color: rgba(0, 120, 212, 0.35);
    background: rgba(0, 120, 212, 0.07);
}

.rdps-catalog-panel__stat--count.is-filtered strong {
    color: var(--tp-theme-color, #0078d4);
}

.rdps-catalog-panel__stat-meta {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
}

.rdps-catalog-panel__stat--count.is-updated strong {
    animation: rdps-catalog-count-pulse 0.45s ease;
}

@keyframes rdps-catalog-count-pulse {
    0% { transform: scale(1); }
    40% { transform: scale(1.12); color: var(--tp-theme-color, #0078d4); }
    100% { transform: scale(1); }
}

.rdps-catalog-panel__stat-icon {
    flex-shrink: 0;
    opacity: 0.55;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.rdps-catalog-panel__stat--link:hover .rdps-catalog-panel__stat-icon {
    opacity: 1;
    transform: translateX(2px);
}

.rdps-catalog-panel__stat--link.has-selection {
    border-color: rgba(0, 120, 212, 0.35);
    background: rgba(0, 120, 212, 0.08);
    color: #004578;
}

.rdps-catalog-panel__reset {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 120, 212, 0.25);
    background: rgba(0, 120, 212, 0.08);
    color: #004578;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.rdps-catalog-panel__reset:hover {
    border-color: rgba(0, 120, 212, 0.45);
    background: rgba(0, 120, 212, 0.14);
}

.rdps-catalog-panel__reset:active {
    transform: scale(0.97);
}

.rdps-catalog-panel__reset[hidden] {
    display: none !important;
}

.rdps-catalog-panel__body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 992px) {
    .rdps-catalog-panel__body {
        grid-template-columns: minmax(0, 1.2fr) auto minmax(0, 1fr);
        align-items: start;
        gap: 22px;
    }
}

.rdps-catalog-panel__divider {
    display: none;
}

@media (min-width: 992px) {
    .rdps-catalog-panel__divider {
        display: block;
        width: 1px;
        align-self: stretch;
        min-height: 120px;
        background: linear-gradient(180deg, transparent, #dbe3ef 12%, #dbe3ef 88%, transparent);
    }
}

.rdps-catalog-panel__section-head {
    margin-bottom: 12px;
}

.rdps-catalog-panel__section-label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0f172a;
}

.rdps-catalog-panel__section-hint {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.45;
    color: #64748b;
}

.rdps-catalog-panel__filters {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: end;
}

@media (min-width: 768px) {
    .rdps-catalog-panel__filters {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
    }
}

.rdps-catalog-field {
    display: grid;
    grid-template-rows: auto 44px;
    gap: 6px;
    min-width: 0;
    margin: 0;
}

.rdps-catalog-field--grow {
    grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .rdps-catalog-field--grow {
        grid-column: auto;
    }
}

.rdps-catalog-field__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #64748b;
    line-height: 1.2;
}

.rdps-catalog-field input,
.rdps-catalog-field select {
    width: 100%;
    min-width: 0;
    height: 44px;
    margin: 0;
    border-radius: 12px;
    border: 1px solid #dbe3ef;
    background-color: #fff;
    font-family: inherit;
    font-size: 14px;
    color: #0f172a;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rdps-catalog-field input {
    padding: 11px 14px;
    line-height: 1.35;
}

.rdps-catalog-field select {
    padding: 0 36px 0 14px;
    line-height: 1.2;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.rdps-catalog-field.is-filled .rdps-catalog-field__label {
    color: var(--tp-theme-color, #0078d4);
}

.rdps-catalog-field.is-filled input,
.rdps-catalog-field.is-filled select {
    border-color: rgba(0, 120, 212, 0.35);
    background-color: rgba(0, 120, 212, 0.03);
}

.rdps-catalog-field__control {
    position: relative;
    display: block;
}

.rdps-catalog-field__control input {
    width: 100%;
    padding-right: 38px;
}

.rdps-catalog-field__clear {
    position: absolute;
    top: 50%;
    right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #e8edf5;
    color: #64748b;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, color 0.2s ease;
}

.rdps-catalog-field__clear:hover {
    background: rgba(0, 120, 212, 0.15);
    color: #004578;
}

.rdps-catalog-field__clear[hidden] {
    display: none !important;
}

.rdps-catalog-active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #e2e8f0;
}

.rdps-catalog-active-filters[hidden] {
    display: none !important;
}

.rdps-catalog-active-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 0 10px 0 12px;
    border: 1px solid rgba(0, 120, 212, 0.22);
    border-radius: 999px;
    background: rgba(0, 120, 212, 0.07);
    color: #004578;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.rdps-catalog-active-filter:hover {
    background: rgba(0, 120, 212, 0.12);
    border-color: rgba(0, 120, 212, 0.35);
}

.rdps-catalog-active-filter svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.rdps-catalog-field input:focus,
.rdps-catalog-field select:focus {
    outline: none;
    border-color: rgba(0, 120, 212, 0.45);
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.12);
}

.rdps-catalog-field input:hover,
.rdps-catalog-field select:hover {
    border-color: #b8c5d9;
}

.rdps-catalog-panel__tasks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.rdps-catalog-task-chip {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid #dbe3ef;
    background: #fff;
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.rdps-catalog-task-chip:hover {
    border-color: rgba(0, 120, 212, 0.35);
    background: rgba(0, 120, 212, 0.05);
    transform: translateY(-1px);
}

.rdps-catalog-task-chip:active {
    transform: translateY(0);
}

.rdps-catalog-task-chip.is-active {
    border-color: rgba(0, 120, 212, 0.5);
    background: rgba(0, 120, 212, 0.12);
    color: #004578;
    box-shadow: 0 4px 14px rgba(0, 120, 212, 0.12);
}

.rdps-catalog-task-chip:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.2);
}

.rdps-catalog-panel__recommendation {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.07), rgba(0, 120, 212, 0.02));
    border: 1px solid rgba(0, 120, 212, 0.14);
    font-size: 14px;
    line-height: 1.5;
    color: #334155;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.rdps-catalog-panel__recommendation.is-ready {
    background: #fff;
    border-color: rgba(0, 120, 212, 0.22);
    box-shadow: 0 8px 24px rgba(0, 120, 212, 0.08);
}

.rdps-catalog-panel__recommendation-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 120, 212, 0.12);
    color: var(--tp-theme-color, #0078d4);
    font-weight: 800;
    font-size: 14px;
}

.rdps-catalog-panel__recommendation-icon.is-success {
    background: rgba(16, 185, 129, 0.14);
    color: #059669;
}

.rdps-catalog-panel__recommendation a {
    font-weight: 700;
    color: var(--tp-theme-color, #0078d4);
    text-decoration: none;
}

.rdps-catalog-panel__recommendation a:hover {
    text-decoration: underline;
}

.rdps-catalog-grid {
    margin-top: 0;
}

.rdps-catalog-grid__cell.is-hidden {
    display: none !important;
}

.rdps-catalog-providers .rdps-catalog-provider-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 0;
}

.rdps-catalog-providers .rdps-catalog-provider-card .tpservices2__thumb {
    margin-bottom: 0;
    flex-shrink: 0;
}

.rdps-catalog-providers .rdps-catalog-provider-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 22px 22px 20px;
}

.rdps-catalog-providers .rdps-catalog-provider-card__summary {
    margin-bottom: 0;
    min-height: 0 !important;
    font-size: 15px;
    line-height: 1.5;
}

.rdps-catalog-provider-card__price {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--tp-orange-color, #f59e0b);
}

.rdps-catalog-provider-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
}

.rdps-catalog-compare-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid #dbe3ef;
    background: #fff;
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.rdps-catalog-compare-btn:hover,
.rdps-catalog-compare-btn.is-active {
    border-color: rgba(0, 120, 212, 0.35);
    background: rgba(0, 120, 212, 0.08);
}

.rdps-catalog-providers .rdps-catalog-provider-card__more {
    position: static;
    transform: none;
    margin: 0;
}

.rdps-catalog-providers .tpservices2__link {
    display: none;
}

.rdps-catalog-empty {
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    color: #475569;
    text-align: center;
}

.rdps-catalog-provider-card.is-hidden {
    display: none !important;
}

@media (max-width: 767px) {
    .rdps-catalog-panel {
        padding: 18px 16px;
    }

    .rdps-catalog-panel__stats {
        width: 100%;
    }

    .rdps-catalog-top__action {
        width: 100%;
    }

    .rdps-catalog-top__action .tp-btn {
        width: 100%;
        justify-content: center;
    }
}

.rdps-compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.rdps-compare-table th,
.rdps-compare-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e8edf5;
    text-align: left;
    vertical-align: top;
}

.rdps-compare-table th {
    background: #f8fafc;
    font-weight: 600;
}

.rdps-compare-verdict {
    padding: 20px 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.08), rgba(0, 120, 212, 0.02));
    border: 1px solid rgba(0, 120, 212, 0.14);
    margin-top: 24px;
}

/* --- Гайды: хаб, карточки, статья, пагинация --- */

.rdps-guides-hub__hero {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px 28px;
    margin-bottom: 32px;
}

.rdps-guides-hub__kicker {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--tp-theme-color, #0078d4);
}

.rdps-guides-hub__title {
    margin: 0 0 12px;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    line-height: 1.15;
    color: #0f172a;
}

.rdps-guides-hub__lead {
    margin: 0;
    max-width: 680px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #475569;
}

.rdps-guides-hub__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.rdps-guides-hub__stat {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e8edf5;
    font-size: 13px;
    color: #64748b;
}

.rdps-guides-hub__stat strong {
    margin-right: 4px;
    color: #0f172a;
}

.rdps-guides-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 28px;
}

@media (min-width: 768px) {
    .rdps-guides-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Первый гайд на странице 1 — горизонтальная featured-карточка */
.rdps-guide-featured {
    margin-bottom: 24px;
    border-radius: 20px;
    border: 1px solid #e8edf5;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 18px 52px rgba(7, 17, 31, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.rdps-guide-featured:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 120, 212, 0.22);
    box-shadow: 0 24px 60px rgba(7, 17, 31, 0.1);
}

.rdps-guide-featured__link {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    text-decoration: none;
    color: inherit;
}

@media (min-width: 768px) {
    .rdps-guide-featured__link {
        grid-template-columns: minmax(0, 1.28fr) minmax(0, 1fr);
        min-height: 376px;
    }
}

.rdps-guide-featured__media {
    position: relative;
    margin: 0;
    min-height: 220px;
    overflow: hidden;
    background: #eef2f7;
}

@media (min-width: 768px) {
    .rdps-guide-featured__media {
        min-height: 100%;
    }
}

.rdps-guide-featured__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

@media (min-width: 768px) {
    .rdps-guide-featured__media img {
        min-height: 376px;
    }
}

.rdps-guide-featured:hover .rdps-guide-featured__media img {
    transform: scale(1.03);
}

.rdps-guide-featured__topic {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e8edf5;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--tp-theme-color, #0078d4);
}

.rdps-guide-featured__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 24px 22px 26px;
}

@media (min-width: 768px) {
    .rdps-guide-featured__body {
        padding: 32px 34px;
    }
}

.rdps-guide-featured__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
}

.rdps-guide-featured__title {
    margin: 0;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
}

.rdps-guide-featured__lead {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #475569;
}

.rdps-guide-featured__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    transition: gap 0.2s ease, color 0.2s ease;
}

.rdps-guide-featured:hover .rdps-guide-featured__cta {
    gap: 12px;
    color: var(--tp-theme-color, #0078d4);
}

.rdps-guide-card {
    border-radius: 20px;
    border: 1px solid #e8edf5;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(7, 17, 31, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.rdps-guide-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 120, 212, 0.28);
    box-shadow: 0 22px 56px rgba(7, 17, 31, 0.1);
}

.rdps-guide-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.rdps-guide-card__media {
    position: relative;
    margin: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e8edf5;
}

.rdps-guide-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.rdps-guide-card:hover .rdps-guide-card__media img {
    transform: scale(1.04);
}

.rdps-guide-card__topic {
    position: absolute;
    left: 14px;
    top: 14px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #004578;
    backdrop-filter: blur(6px);
}

.rdps-guide-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 10px;
    padding: 20px 22px 22px;
}

.rdps-guide-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
}

.rdps-guide-card__title {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.3;
    color: #0f172a;
}

.rdps-guide-card__lead {
    margin: 0;
    flex: 1 1 auto;
    font-size: 14px;
    line-height: 1.55;
    color: #475569;
}

.rdps-guide-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 800;
    color: var(--tp-theme-color, #0078d4);
    transition: gap 0.2s ease;
}

.rdps-guide-card:hover .rdps-guide-card__cta {
    gap: 12px;
}

.rdps-guides-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 28px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid #e8edf5;
    background: #f8fafc;
}

.rdps-guides-pagination__pages {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.rdps-guides-pagination__page,
.rdps-guides-pagination__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 40px;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid #dbe3ef;
    background: #fff;
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.rdps-guides-pagination__page.is-active {
    border-color: rgba(0, 120, 212, 0.4);
    background: rgba(0, 120, 212, 0.1);
    color: #004578;
}

.rdps-guides-pagination__page:not(.is-active):hover,
.rdps-guides-pagination__btn:not(.is-disabled):hover {
    border-color: rgba(0, 120, 212, 0.35);
    background: rgba(0, 120, 212, 0.06);
    color: #004578;
}

.rdps-guides-pagination__btn.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.rdps-guides-hub__seo {
    padding: 24px 26px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.06), rgba(0, 120, 212, 0.02));
    border: 1px solid rgba(0, 120, 212, 0.12);
}

.rdps-guides-hub__seo-title {
    margin: 0 0 10px;
    font-size: 1.15rem;
    color: #0f172a;
}

.rdps-guides-hub__seo p {
    margin: 0;
    color: #475569;
    line-height: 1.65;
}

.rdps-guides-hub__seo a {
    font-weight: 700;
    color: var(--tp-theme-color, #0078d4);
    text-decoration: none;
}

.rdps-guides-hub__seo a:hover {
    text-decoration: underline;
}

.rdps-guide-article__hero {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    min-height: clamp(280px, 42vw, 520px);
    overflow: hidden;
    background: #0f172a;
}

.rdps-guide-article__hero-media {
    position: absolute;
    inset: 0;
    margin: 0;
}

.rdps-guide-article__hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rdps-guide-article__hero-scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 17, 31, 0.15) 0%, rgba(7, 17, 31, 0.55) 45%, rgba(7, 17, 31, 0.92) 100%),
        linear-gradient(90deg, rgba(7, 17, 31, 0.35) 0%, transparent 55%);
}

.rdps-guide-article__hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    min-height: clamp(280px, 42vw, 520px);
    padding-top: 48px;
    padding-bottom: 42px;
}

.rdps-guide-article__topic {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 14px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
}

.rdps-guide-article__title {
    margin: 0 0 12px;
    max-width: 820px;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.12;
    color: #fff;
}

.rdps-guide-article__lead {
    margin: 0;
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.86);
}

.rdps-guide-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 18px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
}

.rdps-guide-article__content {
    padding-bottom: 120px;
}

.rdps-guide-step {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px 20px;
    padding: 22px 0;
    border-bottom: 1px solid #eef2f7;
}

.rdps-guide-step:first-child {
    padding-top: 0;
}

.rdps-guide-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(0, 120, 212, 0.1);
    color: var(--tp-theme-color, #0078d4);
    font-size: 15px;
    font-weight: 800;
}

.rdps-guide-step__title {
    margin: 0 0 8px;
    font-size: 1.2rem;
    color: #0f172a;
}

.rdps-guide-step__text {
    margin: 0;
    color: #475569;
    line-height: 1.65;
}

.rdps-guide-article__nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 28px 0 24px;
}

@media (min-width: 768px) {
    .rdps-guide-article__nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.rdps-guide-article__nav-link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid #e8edf5;
    background: #f8fafc;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.rdps-guide-article__nav-link:hover {
    border-color: rgba(0, 120, 212, 0.3);
    background: rgba(0, 120, 212, 0.05);
    color: inherit;
}

.rdps-guide-article__nav-link span {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
}

.rdps-guide-article__nav-link strong {
    font-size: 14px;
    line-height: 1.4;
    color: #0f172a;
}

.rdps-guide-article__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 20px;
}

.rdps-guide-article__catalog-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--tp-theme-color, #0078d4);
    text-decoration: none;
}

.rdps-guide-article__catalog-link:hover {
    text-decoration: underline;
}

.rdps-guide-aside {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 110px;
}

.rdps-guide-aside__card,
.rdps-guide-aside__related {
    padding: 20px;
    border-radius: 18px;
    border: 1px solid #e8edf5;
    background: #fff;
    box-shadow: 0 12px 36px rgba(7, 17, 31, 0.05);
}

.rdps-guide-aside__label {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--tp-theme-color, #0078d4);
}

.rdps-guide-aside__card p {
    margin: 0 0 16px;
    color: #475569;
    line-height: 1.55;
}

.rdps-guide-aside__list {
    display: grid;
    gap: 10px;
}

.rdps-guide-aside__item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid #eef2f7;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.rdps-guide-aside__item:hover {
    border-color: rgba(0, 120, 212, 0.28);
    background: rgba(0, 120, 212, 0.04);
    color: inherit;
}

.rdps-guide-aside__item img {
    display: block;
    width: 72px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
}

.rdps-guide-aside__item strong {
    display: block;
    font-size: 13px;
    line-height: 1.35;
    color: #0f172a;
}

.rdps-guide-aside__item em {
    display: block;
    margin-top: 4px;
    font-style: normal;
    font-size: 12px;
    color: #94a3b8;
}

.rdps-compare-list {
    display: grid;
    gap: 18px;
}

/* --- Сравнения: хаб в стиле гайдов --- */

.rdps-compare-hub__hero {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px 28px;
    margin-bottom: 32px;
}

.rdps-compare-hub__kicker {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--tp-theme-color, #0078d4);
}

.rdps-compare-hub__title {
    margin: 0 0 12px;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    line-height: 1.15;
    color: #0f172a;
}

.rdps-compare-hub__lead {
    margin: 0;
    max-width: 680px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #475569;
}

.rdps-compare-hub__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.rdps-compare-hub__stat {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e8edf5;
    font-size: 13px;
    color: #64748b;
}

.rdps-compare-hub__stat strong {
    margin-right: 4px;
    color: #0f172a;
}

.rdps-compare-duel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 14px 18px;
    width: 100%;
}

.rdps-compare-duel__side {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.rdps-compare-duel__side--right {
    flex-direction: row-reverse;
    text-align: right;
}

.rdps-compare-duel__side--right .rdps-compare-duel__metrics {
    justify-content: flex-end;
}

.rdps-compare-duel__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(0, 120, 212, 0.1);
    color: var(--tp-theme-color, #0078d4);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.rdps-compare-duel--featured .rdps-compare-duel__avatar {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    font-size: 14px;
}

.rdps-compare-duel__avatar--alt {
    background: #f1f5f9;
    color: #0f172a;
}

.rdps-compare-duel__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.rdps-compare-duel__name {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rdps-compare-duel--featured .rdps-compare-duel__name {
    font-size: 16px;
}

.rdps-compare-duel__metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.rdps-compare-duel__rating,
.rdps-compare-duel__price {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.rdps-compare-duel__rating {
    background: rgba(0, 120, 212, 0.08);
    color: var(--tp-theme-color, #0078d4);
}

.rdps-compare-duel__price {
    background: #f8fafc;
    border: 1px solid #e8edf5;
    color: #64748b;
}

.rdps-compare-duel__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #e8edf5;
    background: #fff;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rdps-compare-duel--featured .rdps-compare-duel__divider {
    width: 38px;
    height: 38px;
}

.rdps-compare-featured,
.rdps-compare-hub-card {
    border-radius: 20px;
    border: 1px solid #e8edf5;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(7, 17, 31, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.rdps-compare-featured {
    margin-bottom: 22px;
}

.rdps-compare-featured:hover,
.rdps-compare-hub-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 120, 212, 0.2);
    box-shadow: 0 18px 48px rgba(7, 17, 31, 0.08);
}

.rdps-compare-featured__link,
.rdps-compare-hub-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.rdps-compare-featured__top,
.rdps-compare-hub-card__top {
    position: relative;
    padding: 18px 20px 16px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-bottom: 1px solid #eef2f7;
}

.rdps-compare-featured__top {
    padding: 22px 24px 18px;
}

.rdps-compare-featured__topic,
.rdps-compare-hub-card__topic {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 14px;
    padding: 0 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e8edf5;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--tp-theme-color, #0078d4);
}

.rdps-compare-featured__body,
.rdps-compare-hub-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 10px;
    padding: 20px 22px 22px;
}

.rdps-compare-featured__body {
    gap: 12px;
    padding: 22px 24px 24px;
}

.rdps-compare-featured__title,
.rdps-compare-hub-card__title {
    margin: 0;
    line-height: 1.25;
    color: #0f172a;
}

.rdps-compare-featured__title {
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 800;
}

.rdps-compare-hub-card__title {
    font-size: 1.15rem;
    font-weight: 800;
}

.rdps-compare-featured__lead,
.rdps-compare-hub-card__lead {
    margin: 0;
    flex: 1 1 auto;
    font-size: 14px;
    line-height: 1.65;
    color: #64748b;
}

.rdps-compare-featured__lead {
    font-size: 15px;
    color: #475569;
}

.rdps-compare-featured__cta,
.rdps-compare-hub-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    transition: gap 0.2s ease, color 0.2s ease;
}

.rdps-compare-featured:hover .rdps-compare-featured__cta,
.rdps-compare-hub-card:hover .rdps-compare-hub-card__cta {
    gap: 12px;
    color: var(--tp-theme-color, #0078d4);
}

@media (max-width: 575.98px) {
    .rdps-compare-duel {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .rdps-compare-duel__divider {
        width: 100%;
        height: auto;
        min-height: 28px;
        border-radius: 999px;
        background: #f8fafc;
    }

    .rdps-compare-duel__side--right {
        flex-direction: row;
        text-align: left;
    }

    .rdps-compare-duel__side--right .rdps-compare-duel__metrics {
        justify-content: flex-start;
    }
}

.rdps-compare-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
}

@media (min-width: 768px) {
    .rdps-compare-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.rdps-compare-grid .rdps-compare-hub-card {
    margin: 0;
}

.rdps-compare-hub__seo {
    padding: 24px 26px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.06), rgba(0, 120, 212, 0.02));
    border: 1px solid rgba(0, 120, 212, 0.12);
}

.rdps-compare-hub__seo-title {
    margin: 0 0 10px;
    font-size: 1.15rem;
    color: #0f172a;
}

.rdps-compare-hub__seo p {
    margin: 0;
    color: #475569;
    line-height: 1.65;
}

.rdps-compare-hub__seo a {
    font-weight: 700;
    color: var(--tp-theme-color, #0078d4);
    text-decoration: none;
}

.rdps-compare-hub__seo a:hover {
    text-decoration: underline;
}

/* Карточки на странице отдельного сравнения */
.rdps-compare-card {
    display: block;
    padding: 22px 24px;
    border-radius: 16px;
    border: 1px solid #e8edf5;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rdps-compare-card:hover {
    border-color: rgba(0, 120, 212, 0.35);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    color: inherit;
}

.rdps-compare-card h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
}

.rdps-compare-card p {
    margin: 0;
    color: #475569;
}

.rdps-provider-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin: 24px 0;
}

.rdps-provider-meta-grid > div {
    padding: 14px 16px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e8edf5;
}

.rdps-provider-meta-grid span {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 4px;
}

.rdps-provider-meta-grid strong {
    font-size: 15px;
    color: #0f172a;
}

.rdps-provider-plans {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.rdps-provider-plan {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #e8edf5;
    background: #fff;
}

.rdps-provider-reviews {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.rdps-provider-review {
    padding: 16px 18px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e8edf5;
}

.rdps-provider-review__head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    font-weight: 600;
}

/* Similar providers — см. rdps-site.css */

/* Reviews hub */
.rdps-reviews-hub__hero {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    padding: 22px 24px;
    border-radius: 18px;
    border: 1px solid rgba(0, 120, 212, 0.14);
    background:
        radial-gradient(circle at 100% 0%, rgba(0, 120, 212, 0.08), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 255, 0.88));
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(0, 120, 212, 0.08);
}

.rdps-reviews-hub__kicker {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0078d4;
}

.rdps-reviews-hub__intro {
    margin: 0;
    max-width: 640px;
    color: #475569;
    line-height: 1.6;
}

.rdps-reviews-hub__filter-note {
    margin: 12px 0 0;
    font-size: 14px;
    color: #64748b;
}

.rdps-reviews-hub__filter-note a {
    font-weight: 600;
}

.rdps-reviews-hub__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.rdps-reviews-stat {
    min-width: 88px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #e8edf5;
    background: rgba(255, 255, 255, 0.85);
    text-align: center;
}

.rdps-reviews-stat strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1.1;
    color: #0f172a;
}

.rdps-reviews-stat span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #64748b;
}

.rdps-reviews-stat--accent strong {
    color: #0078d4;
}

.rdps-reviews-hub__notice {
    margin: 0 0 20px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 120, 212, 0.2);
    background: rgba(0, 120, 212, 0.06);
    color: #0f4c81;
}

.rdps-reviews-hub__layout {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.rdps-reviews-hub__aside-card {
    position: sticky;
    top: 96px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #e8edf5;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
}

.rdps-reviews-hub__aside-title {
    margin: 0 0 12px;
    font-size: 15px;
}

.rdps-reviews-hub__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rdps-reviews-hub__nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    font-size: 14px;
    transition: background 0.15s, color 0.15s;
}

.rdps-reviews-hub__nav-item strong {
    font-size: 12px;
    color: #64748b;
}

.rdps-reviews-hub__nav-item:hover,
.rdps-reviews-hub__nav-item.is-active {
    background: rgba(0, 120, 212, 0.08);
    color: #0078d4;
}

.rdps-reviews-hub__nav-item.is-active strong {
    color: #0078d4;
}

.rdps-reviews-hub__aside-foot {
    margin: 14px 0 0;
    padding-top: 12px;
    border-top: 1px solid #e8edf5;
    font-size: 14px;
    font-weight: 600;
}

.rdps-reviews-hub__section-head {
    margin-bottom: 16px;
}

.rdps-reviews-hub__section-head h2 {
    margin: 0 0 6px;
    font-size: 1.35rem;
}

.rdps-reviews-hub__section-head p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.rdps-reviews-hub__empty {
    padding: 24px;
    border-radius: 14px;
    border: 1px dashed #dbe3ef;
    background: #f8fafc;
}

.rdps-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.rdps-reviews-grid--featured {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.rdps-reviews-grid--rating {
    margin-top: 8px;
}

.rdps-reviews-hub__featured,
.rdps-reviews-hub__list {
    margin-bottom: 36px;
}

.rdps-review-stars {
    display: inline-flex;
    gap: 2px;
    line-height: 1;
}

.rdps-review-stars--input {
    gap: 4px;
}

.rdps-review-stars__star {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1;
}

.rdps-review-stars--input .rdps-review-stars__star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    transition: transform 0.12s ease, color 0.12s ease, background 0.12s ease;
}

.rdps-review-stars--input .rdps-review-stars__star span {
    font-size: 28px;
    line-height: 1;
}

.rdps-review-stars__star.is-on,
.rdps-review-stars--input .rdps-review-stars__star.is-on {
    color: #f59e0b;
}

.rdps-review-stars--input .rdps-review-stars__star:hover,
.rdps-review-stars--input .rdps-review-stars__star:focus-visible {
    transform: scale(1.06);
    background: rgba(245, 158, 11, 0.1);
    outline: none;
}

.rdps-review-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid #e8edf5;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.rdps-review-card:hover {
    border-color: rgba(0, 120, 212, 0.28);
    box-shadow: 0 16px 40px rgba(0, 120, 212, 0.1);
    transform: translateY(-1px);
}

.rdps-review-card--featured {
    border-color: rgba(0, 120, 212, 0.22);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(240, 248, 255, 0.95));
    box-shadow: 0 16px 42px rgba(0, 120, 212, 0.1);
}

.rdps-review-card--compact {
    box-shadow: none;
}

.rdps-review-card--compact:hover {
    transform: none;
}

.rdps-review-card__head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.rdps-review-card__rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.rdps-review-card__score {
    font-size: 12px;
    color: #64748b;
}

.rdps-review-card__provider {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #0078d4;
    text-decoration: none;
}

.rdps-review-card__title {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.35;
}

.rdps-review-card__title a {
    color: inherit;
    text-decoration: none;
}

.rdps-review-card__title a:hover {
    color: #0078d4;
}

.rdps-review-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #64748b;
}

.rdps-review-card__task {
    padding: 2px 8px;
    border-radius: 999px;
    background: #f1f5f9;
}

.rdps-review-card__badge {
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(0, 120, 212, 0.1);
    color: #0078d4;
    font-size: 12px;
    font-weight: 600;
}

.rdps-review-card__badge--featured {
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
}

.rdps-review-card__text {
    margin: 0 0 12px;
    color: #334155;
    line-height: 1.55;
}

.rdps-review-card__proscons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.rdps-review-card__pros strong {
    color: #15803d;
}

.rdps-review-card__cons strong {
    color: #b45309;
}

.rdps-review-card__proscons ul {
    margin: 6px 0 0;
    padding-left: 1.1em;
}

.rdps-review-card__more {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.rdps-provider-section--reviews {
    margin-top: 8px;
}

.rdps-provider-reviews__summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.rdps-provider-reviews {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.rdps-provider-reviews__foot {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
    font-weight: 600;
}

.rdps-provider-reviews__foot {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
    font-weight: 600;
}

.rdps-provider-reviews__more {
    margin: 12px 0 0;
    font-size: 14px;
    font-weight: 800;
}

.rdps-provider-reviews__more a {
    color: #0078d4;
    text-decoration: none;
}

.rdps-provider-reviews__more a:hover {
    text-decoration: underline;
}

/* Review form — стиль карточек провайдера */
.rdps-review-form-panel {
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid rgba(7, 17, 31, 0.08);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0%, rgba(0, 120, 212, 0.08), transparent 36%),
        #ffffff;
    box-shadow: 0 16px 44px rgba(7, 17, 31, 0.055);
}

.rdps-review-form-panel__head {
    padding: 24px 24px 0;
}

.rdps-review-form-panel__kicker {
    display: block;
    margin-bottom: 8px;
    color: #0078d4;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rdps-review-form-panel__title {
    margin: 0 0 10px;
    color: var(--tp-heading-color);
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.rdps-review-form-panel__lead {
    margin: 0;
    max-width: 680px;
    color: rgba(7, 17, 31, 0.62);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
}

.rdps-review-form-panel__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 800;
}

.rdps-review-form-panel__links a {
    color: #0078d4;
    text-decoration: none;
}

.rdps-review-form-panel__links a:hover {
    text-decoration: underline;
}

.rdps-review-form-panel__notice {
    margin: 16px 24px 0;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.rdps-review-form-panel__notice--success {
    border: 1px solid rgba(21, 128, 61, 0.2);
    background: rgba(21, 128, 61, 0.08);
    color: #166534;
}

.rdps-review-form-panel__notice--warn {
    border: 1px solid rgba(180, 83, 9, 0.2);
    background: rgba(245, 158, 11, 0.1);
    color: #92400e;
}

.rdps-review-form-panel__notice--error {
    border: 1px solid rgba(220, 38, 38, 0.2);
    background: rgba(220, 38, 38, 0.06);
    color: #991b1b;
}

.rdps-review-form {
    padding: 20px 24px 24px;
}

.rdps-review-form__trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.rdps-review-form__block {
    margin: 0 0 20px;
    padding: 0;
    border: 0;
}

.rdps-review-form__legend {
    margin: 0 0 12px;
    padding: 0;
    color: rgba(7, 17, 31, 0.48);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rdps-review-form__block--rating {
    margin-bottom: 22px;
}

.rdps-review-form__rating-card {
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid rgba(0, 120, 212, 0.12);
    background: rgba(0, 120, 212, 0.04);
}

.rdps-review-form__rating-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;
}

.rdps-review-form__rating-label {
    margin: 0;
    color: var(--tp-heading-color);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.rdps-review-form__rating-hint {
    margin: 10px 0 0;
    color: rgba(7, 17, 31, 0.48);
    font-size: 13px;
    font-weight: 700;
}

.rdps-review-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: end;
}

.rdps-review-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rdps-review-form__grid > .rdps-review-form__field {
    display: grid;
    grid-template-rows: auto 52px;
    gap: 8px;
    align-content: end;
}

.rdps-review-form__grid > .rdps-review-form__field--pros,
.rdps-review-form__grid > .rdps-review-form__field--cons {
    display: flex;
    grid-template-rows: none;
}

.rdps-review-form__field label {
    color: var(--tp-heading-color);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1.35;
}

.rdps-review-form__grid > .rdps-review-form__field > label {
    min-height: 2.7em;
    display: flex;
    align-items: flex-end;
}

.rdps-review-form__optional {
    color: rgba(7, 17, 31, 0.42);
    font-size: 12px;
    font-weight: 800;
}

.rdps-review-form__label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.rdps-review-form__counter {
    color: rgba(7, 17, 31, 0.42);
    font-size: 12px;
    font-weight: 800;
}

.rdps-review-form__counter.is-warn {
    color: #b45309;
}

.rdps-review-form__counter.is-ok {
    color: #15803d;
}

.rdps-review-form__hint {
    margin: 0;
    color: rgba(7, 17, 31, 0.42);
    font-size: 12px;
    font-weight: 700;
}

.rdps-review-form__hint.is-ok {
    color: #15803d;
}

.rdps-review-form__field input[type="text"],
.rdps-review-form__field input:not([type]),
.rdps-review-form__field textarea,
.rdps-review-form__select-wrap select {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    border: 1px solid rgba(7, 17, 31, 0.1);
    border-radius: 16px;
    background: #ffffff;
    color: var(--tp-heading-color);
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.rdps-review-form__field input[type="text"],
.rdps-review-form__field input:not([type]) {
    height: 52px;
    min-height: 52px;
    max-height: 52px;
    padding-top: 0;
    padding-bottom: 0;
}

.rdps-review-form__field textarea {
    min-height: 140px;
    height: auto;
    max-height: none;
    resize: vertical;
}

.rdps-review-form__field input::placeholder,
.rdps-review-form__field textarea::placeholder {
    color: rgba(7, 17, 31, 0.34);
    font-weight: 600;
}

.rdps-review-form__field input:hover,
.rdps-review-form__field textarea:hover,
.rdps-review-form__select-wrap select:hover {
    border-color: rgba(0, 120, 212, 0.22);
}

.rdps-review-form__field input:focus,
.rdps-review-form__field textarea:focus,
.rdps-review-form__select-wrap select:focus {
    border-color: rgba(0, 120, 212, 0.45);
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 120, 212, 0.12);
}

.rdps-review-form__field input.is-invalid,
.rdps-review-form__field textarea.is-invalid,
.rdps-review-form__select-wrap select.is-invalid {
    border-color: rgba(220, 38, 38, 0.45);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.rdps-review-form__select-wrap {
    position: relative;
    height: 52px;
    min-height: 52px;
    max-height: 52px;
}

.rdps-review-form__select-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(7, 17, 31, 0.45);
    border-bottom: 2px solid rgba(7, 17, 31, 0.45);
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.rdps-review-form__select-wrap select {
    appearance: none;
    -webkit-appearance: none;
    height: 100%;
    min-height: 0;
    max-height: none;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 42px;
    cursor: pointer;
}

.rdps-review-form__field--pros label {
    color: #15803d;
}

.rdps-review-form__field--cons label {
    color: #b45309;
}

.rdps-review-form__block--optional {
    padding-top: 4px;
}

.rdps-review-form__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(7, 17, 31, 0.1);
    border-radius: 999px;
    background: rgba(7, 17, 31, 0.03);
    color: #0078d4;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.rdps-review-form__toggle:hover {
    border-color: rgba(0, 120, 212, 0.25);
    background: rgba(0, 120, 212, 0.06);
}

.rdps-review-form__toggle svg {
    transition: transform 0.2s ease;
}

.rdps-review-form__toggle.is-open svg {
    transform: rotate(180deg);
}

.rdps-review-form__optional-panel {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(7, 17, 31, 0.08);
}

.rdps-review-form__foot {
    display: grid;
    gap: 12px;
    padding-top: 8px;
}

.rdps-review-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 54px;
    padding: 14px 22px;
    border: 2px solid var(--tp-secoundery-color);
    border-radius: 999px;
    background: var(--tp-secoundery-color);
    color: var(--tp-theme-color);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(7, 17, 31, 0.08);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.rdps-review-form__submit:hover:not(:disabled) {
    transform: translateY(-1px);
    border-color: var(--tp-theme-color);
    background: var(--tp-theme-color);
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(0, 120, 212, 0.18);
}

.rdps-review-form__submit:disabled,
.rdps-review-form__submit.is-loading {
    opacity: 0.72;
    cursor: wait;
    transform: none;
}

.rdps-review-form__legal {
    margin: 0;
    color: rgba(7, 17, 31, 0.48);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 991px) {
    .rdps-reviews-hub__layout {
        grid-template-columns: 1fr;
    }

    .rdps-reviews-hub__aside-card {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .rdps-review-form-panel__head,
    .rdps-review-form {
        padding-left: 18px;
        padding-right: 18px;
    }

    .rdps-review-form__grid {
        grid-template-columns: 1fr;
    }

    .rdps-review-form__rating-main {
        flex-direction: column;
        align-items: flex-start;
    }
}

.rdps-provider-card__reviews {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    color: #64748b;
}

.rdps-review-single {
    max-width: none;
}

/* Single review page */
.rdps-review-page .rdps-review-sidebar__provider h2 {
    font-size: clamp(24px, 2.2vw, 32px);
}

.rdps-review-page .rdps-review-sidebar__provider h2 a {
    color: inherit;
    text-decoration: none;
}

.rdps-review-page .rdps-review-sidebar__provider h2 a:hover {
    color: #0078d4;
}

.rdps-review-sidebar__nav h3,
.rdps-review-sidebar__stats h3,
.rdps-review-sidebar__hub h3 {
    margin: 0 0 14px;
    font-size: 18px;
}

.rdps-review-sidebar__links {
    display: grid;
    gap: 6px;
}

.rdps-review-sidebar__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 120, 212, 0.1);
    background: rgba(0, 120, 212, 0.04);
    color: inherit;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.rdps-review-sidebar__links a:hover {
    border-color: rgba(0, 120, 212, 0.24);
    background: rgba(0, 120, 212, 0.08);
    color: #0078d4;
}

.rdps-review-sidebar__hub-text {
    margin: 0 0 14px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
}

.rdps-review-sidebar__stats .rdps-provider-sidebar__btn,
.rdps-review-sidebar__hub .rdps-provider-sidebar__btn {
    margin-top: 10px;
}

.rdps-review-single__hero {
    margin-bottom: 18px;
    padding: 20px 22px;
    border-radius: 18px;
    border: 1px solid rgba(0, 120, 212, 0.14);
    background:
        radial-gradient(circle at 100% 0%, rgba(0, 120, 212, 0.08), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 255, 0.88));
    box-shadow: 0 18px 50px rgba(0, 120, 212, 0.08);
}

.rdps-review-single__kicker {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0078d4;
}

.rdps-review-single__hero-summary {
    display: grid;
    gap: 12px;
    width: 100%;
}

.rdps-review-score-panel {
    width: 100%;
    padding: 18px 20px;
    border-radius: 16px;
    background:
        radial-gradient(circle at 0% 0%, rgba(245, 158, 11, 0.12), transparent 38%),
        radial-gradient(circle at 100% 100%, rgba(0, 120, 212, 0.1), transparent 42%),
        rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 120, 212, 0.12);
}

.rdps-review-score-panel.is-provider-mode {
    background:
        radial-gradient(circle at 100% 0%, rgba(0, 120, 212, 0.14), transparent 40%),
        rgba(255, 255, 255, 0.82);
}

.rdps-review-score-panel__layout {
    display: grid;
    grid-template-columns: minmax(92px, 110px) minmax(0, 1fr) minmax(210px, 250px);
    gap: 16px 20px;
    align-items: stretch;
}

.rdps-review-score-panel__layout:not(:has(.rdps-review-score-panel__compare)) {
    grid-template-columns: minmax(92px, 110px) minmax(0, 1fr);
}

.rdps-review-score-panel__score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 14px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(0, 120, 212, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.rdps-review-score-panel__value {
    font-size: clamp(38px, 5.5vw, 50px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #0078d4;
    transition: color 0.25s ease, transform 0.25s ease;
}

.rdps-review-score-panel.is-provider-mode .rdps-review-score-panel__value {
    color: #075ea8;
}

.rdps-review-score-panel__max {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
}

.rdps-review-score-panel__visual {
    display: grid;
    align-content: center;
    gap: 10px;
    min-width: 0;
    padding: 4px 0;
}

.rdps-review-score-panel__verdict-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 6px 12px;
}

.rdps-review-score-panel__verdict {
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    transition: color 0.2s ease;
}

.rdps-review-score-panel__hint {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.rdps-review-stars--hero {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
}

.rdps-review-stars--hero .rdps-review-stars__star {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 46px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(0, 120, 212, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    color: #cbd5e1;
    font-size: 22px;
    line-height: 1;
    cursor: default;
    transition: transform 0.18s ease, color 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.rdps-review-stars--hero .rdps-review-stars__star span {
    pointer-events: none;
}

.rdps-review-stars--hero .rdps-review-stars__star.is-on {
    color: #fff;
    border-color: rgba(245, 158, 11, 0.45);
    background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 8px 18px rgba(245, 158, 11, 0.28);
}

.rdps-review-stars--hero .rdps-review-stars__star.is-preview {
    transform: translateY(-2px);
}

.rdps-review-stars--hero .rdps-review-stars__star:hover,
.rdps-review-stars--hero .rdps-review-stars__star:focus-visible {
    transform: translateY(-2px);
    outline: none;
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: 0 10px 22px rgba(245, 158, 11, 0.2);
}

.rdps-review-score-panel.is-provider-mode .rdps-review-stars--hero .rdps-review-stars__star.is-on {
    border-color: rgba(0, 120, 212, 0.35);
    background: linear-gradient(180deg, #2b9cff 0%, #0078d4 100%);
    box-shadow: 0 8px 18px rgba(0, 120, 212, 0.24);
}

.rdps-review-score-panel__track {
    height: 10px;
    border-radius: 999px;
    background: rgba(0, 120, 212, 0.1);
    overflow: hidden;
}

.rdps-review-score-panel__track span {
    display: block;
    height: 100%;
    width: var(--rating-pct, 0%);
    border-radius: inherit;
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
    transition: width 0.35s ease;
}

.rdps-review-score-panel.is-provider-mode .rdps-review-score-panel__track span {
    background: linear-gradient(90deg, #0078d4 0%, #00bcf2 100%);
}

.rdps-review-score-panel__compare {
    display: grid;
    gap: 8px;
    align-content: center;
}

.rdps-review-score-panel__mode {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 10px;
    align-items: center;
    padding: 11px 13px;
    border-radius: 12px;
    border: 1px solid rgba(0, 120, 212, 0.1);
    background: rgba(255, 255, 255, 0.65);
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.rdps-review-score-panel__mode:hover {
    border-color: rgba(0, 120, 212, 0.24);
    background: rgba(255, 255, 255, 0.92);
}

.rdps-review-score-panel__mode.is-active,
.rdps-review-score-panel__mode:has(input:checked) {
    border-color: rgba(0, 120, 212, 0.32);
    background: rgba(0, 120, 212, 0.08);
    box-shadow: inset 0 0 0 1px rgba(0, 120, 212, 0.06);
}

.rdps-review-score-panel__mode input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rdps-review-score-panel__mode-title {
    grid-column: 1;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
}

.rdps-review-score-panel__mode strong {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    font-size: 18px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
}

.rdps-review-score-panel__mode--link strong {
    font-size: 22px;
    color: #0078d4;
}

.rdps-review-score-panel__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 120, 212, 0.1);
}

.rdps-review-single__task {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(7, 17, 31, 0.06);
    color: #475569;
    font-size: 12px;
    font-weight: 700;
}

.rdps-review-single__facts--bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
}

.rdps-review-single__facts--bar div {
    display: grid;
    gap: 4px;
    min-width: 0;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 120, 212, 0.1);
}

.rdps-review-single__facts dt {
    margin: 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #94a3b8;
}

.rdps-review-single__facts dd {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rdps-review-single__facts a {
    color: inherit;
    text-decoration: none;
}

.rdps-review-single__facts a:hover {
    color: #0078d4;
}

.rdps-review-single__title {
    margin: 14px 0 0;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.rdps-review-single__section {
    margin-top: 18px;
    padding: 20px 22px;
    border-radius: 18px;
    border: 1px solid rgba(7, 17, 31, 0.08);
    background: #fff;
    box-shadow: 0 12px 36px rgba(7, 17, 31, 0.04);
}

.rdps-review-single__section-head {
    margin-bottom: 14px;
}

.rdps-review-single__section-head h2 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.rdps-review-single__section-head p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.rdps-review-single__section-head a {
    font-weight: 700;
}

.rdps-review-single__body {
    color: #334155;
    font-size: 16px;
    line-height: 1.7;
}

.rdps-review-single__body p {
    margin: 0 0 14px;
}

.rdps-review-single__body p:last-child {
    margin-bottom: 0;
}

.rdps-review-single__proscons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.rdps-review-single__pros,
.rdps-review-single__cons {
    padding: 14px 16px;
    border-radius: 14px;
}

.rdps-review-single__pros {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.18);
}

.rdps-review-single__cons {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.14);
}

.rdps-review-single__pros h3,
.rdps-review-single__cons h3 {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 800;
}

.rdps-review-single__pros h3 {
    color: #047857;
}

.rdps-review-single__cons h3 {
    color: #b91c1c;
}

.rdps-review-single__pros ul,
.rdps-review-single__cons ul {
    margin: 0;
    padding-left: 18px;
    color: #334155;
    line-height: 1.55;
}

.rdps-review-single__provider-card {
    display: grid;
    gap: 16px;
    padding: 16px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(0, 120, 212, 0.05), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(0, 120, 212, 0.12);
}

.rdps-review-single__provider-main h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 800;
}

.rdps-review-single__provider-main h3 a {
    color: inherit;
    text-decoration: none;
}

.rdps-review-single__provider-main h3 a:hover {
    color: #0078d4;
}

.rdps-review-single__provider-main p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

.rdps-review-single__provider-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.rdps-review-single__provider-meta div {
    display: grid;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
}

.rdps-review-single__provider-meta span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #94a3b8;
}

.rdps-review-single__provider-meta strong {
    font-size: 16px;
    color: #0f172a;
}

.rdps-review-single__provider-actions,
.rdps-review-single__footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rdps-review-single__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid rgba(0, 120, 212, 0.2);
    background: #fff;
    color: #0078d4;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.rdps-review-single__cta:hover {
    background: rgba(0, 120, 212, 0.08);
}

.rdps-review-single__cta--primary {
    background: #0078d4;
    border-color: #0078d4;
    color: #fff;
}

.rdps-review-single__cta--primary:hover {
    background: #106ebe;
    border-color: #106ebe;
    color: #fff;
}

.rdps-review-single__footer {
    margin-top: 18px;
    padding-top: 4px;
}

.rdps-review-single__footer-links a {
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.rdps-review-single__footer-links a:hover {
    color: #0078d4;
}

@media (max-width: 991px) {
    .rdps-review-score-panel__layout {
        grid-template-columns: 1fr;
    }

    .rdps-review-score-panel__score {
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
        padding: 12px 14px;
    }

    .rdps-review-score-panel__compare {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rdps-review-score-panel__mode--link {
        grid-column: 1 / -1;
    }

    .rdps-review-single__facts--bar,
    .rdps-review-single__facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rdps-review-single__provider-meta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .rdps-review-score-panel {
        padding: 14px;
    }

    .rdps-review-stars--hero .rdps-review-stars__star {
        height: 40px;
        font-size: 18px;
    }

    .rdps-review-score-panel__compare {
        grid-template-columns: 1fr;
    }

    .rdps-review-single__facts--bar,
    .rdps-review-single__facts {
        grid-template-columns: 1fr;
    }

    .rdps-review-single__facts dd {
        white-space: normal;
    }
}

.rdps-review-single__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin: 16px 0;
    color: #64748b;
}

.rdps-review-single__meta a {
    font-weight: 600;
}

.rdps-review-single__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.rdps-btn-link {
    font-weight: 600;
    text-decoration: none;
}

.rdps-en-hero {
    padding: 40px 0 20px;
}

.rdps-en-hero p {
    max-width: 720px;
    color: #475569;
}

.rdps-pages-map {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 8px 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rdps-pages-map a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Контент виден без JS (агенты, краулеры, no-script) */
html.no-js .tp_fade_anim,
html.no-js .char-animate-wrap .char-animate {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

@media (prefers-reduced-motion: reduce) {
    .tp_fade_anim,
    .char-animate-wrap .char-animate {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }
}

/* CLS: width/height в HTML + адаптив через CSS */
.rdps-picture-img,
picture img {
    max-width: 100%;
    height: auto;
}

.rdps-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.rdps-icon--muted {
    opacity: 0.35;
}

.rdps-provider-rating__stars .rdps-icon {
    width: 18px;
    height: 18px;
}

@media (max-width: 991px) {
    #smooth-wrapper,
    #smooth-content {
        transform: none !important;
        overflow: visible !important;
        height: auto !important;
    }

    .tp_fade_anim,
    .char-animate-wrap {
        opacity: 1 !important;
        transform: none !important;
    }
}
