:root {
    --color-bg: #f7faf5;
    --color-surface: #ffffff;
    --color-surface-soft: #eef7ea;
    --color-text: #111111;
    --color-muted: #5f665d;
    --color-border: #dfe8dc;
    --color-primary: #27d826;
    --color-primary-dark: #16b817;
    --color-primary-soft: #ecffe8;
    --color-success: #22c923;
    --color-danger: #bd3951;
    --color-telegram: #229ed9;
    --color-warning: #a86800;
    --color-warning-soft: #fff7e8;
    --shadow-small: 0 10px 30px rgba(18, 34, 18, 0.08);
    --shadow-large: 0 24px 70px rgba(18, 34, 18, 0.12);
    --radius-small: 12px;
    --radius-medium: 20px;
    --radius-large: 30px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    margin: 0;
    color: var(--color-text);
    background: var(--color-bg);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.floating-marketplace-cloud {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-marketplace-icon {
    position: absolute;
    left: var(--float-x);
    top: var(--float-y);
    display: grid;
    width: var(--float-size);
    height: var(--float-size);
    place-items: center;
    border-radius: 18px;
    opacity: 0.12;
    filter: saturate(0.9);
    animation: marketplaceFloat var(--float-duration) ease-in-out infinite;
    animation-delay: var(--float-delay);
    will-change: transform;
}

.floating-marketplace-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes marketplaceFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-5deg);
    }

    50% {
        transform: translate3d(22px, -28px, 0) rotate(6deg);
    }
}

.site-header,
main,
.site-footer,
.legal-page-main {
    position: relative;
    z-index: 1;
}

body.menu-open {
    overflow: hidden;
}

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

svg {
    display: block;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.section {
    padding: 104px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(223, 232, 220, 0.92);
    background: rgba(255, 255, 255, 0.98);
}

.header-inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    gap: 38px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    font-weight: 850;
    letter-spacing: -0.025em;
}

.brand-logo {
    display: block;
    width: 300px;
    height: 70px;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.desktop-nav a {
    color: #343a32;
    font-size: 14px;
    font-weight: 650;
    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--color-primary);
}

.desktop-nav .nav-review-link {
    position: relative;
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    border: 1px solid rgba(39, 216, 38, 0.28);
    border-radius: 999px;
    color: var(--color-primary);
    background: var(--color-primary-soft);
    box-shadow: 0 8px 18px rgba(39, 216, 38, 0.12);
}

.desktop-nav .nav-review-link::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    content: "";
}

.desktop-nav .nav-review-link:hover {
    color: #111;
    background: var(--color-primary);
    box-shadow: 0 12px 24px rgba(39, 216, 38, 0.22);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 13px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button:focus-visible,
.menu-button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(39, 216, 38, 0.25);
    outline-offset: 2px;
}

.button-primary {
    color: #111;
    background: var(--color-primary);
    box-shadow: 0 11px 24px rgba(39, 216, 38, 0.24);
}

.button-primary:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 14px 30px rgba(39, 216, 38, 0.3);
}

.button-secondary {
    border-color: var(--color-border);
    color: var(--color-text);
    background: #fff;
}

.button-secondary:hover {
    border-color: #c8dcc3;
    box-shadow: var(--shadow-small);
}

.button-small {
    min-height: 44px;
    padding: 0 18px;
    font-size: 13px;
}

.button-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.menu-button,
.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: 86px;
}

.hero::before {
    position: absolute;
    top: -260px;
    right: -180px;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 216, 38, 0.1), transparent 68%);
    content: "";
    pointer-events: none;
}

.hero-grid {
    display: grid;
    min-height: 500px;
    align-items: center;
    grid-template-columns: 0.96fr 1.04fr;
    gap: 70px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.hero h1,
.section-heading h2 {
    margin: 0;
    letter-spacing: -0.055em;
    line-height: 1.05;
}

.hero h1 {
    max-width: 650px;
    margin-top: 19px;
    font-size: clamp(48px, 5vw, 72px);
}

.hero-text {
    max-width: 610px;
    margin: 25px 0 0;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.7;
}

.hero-prepaid-note,
.prepaid-notice {
    margin: 14px 0 0;
    padding: 11px 13px;
    border: 1px solid rgba(168, 104, 0, 0.22);
    border-radius: 12px;
    color: #744600;
    background: var(--color-warning-soft);
    font-size: 13px;
    font-weight: 800;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 28px;
    color: #5f665d;
    font-size: 12px;
    font-weight: 700;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-points span::before {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 50%;
    color: var(--color-success);
    background: rgba(39, 216, 38, 0.12);
    content: "✓";
    font-size: 10px;
    font-weight: 900;
}

.hero-visual {
    position: relative;
    min-height: 520px;
    border: 1px solid rgba(223, 232, 220, 0.9);
    border-radius: 40px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(39, 216, 38, 0.16), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 249, 236, 0.92)),
        #fff;
    box-shadow: var(--shadow-large);
}

.hero-visual::before,
.hero-visual::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.hero-visual::before {
    inset: 34px;
    border: 1px solid rgba(39, 216, 38, 0.16);
    border-radius: 30px;
    background:
        linear-gradient(rgba(39, 216, 38, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(39, 216, 38, 0.08) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.65;
}

.hero-visual::after {
    left: 58px;
    bottom: 54px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(39, 216, 38, 0.16), rgba(39, 216, 38, 0.04) 62%, transparent 70%);
}

.visual-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 14px 16px;
    border: 1px solid rgba(206, 221, 201, 0.95);
    border-left: 4px solid var(--color-primary);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 36px rgba(18, 34, 18, 0.1);
}

.visual-steps {
    position: absolute;
    z-index: 4;
    top: 50%;
    right: 28px;
    display: grid;
    width: min(340px, calc(100% - 48px));
    gap: 10px;
    transform: translateY(-50%);
}

.chip-icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 11px;
    color: #111;
    background: linear-gradient(135deg, #73ef3f, #20cf28);
    font-size: 10px;
    font-weight: 900;
}

.visual-chip div {
    display: grid;
    gap: 2px;
}

