@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --clr-primary:     #0F2546;
    --clr-accent:      #18A057;
    --clr-accent-dark: #128045;
    --clr-text:        #1F2D3D;
    --clr-muted:       #6B7B8D;
    --clr-bg:          #FFFFFF;
    --clr-bg-page:     #F5F7FA;
    --clr-border:      #E4EAF0;
    --clr-anj:         #E8890A;

    --font:            'Montserrat', sans-serif;
    --header-h:        68px;

    --radius-sm:       4px;
    --radius-md:       8px;
    --radius-lg:       12px;

    --shadow-sm:       0 1px 4px rgba(15, 37, 70, 0.06);
    --shadow-md:       0 2px 12px rgba(15, 37, 70, 0.09);
    --shadow-lg:       0 8px 32px rgba(15, 37, 70, 0.12);

    --transition:      0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    color: var(--clr-text);
    background: var(--clr-bg-page);
    margin: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

button {
    font-family: var(--font);
}

h1, h2, h3, h4, h5, h6 {
    scroll-margin-top: calc(var(--header-h) + 16px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--clr-primary);
    margin: 0;
}

.site-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.anj-bar {
    background: var(--clr-anj);
    color: #fff;
}

.anj-bar.is-hidden {
    display: none;
}

.anj-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8px;
    padding-bottom: 8px;
    position: relative;
}

.anj-bar__text {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    padding-right: 32px;
}

.anj-bar__close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity var(--transition);
    border-radius: var(--radius-sm);
}

.anj-bar__close:hover {
    opacity: 1;
}

.site-header {
    background: var(--clr-bg);
    box-shadow: var(--shadow-md);
    height: var(--header-h);
    position: relative;
}

.site-header__inner {
    display: flex;
    align-items: center;
    height: var(--header-h);
    gap: 24px;
}

.site-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity var(--transition);
}

.site-header__logo:hover {
    opacity: 0.85;
}

.site-header__logo img {
    height: 38px;
    width: auto;
}

.site-header__logo-text {
    font-size: 19px;
    font-weight: 800;
    color: var(--clr-primary);
    letter-spacing: -0.4px;
    line-height: 1;
}

.site-header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.site-header__menu {
    display: flex;
    align-items: center;
    gap: 2px;
}

.site-header__menu-link {
    display: block;
    padding: 7px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-text);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.site-header__menu-link:hover {
    color: var(--clr-accent);
    background: rgba(24, 160, 87, 0.08);
}

.site-header__menu-link.is-active {
    color: var(--clr-accent);
    background: rgba(24, 160, 87, 0.1);
}

.site-header__right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: auto;
}

.site-header__badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--clr-primary);
    border: 1.5px solid var(--clr-primary);
    border-radius: 20px;
    padding: 3px 10px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.site-header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 17px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.site-header__burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--clr-primary);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
    transform-origin: center;
}

.site-header__burger.is-open .site-header__burger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.site-header__burger.is-open .site-header__burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.site-header__burger.is-open .site-header__burger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 991px) {
    .site-header__burger {
        display: flex;
    }

    .site-header__nav {
        display: none;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--clr-bg);
        border-top: 1px solid var(--clr-border);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    .site-header__nav.is-open {
        display: block;
    }

    .site-header__menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0 16px;
    }

    .site-header__menu-link {
        padding: 12px 24px;
        border-radius: 0;
        font-size: 15px;
    }

    .site-header__badge {
        display: none;
    }
}

.site-footer {
    background: var(--clr-bg);
    margin-top: auto;
}

.site-footer__rehab {
    background: linear-gradient(180deg, #0F2546 0%, #152B45 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    padding-bottom: 28px;
}

.site-footer__rehab-label {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
    text-align: center;
}

.site-footer__rehab-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 20px;
}

.site-footer__rehab-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    min-width: 72px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    transition: background var(--transition), border-color var(--transition), opacity var(--transition);
}

.site-footer__rehab-link:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
}

