/* ===========================================
   Service Page Styles — Figma Design 1:1
   Node: 37:350 "Page service" (1440×3611)
   =========================================== */

/* ── Design tokens from Figma ── */
:root {
    --sp-font: 'Suisse Intl', 'Inter', sans-serif;
    --sp-primary-text: #212f40;
    --sp-secondary-text: #9099b4;
    --sp-heading-text: #203147;
    --sp-body-text: #1e1e1e;
    --sp-black: #212121;
    --sp-white: #ffffff;
    --sp-bg-page: #f9fafe;
    --sp-bg-block: #fbfcfe;
    --sp-bg-card: #ffffff;
    --sp-bg-premium: #fafcff;
    --sp-border: rgba(144, 153, 180, 0.14);
    --sp-border-badge: rgba(144, 153, 180, 0.07);
    --sp-success: #17c96d;
    --sp-warning: #f5af24;
    --sp-danger: #f31255;
    --sp-info: #0065ff;
    --sp-info-light: #0063ee;
    --sp-info-bg: #f0f7ff;
    --sp-gradient: linear-gradient(180deg, #00a4ff 0%, #0065ff 100%);
    --sp-gradient-faq: linear-gradient(180deg, #0065ff 0%, #8bb9ff 100%);
    --sp-gradient-bar: linear-gradient(180deg, #4788ff 0%, #bfd0ed 100%);
    --sp-gradient-border: linear-gradient(180deg, #4788ff 0%, #bfd0ed 100%);
    --sp-gradient-area: linear-gradient(180deg, #cee2ff 0%, #ffffff 100%);
    --sp-text-shadow: 0 1.28px 6.4px rgba(17, 25, 34, 1), 0 0.32px 2.8px rgba(17, 25, 34, 0.48);
    --sp-radius-block: 24px;
    --sp-radius-card: 16px;
    --sp-radius-btn: 12px;
    --sp-radius-badge: 56px;
    --sp-radius-pill: 100px;
}

/* ── Page wrapper ── */
.xfb5bea {
    font-family: var(--sp-font);
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding-bottom: 56px;
}

/* ── Breadcrumbs ── */
.seo-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 4px;
}

.seo-breadcrumbs a {
    font-family: var(--sp-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    background: var(--sp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.seo-breadcrumbs__sep {
    font-family: var(--sp-font);
    font-weight: 300;
    font-size: 14px;
    line-height: 150%;
    color: var(--sp-secondary-text);
}

.seo-breadcrumbs__current {
    font-family: var(--sp-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: var(--sp-secondary-text);
}

/* ── Language switch ── */
.seo-lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: -32px;
    margin-left: auto;
    width: fit-content;
    background: var(--sp-bg-card);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-pill);
    padding: 4px;
}

.seo-lang-switch__item {
    font-family: var(--sp-font);
    font-weight: 500;
    font-size: 13px;
    line-height: 150%;
    color: var(--sp-secondary-text);
    text-decoration: none;
    padding: 4px 12px;
    border-radius: var(--sp-radius-pill);
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.seo-lang-switch__item:hover {
    color: var(--sp-primary-text);
}

.seo-lang-switch__item.x84c740 {
    background: var(--sp-gradient);
    color: var(--sp-white);
}

/* ── Service Header Card (37:386) ── */
.xdb3916 {
    background: var(--sp-bg-block);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-block);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.x8a0cc1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
}

.xc2d0c5 {
    font-family: var(--sp-font);
    font-weight: 600;
    font-size: 32px;
    line-height: 150%;
    color: var(--sp-primary-text);
    margin: 0;
}

.xa23b3a {
    background: #0065ff;
    color: var(--sp-white);
    padding: 12px 24px;
    border: none;
    border-radius: var(--sp-radius-btn);
    font-family: var(--sp-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.xa23b3a:hover {
    opacity: 0.9;
}

/* ── Selection Cards (37:391) ── */
.x91713c {
    display: flex;
    gap: 16px;
    position: relative;
}

.x6ae529 {
    flex: 1;
    background: var(--sp-bg-card);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-card);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s;
}

.x6ae529:hover {
    border-color: var(--sp-info);
}

.x7a8cf0 {
    cursor: default;
}

.x7a8cf0:hover {
    border-color: var(--sp-border);
}

.x3b81d5 {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.x270bd4 {
    font-family: var(--sp-font);
    font-weight: 450;
    font-size: 16px;
    line-height: 150%;
    color: var(--sp-secondary-text);
}

.xfeb333 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.xeee36a {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.xfeb333 > span {
    font-family: var(--sp-font);
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: var(--sp-primary-text);
    white-space: nowrap;
}

.x79a0ba {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: transform 0.2s;
}

.x6ae529[data-dropdown].xccad0e .x79a0ba {
    transform: rotate(180deg);
}

/* ── Dropdown Menu ── */
.x21934d {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--sp-white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--sp-radius-btn);
    padding: 8px;
    margin-top: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    display: none;
    flex-direction: column;
    gap: 8px;
    z-index: 100;
    max-height: 400px;
    overflow: hidden;
}

.x21934d.xccad0e {
    display: flex;
}

.x090db2 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: var(--sp-white);
    border: 1px solid #e4e7f1;
    border-radius: var(--sp-radius-btn);
}

.xbd8a59 {
    border: none;
    outline: none;
    font-family: var(--sp-font);
    font-size: 14px;
    color: var(--sp-primary-text);
    width: 100%;
    background: transparent;
}

.xbd8a59::placeholder {
    color: #bcc1cc;
}

.xa2a472 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    max-height: 320px;
    padding-right: 4px;
}

.dropdown-menu__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
}

.dropdown-menu__item:hover {
    background: #eff2f9;
}

.dropdown-menu__item--active {
    background: #eff2f9;
}

.dropdown-menu__item > span {
    font-family: var(--sp-font);
    font-size: 14px;
    color: var(--sp-secondary-text);
}

.dropdown-menu__item--active > span {
    color: var(--sp-primary-text);
}

.x993604 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.xa28b05 {
    width: 18px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
}

.x3fae0e {
    font-family: var(--sp-font);
    font-size: 14px;
    color: var(--sp-black);
}

/* ── Other Countries (37:401) ── */
.xcb985c {
    background: var(--sp-bg-block);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-block);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.xf2aef9 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
}

.x040e8b {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.x3a14a6 {
    font-family: var(--sp-font);
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    color: var(--sp-primary-text);
    margin: 0;
}

.x17d30d {
    font-family: var(--sp-font);
    font-weight: 450;
    font-size: 16px;
    line-height: 150%;
    color: var(--sp-secondary-text);
}

.x0a13d3 {
    display: flex;
    gap: 8px;
}

.xc62e70 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: transparent;
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-btn);
    font-family: var(--sp-font);
    font-weight: 450;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.01em;
    color: var(--sp-primary-text);
    cursor: pointer;
    transition: all 0.2s;
}

.xc62e70 img {
    width: 20px;
    height: 20px;
}

.xc62e70:hover {
    border-color: var(--sp-info);
}

.x39e423 {
    background: var(--sp-white);
    border: 1px solid var(--sp-border);
}

/* ── Countries Table (37:417) ── */
.xdabeca {
    display: flex;
    flex-direction: column;
}

.x724a21 {
    display: flex;
    height: 48px;
    align-items: center;
}

.xbb3045 {
    font-family: var(--sp-font);
    font-weight: 450;
    font-size: 14px;
    line-height: 150%;
    color: var(--sp-secondary-text);
    padding: 0 16px;
    display: flex;
    align-items: center;
}

.xbb3045:first-child {
    width: 319px;
}

.xbb3045:not(:first-child) {
    flex: 1;
}

.countries-table__row {
    display: flex;
    height: 60px;
    border-top: 1px solid var(--sp-border);
    transition: background 0.15s;
    cursor: pointer;
}

.countries-table__row:hover {
    background: rgba(144, 153, 180, 0.03);
}

.x847d53 {
    padding: 0 16px;
    display: flex;
    align-items: center;
}

.x975eeb {
    width: 319px;
    gap: 8px;
}

.xbd521b {
    display: flex;
    align-items: center;
    gap: 4px;
}

.x7c5690 {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.xde9838 {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 2px;
}

.xb23dc0 {
    font-family: var(--sp-font);
    font-weight: 450;
    font-size: 16px;
    line-height: 150%;
    color: var(--sp-black);
}

.xb1cba4 {
    font-family: var(--sp-font);
    font-weight: 450;
    font-size: 16px;
    line-height: 150%;
    color: var(--sp-primary-text);
}

.x847d53:not(:first-child) {
    flex: 1;
}

/* ── Delivery Badge ── */
.delivery-badge {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--sp-font);
    font-weight: 450;
    font-size: 16px;
    line-height: 150%;
}

.delivery-badge--success {
    background: rgba(23, 201, 109, 0.12);
    color: var(--sp-success);
}

.delivery-badge--warning {
    background: rgba(245, 175, 36, 0.12);
    color: var(--sp-warning);
}

.delivery-badge--danger {
    background: rgba(243, 18, 85, 0.12);
    color: var(--sp-danger);
}

/* ── Price Badge ── */
.x00291d {
    display: inline-flex;
    padding: 8px 16px;
    background: var(--sp-info-bg);
    border-radius: 111px;
    font-family: var(--sp-font);
    font-weight: 450;
    font-size: 16px;
    line-height: 150%;
    color: var(--sp-info);
}

/* ── Statistics (37:455) ── */
.xb3bec1 {
    background: var(--sp-bg-block);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-block);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.xa86400 {
    display: flex;
    padding: 0 4px;
    flex-direction: column;
    gap: 4px;
}

.xfa0886 {
    font-family: var(--sp-font);
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    color: var(--sp-primary-text);
    margin: 0;
}

.x0e29e8 {
    font-family: var(--sp-font);
    font-weight: 450;
    font-size: 16px;
    line-height: 150%;
    color: var(--sp-secondary-text);
    margin: 0;
}

/* ── Stat Cards (37:460) ── */
.x8bbadc {
    display: flex;
    gap: 16px;
}

.xc164bf {
    flex: 1;
    background: var(--sp-bg-card);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-card);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.x72f17a {
    font-family: var(--sp-font);
    font-weight: 450;
    font-size: 16px;
    line-height: 150%;
    color: var(--sp-secondary-text);
}

.xdfa117 {
    font-family: var(--sp-font);
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: var(--sp-primary-text);
}

/* ── Statistics Charts (37:465) ── */
.x433fa5 {
    display: flex;
    gap: 16px;
}

.x14082d {
    flex: 1;
    background: var(--sp-bg-card);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-card);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.x88f4d4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.x4ccf34 {
    justify-content: flex-start;
}

.x633441 {
    font-family: var(--sp-font);
    font-weight: 450;
    font-size: 16px;
    line-height: 150%;
    color: var(--sp-secondary-text);
}

.xeca821 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.x3e8ab1 {
    font-family: var(--sp-font);
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: var(--sp-primary-text);
}

.x818642 {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px 4px 10px;
    background: rgba(23, 201, 109, 0.12);
    border-radius: 48px;
    font-family: var(--sp-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--sp-success);
}

.x818642 img {
    width: 20px;
    height: 20px;
}

/* ── Line Chart ── */
.x132f89 {
    display: flex;
    gap: 8px;
    position: relative;
}

.x88aa8e {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: var(--sp-font);
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: var(--sp-secondary-text);
    text-align: right;
    padding-right: 4px;
    height: 224px;
}

.x43234c {
    flex: 1;
    position: relative;
    height: 224px;
}

.x12db6f {
    width: 100%;
    height: 100%;
}

.x12db6f .xa83e96 {
    stroke: rgba(144, 153, 180, 0.14);
    stroke-width: 1;
    stroke-dasharray: 2 2;
}

.x12db6f .line-chart__area {
    opacity: 0.6;
}

.x12db6f .line-chart__line {
    fill: none;
    stroke-width: 1.5;
    stroke-linejoin: round;
    stroke-linecap: round;
}

.x6aff90 {
    position: absolute;
    min-width: 175px;
    width: 175px;
    background: var(--sp-white);
    border: 1px solid var(--sp-border);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 2;
    pointer-events: none;
}

.xe97d61 {
    font-family: var(--sp-font);
    font-weight: 450;
    font-size: 14px;
    line-height: 150%;
    color: var(--sp-secondary-text);
}

.xcd14a2 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.x9666b6 {
    font-family: var(--sp-font);
    font-weight: 450;
    font-size: 14px;
    line-height: 150%;
    color: var(--sp-primary-text);
}

.xb1adc6 {
    font-family: var(--sp-font);
    font-weight: 450;
    font-size: 14px;
    line-height: 150%;
    color: var(--sp-secondary-text);
}

.line-chart__dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--sp-info-light);
    border-radius: 50%;
    top: 15px;
    right: 20px;
    z-index: 3;
}

.line-chart__marker {
    position: absolute;
    width: 28px;
    height: 28px;
    pointer-events: none;
    z-index: 4;
}

.x75a59a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--sp-info-light);
    border-radius: 50%;
    border: 1.5px solid #fff;
    box-shadow: 0 0 20px rgba(0, 99, 238, 0.08);
}