.visual-chip strong {
    font-size: 14px;
    color: #111;
    line-height: 1.2;
}

.visual-chip small {
    color: var(--color-muted);
    font-size: 11px;
    line-height: 1.25;
}

.marketplaces-section {
    padding: 26px 0 46px;
}

.section-heading {
    margin-bottom: 48px;
}

.compact-section-heading {
    margin-bottom: 26px;
}

.compact-section-heading h2 {
    font-size: clamp(30px, 3.2vw, 44px);
}

.centered-heading {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.centered-heading .eyebrow {
    justify-content: center;
}

.centered-heading .eyebrow::before {
    display: none;
}

.section-heading h2 {
    margin-top: 15px;
    font-size: clamp(38px, 4vw, 54px);
}

.section-heading p {
    max-width: 640px;
    margin: 16px auto 0;
    color: var(--color-muted);
    font-size: 16px;
}

.marketplace-showcase {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
}

.marketplace-badge {
    display: grid;
    min-height: 118px;
    place-items: center;
    align-content: center;
    gap: 8px;
    padding: 16px 10px;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: var(--color-surface);
    box-shadow: 0 8px 24px rgba(27, 44, 82, 0.05);
}

.marketplace-badge strong {
    display: grid;
    min-width: 46px;
    min-height: 31px;
    place-items: center;
    padding: 3px 9px;
    border-radius: 9px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.marketplace-badge span {
    color: #505d75;
    font-size: 11px;
    font-weight: 750;
    text-align: center;
}

.badge-ozon strong,
.marketplace-logo-ozon {
    background: #005bff;
}

.badge-wb strong,
.marketplace-logo-wb {
    background: linear-gradient(135deg, #9928bd, #e22988);
}

.badge-yandex strong,
.marketplace-logo-yandex {
    background: #fc3f1d;
}

.badge-dns strong,
.marketplace-logo-dns {
    background: #ee741c;
}

.badge-child strong,
.marketplace-logo-child {
    background: #159bc7;
}

.badge-tools strong,
.marketplace-logo-tools {
    background: #d9363e;
}

.marketplace-logo-ozon {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    letter-spacing: -0.04em;
    text-transform: lowercase;
}

.marketplace-logo-wb {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
}

.marketplace-logo-yandex {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
}

.marketplace-logo-dns {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
}

.marketplace-logo-child {
    font-size: 12px;
}

.marketplace-logo-tools {
    font-size: 11px;
}

.section-soft {
    background: var(--color-surface-soft);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps-grid li {
    min-height: 245px;
    padding: 30px;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    background: var(--color-surface);
    box-shadow: 0 12px 35px rgba(27, 44, 82, 0.055);
}

.step-number {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 15px;
    color: var(--color-primary);
    background: var(--color-primary-soft);
    font-size: 13px;
    font-weight: 900;
}

.steps-grid h3 {
    margin: 29px 0 8px;
    font-size: 21px;
    letter-spacing: -0.025em;
}

.steps-grid p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
}


.terms-section {
    background: var(--color-bg);
}

.terms-heading {
    margin-bottom: 34px;
}

.terms-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
}

.terms-card {
    display: flex;
    min-height: 210px;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    background: var(--color-surface);
    box-shadow: var(--shadow-small);
}

.terms-icon {
    display: grid;
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 17px;
    color: var(--color-primary);
    background: var(--color-primary-soft);
}

.terms-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.terms-label {
    display: block;
    margin-bottom: 9px;
    color: var(--color-muted);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.terms-card h3 {
    margin: 0;
    font-size: 24px;
    letter-spacing: -0.035em;
    line-height: 1.25;
}

.terms-card p {
    margin: 12px 0 0;
    color: var(--color-muted);
    font-size: 13px;
}

.pricing-content {
    width: 100%;
}

.tariff-values {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 20px;
}

.tariff-values > div {
    display: grid;
    gap: 3px;
}

.tariff-values strong {
    font-size: 31px;
    letter-spacing: -0.045em;
}

.tariff-values span:not(.tariff-plus) {
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 700;
}

.tariff-plus {
    color: #9aa6ba;
    font-size: 25px;
    font-weight: 500;
}

.recalculation-banner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 18px;
    padding: 20px 22px;
    border: 1px solid #efd7a6;
    border-radius: 18px;
    color: #654714;
    background: var(--color-warning-soft);
}

.recalculation-icon,
.form-price-notice > span {
    display: grid;
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--color-warning);
    font-size: 13px;
    font-weight: 900;
}

.recalculation-banner p {
    margin: 1px 0 0;
    font-size: 13px;
    line-height: 1.6;
}

.reviews-section {
    background: #f7f9fc;
}

.reviews-page-section {
    padding-top: 120px;
}

.reviews-container {
    max-width: 1120px;
}

.reviews-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 22px;
    align-items: start;
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.review-card,
.review-empty,
.review-form {
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-small);
}

.review-card {
    display: grid;
    gap: 12px;
    min-height: 150px;
    padding: 20px;
}

.review-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.review-card-head strong,
.review-form-head strong,
.review-empty strong {
    color: var(--color-text);
    font-size: 16px;
}