.site-footer__rehab-link img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.08) contrast(1.1);
}

.site-footer__rehab-name {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
}

.site-footer__disclaimer-wrap {
    background: linear-gradient(135deg, #0F2546 0%, #1A3A5C 100%);
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 4px solid var(--clr-accent);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-footer__disclaimer {
    max-width: 920px;
    margin: 0 auto;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
}

.site-footer__disclaimer-title {
    font-size: 15px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.site-footer__disclaimer-text {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
}

.site-footer__disclaimer-text p {
    margin: 0 0 10px;
}

.site-footer__disclaimer-text p:last-child {
    margin-bottom: 0;
}

.site-footer__disclaimer-text a {
    color: #7FE0B0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-footer__disclaimer-text a:hover {
    color: #A8F0CC;
}

.site-footer__disclaimer-text strong {
    color: #FFFFFF;
    font-weight: 700;
}

.site-footer__nav-wrap {
    padding-top: 36px;
    padding-bottom: 36px;
    border-top: 1px solid var(--clr-border);
    background: var(--clr-bg-page);
}

.site-footer__nav-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 14px;
}

.site-footer__nav-list li + li {
    margin-top: 8px;
}

.site-footer__nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--clr-muted);
    transition: color var(--transition);
}

.site-footer__nav-link:hover {
    color: var(--clr-accent);
}

.site-footer__bottom {
    border-top: 1px solid var(--clr-border);
    padding-top: 18px;
    padding-bottom: 18px;
    background: var(--clr-bg);
}

.site-footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
}

.site-footer__copyright {
    font-size: 13px;
    color: var(--clr-muted);
}

.site-footer__cookie-btn {
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-accent);
    background: none;
    border: none;
    padding: 4px 0;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}

.site-footer__cookie-btn:hover {
    color: var(--clr-accent-dark);
}

@media (max-width: 575px) {
    .site-footer__rehab-list {
        gap: 12px 16px;
    }

    .site-footer__disclaimer {
        padding: 16px 14px;
    }

    .site-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    background: #0D1B2E;
    color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
    padding-top: 18px;
    padding-bottom: 18px;
}

.cookie-banner.cookie-banner--hidden {
    display: none;
}

.cookie-banner__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner__title {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.cookie-banner__text {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
}

.cookie-banner__text a {
    color: #C9F27E;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__text a:hover {
    color: #E0F8A8;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 20px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    white-space: nowrap;
}

.cookie-btn--primary {
    background: #D4A012;
    color: #1A1405;
    border-color: #D4A012;
}

.cookie-btn--primary:hover {
    background: #E4B82A;
    border-color: #E4B82A;
}

.cookie-btn--outline {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn--outline:hover {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.06);
}

.cookie-btn--ghost {
    background: none;
    color: rgba(255, 255, 255, 0.88);
    border-color: transparent;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding-left: 8px;
    padding-right: 8px;
}

.cookie-btn--ghost:hover {
    color: #FFFFFF;
}

.cookie-btn--full {
    width: 100%;
}

@media (max-width: 767px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner__actions {
        justify-content: stretch;
    }

    .cookie-banner__actions .cookie-btn {
        flex: 1;
        min-width: 0;
    }
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal[hidden] {
    display: none;
}

.cookie-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 37, 70, 0.55);
    cursor: pointer;
}

.cookie-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: var(--clr-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 24px 24px 20px;
    z-index: 1;
}

.cookie-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-bg-page);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--clr-muted);
    cursor: pointer;
    transition: color var(--transition), background var(--transition);
}

.cookie-modal__close:hover {
    background: var(--clr-border);
    color: var(--clr-primary);
}

.cookie-modal__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 12px;
    padding-right: 40px;
}

.cookie-modal__intro {
    font-size: 14px;
    line-height: 1.55;
    color: var(--clr-muted);
    margin-bottom: 16px;
}

.cookie-modal__intro p {
    margin: 0 0 8px;
}

.cookie-modal__intro p:last-child {
    margin-bottom: 0;
}