.line-chart__vline {
    position: absolute;
    top: 0;
    width: 1px;
    background: var(--sp-secondary-text);
    pointer-events: none;
    z-index: 3;
}

.xa5516e {
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
    font-family: var(--sp-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: var(--sp-secondary-text);
}

/* ── Delivery Bars ── */
.x83a051 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.delivery-bar-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.x79c0b2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.xd5af7f {
    display: flex;
    align-items: center;
    gap: 8px;
}

.x259d00 {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 2px;
}

.x8b82fd {
    font-family: var(--sp-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--sp-primary-text);
}

.x42fb32 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.xdfa010 {
    font-family: var(--sp-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--sp-primary-text);
}

.x742f09 {
    padding: 4px 8px;
    background: var(--sp-info-bg);
    border-radius: 111px;
    font-family: var(--sp-font);
    font-weight: 450;
    font-size: 14px;
    line-height: 150%;
    color: var(--sp-info);
}

.x91993d {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 17px;
}

.delivery-bar-item__progress-bar {
    width: 8px;
    height: 17px;
    background: var(--sp-gradient-bar);
    border-radius: 10px;
}

.delivery-bar-item__progress-bar--empty {
    background: transparent;
    border: 1px solid var(--sp-border);
}

/* ── Description (37:617) ── */
.xa9d683 {
    background: var(--sp-bg-block);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-block);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.x633e50 {
    display: flex;
    gap: 16px;
}

.xb5a0a1 {
    flex: 1;
    background: var(--sp-bg-card);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-card);
    padding: 16px;
}

