/* cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(/frontend/theme/assets/fonts/montserrat-cyrillic.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(/frontend/theme/assets/fonts/montserrat-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --bg: #ffffff;
    --text: #111827;
    --muted: #64748b;
    --border: #e5e7eb;
    --primary: #3ebf1f;
    --color-primary: var(--primary);
    --color-secondary: #f67b09;
    --color-primary-hover: #38ac1c;
    --color-primary-shadow: rgba(62, 191, 31, 0.22)
}

html,
body {
    min-height: 100%;
}

body {
    display: flex;
    min-height: 100vh;
    min-height: 100dvh;
    flex-direction: column;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}

body > .site-header,
body > .site-footer {
    flex: 0 0 auto;
}

body > .site-page {
    width: 100%;
    flex: 1 0 auto;
}

body > .site-footer {
    margin-top: auto;
}

.site-page-not-found {
    display: flex;
    background: #fff;
}

.site-page-not-found .not-found {
    display: flex;
    width: 100%;
    flex: 1 1 auto;
    align-items: center;
    padding: 72px 20px 96px;
}

.site-page-not-found .not-found__inner {
    text-align: center;
}

.site-page-not-found .not-found__image {
    display: block;
    width: min(440px, 100%);
    height: auto;
    margin: 0 auto 48px;
}

.site-page-not-found h1 {
    margin: 0;
    color: #2c2c2c;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.25;
}

.site-page-not-found p {
    margin: 17px 0 0;
    color: #2c2c2c;
    font-size: 18px;
    line-height: 1.4;
}

.site-page-not-found .not-found__button {
    display: inline-flex;
    width: min(335px, 100%);
    min-height: 47px;
    align-items: center;
    justify-content: center;
    margin-top: 62px;
    padding: 12px 22px;
    border-radius: 5px;
    background: var(--color-primary);
    box-shadow: 0 6px 10px var(--color-primary-shadow);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 100ms ease-in-out;
}

.site-page-not-found .not-found__button:hover {
    background: var(--color-primary-hover);
}

.site-page-not-found .not-found__button:focus-visible {
    outline: 3px solid rgba(62, 191, 31, .3);
    outline-offset: 3px;
}

@media (max-width: 600px) {
    .site-page-not-found .not-found {
        padding: 48px 16px 64px;
    }

    .site-page-not-found .not-found__image {
        margin-bottom: 34px;
    }

    .site-page-not-found h1 {
        font-size: 24px;
    }

    .site-page-not-found p {
        font-size: 16px;
    }

    .site-page-not-found .not-found__button {
        margin-top: 40px;
    }
}

img{
    width: auto;
    height: auto;
    max-width: 100%;
}
button, a {
    cursor: pointer;
    user-select: none;
}
.button {
    display: block;
    padding: 14px 10px;
    background: var(--color-primary);
    box-shadow: 0 6px 10px var(--color-primary-shadow);
    border-radius: 6px;
    text-align: center;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 100ms;
    width: auto;
    max-width: 100%;
    cursor: pointer;
    min-width: 19rem;
}
.button:hover {
    background: var(--color-primary-hover);
}

button.alt{
    background: #ffffff;
    box-shadow: 0 0 14px rgba(18, 204, 92, 0.3);
    color: #333333;
}
button.alt:hover{
    color: #828282;
}

.site-header .header-inner {
    min-height: 58px;
}

.site-header .account {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #333;
    font: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.site-header .account svg {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
}

.site-header .account:hover {
    color: var(--color-primary);
}

.site-header .account:hover path {
    fill: var(--color-primary);
}

.site-header .account:focus-visible {
    outline: 2px solid rgba(62, 191, 31, .35);
    outline-offset: 4px;
    border-radius: 4px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 30px;
}
h2{
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.4;
    color: #2B2B2B;
}
.home-hero {
    background-color: #4FC35B;
    padding: 80px 0;
}

.home-hero .row {
    align-items: center;
}

.calculator-section {
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}

.calculator {
    width: 525px;
    max-width: 100%;
    font-family: inherit;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 14px rgba(102, 111, 116, .20);
    padding: 30px;
    color: #333;
    user-select: none;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.calculator.free {
    padding: 0;
}

.calculator.free .holder {
    padding: 1.8rem;
}

.calculator .topline,
.calculator .bottomLine {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.calculator .topline {
    font-size: 1.3rem;
    line-height: 1.25;
    font-weight: 600;
}

.calculator .bottomLine .actual,
.calculator .line.highlight {
    color: var(--color-primary, #3ebf1f);
}

.calculator-range-wrap {
    padding: 1.2rem 0 1rem;
}

.calculator-range {
    --calculator-progress: 0%;
    width: 100%;
    height: 38px;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
    outline: none;
}

.calculator-range::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(to right, var(--color-primary, #3ebf1f) 0 var(--calculator-progress), #e5e7eb var(--calculator-progress) 100%);
}

.calculator-range::-moz-range-track {
    height: 6px;
    border-radius: 999px;
    background: #e5e7eb;
}

.calculator-range::-moz-range-progress {
    height: 6px;
    border-radius: 999px;
    background: var(--color-primary, #3ebf1f);
}

.calculator-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 38px;
    height: 38px;
    margin-top: -16px;
    border-radius: 50%;
    border: 0;
    background: url("/frontend/theme/assets/images/calc-caret.svg") 0% 0% / contain rgb(255, 255, 255);
    background-repeat: no-repeat;
    box-shadow: 0 2px 10px rgba(44, 44, 44, .22);
}

.calculator-range::-moz-range-thumb {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 0;
    background: url("/frontend/theme/assets/assets/images/calc-caret.svg") 0% 0% / contain rgb(255, 255, 255);
    background-repeat: no-repeat;
    box-shadow: 0 2px 10px rgba(44, 44, 44, .22);
}

.calculator-range:focus-visible::-webkit-slider-thumb {
    box-shadow: 0 0 0 4px rgba(62, 191, 31, .18), 0 2px 10px rgba(44, 44, 44, .22);
}

.calculator-range:focus-visible::-moz-range-thumb {
    box-shadow: 0 0 0 4px rgba(62, 191, 31, .18), 0 2px 10px rgba(44, 44, 44, .22);
}

.calculator-range-marks {
    display: flex;
    justify-content: space-between;
    color: #828282;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    margin-top: 0;
}

.calculator-range-marks .is-hidden {
    visibility: hidden;
}

.calculator .checkboxGroup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
    margin: 0 0 1.8rem;
}

.calculator .checkboxGroup .checkbox {
    display: flex;
}

.calculator .checkboxGroup .checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.calculator .checkboxGroup .checkbox input + label {
    display: flex;
    align-items: center;
    font-size: 13px;
    line-height: 1.3;
    color: #333;
    cursor: pointer;
    margin: 0;
}

.calculator .checkboxGroup .checkbox input + label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid #333;
    border-radius: 4px;
    margin-right: 6px;
    transition: background-color .1s ease-in-out, border-color .1s ease-in-out, box-shadow .1s ease-in-out;
    flex: 0 0 auto;
}

.calculator .checkboxGroup .checkbox input:focus-visible + label::before {
    box-shadow: 0 0 0 4px rgba(62, 191, 31, .14);
}

.calculator .checkboxGroup .checkbox input:checked + label::before {
    background: var(--color-primary, #3ebf1f) url("data:image/svg+xml,%3Csvg width='11' height='10' viewBox='0 0 11 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.5611 0.172381C11.0183 0.482293 11.1376 1.10411 10.8277 1.56124L5.74316 9.06124C5.57711 9.30618 5.3111 9.46499 5.01671 9.49496C4.72232 9.52493 4.42977 9.42297 4.21777 9.21652L0.302337 5.40362C-0.0933341 5.01831 -0.101734 4.3852 0.283575 3.98953C0.668885 3.59386 1.30199 3.58546 1.69766 3.97077L4.75771 6.95068L9.17228 0.438955C9.48219 -0.0181812 10.104 -0.13753 10.5611 0.172381Z' fill='white'/%3E%3C/svg%3E") no-repeat center;
    border-color: var(--color-primary, #3ebf1f);
}

.calculator button.submit {
    display: flex;
    min-height: 36px;
    padding: 14px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 6px;
    background: var(--color-secondary, #f67b09);
    box-shadow: 0 6px 10px rgba(246, 123, 9, .20);
    color: #fff;
    text-align: center;
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    font-family: inherit;
    margin-bottom: 32px;
}

.calculator.secondary button.submit{
    background: var(--color-primary);
    box-shadow: 0 6px 10px var(--color-primary-shadow);
}

.calculator.secondary button.submit:hover{
    background: var(--color-primary-hover);
}

.calculator button.submit:hover {
    filter: brightness(.97);
}

.calculator button.mainButton {
    background: var(--color-primary, #3ebf1f);
    transition: background-color .3s ease-in-out;
    box-shadow: none;
}

.calculator button.mainButton:hover {
    background: var(--color-primary-hover, var(--color-primary, #3ebf1f));
}

.calculator .bottomLine .right {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: center;
    color: #828282;
    text-align: right;
    font-size: 16px;
    font-weight: 600;
}

.calculator .bottomLine .right .crossedOut {
    text-decoration: line-through;
}

.calculator .bottomLine .left {
    color: #4f4f4f;
    font-size: 16px;
    font-weight: 500;
}

.calculator.mini {
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    color: #333;
    width: 100%;
}

.calculator.mini [hidden] {
    display: none !important;
}

.calculator.mini .line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
    gap: 12px;
    font-size: 16px;
}

.calculator.mini .collapsed .line:first-child {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e0e0e0;
}

.calculator.mini .line.highlight {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.calculator.mini :not(.collapsed) .line.highlight {
    margin-top: 18px;
}

.calculator.mini .more {
    background: transparent;
    color: #007eff;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    text-decoration: underline;
    border: none;
    margin: 0;
    cursor: pointer;
}

.calculator .freeBanner.mobile {
    display: none;
}

.site-page-registration {
    min-height: calc(100vh - 1px);
    background: #f4f4f4;
}

.site-page-registration .registration-page-section {
    padding: 10px 0 24px;
}

.site-page-registration .registration-page-title {
    margin: 0 0 26px;
    color: #2b2b2b;
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.12;
}

.site-page-registration .registration-page-lead {
    max-width: 760px;
    margin: -14px auto 24px;
    color: var(--muted);
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
}

.site-page-registration .registration-page-grid {
    display: grid;
    grid-template-columns: minmax(320px, 560px) minmax(360px, 560px);
    gap: 20px;
    align-items: start;
    justify-content: center;
}

.site-page-registration .registration-page-aside {
    display: grid;
    gap: 20px;
}

.site-page-registration .registration-calculator {
    width: 100%;
}

.site-page-registration .registration-notice {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 16px 18px;
    border: 1px solid #ff7a00;
    border-radius: 8px;
    background: #ffffc9;
    color: #111827;
    font-size: 15px;
    line-height: 1.45;
}

.site-page-registration .registration-notice__icon {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border: 1px solid #ff7a00;
    border-radius: 50%;
    color: #ff7a00;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

.site-page-registration .registration-form-app .public-form {
    max-width: none;
    min-height: auto;
    border-radius: 8px;
    padding: 30px;
}

.site-page-registration .registration-form-app {
    font-size: 15px;
}

.site-page-registration .generated-registration-form h2 {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0;
}

.site-page-registration .generated-registration-form > .muted,
.site-page-registration .reg-step-description {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.45;
}

.site-page-registration .reg-progress {
    margin: 0 -30px 28px;
}

.site-page-registration .reg-progress-top {
    padding: 0 30px 14px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.site-page-registration .reg-progress-top strong {
    font-size: 22px;
    font-weight: 500;
}

.site-page-registration .reg-progress-bar {
    height: 7px;
}

.site-page-registration .reg-field {
    gap: 7px;
    margin-bottom: 14px;
}

.site-page-registration .reg-field label {
    font-size: 14px;
    line-height: 1.35;
    font-weight: 500;
}

.site-page-registration .reg-field input:not([type="checkbox"]):not([type="radio"]),
.site-page-registration .reg-select-control {
    min-height: 48px;
    border-radius: 6px;
    padding: 11px 16px;
    font-size: 16px;
}

.site-page-registration .reg-checkbox {
    gap: 16px;
    font-size: 15px;
    line-height: 1.35;
}

.site-page-registration .reg-checkbox-box {
    width: 26px;
    height: 26px;
    border-radius: 4px;
}

.site-page-registration .reg-checkbox input:checked + .reg-checkbox-box::after {
    left: 9px;
    top: 4px;
}

.site-page-registration .reg-actions {
    margin-top: 26px;
    flex-direction: column-reverse;
}

.site-page-registration .site-btn {
    min-height: 46px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
}

.accordion {
    list-style: none;
    padding: 0;
    position: relative;
    margin: 10px 0;
}
.accordion li{
    user-select: none;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    box-shadow: 0 0px 0px 0px rgb(52 60 68 / 10%);
    color: #000;
    padding: 0 30px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 300ms;
}
.accordion li:not(.active){
    cursor: pointer;
}
.accordion li h3{
    padding: 1rem 2rem 1rem 0;
    margin: 0;
    position: relative;
    color: #333;
    font-size: 1.43rem;
    font-weight: 600;
    line-height: 130%;
}
.accordion li>h3:after{
    content: '';
    background: #fff url(/frontend/theme/assets/images/arrow-green.svg) no-repeat right center;
    background-size: 34px;
    width: 34px;
    height: 34px;
    position: absolute;
    right: 0;
    top: calc(50% - 1rem);
    transform: rotate(180deg);
    transition: rotate 300ms ease;
}
.accordion li.active>h3:after{
    transform: rotate(0deg);
}
.accordion li p{
    padding: 0;
    margin: 0;
    overflow: hidden;
    height: 0;
    transition: height 300ms, padding 300ms;
    color: #4F4F4F;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 130%;
}
.accordion li.active p{
    padding: 1.5rem 0;
    height: auto;
}

.site-page-showcase .showcase-offers {
    display: grid;
    gap: 20px;
    padding-top: 30px;
    padding-bottom: 64px;
}

.site-page-showcase .offers-grid {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-page-showcase .hero {
    padding: 34px 0 24px;
    border-bottom: 0;
}

.site-page-showcase .hero h1 {
    margin: 0;
    color: #292929;
    font-size: 36px;
    line-height: 1.25;
    letter-spacing: 0;
}

.site-page-showcase .hero h1 span {
    color: var(--color-primary);
}

.site-page-showcase .hero .lead {
    max-width: none;
    margin-top: 8px;
    color: #333;
    font-size: 21px;
    line-height: 1.4;
}

.site-page-showcase .showcase-offers__featured {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.site-page-showcase .showcase-offers__remaining {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.site-page-showcase .showcase-offers__ad {
    margin: 4px 0;
}

.site-page-showcase .offer-item,
:is(.site-page-showcase, .site-offer-detail) .offer-compact {
    background: #fff;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 0 16px rgba(102, 111, 116, .18);
}

.site-page-showcase .offer-item {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 16px;
    padding: 20px 16px;
}

.site-page-showcase .offer-item__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 70px;
    gap: 12px;
}

.site-page-showcase .offer-item__identity {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    align-items: center;
    gap: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid #ddd;
}

.site-page-showcase .offer-item__logo {
    width: auto;
    max-width: 142px;
    height: 48px;
    object-fit: contain;
}

.site-page-showcase .offer-item__title {
    overflow: hidden;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    text-overflow: ellipsis;
}

.site-page-showcase .offer-item__crown {
    width: 20px;
    height: 18px;
    flex: 0 0 auto;
    color: #f57c00;
}

.site-page-showcase .offer-item__badge {
    align-self: flex-start;
    padding: 5px 10px;
    border-radius: 6px;
    background: #f57c00;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.site-page-showcase .offer-item__metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
}

.site-page-showcase .offer-item__metric,
:is(.site-page-showcase, .site-offer-detail) .offer-compact__metric {
    display: grid;
    min-width: 0;
    gap: 5px;
}

.site-page-showcase .offer-item__metric span,
:is(.site-page-showcase, .site-offer-detail) .offer-compact__metric span {
    color: #828282;
    font-size: 13px;
    line-height: 1.2;
}

.site-page-showcase .offer-item__metric strong,
:is(.site-page-showcase, .site-offer-detail) .offer-compact__metric strong {
    color: #171717;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
}

:is(.site-page-showcase, .site-offer-detail) .offer-approval.good {
    color: #19b914;
}

:is(.site-page-showcase, .site-offer-detail) .offer-approval.semi {
    color: #f59e0b;
}

:is(.site-page-showcase, .site-offer-detail) .offer-approval.bad {
    color: #dc2626;
}

.site-page-showcase .offer-item__actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    height: 52px;
}

.site-page-showcase .offer-item__apply,
:is(.site-page-showcase, .site-offer-detail) .offer-compact__apply,
.site-page-showcase .offer-popup__apply {
    display: block;
    padding: 12px 14px;
    border-radius: 6px;
    background-color: var(--color-primary);
    box-shadow: 0 6px 10px var(--color-primary-shadow);
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    align-items: center;
    display: flex;
    justify-content: center;
    transition: background-color 0.2s;
}
.site-page-showcase .offer-popup__apply {
    font-size: 0.9rem;
}

.site-page-showcase .offer-item__apply:hover,
:is(.site-page-showcase, .site-offer-detail) .offer-compact__apply:hover,
.site-page-showcase .offer-popup__apply:hover {
    background: #5AC933;
}

.site-page-showcase .offer-item__details,
:is(.site-page-showcase, .site-offer-detail) .offer-compact__details {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #b8b8b8;
    border-radius: 8px;
    color: var(--text);
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s;
}

.site-page-showcase .offer-item__details:hover,
:is(.site-page-showcase, .site-offer-detail) .offer-compact__details:hover {
    opacity: 0.8;
}

.site-page-showcase .offer-item__details {
    width: 52px;
    flex: 0 0 52px;
    padding: 8px;
}

.site-page-showcase .offer-item__details span,
:is(.site-page-showcase, .site-offer-detail) .offer-compact__details span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

.site-page-showcase .offer-item__apply {
    flex: 1 1 auto;
}

.site-page-showcase .offer-item__legal,
:is(.site-page-showcase, .site-offer-detail) .offer-compact__legal {
    margin: 0;
    color: #707070;
    font-size: 11px;
    line-height: 1.15;
}

:is(.site-page-showcase, .site-offer-detail) .offer-compact {
    display: flex;
    min-width: 0;
    min-height: 380px;
    flex-direction: column;
    gap: 16px;
    padding: 14px 12px 12px;
    color: var(--text);
}

:is(.site-page-showcase, .site-offer-detail) .offer-compact__approval {
    color: #1746cc;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

:is(.site-page-showcase, .site-offer-detail) .offer-compact__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

:is(.site-page-showcase, .site-offer-detail) .offer-compact__logo {
    width: auto;
    max-width: 120px;
    height: 42px;
    object-fit: contain;
}

:is(.site-page-showcase, .site-offer-detail) .offer-compact__title {
    overflow: hidden;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-overflow: ellipsis;
}

:is(.site-page-showcase, .site-offer-detail) .offer-compact__metrics {
    display: grid;
    gap: 8px;
}

:is(.site-page-showcase, .site-offer-detail) .offer-compact__metric strong {
    font-size: 15px;
}

:is(.site-page-showcase, .site-offer-detail) .offer-compact__apply {
    margin-top: auto;
    padding: 12px 8px;
    font-size: 14px;
}

:is(.site-page-showcase, .site-offer-detail) .offer-compact__details {
    gap: 7px;
    min-height: 34px;
    padding: 5px 8px;
    font-size: 12px;
}

:is(.site-page-showcase, .site-offer-detail) .offer-compact__details span {
    width: 17px;
    height: 17px;
    border-width: 1px;
    font-size: 11px;
}

.site-page-showcase .showcase-faq {
    margin-top: 18px;
    padding: 48px 0 64px;
    background: #f5f5f5;
}

.site-page-showcase .showcase-faq h2 {
    margin: 0 0 38px;
    color: var(--color-primary);
    font-size: 40px;
    line-height: 1.25;
}

.site-page-showcase .showcase-faq__list {
    margin: 0;
}

.site-page-showcase .showcase-faq__list li {
    margin-bottom: 14px;
    padding: 0 24px;
    box-shadow: none;
}

.site-page-showcase .showcase-faq__list li:last-child {
    margin-bottom: 0;
}

.site-page-showcase .showcase-faq__list li h3 {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 15px;
    font-weight: 700;
}

.site-page-showcase .showcase-faq__list li p {
    border-top: 1px solid #dedede;
    font-size: 16px;
    font-weight: 400;
}

.site-page-showcase .showcase-faq__list li.active p {
    padding: 24px 0;
}

.site-page-showcase .showcase-offer-hidden {
    display: none !important;
}

.site-page-showcase .showcase-offer-click-hidden {
    display: none !important;
}

.site-page-showcase .showcase-pagination {
    display: flex;
    justify-content: center;
    padding: 18px 0 4px;
}

.site-page-showcase .showcase-pagination__button {
    min-width: 180px;
    padding: 12px 22px;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    background: #fff;
    color: var(--text);
    font: inherit;
    font-weight: 500;
}

.site-page-showcase .showcase-pagination__button:hover {
    background: rgba(62, 191, 31, .08);
}

.site-page-showcase .showcase-floating-area {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 60;
    display: grid;
    width: 250px;
    gap: 10px;
    pointer-events: none;
}

.site-page-showcase .showcase-floating-area > * {
    pointer-events: auto;
}

.site-page-showcase .showcase-telegram-widget {
    display: grid;
    place-items: center;
    gap: 12px;
    min-height: 100px;
    width: 135px;
    padding: 20px 16px;
    border-radius: 18px;
    background: #3394ed;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.12;
    box-shadow: 0 8px 22px rgba(51, 148, 237, .22);
    font-size: 0.7rem;
    margin-left: auto;
}

.site-page-showcase .showcase-telegram-widget__icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.site-page-showcase .showcase-telegram-slot--inline-mobile {
    display: none;
}

.site-page-showcase .showcase-telegram-static {
    display: flex;
    justify-content: center;
}

.site-page-showcase .showcase-telegram-widget--static-bottom {
    width: min(420px, 100%);
}

.site-page-showcase .showcase-popup-offer {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity 180ms ease-out, transform 180ms cubic-bezier(.2, .8, .2, 1);
    will-change: opacity, transform;
}

.site-page-showcase .showcase-popup-offer.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.site-page-showcase .offer-popup {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 14px rgba(102, 111, 116, .22);
}

.site-page-showcase .offer-popup__close {
    position: absolute;
    top: 2px;
    right: 4px;
    border: 0;
    background: transparent;
    color: #555;
    font-size: 16px;
    line-height: 1;
}

.site-page-showcase .offer-popup__logo {
    justify-self: center;
    max-width: 120px;
    max-height: 42px;
    object-fit: contain;
}

.cookie-consent {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 80;
    width: min(520px, calc(100vw - 36px));
    color: var(--text);
    font-family: "Montserrat", sans-serif;
}

.cookie-consent[hidden],
.cookie-consent__icon[hidden],
.cookie-consent__panel[hidden] {
    display: none !important;
}

.cookie-consent__icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.cookie-consent__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cookie-consent__panel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .16);
}

.cookie-consent__text {
    flex: 1 1 auto;
    font-size: 13px;
    line-height: 1.35;
}

.cookie-consent__accept {
    flex: 0 0 auto;
    min-width: 118px;
    padding: 10px 18px;
    border: 0;
    border-radius: 6px;
    background: var(--color-primary);
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 6px 10px var(--color-primary-shadow);
}

.cookie-consent__accept:hover {
    background: var(--color-primary-hover);
}

.site-footer {
    border-top: 1px solid #E0E0E0;
    background: #F5F5F5;
}
footer .footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px auto;
}

.footer-top .footer-menu {
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 590px;
    line-height: 1.3;
    margin: 0;
}

.footer-top .footer-menu a {
    color: #4F4F4F;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 100ms ease-in-out;
}

.footer-top .footer-menu a:hover {
    color: var(--color-primary-hover);
}

.footer-top .contact {
    display: block;
    text-align: left;
}

.footer-top .contact > span {
    color: #4F4F4F;
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.footer-top .contact a {
    color: #4F4F4F;
    font-size: 16px;
    font-weight: 600;
    text-decoration-line: underline;
    display: flex;
    align-items: center;
    transition: color 100ms ease-in-out;
}

.footer-top .contact a:hover {
    color: var(--color-primary-hover);
}

.footer-top .contact a:hover svg path {
    stroke: var(--color-primary-hover);
}

.footer-top .contact svg {
    width: 20px;
    height: 20px;
    margin-right: 4px;
    transition: stroke 100ms ease-in-out;
}

.footer-mid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 20px 0 50px;
}

.footer-mid .logo {
    max-width: 180px;
}

.footer-mid .counties {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-mid .counties img {
    max-width: 30px;
    max-height: 30px;
}

.footer-mid .counties svg {
    width: 30px;
    height: 30px;
}

.footer-bottom {
    color: #828282;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

@media (max-width: 1024px) {
    .site-page-showcase .showcase-offers__remaining {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .site-page-showcase .offer-item__identity {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .site-header .header-inner {
        align-items: center;
        flex-direction: row;
        gap: 16px;
        min-height: 58px;
        padding: 0;
    }

    .site-header .account {
        font-size: 14px;
    }

    footer .footer-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        margin: 24px 0;
    }

    .footer-top .footer-menu {
        flex-direction: column;
        gap: 12px;
        max-width: none;
    }

    .footer-top .footer-menu a {
        text-align: left;
    }

    .footer-mid {
        gap: 20px;
        margin: 20px 0 32px;
    }

    .footer-mid .counties {
        flex-wrap: wrap;
        gap: 12px;
    }

    .cookie-consent {
        left: 10px;
        bottom: 10px;
        width: calc(100vw - 20px);
    }

    .cookie-consent__panel {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
        padding: 14px;
    }

    .cookie-consent__accept {
        width: 100%;
    }

    .site-page-registration .registration-page-section {
        padding: 18px 0 28px;
    }

    .site-page-registration .registration-page-title {
        margin-bottom: 20px;
        font-size: 34px;
    }

    .site-page-registration .registration-page-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .site-page-registration .registration-notice {
        padding: 14px;
        font-size: 14px;
    }

    .site-page-showcase .showcase-floating-area {
        right: 10px;
        bottom: 10px;
        left: auto;
        width: min(250px, calc(100vw - 20px));
    }

    .site-page-showcase .hero {
        padding: 24px 0 18px;
    }

    .site-page-showcase .hero h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .site-page-showcase .hero .lead {
        margin-top: 6px;
        font-size: 16px;
    }

    .site-page-showcase .showcase-offers {
        width: calc(100% - 20px);
        gap: 16px;
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .site-page-showcase .showcase-offers__featured {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .site-page-showcase .showcase-offers__remaining {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .site-page-showcase .offer-item {
        padding: 18px 16px;
    }

    .site-page-showcase .offer-item__identity {
        align-items: center;
        flex-direction: row;
        gap: 20px;
    }

    .site-page-showcase .offer-item__logo {
        max-width: 140px;
    }

    :is(.site-page-showcase, .site-offer-detail) .offer-compact {
        min-height: 380px;
        gap: 14px;
        padding-right: 10px;
        padding-left: 10px;
    }

    :is(.site-page-showcase, .site-offer-detail) .offer-compact__approval {
        font-size: 11px;
    }

    :is(.site-page-showcase, .site-offer-detail) .offer-compact__logo {
        max-width: 110px;
    }

    :is(.site-page-showcase, .site-offer-detail) .offer-compact__metric strong {
        font-size: 14px;
    }

    .site-page-showcase .showcase-faq {
        margin-top: 8px;
        padding: 32px 0 40px;
    }

    .site-page-showcase .showcase-faq h2 {
        margin-bottom: 24px;
        font-size: 28px;
    }

    .site-page-showcase .showcase-faq__list li {
        padding: 0 16px;
    }

    .site-page-showcase .showcase-faq__list li h3 {
        padding-top: 14px;
        padding-bottom: 14px;
        font-size: 14px;
    }

    .site-page-showcase .showcase-faq__list li p {
        font-size: 14px;
    }

    .site-page-showcase .showcase-faq__list li.active p {
        padding: 18px 0;
    }

    .site-page-showcase .showcase-telegram-widget--floating-feed-mobile {
        display: none;
    }

    .site-page-showcase .showcase-telegram-slot--inline-mobile {
        display: block;
        grid-column: 1 / -1;
    }

    .site-page-showcase .showcase-telegram-widget--inline-mobile {
        min-height: 98px;
        border-radius: 14px;
    }

    .site-page-showcase .showcase-telegram-widget--inline-mobile .showcase-telegram-widget__icon {
        width: 32px;
        height: 32px;
    }

    .calculator.free {
        margin-bottom: 0;
    }

    .calculator.free .holder {
        padding: 24px 20px;
    }

    .calculator .checkboxGroup {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
        margin: 24px 0;
    }

    .calculator .freeBanner.mobile {
        background: #f5f4bf;
        padding: 0 10px 10px;
        display: grid;
        grid-template-columns: 70px 1fr;
        gap: 10px;
    }

    .calculator .freeBanner.mobile .icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: radial-gradient(circle at 35% 35%, #fff 0 12px, var(--color-primary, #3ebf1f) 13px 100%);
        opacity: .95;
    }

    .calculator .freeBanner.mobile .text {
        line-height: 1.2;
        font-size: 14px;
        padding-top: 10px;
    }

    .calculator .freeBanner.mobile .text b {
        font-size: 18px;
    }
}