.cookie-modal__intro a {
    color: var(--clr-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-modal__categories {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 16px;
}

.cookie-modal__category {
    padding: 14px 16px;
    border-bottom: 1px solid var(--clr-border);
    background: var(--clr-bg);
}

.cookie-modal__category:last-child {
    border-bottom: none;
}

.cookie-modal__category-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cookie-modal__category-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-primary);
}

.cookie-modal__always-active {
    font-size: 12px;
    font-weight: 700;
    color: var(--clr-accent);
}

.cookie-modal__category-desc {
    font-size: 12px;
    color: var(--clr-muted);
    line-height: 1.5;
    margin-top: 8px;
    margin-bottom: 0;
}

.cookie-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-toggle__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle__track {
    position: absolute;
    inset: 0;
    background: #D5DCE6;
    border-radius: 12px;
    transition: background var(--transition);
}

.cookie-toggle__track::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition);
}

.cookie-toggle__input:checked + .cookie-toggle__track {
    background: var(--clr-accent);
}

.cookie-toggle__input:checked + .cookie-toggle__track::after {
    transform: translateX(20px);
}

.cookie-toggle__input:focus-visible + .cookie-toggle__track {
    outline: 2px solid var(--clr-primary);
    outline-offset: 2px;
}

.hero {
    background: linear-gradient(145deg, #0F2546 0%, #1A3D6B 55%, #0F2546 100%);
    color: #fff;
    padding: 40px 0 48px;
    margin-bottom: 0;
}

.hero__inner {
    max-width: 820px;
}

.hero__title {
    color: #fff;
    font-size: clamp(1.65rem, 4vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.hero__subtitle {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
    margin-bottom: 20px;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-bottom: 20px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.hero__badge-icon {
    display: inline-flex;
    font-size: 15px;
    opacity: 0.95;
}

.hero__badge-icon i {
    line-height: 1;
}

.hero__description {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    max-width: 720px;
}

.hero__description p {
    margin: 0 0 12px;
}

.hero__description p:last-child {
    margin-bottom: 0;
}

.hero__description strong {
    color: #fff;
    font-weight: 700;
}

.single-review {
    padding: 36px 0 56px;
}

.review-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.review-article.entry-content {
    background: var(--clr-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-sm);
    padding: 28px 28px 32px;
}

.review-article h2 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.review-article h2:first-child {
    margin-top: 0;
}

.review-article p {
    margin: 0 0 14px;
    color: var(--clr-text);
}

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

.review-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

.review-card {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 22px 20px 24px;
}

.review-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.review-card__logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 8px 14px;
    background: linear-gradient(145deg, var(--clr-primary) 0%, #1A3D6B 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-sm);
    min-height: 52px;
    min-width: 96px;
}

.review-card__logo {
    max-height: 40px;
    width: auto;
    max-width: 128px;
    object-fit: contain;
}

.review-card__name {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--clr-primary);
}

.review-card__badge {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    background: rgba(232, 137, 10, 0.12);
    color: #B56A00;
    border-radius: var(--radius-sm);
    padding: 4px 8px;
}

.review-card__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.review-card__stars {
    display: flex;
    gap: 3px;
    color: #D4A012;
    font-size: 14px;
}

.review-card__rating-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-primary);
}

.review-card__slogan {
    font-size: 14px;
    color: var(--clr-muted);
    line-height: 1.55;
    margin-bottom: 16px;
}

.review-card__advantages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.review-card__advantage {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--clr-text);
}

.review-card__adv-icon {
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    color: var(--clr-accent);
}

.review-card__adv-icon i {
    font-size: 14px;
    line-height: 1.4;
}

.review-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    background: var(--clr-accent);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    transition: background var(--transition), transform 0.15s ease;
    margin-bottom: 18px;
}

.review-card__btn:hover {
    background: var(--clr-accent-dark);
    color: #fff;
}

.review-card__payments-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--clr-muted);
    margin-bottom: 10px;
}