.xabb874 {
    font-family: var(--sp-font);
    font-weight: 500;
    font-size: 18px;
    line-height: auto;
    color: var(--sp-primary-text);
    margin: 0 0 8px 0;
}

.x4d7e00 {
    font-family: var(--sp-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: var(--sp-secondary-text);
    margin: 0;
}

.x4d7e00 + .x4d7e00 {
    margin-top: 8px;
}

/* ── Price Comparison (37:637) ── */
.price-comparison {
    background: var(--sp-bg-block);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-block);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-comparison__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
}

.price-comparison__title-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-comparison__title {
    font-family: var(--sp-font);
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    color: var(--sp-primary-text);
    margin: 0;
}

.price-comparison__subtitle {
    font-family: var(--sp-font);
    font-weight: 450;
    font-size: 16px;
    line-height: 150%;
    color: var(--sp-secondary-text);
    margin: 0;
}

.price-comparison__btn {
    background: var(--sp-gradient);
    color: var(--sp-white);
    padding: 12px 24px;
    border: none;
    border-radius: var(--sp-radius-btn);
    font-family: var(--sp-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.price-comparison__btn:hover {
    opacity: 0.9;
}

.price-comparison__cards {
    display: flex;
    gap: 16px;
}

/* ── Price Card ── */
.price-card {
    flex: 1;
    background: var(--sp-bg-card);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-card);
    padding: 24px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.price-card--premium {
    background: var(--sp-bg-premium);
    border: 1px solid transparent;
    background-image: linear-gradient(var(--sp-bg-premium), var(--sp-bg-premium)), var(--sp-gradient-border);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.price-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 0 4px;
}

.price-card__header-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-card__title {
    font-family: var(--sp-font);
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0.1px;
    color: var(--sp-primary-text);
    margin: 0;
}

.price-card__price-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.price-card__price-label {
    font-family: 'Inter Tight', var(--sp-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--sp-secondary-text);
}

.price-card__price-main {
    font-family: 'Inter Tight', var(--sp-font);
    font-weight: 500;
    font-size: 23px;
    line-height: 150%;
    color: var(--sp-secondary-text);
}

.price-card__price-currency {
    font-family: 'Inter Tight', var(--sp-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--sp-secondary-text);
}

.price-card__price-note {
    font-family: 'Inter Tight', var(--sp-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--sp-secondary-text);
}

.price-card__badge {
    display: inline-flex;
    padding: 11px 16px;
    background: var(--sp-border-badge);
    border-radius: var(--sp-radius-badge);
    font-family: var(--sp-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: var(--sp-body-text);
    white-space: nowrap;
    height: fit-content;
}

.price-card__badge--premium {
    background: var(--sp-info-bg);
    color: var(--sp-info-light);
}

.price-card__features-wrap {
    background: var(--sp-bg-card);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-btn);
    padding: 16px;
}

.price-card--premium .price-card__features-wrap {
    background: var(--sp-bg-card);
}

.price-card__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.price-card__feature {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--sp-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.1px;
    color: var(--sp-body-text);
}

.price-card__feature img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ── Quest accordion (FAQ from admin) ── */
.xc5ee09 {
    max-width: 100%;
    margin: 0;
    counter-reset: question-counter;
    gap: 12px;
    display: flex;
    flex-direction: column;
}

.xc5ee09 .x523087 {
    counter-increment: question-counter;
    background: var(--sp-bg-card);
    display: flex;
    flex-direction: column;
    border-radius: var(--sp-radius-btn);
    border: 1px solid var(--sp-border);
}

.xc5ee09 .x523087 .xfbbe24 { display: block; }
.xc5ee09 .x523087 .x8d695d { display: none; }
.xc5ee09 .x523087[open] .xfbbe24 { display: none; }
.xc5ee09 .x523087[open] .x8d695d { display: block; }

.xc5ee09 .x688bec {
    font-family: var(--sp-font);
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
    cursor: pointer;
    border: none;
    border-radius: var(--sp-radius-btn);
    background: var(--sp-bg-card);
    width: 100%;
    text-align: left;
    padding: 18px 16px;
    transition: border-radius 0.2s;
}

.xc5ee09 .x688bec::before {
    content: counter(question-counter, decimal-leading-zero);
    font-family: var(--sp-font);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: var(--sp-white);
    border-radius: 6px;
    background: var(--sp-gradient-faq);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.xc5ee09 .x5b8dd5 {
    color: var(--sp-primary-text);
    flex: 1;
}

.xc5ee09 .x688bec svg {
    flex-shrink: 0;
    margin-left: auto;
}

.xc5ee09 .x5aba6a {
    font-family: var(--sp-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: var(--sp-secondary-text);
    margin: 0;
    background: var(--sp-bg-card);
    overflow: hidden;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    will-change: height, opacity;
}

.xc5ee09 .quest-answ__inner {
    padding: 0 16px 16px 54px;
    border: 1px solid var(--sp-border);
    border-top: none;
    border-radius: 0 0 var(--sp-radius-btn) var(--sp-radius-btn);
    margin-top: -1px;
    background: var(--sp-bg-card);
}

.xc5ee09 .x523087.is-open .x688bec {
    border-radius: var(--sp-radius-btn) var(--sp-radius-btn) 0 0;
}

/* ── FAQ (37:675) ── */
.xcd453e {
    margin-top: 0;
    background: var(--sp-bg-block);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-block);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.x0eb48e {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 4px;
}

.xbf882d {
    font-family: var(--sp-font);
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: var(--sp-heading-text);
    margin: 0;
}

.x97cbc2 {
    font-family: var(--sp-font);
    font-weight: 450;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: var(--sp-secondary-text);
    margin: 0;
}

.faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.faq-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 16px;
    background: var(--sp-bg-card);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-btn);
    cursor: pointer;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: var(--sp-info);
}

.faq-item__left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-item__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--sp-gradient-faq);
    border-radius: 6px;
    font-family: var(--sp-font);
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -0.03em;
    color: var(--sp-white);
    flex-shrink: 0;
}