.review-card-head span,
.review-form-head span,
.review-empty span {
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.review-card p {
    margin: 0;
    color: #31405a;
    font-size: 14px;
    line-height: 1.65;
}

.review-empty {
    display: grid;
    min-height: 150px;
    align-content: center;
    gap: 8px;
    padding: 20px;
}

.review-form {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.review-form-head {
    display: grid;
    gap: 4px;
}

.review-submit {
    width: 100%;
}

.review-order-link {
    width: 100%;
}

.review-message {
    margin-top: 0;
}

.compact-tariffs {
    padding: 26px 0 10px;
    background: #fff;
}

.compact-tariffs-inner {
    display: grid;
    grid-template-columns: minmax(230px, 0.52fr) minmax(0, 1.48fr);
    align-items: center;
    gap: 18px;
    padding: 20px;
    border: 1px solid rgba(39, 216, 38, 0.16);
    border-radius: 20px;
    background: linear-gradient(135deg, #f7fff5, #ffffff);
    box-shadow: 0 14px 34px rgba(18, 34, 18, 0.07);
}

.compact-tariffs-heading {
    display: grid;
    gap: 7px;
}

.compact-tariffs-heading h2 {
    margin: 0;
    color: var(--color-text);
    font-size: 26px;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.compact-tariffs-heading p {
    margin: 0;
    color: #64708a;
    font-size: 13px;
    line-height: 1.45;
}

.compact-tariff-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.compact-tariff-card {
    display: grid;
    min-height: 112px;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    padding: 16px;
    border: 1px solid #dfe6f5;
    border-radius: 16px;
    background: #fff;
}

.compact-tariff-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 14px;
    color: var(--color-primary);
    background: var(--color-primary-soft);
    font-size: 16px;
    font-weight: 900;
}

.carrier-compact-tariff .compact-tariff-icon {
    color: #c65d16;
    background: #fff1e8;
}

.compact-tariff-card span:not(.compact-tariff-icon) {
    display: block;
    color: #69758f;
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.compact-tariff-card strong {
    display: block;
    margin-top: 4px;
    color: #112550;
    font-size: 20px;
    line-height: 1.18;
}

.compact-tariff-card small {
    display: block;
    margin-top: 5px;
    color: #64708a;
    font-size: 12px;
    line-height: 1.35;
}

.compact-tariff-list {
    display: grid;
    gap: 7px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.compact-tariff-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    background: #f5f7fc;
}

.compact-tariff-list b {
    color: var(--color-primary);
    font-size: 18px;
}

.compact-tariff-list span {
    color: #52617b;
    font-size: 12px;
    font-weight: 750;
}

.compact-tariff-action {
    display: inline-flex;
    width: fit-content;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 12px;
    color: #fff;
    background: var(--color-primary);
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(39, 216, 38, 0.16);
}

.order-section {
    background: #fff;
    padding-top: 46px;
}

.order-container {
    max-width: 1120px;
}

.order-heading {
    margin-bottom: 32px;
}

.order-methods {
    display: grid;
    max-width: 850px;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 0 auto 22px;
}

.method-option {
    position: relative;
    display: grid;
    min-height: 104px;
    align-items: center;
    grid-template-columns: auto 1fr auto;
    gap: 15px;
    padding: 18px;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    cursor: pointer;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.method-option:hover {
    transform: translateY(-1px);
    border-color: #c7d2e6;
    box-shadow: var(--shadow-small);
}

.method-option.is-selected {
    border-color: var(--color-primary);
    background: var(--color-primary-soft);
    box-shadow: 0 0 0 3px rgba(39, 216, 38, 0.08);
}

.method-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.method-icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 15px;
    color: var(--color-primary);
    background: #eef2fc;
}

.method-icon-telegram {
    color: var(--color-telegram);
    background: #e9f7fd;
}

.method-icon svg,
.telegram-card-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.method-copy {
    display: grid;
    gap: 2px;
}

.method-copy strong {
    font-size: 16px;
}

.method-copy small {
    color: var(--color-muted);
    font-size: 12px;
}

.method-check {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border: 1px solid #cbd4e2;
    border-radius: 50%;
    color: transparent;
    background: #fff;
    font-size: 12px;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.method-option.is-selected .method-check {
    border-color: var(--color-primary);
    color: #fff;
    background: var(--color-primary);
}

.order-panel {
    animation: panel-in 0.22s ease;
}

.order-panel[hidden] {
    display: none;
}

@keyframes panel-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.order-form {
    display: grid;
    gap: 26px;
    padding: 34px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    background: var(--color-surface);
    box-shadow: var(--shadow-large);
}

.marketplace-fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.marketplace-fieldset legend {
    padding: 0;
    font-size: 19px;
    font-weight: 850;
    letter-spacing: -0.025em;
}

.marketplace-fieldset legend span,
.field b,
.upload-title b,
.required-note span {
    color: var(--color-danger);
}

.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 11px;
    margin-top: 16px;
}

.marketplace-option {
    position: relative;
    display: grid;
    min-height: 105px;
    align-content: center;
    gap: 7px;
    padding: 16px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    cursor: pointer;
    background: #fafbfd;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.marketplace-option:hover {
    border-color: #bdc9e2;
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(27, 44, 82, 0.07);
}

.marketplace-option.is-selected {
    border-color: var(--color-primary);
    background: var(--color-primary-soft);
    box-shadow: 0 0 0 3px rgba(39, 216, 38, 0.07);
}

.marketplace-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.marketplace-logo {
    display: inline-flex;
    width: fit-content;
    min-width: 66px;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 5px 11px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
}

.marketplace-name {
    color: #4c5870;
    font-size: 12px;
    font-weight: 750;
}

.marketplace-check {
    position: absolute;
    top: 11px;
    right: 11px;
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--color-primary);
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.2s ease, transform 0.2s ease;
    font-size: 11px;
}

.marketplace-option.is-selected .marketplace-check {
    opacity: 1;
    transform: scale(1);
}

.field-error {
    min-height: 18px;
    margin: 8px 0 0;
    color: var(--color-danger);
    font-size: 12px;
    font-weight: 700;
}

.form-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
    gap: 20px;
}

.form-fields,
.upload-grid {
    display: grid;
    gap: 13px;
}

.field {
    display: grid;
    gap: 7px;
}

.field > span {
    color: #455169;
    font-size: 12px;
    font-weight: 800;
}

.field small {
    color: var(--color-muted);
    font-size: 10px;
    line-height: 1.4;
}

.field b,
.upload-title b {
    font-weight: 800;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid #d9e0eb;
    border-radius: 12px;
    outline: 0;
    color: var(--color-text);
    background: #f9fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input {
    height: 51px;
    padding: 0 15px;
}

.field textarea {
    min-height: 116px;
    padding: 14px 15px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #9aa4b6;
}

.field input:focus,
.field textarea:focus {
    border-color: rgba(39, 216, 38, 0.66);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(39, 216, 38, 0.085);
}

.field input.is-invalid,
.field textarea.is-invalid {
    border-color: var(--color-danger);
    box-shadow: 0 0 0 4px rgba(189, 57, 81, 0.08);
}

.upload-card {
    position: relative;
    display: grid;
    min-height: 174px;
    align-content: center;
    justify-items: center;
    padding: 18px;
    border: 1px dashed #bdc8d9;
    border-radius: 16px;
    cursor: pointer;
    text-align: center;
    background: #fafbfd;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.upload-card:hover,
.upload-card.is-dragging {
    border-color: var(--color-primary);
    background: var(--color-primary-soft);
}

.upload-card.has-file {
    border-style: solid;
    border-color: rgba(19, 132, 104, 0.55);
    background: rgba(19, 132, 104, 0.055);
}

.upload-card.is-optional:not(.has-file) {
    border-style: solid;
    border-color: rgba(101, 112, 137, 0.28);
}

.upload-card.is-invalid {
    border-color: var(--color-danger);
    background: rgba(189, 57, 81, 0.04);
}

.upload-card input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.upload-icon {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
    place-items: center;
    border-radius: 13px;
    color: var(--color-primary);
    background: var(--color-primary-soft);
}

.upload-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.upload-preview {
    display: grid;
    grid-template-columns: repeat(2, 36px);
    width: auto;
    min-height: 58px;
    margin-bottom: 9px;
    gap: 4px;
    overflow: hidden;
}

.upload-preview img {
    display: block;
    width: 36px;
    height: 27px;
    border: 1px solid rgba(19, 132, 104, 0.24);
    border-radius: 7px;
    background: #fff;
    object-fit: cover;
}

.upload-card.has-file .upload-icon {
    display: none;
}

.upload-card.has-file .upload-description {
    color: var(--color-success);
    font-weight: 800;
}

.upload-title {
    font-size: 14px;
    font-weight: 850;
}

.upload-description,
.upload-restrictions,
.upload-file-name {
    color: var(--color-muted);
    font-size: 11px;
}

.upload-file-name {
    max-width: 100%;
    margin-top: 7px;
    overflow: hidden;
    color: var(--color-primary-dark);
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.field-hint {
    color: var(--color-muted);
    font-size: 10px;
    line-height: 1.5;
}

.price-entry-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(205px, 0.72fr);
    gap: 13px;
    align-items: stretch;
}

.estimate-card {
    display: grid;
    align-content: center;
    gap: 4px;
    min-height: 116px;
    padding: 17px;
    border: 1px solid #ced9f0;
    border-radius: 14px;
    background: var(--color-primary-soft);
}

.estimate-card > span {
    color: #52617b;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.estimate-card strong {
    color: var(--color-primary-dark);
    font-size: 24px;
    letter-spacing: -0.035em;
}

.estimate-card small {
    color: var(--color-muted);
    font-size: 10px;
}

.form-price-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 17px;
    border: 1px solid #efd7a6;
    border-radius: 14px;
    color: #654714;
    background: var(--color-warning-soft);
}

.form-price-notice > span {
    width: 22px;
    height: 22px;
    font-size: 11px;
}

.form-price-notice p {
    margin: 0;
    font-size: 11px;
    line-height: 1.6;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 21px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.switch-control,
.consent-control {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    cursor: pointer;
}

.switch-control > input,
.consent-control > input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.switch-track {
    position: relative;
    width: 49px;
    height: 28px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #d9e0eb;
    transition: background 0.2s ease;
}

.switch-track span {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 7px rgba(31, 45, 74, 0.2);
    transition: transform 0.2s ease;
}

.switch-control input:checked + .switch-track {
    background: var(--color-primary);
}

.switch-control input:checked + .switch-track span {
    transform: translateX(21px);
}

.switch-copy {
    display: grid;
}

.switch-copy strong {
    font-size: 13px;
}

.switch-copy small {
    color: var(--color-muted);
    font-size: 10px;
}

.consent-control > span {
    position: relative;
    padding-left: 31px;
    color: #4f5b73;
    font-size: 12px;
    font-weight: 650;
}

.consent-control > span::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #c3cddd;
    border-radius: 6px;
    background: #fff;
    content: "";
    transform: translateY(-50%);
}

.consent-control > span::after {
    position: absolute;
    top: 50%;
    left: 5px;
    width: 9px;
    height: 5px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    content: "";
    opacity: 0;
    transform: translateY(-65%) rotate(-45deg);
}

.consent-control input:checked + span::before {
    border-color: var(--color-primary);
    background: var(--color-primary);
}

.consent-control input:checked + span::after {
    opacity: 1;
}

.consent-control.is-invalid > span::before {
    border-color: var(--color-danger);
    box-shadow: 0 0 0 4px rgba(189, 57, 81, 0.08);
}

.submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.required-note {
    margin: 0;
    color: var(--color-muted);
    font-size: 11px;
}

.order-submit {
    min-width: 235px;
    border: 0;
}

.order-submit svg,
.button-telegram svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.order-submit.is-loading {
    cursor: wait;
    opacity: 0.82;
}

.order-submit.is-loading svg {
    display: none;
}

.button-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.order-submit.is-loading .button-spinner {
    display: block;
}

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

.form-message {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
}

.form-message.is-error {
    color: #9f2940;
    background: #fff0f3;
}

.form-message.is-success {
    color: #0f7059;
    background: #eaf8f4;
}

.telegram-card {
    display: grid;
    max-width: 850px;
    min-height: 250px;
    align-items: center;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    margin: 0 auto;
    padding: 36px;
    border: 1px solid #cce8f4;
    border-radius: var(--radius-large);
    background: linear-gradient(135deg, #f6fcff, #edf8fd);
    box-shadow: var(--shadow-large);
}

.telegram-card-icon {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border-radius: 22px;
    color: var(--color-telegram);
    background: #fff;
    box-shadow: 0 10px 28px rgba(34, 158, 217, 0.16);
}

.telegram-card-icon svg {
    width: 35px;
    height: 35px;
}

.telegram-card h3 {
    margin: 0;
    font-size: 25px;
    letter-spacing: -0.035em;
}

.telegram-card p {
    max-width: 500px;
    margin: 8px 0 0;
    color: var(--color-muted);
    font-size: 14px;
}

.button-telegram {
    color: #fff;
    background: var(--color-telegram);
    box-shadow: 0 11px 24px rgba(34, 158, 217, 0.22);
}

.button-telegram:hover {
    background: #188bc1;
}

.site-footer {
    padding: 58px 0 0;
    border-top: 1px solid #273027;
    color: #fff;
    background:
        radial-gradient(circle at 15% 0%, rgba(39, 216, 38, 0.18), transparent 34%),
        #111;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.25fr) minmax(150px, 0.55fr) minmax(300px, 1fr);
    gap: clamp(38px, 6vw, 82px);
    padding-bottom: 44px;
}

.footer-brand-column {
    display: grid;
    align-content: start;
    gap: 17px;
}

.brand-footer {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 14px;
    background: #fff;
    color: #111;
}

.brand-logo-footer {
    width: 280px;
    height: 66px;
}

.footer-brand-column > p {
    max-width: 470px;
    margin: 0;
    color: #c8d0c4;
    font-size: 13px;
    line-height: 1.65;
}

.footer-address-card {
    display: grid;
    max-width: 510px;
    gap: 5px;
    padding: 16px 18px;
    border: 1px solid rgba(39, 216, 38, 0.22);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.055);
}

.footer-address-card span {
    color: #8ff08e;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.footer-address-card strong {
    color: #f8fff6;
    font-size: 14px;
    line-height: 1.5;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 11px;
}

.footer-column h2 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.footer-column a {
    width: fit-content;
    color: #c8d0c4;
    font-size: 12px;
    line-height: 1.45;
    transition: color 0.18s ease, transform 0.18s ease;
}

.footer-column a:hover {
    color: #fff;
    transform: translateX(2px);
}

.footer-documents {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
}

.footer-documents h2 {
    grid-column: 1 / -1;
}

.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 19px;
    padding-bottom: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: #8996aa;
    font-size: 11px;
}

@media (max-width: 1020px) {
    .desktop-nav,
    .header-inner > .button {
        display: none;
    }

    .menu-button {
        display: grid;
        width: 44px;
        height: 44px;
        margin-left: auto;
        place-content: center;
        gap: 5px;
        border: 1px solid var(--color-border);
        border-radius: 12px;
        background: #fff;
    }

    .menu-button span {
        width: 20px;
        height: 2px;
        border-radius: 999px;
        background: var(--color-text);
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .menu-button[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-button[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-button[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-nav {
        position: fixed;
        inset: 78px 0 0;
        z-index: 45;
        display: grid;
        align-content: start;
        padding: 18px 20px 40px;
        background: var(--color-bg);
    }

    .mobile-nav[hidden] {
        display: none;
    }

    .mobile-nav a {
        padding: 17px 0;
        border-bottom: 1px solid var(--color-border);
        font-size: 17px;
        font-weight: 700;
    }

    .mobile-nav .nav-review-link {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        margin: 12px 0;
        padding: 0 18px;
        border: 1px solid rgba(39, 216, 38, 0.22);
        border-radius: 13px;
        color: var(--color-primary);
        background: var(--color-primary-soft);
        box-shadow: 0 10px 22px rgba(39, 216, 38, 0.11);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero-visual {
        min-height: 510px;
    }

    .marketplace-showcase {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .marketplace-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .reviews-layout {
        grid-template-columns: 1fr;
    }

    .compact-tariffs-inner,
    .compact-tariff-cards {
        grid-template-columns: 1fr;
    }

    .form-content-grid {
        grid-template-columns: 1fr;
    }

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

    .telegram-card {
        grid-template-columns: auto 1fr;
    }

    .telegram-card .button {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 720px) {
    .floating-marketplace-icon {
        opacity: 0.07;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 50px 0;
    }

    .reviews-list {
        grid-template-columns: 1fr;
    }

    .review-card,
    .review-empty,
    .review-form {
        border-radius: 14px;
    }

    .header-inner {
        min-height: 70px;
        gap: 18px;
    }

    .mobile-nav {
        inset: 70px 0 0;
    }

    .brand-logo {
        width: 235px;
        height: 62px;
    }

    .hero {
        padding-top: 36px;
    }

    .hero-grid {
        min-height: auto;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-points {
        display: grid;
        gap: 10px;
    }

    .hero-visual {
        min-height: 340px;
        border-radius: 22px;
    }

    .hero-visual::before {
        inset: 14px;
        border-radius: 18px;
        background-size: 34px 34px;
    }

    .hero-visual::after {
        left: auto;
        right: -42px;
        bottom: -46px;
        width: 150px;
        height: 150px;
    }

    .visual-steps {
        top: 50%;
        right: 14px;
        left: 14px;
        width: auto;
        gap: 8px;
        transform: translateY(-50%);
    }

    .visual-chip {
        min-width: 0;
        gap: 10px;
        padding: 10px 11px;
        border-left-width: 3px;
    }

    .chip-icon {
        width: 28px;
        height: 28px;
        border-radius: 9px;
        font-size: 10px;
    }

    .visual-chip strong {
        font-size: 12px;
    }

    .visual-chip small {
        font-size: 10px;
    }

    .marketplaces-section {
        padding: 22px 0 34px;
    }

    .compact-tariffs {
        padding: 22px 0 12px;
    }

    .compact-tariffs-inner {
        padding: 16px;
        border-radius: 16px;
    }

    .compact-tariff-card {
        min-height: auto;
        padding: 14px;
    }

    .marketplace-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .marketplace-badge:last-child {
        grid-column: 1 / -1;
    }

    .steps-grid,
    .order-methods {
        grid-template-columns: 1fr;
    }

    .steps-grid li {
        min-height: auto;
        padding: 25px;
    }

    .order-form {
        gap: 22px;
        padding: 20px;
        border-radius: 23px;
    }

    .marketplace-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .marketplace-option {
        min-height: 98px;
        padding: 13px;
    }

    .upload-grid,
    .price-entry-grid {
        grid-template-columns: 1fr;
    }

    .terms-card {
        min-height: auto;
        padding: 23px;
    }

    .tariff-values {
        flex-wrap: wrap;
    }

    .upload-card {
        min-height: 158px;
    }

    .form-footer,
    .submit-row {
        display: grid;
        align-items: stretch;
        gap: 20px;
    }

    .order-submit {
        width: 100%;
    }

    .telegram-card {
        grid-template-columns: 1fr;
        padding: 25px;
        text-align: center;
    }

    .telegram-card-icon {
        margin: 0 auto;
    }

    .telegram-card p {
        margin-right: auto;
        margin-left: auto;
    }

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

    .footer-brand-column {
        grid-column: 1 / -1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-marketplace-cloud {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dynamic marketplace fallback and disabled Telegram option. */
.badge-default strong,
.marketplace-logo-default {
    background: var(--color-primary);
}

.empty-marketplaces {
    grid-column: 1 / -1;
    margin: 0;
    padding: 28px;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    color: var(--color-muted);
    background: var(--color-surface);
    text-align: center;
}

.method-option-disabled {
    opacity: .62;
    cursor: not-allowed;
}

.method-option-disabled:hover {
    border-color: var(--color-border);
    transform: none;
    box-shadow: none;
}

.button-disabled {
    color: #8b95a8;
    border-color: var(--color-border);
    background: #f2f4f8;
    box-shadow: none;
    cursor: not-allowed;
}

.button-disabled:hover {
    transform: none;
}

/* Delivery services directory and fixed-address order flow */
.service-showcase-group {
    margin-top: 20px;
}

.service-showcase-group + .service-showcase-group {
    margin-top: 26px;
}

.service-group-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.service-group-heading h3,
.service-group-heading p {
    margin: 0;
}

.service-group-heading h3 {
    font-size: 18px;
    color: #111;
}

.service-group-heading p {
    margin-top: 4px;
    color: #5f665d;
    font-size: 13px;
}

.service-group-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--color-primary-soft);
    color: #111;
    font-weight: 800;
}

.service-group-icon.carrier-icon {
    background: #fff1e8;
    color: #c65d16;
}

.service-badge {
    min-height: 96px;
    align-items: flex-start;
}

.service-badge small {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.45;
    color: #69758f;
}

.carrier-directory {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.carrier-card {
    padding: 20px;
    border: 1px solid #dfe8dc;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(18, 34, 18, .06);
}

.carrier-card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.carrier-card-head h4,
.carrier-card-head p {
    margin: 0;
}

.carrier-card-head h4 {
    color: #111;
    font-size: 18px;
}

.carrier-card-head p {
    margin-top: 5px;
    color: #5f665d;
    line-height: 1.5;
}

.carrier-symbol {
    display: grid;
    place-items: center;
    flex: 0 0 54px;
    min-height: 46px;
    padding: 0 8px;
    border-radius: 14px;
    background: linear-gradient(135deg, #111, #27d826);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.carrier-important,
.selected-service-important {
    margin-top: 16px;
    padding: 14px 16px;
    border: 1px solid #ffd1b2;
    border-radius: 14px;
    background: #fff7f1;
    color: #7e3811;
}

.carrier-important strong,
.selected-service-important strong {
    display: block;
    margin-bottom: 5px;
    color: #b14b0d;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 12px;
}

.carrier-important span,
.selected-service-important p {
    margin: 0;
    line-height: 1.5;
}

.other-stores-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--color-primary-soft);
    color: #263321;
}

.other-stores-banner > span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    background: #111;
    color: var(--color-primary);
    font-weight: 800;
}

.other-stores-banner p {
    margin: 2px 0 0;
    line-height: 1.55;
}

.single-pricing-grid {
    grid-template-columns: 1fr 1fr;
}

.locked-address-card h3 {
    font-size: 20px;
}

.service-selector-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin: 12px 0 14px;
}

.service-selector-heading strong {
    color: #172a55;
    font-size: 16px;
}

.service-selector-heading span {
    color: #7b869c;
    font-size: 13px;
}

.carrier-selector-heading {
    margin-top: 28px;
}

.carrier-option {
    min-height: 92px;
}

.marketplace-logo-carrier {
    min-width: 82px;
    padding: 0 10px;
    background: linear-gradient(135deg, #111, #27d826);
    color: #fff;
    font-size: 12px;
    text-align: center;
}

.marketplace-logo-cdek {
    background: #32b34a;
    color: #fff;
    font-size: 15px;
}

.marketplace-logo-pochta {
    background: #3157d5;
    color: #fff;
    font-size: 11px;
}

.marketplace-logo-pek {
    background: #1d275f;
    color: #fff;
    font-size: 15px;
}

.marketplace-logo-delovye {
    background: #233f8f;
    color: #fff;
    font-size: 10px;
}

.marketplace-logo-fivepost {
    background: #5b65d8;
    color: #fff;
    font-size: 13px;
}

.marketplace-logo-yandex-delivery {
    background: #fc3f1d;
    color: #fff;
    font-size: 10px;
}

.selected-service-card {
    margin: 8px 0 26px;
    padding: 22px;
    border: 1px solid #bfeabc;
    border-radius: 20px;
    background: linear-gradient(135deg, #f7fff5, #fff);
    box-shadow: 0 14px 36px rgba(39, 216, 38, .08);
}

.selected-service-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.selected-service-head span:not(.selected-service-lock) {
    color: #5f665d;
    font-size: 13px;
}

.selected-service-head h3 {
    margin: 3px 0 0;
    color: #111;
    font-size: 19px;
}

.selected-service-lock {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 12px;
    background: #111;
    color: var(--color-primary);
    font-weight: 800;
}

.selected-service-address {
    margin: 16px 0 0;
    padding: 14px 16px;
    border-radius: 14px;
    background: #fff;
    color: #263321;
    font-weight: 700;
    line-height: 1.5;
}

.selected-service-card > small {
    display: block;
    margin-top: 12px;
    color: #5f665d;
}

@media (max-width: 840px) {
    .carrier-directory,
    .single-pricing-grid {
        grid-template-columns: 1fr;
    }

    .service-selector-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }
}

@media (max-width: 560px) {
    .carrier-card,
    .selected-service-card {
        padding: 17px;
        border-radius: 16px;
    }

    .service-group-heading {
        align-items: flex-start;
    }

    .carrier-card-head {
        flex-direction: column;
    }
}

/* Flexible tariffs and compact public service directory */
.marketplace-showcase-simple {
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.service-badge-simple {
    min-height: 84px;
    align-items: center;
    justify-items: center;
    padding: 12px 8px;
    text-align: center;
}

.carrier-directory-simple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.carrier-card-simple {
    display: flex;
    min-height: 72px;
    align-items: center;
    gap: 14px;
    padding: 13px 14px;
}

.carrier-card-simple h4 {
    margin: 0;
    color: #132650;
    font-size: 15px;
    line-height: 1.25;
}

.tariff-model-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.tariff-model-card {
    padding: 28px;
    border: 1px solid #dfe5f1;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(24, 42, 84, 0.07);
}

.tariff-model-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}

.tariff-model-heading span:not(.tariff-model-icon) {
    display: block;
    margin-bottom: 4px;
    color: #6b7891;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tariff-model-heading h3 {
    margin: 0;
    color: #111;
    font-size: 24px;
}

.tariff-model-icon {
    display: grid;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    place-items: center;
    border-radius: 17px;
    background: var(--color-primary-soft);
    color: #111;
    font-size: 18px;
    font-weight: 900;
}

.carrier-tariff-card .tariff-model-icon {
    background: #fff1e8;
    color: #c65d16;
}

.tariff-tier-list {
    display: grid;
    gap: 9px;
}

.tariff-tier-row {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #f7faf5;
}

.tariff-tier-row strong {
    color: #111;
    font-size: 22px;
}

.tariff-tier-row span {
    color: #5f665d;
    font-size: 13px;
    line-height: 1.4;
}

.carrier-tariff-formula {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 14px;
}

.carrier-tariff-formula > div {
    display: grid;
    align-content: center;
    gap: 5px;
    min-height: 118px;
    padding: 18px;
    border-radius: 17px;
    background: #fff7f1;
}

.carrier-tariff-formula strong {
    color: #b14b0d;
    font-size: 28px;
}

.carrier-tariff-formula span {
    color: #6c5a50;
    font-size: 13px;
    line-height: 1.4;
}

.carrier-tariff-formula > b {
    display: grid;
    place-items: center;
    color: #9a6f55;
    font-size: 26px;
}

.tariff-model-note {
    margin: 18px 0 0;
    color: #65718a;
    font-size: 13px;
    line-height: 1.55;
}

.carrier-price-summary {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid #ffd1b2;
    border-radius: 16px;
    background: #fff7f1;
}

.carrier-price-summary-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border-radius: 12px;
    background: #e7772a;
    color: #fff;
    font-weight: 900;
}

.carrier-price-summary strong {
    color: #7e3811;
    font-size: 16px;
}

.carrier-price-summary p {
    margin: 6px 0 0;
    color: #765646;
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 1020px) {
    .marketplace-showcase-simple {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .carrier-directory-simple {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 840px) {
    .tariff-model-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .marketplace-showcase-simple,
    .carrier-directory-simple {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .carrier-card-simple {
        align-items: flex-start;
        flex-direction: column;
    }

    .tariff-model-card {
        padding: 20px;
        border-radius: 19px;
    }

    .carrier-tariff-formula {
        grid-template-columns: 1fr;
    }

    .carrier-tariff-formula > b {
        min-height: 18px;
    }
}


/* Main PVZ address: intentionally prominent and repeated at key conversion points */
.main-pvz-strip {
    position: relative;
    z-index: 20;
    color: #fff;
    background: linear-gradient(105deg, #111 0%, #182216 48%, #27d826 100%);
    box-shadow: 0 12px 35px rgba(18, 34, 18, 0.18);
}

.main-pvz-strip-inner {
    display: grid;
    min-height: 94px;
    align-items: center;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
}

.main-pvz-strip-icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
}

.main-pvz-strip-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.main-pvz-strip-copy {
    display: grid;
    gap: 3px;
}

.main-pvz-strip-copy span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.main-pvz-strip-copy strong {
    font-size: clamp(18px, 2vw, 25px);
    letter-spacing: -0.025em;
    line-height: 1.25;
}

.main-pvz-strip-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 13px;
    background: #fff;
    color: #111;
    font-size: 13px;
    font-weight: 850;
    box-shadow: 0 10px 24px rgba(18, 34, 18, 0.2);
}

.hero-main-pvz-card {
    display: grid;
    max-width: 620px;
    gap: 5px;
    margin-top: 27px;
    padding: 20px 22px;
    border: 1px solid #bfeabc;
    border-left: 5px solid var(--color-primary);
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff, #ecffe8);
    box-shadow: 0 14px 35px rgba(39, 216, 38, 0.1);
}

.hero-main-pvz-label {
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-main-pvz-card strong {
    color: #111;
    font-size: clamp(18px, 2.2vw, 25px);
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.hero-main-pvz-card small {
    color: #5f665d;
    font-size: 12px;
}

.order-main-pvz-notice {
    display: flex;
    max-width: 850px;
    align-items: center;
    gap: 16px;
    margin: 0 auto 20px;
    padding: 19px 21px;
    border: 1px solid #bfeabc;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff, #ecffe8);
    box-shadow: 0 12px 30px rgba(39, 216, 38, 0.08);
}

.order-main-pvz-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    border-radius: 15px;
    background: var(--color-primary);
    font-size: 22px;
}

.order-main-pvz-notice div {
    display: grid;
    gap: 2px;
}

.order-main-pvz-notice span:not(.order-main-pvz-icon) {
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.order-main-pvz-notice strong {
    color: #142d70;
    font-size: 18px;
    line-height: 1.35;
}

.order-main-pvz-notice small {
    color: var(--color-muted);
    font-size: 12px;
}

@media (max-width: 720px) {
    .main-pvz-strip-inner {
        min-height: 0;
        grid-template-columns: auto minmax(0, 1fr);
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .main-pvz-strip-link {
        grid-column: 1 / -1;
        width: 100%;
    }

    .main-pvz-strip-copy strong {
        font-size: 17px;
    }
}

@media (max-width: 560px) {
    .main-pvz-strip-inner {
        gap: 12px;
    }

    .main-pvz-strip-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .hero-main-pvz-card {
        padding: 17px 18px;
    }

    .order-main-pvz-notice {
        align-items: flex-start;
        padding: 17px;
    }
}


/* Legal links in the order form */
.consent-control a {
    position: relative;
    z-index: 1;
    color: var(--color-primary);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(39, 216, 38, 0.35);
    text-underline-offset: 3px;
}

.consent-control a:hover {
    color: var(--color-primary-dark);
    text-decoration-color: currentColor;
}

/* Cookie information: no tracking until explicitly added to the project. */
.cookie-notice {
    position: fixed;
    z-index: 120;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: min(560px, calc(100vw - 44px));
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    padding: 19px 20px;
    border: 1px solid #cdd8ef;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(28, 45, 82, 0.24);
}

.cookie-notice-copy {
    display: grid;
    gap: 5px;
}

.cookie-notice-copy strong {
    color: #142d70;
    font-size: 13px;
}

.cookie-notice-copy p {
    margin: 0;
    color: #5d6880;
    font-size: 11px;
    line-height: 1.55;
}

.cookie-notice-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-notice-actions a {
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
}

.cookie-notice-actions button,
.legal-print-button {
    min-height: 38px;
    padding: 0 15px;
    border: 0;
    border-radius: 11px;
    color: #fff;
    background: var(--color-primary);
    font: inherit;
    font-size: 11px;
    font-weight: 850;
    cursor: pointer;
}

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

/* Legal document pages */
.legal-page-body {
    min-height: 100vh;
    color: var(--color-text);
    background: #f5f7fb;
}

.legal-site-header {
    position: sticky;
    top: 0;
}

.legal-page-main {
    padding: 34px 0 72px;
}

.legal-page-container {
    max-width: 980px;
}

.legal-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--color-muted);
    font-size: 11px;
}

.legal-breadcrumbs a {
    color: var(--color-primary);
    font-weight: 750;
}

.legal-document-card,
.legal-navigation-card {
    border: 1px solid #dce3ef;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(28, 44, 79, 0.08);
}

.legal-document-header {
    padding: clamp(28px, 5vw, 54px);
    border-bottom: 1px solid #e4e9f2;
    background:
        radial-gradient(circle at 88% 10%, rgba(39, 216, 38, 0.12), transparent 30%),
        linear-gradient(135deg, #fff, #f7fff5);
}

.legal-document-header h1 {
    max-width: 800px;
    margin: 10px 0 13px;
    color: #10285f;
    font-size: clamp(30px, 5vw, 48px);
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.legal-document-header > p {
    max-width: 760px;
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.7;
}

.legal-document-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 25px;
    color: #6e7890;
    font-size: 11px;
}

.legal-document-content {
    display: grid;
    gap: 0;
    padding: 0 clamp(28px, 5vw, 54px) 18px;
}

.legal-section {
    padding: 31px 0;
    border-bottom: 1px solid #e8ecf3;
}

.legal-section:last-child {
    border-bottom: 0;
}

.legal-section h2 {
    margin: 0 0 15px;
    color: #172d61;
    font-size: 21px;
    letter-spacing: -0.025em;
}

.legal-section p,
.legal-section li {
    color: #4f5d75;
    font-size: 13px;
    line-height: 1.75;
}

.legal-section p {
    margin: 0 0 12px;
}

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

.legal-section ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding-left: 20px;
}

.legal-section li::marker {
    color: var(--color-primary);
}

.legal-notice {
    margin-top: 18px;
    padding: 15px 17px;
    border: 1px solid #f0d6aa;
    border-radius: 13px;
    color: #704a0a;
    background: #fff8ea;
    font-size: 12px;
    line-height: 1.6;
}

.legal-table-wrap {
    overflow-x: auto;
    margin-top: 18px;
    border: 1px solid #dce3ef;
    border-radius: 14px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.legal-table th,
.legal-table td {
    padding: 13px 15px;
    border-bottom: 1px solid #e6ebf3;
    text-align: left;
}

.legal-table th {
    color: #18316e;
    background: #f2f5fc;
    font-weight: 850;
}

.legal-table tr:last-child td {
    border-bottom: 0;
}

.legal-navigation-card {
    margin-top: 20px;
    padding: 24px;
}

.legal-navigation-card h2 {
    margin: 0 0 16px;
    color: #172d61;
    font-size: 17px;
}

.legal-navigation-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.legal-navigation-links a {
    padding: 12px 13px;
    border: 1px solid #e0e6f0;
    border-radius: 11px;
    color: #4d5c75;
    background: #fafbfe;
    font-size: 11px;
    font-weight: 750;
}

.legal-navigation-links a[aria-current="page"],
.legal-navigation-links a:hover {
    border-color: #b8c8f0;
    color: var(--color-primary);
    background: #f1f5ff;
}

.site-footer-legal {
    padding-top: 0;
}

@media (max-width: 760px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand-column {
        grid-column: auto;
    }

    .footer-documents {
        grid-template-columns: 1fr;
    }

    .footer-bottom-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .cookie-notice {
        right: 12px;
        bottom: 12px;
        width: calc(100vw - 24px);
        grid-template-columns: 1fr;
    }

    .cookie-notice-actions {
        justify-content: space-between;
    }

    .legal-navigation-links {
        grid-template-columns: 1fr;
    }
}

@media print {
    .legal-site-header,
    .legal-navigation-card,
    .site-footer,
    .legal-print-button {
        display: none !important;
    }

    .legal-page-main {
        padding: 0;
    }

    .legal-document-card {
        border: 0;
        box-shadow: none;
    }

    .legal-document-header,
    .legal-document-content {
        padding-right: 0;
        padding-left: 0;
    }
}