.review-card__payments-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.review-card__payments-list li img {
    max-height: 32px;
    width: auto;
    object-fit: contain;
    padding: 6px 10px;
    background: var(--clr-bg-page);
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border);
}

.review-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.review-block {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 24px 24px 26px;
}

.review-block__title {
    font-size: 1.2rem;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(24, 160, 87, 0.2);
}

.review-block__lead {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--clr-primary);
    line-height: 1.5;
    margin-bottom: 18px;
}

.review-block__note {
    font-size: 13px;
    color: var(--clr-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.review-dl {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.review-dl__row {
    display: grid;
    grid-template-columns: minmax(120px, 200px) 1fr;
    gap: 12px 20px;
    padding: 12px 0;
    border-top: 1px solid var(--clr-border);
}

.review-dl__row:first-of-type {
    border-top: none;
    padding-top: 0;
}

.review-dl__dt {
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-primary);
    margin: 0;
}

.review-dl__dd {
    font-size: 14px;
    color: var(--clr-text);
    margin: 0;
    line-height: 1.5;
}

.review-proscons__subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.review-proscons__subtitle--pro {
    color: var(--clr-accent-dark);
}

.review-proscons__subtitle--con {
    color: #8A5A16;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.review-list__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--clr-text);
}

.review-list__icon {
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 12px;
}

.review-list--pro .review-list__icon {
    color: var(--clr-accent);
}

.review-list--con .review-list__icon {
    color: var(--clr-muted);
}

.review-pay-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-pay-card {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 16px;
    background: var(--clr-bg-page);
}

.review-pay-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.review-pay-card__logo {
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    padding: 6px 8px;
}

.review-pay-card__name {
    font-weight: 700;
    color: var(--clr-primary);
}

.review-pay-card__facts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.review-pay-card__facts li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    line-height: 1.45;
}

.review-pay-card__k {
    color: var(--clr-muted);
    flex-shrink: 0;
}

.review-pay-card__v {
    text-align: right;
    color: var(--clr-text);
    font-weight: 500;
}

.review-pay-table-wrap {
    margin: 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
}

.review-pay-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin: 0;
}

.review-pay-table th,
.review-pay-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--clr-border);
    vertical-align: middle;
}

.review-pay-table th {
    background: var(--clr-bg-page);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--clr-muted);
}

.review-pay-table tbody tr:last-child td {
    border-bottom: none;
}

.review-pay-table__method {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--clr-primary);
    min-width: 140px;
}

.review-pay-table__logo {
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: var(--clr-bg-page);
    border: 1px solid var(--clr-border);
    padding: 4px 6px;
}

@media (max-width: 767px) {
    .review-dl__row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .review-article.entry-content {
        padding: 20px 18px 24px;
    }

    .review-sidebar {
        position: static;
    }
}

.brands-section {
    padding: 40px 0 48px;
}

.brands-section__header {
    max-width: 720px;
    margin-bottom: 28px;
}

.brands-section__title {
    font-size: 1.45rem;
    margin-bottom: 10px;
}

.brands-section__description {
    font-size: 15px;
    color: var(--clr-muted);
    line-height: 1.6;
    margin: 0;
}

.brand-card {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 20px 18px 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.brand-card__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}