.faq-item__question {
    font-family: var(--sp-font);
    font-weight: 500;
    font-size: 16px;
    line-height: auto;
    color: var(--sp-primary-text);
}

.faq-item__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.faq-item.xccad0e .faq-item__icon {
    transform: rotate(45deg);
}

/* ── Other Services (37:698) ── */
.x039f58 {
    background: var(--sp-bg-block);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-block);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.xfd7b1a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
}

.xa800e0 {
    font-family: var(--sp-font);
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: var(--sp-heading-text);
    margin: 0;
}

.other-services__link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--sp-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: var(--sp-info-light);
    text-decoration: none;
}

.other-services__link:hover {
    text-decoration: underline;
}

.other-services__link img {
    width: 16px;
    height: 16px;
}

.x5c6364 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.xead213 {
    background: var(--sp-bg-card);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-card);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
    transition: border-color 0.2s;
}

.xead213:hover {
    border-color: var(--sp-info);
}

.x804dcc {
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card__icon {
    width: 31px;
    height: 31px;
    object-fit: contain;
    flex-shrink: 0;
}

.xf49378 {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.xfc9a4c {
    font-family: var(--sp-font);
    font-weight: 450;
    font-size: 16px;
    line-height: 150%;
    color: var(--sp-primary-text);
    margin: 0;
}

.x25e57e {
    font-family: var(--sp-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: var(--sp-secondary-text);
}

.xce55c2 {
    font-family: var(--sp-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: var(--sp-secondary-text);
    margin: 0;
}

/* ── Показать еще (mobile only) ── */
.x144425 {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid rgba(71, 136, 255, 0.3);
    border-radius: 10px;
    font-family: var(--sp-font);
    font-weight: 500;
    font-size: 14px;
    color: #4788ff;
    cursor: pointer;
    margin-top: 4px;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .x91713c {
        flex-wrap: wrap;
    }

    .x6ae529 {
        flex: 1 1 calc(50% - 8px);
    }

    .x21934d {
        width: 360px;
        max-width: 100%;
    }

    .x8bbadc {
        flex-wrap: wrap;
    }

    .xc164bf {
        flex: 1 1 calc(50% - 8px);
    }

    .x433fa5 {
        flex-direction: column;
    }

    .x5c6364 {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq__grid {
        grid-template-columns: 1fr;
    }

    .x633e50 {
        flex-direction: column;
    }

    .price-comparison__cards {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .xfb5bea {
        gap: 32px;
    }

    .seo-lang-switch {
        margin-bottom: -16px;
        max-width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .seo-lang-switch::-webkit-scrollbar {
        display: none;
    }

    .seo-breadcrumbs {
        gap: 8px;
    }

    /* ── Service Header Card ── */
    .xdb3916 {
        border-radius: 16px;
        padding: 16px;
        gap: 16px;
    }

    .x8a0cc1 {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 0 4px;
    }

    .xc2d0c5 {
        font-size: 20px;
        line-height: 26px;
    }

    .xa23b3a {
        width: 100%;
        font-size: 16px;
        padding: 12px 24px;
    }

    /* ── Selection Cards ── */
    .x91713c {
        flex-direction: column;
        gap: 8px;
    }

    .x6ae529 {
        flex: 1 1 100%;
        border-radius: 16px;
        padding: 16px;
        gap: 16px;
    }

    .x3b81d5 {
        gap: 24px;
    }

    .x270bd4 {
        font-size: 14px;
    }

    .xfeb333 > span {
        font-size: 16px;
    }

    .xeee36a {
        width: 24px;
        height: 24px;
    }

    .x79a0ba {
        width: 18px;
        height: 18px;
    }

    /* ── Dropdown Menu ── */
    .x21934d {
        position: fixed;
        left: 16px;
        right: 16px;
        width: auto;
        top: auto;
        margin-top: 8px;
        max-height: 70vh;
        border-radius: 12px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    }

    .xa2a472 {
        max-height: 50vh;
    }

    .x090db2 {
        border-radius: 12px;
    }

    /* ── Other Countries ── */
    .xcb985c {
        border-radius: 16px;
        padding: 8px;
        gap: 16px;
        overflow: visible;
    }

    .xf2aef9 {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        padding: 8px 8px 0 8px;
    }

    .x3a14a6 {
        font-size: 18px;
        line-height: 24px;
    }

    .x17d30d {
        font-size: 16px;
    }

    .x0a13d3 {
        gap: 8px;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding: 0 0 4px 0;
        width: 100%;
        margin: 0 -8px;
        padding-left: 8px;
        padding-right: 8px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .x0a13d3::-webkit-scrollbar {
        display: none;
    }

    .xc62e70 {
        padding: 12px 20px;
        font-size: 16px;
        white-space: nowrap;
        flex-shrink: 0;
        border-radius: 12px;
    }

    /* ── Countries Table → Card-based layout ── */
    .xdabeca {
        overflow: visible;
    }

    .x724a21 {
        display: none;
    }

    .countries-table__row {
        flex-direction: column;
        height: auto;
        min-width: 0;
        border-top: none;
        background: var(--sp-bg-card);
        border: 1px solid var(--sp-border);
        border-radius: 16px;
        padding: 8px 16px;
        margin-bottom: 8px;
        cursor: pointer;
    }

    .countries-table__row:hover {
        background: rgba(144, 153, 180, 0.02);
    }

    .x847d53 {
        padding: 8px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid var(--sp-border);
        flex: none;
    }

    .x847d53:first-child {
        border-top: none;
    }

    .x847d53::before {
        content: attr(data-label);
        font-family: var(--sp-font);
        font-weight: 400;
        font-size: 14px;
        line-height: 150%;
        color: var(--sp-secondary-text);
    }

    .x975eeb {
        width: auto;
        gap: 0;
    }

    .xbd521b {
        gap: 4px;
    }

    .x7c5690 {
        width: 24px;
        height: 24px;
    }

    .xde9838 {
        width: 24px;
        height: 24px;
    }

    .xb23dc0 {
        font-size: 14px;
        font-weight: 450;
    }

    .xb1cba4 {
        font-size: 14px;
        font-weight: 450;
    }

    .delivery-badge {
        padding: 4px 8px;
        border-radius: 100px;
        font-size: 14px;
        font-weight: 450;
    }

    .x00291d {
        padding: 4px 8px;
        border-radius: 111px;
        font-size: 14px;
        font-weight: 450;
    }

    /* ── Показать еще ── */
    .x144425 {
        display: none;
        align-items: center;
        justify-content: center;
        gap: 4px;
        width: 100%;
        padding: 8px 12px;
        background: transparent;
        border: 1px solid rgba(71, 136, 255, 0.3);
        border-radius: 10px;
        font-family: var(--sp-font);
        font-weight: 500;
        font-size: 14px;
        color: #4788ff;
        cursor: pointer;
        margin-top: 4px;
    }

    .x144425 svg {
        flex-shrink: 0;
    }

    /* ── Statistics ── */
    .xb3bec1 {
        border-radius: 16px;
        padding: 8px;
        gap: 8px;
    }

    .xa86400 {
        padding: 8px 8px 8px 8px;
    }

    .xfa0886 {
        font-size: 18px;
        line-height: 24px;
    }

    .x0e29e8 {
        font-size: 16px;
    }

    .x8bbadc {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .xc164bf {
        border-radius: 16px;
        padding: 16px;
        gap: 24px;
    }

    .x72f17a {
        font-size: 14px;
    }

    .xdfa117 {
        font-size: 18px;
    }

    .x433fa5 {
        flex-direction: column;
        gap: 8px;
    }

    .x14082d {
        width: 100%;
        border-radius: 12px;
        padding: 16px;
        gap: 16px;
    }

    .x633441 {
        font-size: 14px;
    }

    .x3e8ab1 {
        font-size: 16px;
    }

    .x818642 {
        padding: 2px 6px 2px 8px;
        font-size: 13px;
    }

    .x818642 img {
        width: 16px;
        height: 16px;
    }

    .x88aa8e {
        font-size: 14px;
        height: 200px;
    }

    .x43234c {
        height: 200px;
    }

    .xa5516e {
        font-size: 12px;
    }

    .x6aff90 {
        min-width: 170px;
        width: 170px;
        font-size: 12px;
    }

    .x8b82fd {
        font-size: 16px;
    }

    .xdfa010 {
        font-size: 16px;
    }

    .x742f09 {
        font-size: 14px;
    }

    /* ── Description ── */
    .xa9d683 {
        border-radius: 16px;
        padding: 8px;
        gap: 8px;
    }

    .x633e50 {
        flex-direction: column;
        gap: 8px;
    }

    .xb5a0a1 {
        border-radius: 12px;
        padding: 16px;
    }

    .xabb874 {
        font-size: 16px;
    }

    .x4d7e00 {
        font-size: 14px;
        line-height: 23px;
    }

    /* ── Price Comparison ── */
    .price-comparison {
        border-radius: 16px;
        padding: 8px;
        gap: 8px;
    }

    .price-comparison__header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        padding: 8px;
    }

    .price-comparison__title {
        font-size: 18px;
        line-height: 24px;
    }

    .price-comparison__subtitle {
        font-size: 16px;
    }

    .price-comparison__btn {
        width: 100%;
        font-size: 14px;
    }

    .price-comparison__cards {
        flex-direction: column;
        gap: 8px;
    }

    .price-card {
        border-radius: 12px;
        padding: 8px;
        gap: 8px;
    }

    .price-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 0 4px;
    }

    .price-card__title {
        font-size: 16px;
    }

    .price-card__features-wrap {
        padding: 8px;
        border-radius: 12px;
    }

    .price-card__features {
        gap: 16px;
    }

    .price-card__feature {
        font-size: 14px;
        line-height: 20px;
    }

    /* ── FAQ ── */
    .xcd453e {
        border-radius: 16px;
        padding: 8px;
        gap: 8px;
    }

    .x0eb48e {
        padding: 8px;
    }

    .xbf882d {
        font-size: 18px;
    }

    .x97cbc2 {
        font-size: 16px;
    }

    .faq__grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .faq-item {
        padding: 18px 16px;
        border-radius: 12px;
    }

    .faq-item__question {
        font-size: 14px;
    }

    /* ── Other Services ── */
    .x039f58 {
        border-radius: 16px;
        padding: 8px;
        gap: 8px;
    }

    .xfd7b1a {
        padding: 8px;
    }

    .xa800e0 {
        font-size: 18px;
    }

    .x5c6364 {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .xead213 {
        border-radius: 16px;
        padding: 16px;
    }

    .other-services__link {
        justify-content: center;
    }
}

/* ── Баннер "отзывы" (как на главной) ── */
.xfecf43 { padding-bottom: 12px; }
.x0fa0b1 { display: block; width: 100%; height: auto; border-radius: 20px; }
.x1a70ea .x664b94 { position: relative; display: block; }
.x1a70ea .xd7f8dc { position: absolute; top: 0; height: 100%; z-index: 2; cursor: pointer; }
.x1a70ea .x9872c2 { left: 0; width: 50%; }
.x1a70ea .xd3acbe { right: 0; width: 50%; }
@media (max-width: 768px) {
    .x1a70ea .xd7f8dc { width: 100%; height: 50%; top: auto; left: 0; }
    .x1a70ea .x9872c2 { top: 0; height: 50%; }
    .x1a70ea .xd3acbe { top: 50%; height: 50%; }
}

/* variant */
img[src$=".png"]:not([src*="telegram"]):not([src*="whatsapp"]):not([src*="google"]):not([src*="yandex"]),
img[src$=".gif"]:not([src*="telegram"]):not([src*="whatsapp"]) { filter: hue-rotate(3deg); }

/* перерисованные баннеры уже в новой палитре */
img[src*="how-it-works-pc.e1aed67c1659.png"],
img[src*="IMG_2361.jpeg"] { filter: none !important; }