.brand-card__logo-wrap {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    background: linear-gradient(145deg, var(--clr-primary) 0%, #1A3D6B 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-sm);
    min-height: 52px;
    min-width: 96px;
}

.brand-card__logo {
    max-height: 40px;
    width: auto;
    max-width: 128px;
    object-fit: contain;
}

.brand-card__logo-text {
    font-weight: 800;
    color: var(--clr-primary);
    font-size: 1.1rem;
}

.brand-card__head-meta {
    margin-left: auto;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.brand-card__rating {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 8px;
}

.brand-card__rating-value {
    font-weight: 800;
    font-size: 15px;
    color: var(--clr-primary);
}

.brand-card__stars {
    display: flex;
    gap: 2px;
    color: #D4A012;
    font-size: 13px;
}

.brand-card__badge {
    font-size: 10px;
    font-weight: 700;
    background: rgba(232, 137, 10, 0.12);
    color: #B56A00;
    border-radius: var(--radius-sm);
    padding: 3px 7px;
}

.brand-card__slogan {
    font-size: 13px;
    color: var(--clr-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.brand-card__advantages {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
    flex: 1;
}

.brand-card__advantage {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
}

.brand-card__adv-icon {
    flex-shrink: 0;
    color: var(--clr-accent);
    width: 18px;
    text-align: center;
}

.brand-card__foot {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--clr-border);
}

.brand-card__payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.brand-card__payment img {
    max-height: 28px;
    width: auto;
    object-fit: contain;
    padding: 4px 8px;
    background: var(--clr-bg-page);
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border);
}

.brand-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.brand-card__review-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.brand-card__review-link:hover {
    color: var(--clr-accent);
}

.brand-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    background: var(--clr-accent);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.brand-card__btn:hover {
    background: var(--clr-accent-dark);
    color: #fff;
}

.cmp-section {
    padding: 8px 0 48px;
}

.cmp-section__header {
    max-width: 720px;
    margin-bottom: 24px;
}

.cmp-section__title {
    font-size: 1.45rem;
    margin-bottom: 10px;
}

.cmp-section__description {
    font-size: 15px;
    color: var(--clr-muted);
    line-height: 1.6;
    margin: 0;
}

.cmp-section__wrap {
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    background: var(--clr-bg);
    box-shadow: var(--shadow-sm);
}

.cmp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin: 0;
}

.cmp-table th,
.cmp-table td {
    padding: 14px 12px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--clr-border);
}

.cmp-table thead {
    background: var(--clr-bg-page);
}

.cmp-table__label-col {
    width: 0;
}

.cmp-table__brand-col {
    min-width: 140px;
    text-align: center;
}

.cmp-table__brand-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    margin-bottom: 8px;
    background: linear-gradient(145deg, var(--clr-primary) 0%, #1A3D6B 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-sm);
    min-height: 48px;
    min-width: 88px;
}

.cmp-table__brand-logo {
    max-height: 36px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.cmp-table__brand-name {
    font-weight: 800;
    color: var(--clr-primary);
}

.cmp-table__brand-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 10px;
}

.cmp-table__brand-rating i {
    color: #D4A012;
}

.cmp-table__brand-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    background: var(--clr-accent);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.cmp-table__brand-btn:hover {
    background: var(--clr-accent-dark);
    color: #fff;
}

.cmp-table__label {
    font-weight: 700;
    color: var(--clr-primary);
    background: var(--clr-bg-page);
    white-space: nowrap;
}

.cmp-table__cell {
    color: var(--clr-text);
    line-height: 1.5;
}

.cmp-table__bool {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.cmp-table__bool--yes {
    color: var(--clr-accent-dark);
}

.cmp-table__bool--no {
    color: var(--clr-muted);
}

.cmp-table__highlights {
    margin: 0;
    padding-left: 18px;
    list-style: disc;
}

.cmp-table__highlights li {
    margin-bottom: 6px;
}

.cmp-table__highlights li:last-child {
    margin-bottom: 0;
}

.cmp-table__row--actions .cmp-table__review-link {
    font-weight: 700;
    color: var(--clr-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cmp-table__row--actions .cmp-table__review-link:hover {
    color: var(--clr-accent-dark);
}

.faq-section {
    padding: 16px 0 48px;
    background: var(--clr-bg-page);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.faq-section__intro {
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

.faq-section__title {
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.faq-section__description {
    font-size: 14px;
    color: var(--clr-muted);
    line-height: 1.6;
}

.faq-accordion__item {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 10px;
    background: var(--clr-bg);
}

.faq-accordion__header {
    margin: 0;
}

.faq-accordion__btn {
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-primary);
    background: var(--clr-bg);
    box-shadow: none;
}

.faq-accordion__btn:not(.collapsed) {
    background: rgba(24, 160, 87, 0.08);
    color: var(--clr-accent-dark);
}

.faq-accordion__body {
    font-size: 14px;
    line-height: 1.65;
    color: var(--clr-text);
}

.faq-accordion__body p {
    margin: 0 0 10px;
}

.faq-accordion__body p:last-child {
    margin-bottom: 0;
}

.content-section {
    padding: 44px 0 56px;
}

.content-section .entry-content {
    max-width: 860px;
    margin: 0 auto;
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 28px 28px 32px;
}

.content-section .entry-content h2 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-section .entry-content h2:first-child {
    margin-top: 0;
}

.content-section .entry-content p {
    margin: 0 0 14px;
    color: var(--clr-text);
}

@media (max-width: 991px) {
    .faq-section__intro {
        position: static;
        margin-bottom: 24px;
    }
}

.page-contact {
    padding: 36px 0 56px;
}

.contact-section {
    margin: 0;
}

.contact-aside__title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(24, 160, 87, 0.2);
}

.contact-aside__intro {
    font-size: 14px;
    color: var(--clr-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-bg-page);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    color: var(--clr-accent);
}

.contact-info__icon i {
    font-size: 16px;
    line-height: 1;
}

.contact-info__value {
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-primary);
    line-height: 1.5;
}

a.contact-info__value {
    color: var(--clr-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

a.contact-info__value:hover {
    color: var(--clr-accent-dark);
}

.cih-form {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 28px 26px 30px;
}

.cih-form__label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 8px;
}

.cih-form__required {
    color: #C44;
    margin-left: 2px;
}

.cih-form__input {
    width: 100%;
    font-family: var(--font);
    font-size: 15px;
    padding: 11px 14px;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    background: var(--clr-bg);
    color: var(--clr-text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.cih-form__input:focus {
    outline: none;
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(24, 160, 87, 0.15);
}

.cih-form__textarea {
    resize: vertical;
    min-height: 140px;
}

.cih-form__field.is-invalid .cih-form__input {
    border-color: #C44;
}

.cih-form__error {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #B33;
    margin-top: 6px;
}

.cih-form__field--check.is-invalid .cih-form__check-label {
    color: #B33;
}

.cih-form__field--check {
    margin-top: 4px;
}

.cih-form__check-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: var(--clr-text);
}

.cih-form__checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cih-form__check-box {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-sm);
    background: var(--clr-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition), background var(--transition);
}

.cih-form__checkbox:checked + .cih-form__check-box {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
}

.cih-form__checkbox:checked + .cih-form__check-box::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.cih-form__checkbox:focus-visible + .cih-form__check-box {
    outline: 2px solid var(--clr-primary);
    outline-offset: 2px;
}

.cih-form__check-link {
    color: var(--clr-accent);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cih-form__notice {
    font-size: 14px;
    font-weight: 600;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    min-height: 0;
}

.cih-form__notice--success {
    background: rgba(24, 160, 87, 0.12);
    color: var(--clr-accent-dark);
    border: 1px solid rgba(24, 160, 87, 0.35);
}

.cih-form__notice--error {
    background: rgba(180, 50, 50, 0.08);
    color: #8A2222;
    border: 1px solid rgba(180, 50, 50, 0.25);
}

.cih-form__submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 200px;
    padding: 12px 24px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: var(--clr-accent);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--transition), opacity var(--transition);
}

.cih-form__submit:hover:not(:disabled) {
    background: var(--clr-accent-dark);
}

.cih-form__submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.cih-form__submit-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition);
}

.cih-form__submit-spinner.is-active {
    opacity: 1;
    animation: cih-spin 0.7s linear infinite;
}

@keyframes cih-spin {
    to { transform: rotate(360deg); }
}

.hero__description a {
    color: #9FD4B8;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hero__description a:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .cih-form {
        padding: 22px 18px 24px;
    }
}

.page-legal {
    padding-bottom: 48px;
}

.page-legal .content-section {
    padding-top: 8px;
}

