:root {
    --bg: #eef7ff;
    --bg-soft: #f8fbff;
    --surface: rgba(255, 255, 255, 0.86);
    --surface-strong: rgba(255, 255, 255, 0.94);
    --surface-blue: linear-gradient(135deg, rgba(123, 190, 255, 0.22), rgba(255, 255, 255, 0.82));
    --surface-deep: linear-gradient(135deg, rgba(32, 116, 198, 0.95), rgba(110, 194, 255, 0.82));
    --border: rgba(116, 170, 229, 0.24);
    --border-strong: rgba(79, 146, 223, 0.34);
    --text: #17304d;
    --text-muted: #5d7694;
    --text-soft: #7f98b5;
    --accent: #3da5ff;
    --accent-strong: #157be0;
    --accent-pale: #dff0ff;
    --accent-glow: rgba(61, 165, 255, 0.22);
    --success: #2fb28c;
    --warning: #ff9d45;
    --danger: #ff6868;
    --shadow: 0 24px 60px rgba(60, 112, 177, 0.16);
    --shadow-soft: 0 12px 36px rgba(60, 112, 177, 0.1);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: 1360px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 15%, rgba(123, 198, 255, 0.48), transparent 30%),
        radial-gradient(circle at 85% 12%, rgba(198, 231, 255, 0.74), transparent 28%),
        radial-gradient(circle at 50% 100%, rgba(145, 200, 255, 0.24), transparent 38%),
        linear-gradient(180deg, #e7f4ff 0%, #f8fbff 44%, #edf7ff 100%);
    color: var(--text);
    font: 500 16px/1.55 "Manrope", sans-serif;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

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

[hidden] {
    display: none !important;
}

.site-shell {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: visible;
}

.ambient {
    position: fixed;
    inset: auto;
    border-radius: 999px;
    filter: blur(18px);
    pointer-events: none;
    z-index: 0;
    animation: floatBlob 14s ease-in-out infinite;
}

.ambient--one {
    top: 88px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: rgba(78, 184, 255, 0.24);
}

.ambient--two {
    top: 340px;
    right: -100px;
    width: 380px;
    height: 380px;
    background: rgba(173, 224, 255, 0.45);
    animation-delay: -4s;
}

.ambient--three {
    bottom: -120px;
    left: 18%;
    width: 440px;
    height: 440px;
    background: rgba(132, 182, 255, 0.14);
    animation-delay: -8s;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 18px 24px;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.brand {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 8px 0;
    color: var(--text);
}

.brand__logo {
    display: block;
    width: clamp(126px, 13vw, 178px);
    height: auto;
    max-height: 32px;
    object-fit: contain;
}

.brand__mark {
    position: relative;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--surface-deep);
    box-shadow: 0 18px 38px rgba(39, 122, 196, 0.26);
    color: #fff;
    overflow: hidden;
}

.brand__letter {
    position: relative;
    z-index: 2;
    font: 700 22px/1 "Unbounded", sans-serif;
}

.brand__spark {
    position: absolute;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.9);
    clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 61%, 50% 100%, 38% 61%, 0 50%, 38% 38%);
}

.brand__spark--one {
    top: 6px;
    left: 6px;
    opacity: 0.62;
}

.brand__spark--two {
    right: 7px;
    bottom: 7px;
    width: 12px;
    height: 12px;
    opacity: 0.84;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand__text strong {
    font: 700 20px/1.1 "Unbounded", sans-serif;
}

.brand__text span {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.topnav,
.topbar__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.topnav {
    justify-content: flex-start;
    justify-self: start;
    width: fit-content;
    max-width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: fit-content;
    max-width: 100%;
}

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

.topbar__actions {
    justify-self: end;
}

.topbar__actions--guest:empty {
    display: none;
}

.topbar__actions--user {
    display: grid;
    grid-template-columns: auto minmax(0, 210px) auto;
    gap: 8px;
}

.topbar__actions--user .action-chip--profile {
    width: 100%;
    justify-content: flex-start;
}

.nav-link,
.action-chip,
.chip,
.tag,
.small-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 15px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.6);
    color: var(--text-muted);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.nav-link:hover,
.action-chip:hover,
.chip:hover,
.small-button:hover {
    transform: translateY(-1px);
    border-color: var(--border-strong);
    color: var(--accent-strong);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-soft);
}

.nav-link.is-active,
.action-chip.is-active,
.chip.is-active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #38a7ff, #7fc8ff);
    box-shadow: 0 14px 32px rgba(56, 167, 255, 0.26);
}

.nav-link__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.nav-link__icon img {
    display: block;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.action-chip--primary,
.button,
.button--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, #2f9fff, #88d2ff);
    color: #fff;
    box-shadow: 0 18px 34px rgba(49, 157, 245, 0.28);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.button:hover,
.button--primary:hover,
.action-chip--primary:hover {
    transform: translateY(-1px);
    filter: saturate(1.05);
    box-shadow: 0 20px 38px rgba(49, 157, 245, 0.34);
}

.button--secondary {
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    box-shadow: none;
    border: 1px solid var(--border);
}

.button--soft {
    background: rgba(61, 165, 255, 0.12);
    color: var(--accent-strong);
    box-shadow: none;
}

.button--danger {
    background: linear-gradient(135deg, #ff7b7b, #ff9e9e);
}

.button--small,
.small-button {
    min-height: 40px;
    padding: 0 16px;
    border-radius: 14px;
}

.app {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: 12px 24px 120px;
}

.screen-loader {
    padding: 80px 0;
    display: grid;
    place-items: center;
}

.loader-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    width: min(100%, 560px);
    padding: 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: var(--surface);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.loader-card__shine {
    position: absolute;
    inset: -40%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    transform: translateX(-100%);
    animation: shimmer 2.4s linear infinite;
}

.loader-card__mark {
    display: grid;
    place-items: center;
    width: 96px;
    height: 96px;
    border-radius: 28px;
    background: var(--surface-deep);
    font: 700 34px/1 "Unbounded", sans-serif;
    color: #fff;
}

.loader-card__mark--logo {
    width: min(190px, 100%);
    height: 58px;
    padding: 0 16px;
    border-radius: 20px;
}

.loader-card__logo {
    display: block;
    width: 100%;
    height: auto;
    max-height: 32px;
    object-fit: contain;
}

.loader-card__text strong {
    display: block;
    margin-bottom: 8px;
    font: 700 22px/1.2 "Unbounded", sans-serif;
}

.loader-card__text span {
    color: var(--text-muted);
}

.page {
    display: grid;
    gap: 28px;
    animation: pageReveal 0.35s ease;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    gap: 22px;
    align-items: stretch;
}

.hero__panel,
.glass-card,
.panel,
.metric-card,
.service-card,
.review-card,
.info-card,
.feed-card,
.list-card,
.empty-card,
.feature-card,
.faq-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: var(--surface);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
}

.hero__panel {
    padding: 38px;
    min-height: 420px;
}

.hero__panel--accent {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.88), transparent 32%),
        radial-gradient(circle at bottom right, rgba(136, 209, 255, 0.4), transparent 38%),
        linear-gradient(145deg, rgba(242, 250, 255, 0.98), rgba(218, 238, 255, 0.88));
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(62, 160, 244, 0.2);
    background: rgba(255, 255, 255, 0.74);
    color: var(--accent-strong);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, #38a7ff, #9ad8ff);
    box-shadow: 0 0 0 6px rgba(56, 167, 255, 0.12);
}

.eyebrow--icon::before {
    display: none;
}

.eyebrow__icon,
.title-with-icon__icon,
.metric-card__icon,
.feed-item__icon,
.landing-pill__icon,
.landing-badge__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid rgba(92, 165, 238, 0.24);
    background: linear-gradient(145deg, rgba(20, 156, 255, 0.22), rgba(103, 212, 255, 0.1));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 10px 18px rgba(10, 28, 52, 0.12);
}

.eyebrow__icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
}

.title-with-icon {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.title-with-icon > span:last-child {
    min-width: 0;
}

.title-with-icon--compact {
    gap: 12px;
}

.title-with-icon__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
}

.title-with-icon__icon--sm {
    width: 32px;
    height: 32px;
    border-radius: 12px;
}

.eyebrow__icon img,
.title-with-icon__icon img,
.metric-card__icon img,
.feed-item__icon img,
.landing-pill__icon img,
.landing-badge__icon img {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
}

.hero h1,
.section-title,
.modal-title,
.block-title {
    margin: 0;
    color: var(--text);
    font-family: "Unbounded", sans-serif;
    font-weight: 700;
    line-height: 1.08;
}

.hero h1 {
    max-width: 12ch;
    font-size: clamp(38px, 6vw, 72px);
}

.hero p,
.section-subtitle,
.muted,
.text-muted {
    color: var(--text-muted);
}

.hero p {
    max-width: 580px;
    margin: 20px 0 0;
    font-size: 18px;
}

.hero__actions,
.inline-actions,
.toolbar,
.filters,
.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__actions {
    margin-top: 28px;
}

.hero__visual {
    display: grid;
    gap: 18px;
    align-content: space-between;
}

.promo-showcase {
    padding: 28px;
    background:
        radial-gradient(circle at 70% 10%, rgba(255, 255, 255, 0.84), transparent 28%),
        linear-gradient(180deg, rgba(12, 103, 190, 0.96), rgba(113, 194, 255, 0.84));
    color: #fff;
    min-height: 240px;
}

.promo-showcase__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.promo-showcase__title {
    font-family: "Unbounded", sans-serif;
    font-size: 26px;
    line-height: 1.2;
}

.promo-showcase__grid,
.stats-grid,
.metrics-grid,
.service-grid,
.reviews-grid,
.cards-grid,
.form-grid,
.bots-grid,
.ref-grid,
.feed-grid,
.feature-grid {
    display: grid;
    gap: 16px;
}

.promo-showcase__grid {
    margin-top: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-stat {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mini-stat__value {
    display: block;
    font-size: 28px;
    font-weight: 800;
}

.mini-stat__label {
    margin-top: 6px;
    display: block;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.section {
    display: grid;
    gap: 20px;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.section-title {
    font-size: clamp(24px, 3vw, 34px);
}

.section-subtitle {
    max-width: 720px;
    margin-top: 8px;
}

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

.metric-card {
    padding: 22px;
    min-height: 156px;
}

.metric-card__label {
    display: block;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-soft);
}

.metric-card__label--icon {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.metric-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
}

.metric-card__value {
    display: block;
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.metric-card__hint {
    display: block;
    margin-top: 10px;
    color: var(--text-muted);
}

.panel {
    padding: 24px;
}

.panel--highlight {
    background: var(--surface-blue);
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 20px;
}

.three-column {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

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

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

.reviews-grid,
.bots-grid,
.ref-grid,
.feed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.review-card,
.info-card,
.feed-card,
.list-card,
.feature-card {
    padding: 22px;
}

.service-card::after,
.review-card::after,
.info-card::after,
.feed-card::after,
.feature-card::after {
    content: "";
    position: absolute;
    inset: auto -60px -60px auto;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(95, 185, 255, 0.14), transparent 70%);
    pointer-events: none;
}

.card-topline,
.service-card__meta,
.review-card__meta,
.feed-card__meta,
.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.service-card__meta {
    margin-bottom: 14px;
}

.tag {
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    background: rgba(61, 165, 255, 0.12);
    color: var(--accent-strong);
    border-color: rgba(61, 165, 255, 0.16);
}

.tag--success {
    background: rgba(47, 178, 140, 0.12);
    color: var(--success);
}

.tag--warning {
    background: rgba(255, 157, 69, 0.16);
    color: #d67820;
}

.tag--danger {
    background: rgba(255, 104, 104, 0.13);
    color: #df4e4e;
}

.service-card__title,
.review-card__title,
.feature-card__title,
.list-card__title {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.service-card__title {
    margin-bottom: 12px;
}

.service-card__description,
.review-card__text,
.feature-card__text,
.list-card__text {
    color: var(--text-muted);
}

.service-card__bottom,
.order-line,
.split-line,
.form-row,
.align-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.service-card__bottom {
    margin-top: 22px;
}

.price-pill {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.price-pill strong {
    font-size: 24px;
    font-weight: 800;
}

.price-pill span {
    color: var(--text-soft);
    font-size: 13px;
}

.service-card--catalog {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 365px;
    padding: 24px;
}

.service-card--catalog .service-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.service-card--catalog .service-card__identity {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
}

.service-card__platform,
.service-card__type,
.service-card__discount,
.service-card__execution-mark,
.service-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(74, 178, 255, 0.16);
    border-radius: 999px;
    background: rgba(39, 155, 255, 0.12);
    color: #8fd4ff;
    font-size: 13px;
    font-weight: 800;
}

.service-card__platform {
    gap: 8px;
}

.service-card__platform-logo img {
    width: 18px;
    height: 18px;
}

.service-card__type {
    background: rgba(255, 255, 255, 0.04);
    color: #cfe0f7;
}

.service-card__discount {
    background: rgba(47, 178, 140, 0.13);
    color: #72e3c1;
    border-color: rgba(47, 178, 140, 0.22);
}

.service-card__discount--free {
    background: rgba(47, 178, 140, 0.14);
    color: #7ff2ca;
    border-color: rgba(47, 178, 140, 0.24);
}

.service-card__discount--warning {
    background: rgba(255, 180, 72, 0.14);
    color: #ffd58c;
    border-color: rgba(255, 180, 72, 0.22);
}

.service-card__execution-mark {
    gap: 3px;
    min-width: 42px;
    padding: 0 10px;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0;
}

.service-card__execution-icons {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    letter-spacing: 0;
    line-height: 1;
}

.service-card__execution-icon {
    display: block;
    width: 13px;
    height: 13px;
    flex: 0 0 auto;
    background: currentColor;
    -webkit-mask: url("/иконки/Calendar/Timer.svg") center / contain no-repeat;
    mask: url("/иконки/Calendar/Timer.svg") center / contain no-repeat;
}

.service-card__execution-mark--fast {
    background: rgba(47, 178, 140, 0.15);
    color: #7ff2ca;
    border-color: rgba(47, 178, 140, 0.3);
}

.service-card__execution-mark--medium {
    background: rgba(255, 180, 72, 0.15);
    color: #ffd36d;
    border-color: rgba(255, 180, 72, 0.32);
}

.service-card__execution-mark--slow {
    background: rgba(255, 104, 104, 0.14);
    color: #ff9a9a;
    border-color: rgba(255, 104, 104, 0.32);
}

.service-card__execution-mark--inline {
    flex: 0 0 auto;
    min-width: 0;
    min-height: 24px;
    padding: 0 8px;
    font-size: 11px;
}

.service-card__execution-mark--inline .service-card__execution-icon {
    width: 11px;
    height: 11px;
}

.service-card__favorite {
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(108, 151, 209, 0.18);
    border-radius: 15px;
    background: rgba(12, 18, 29, 0.72);
    color: #9ddcff;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.service-card__favorite:hover,
.service-card__favorite.is-active {
    transform: translateY(-1px);
    border-color: rgba(98, 199, 255, 0.42);
    background: linear-gradient(135deg, rgba(27, 160, 255, 0.22), rgba(94, 209, 255, 0.12));
}

.service-card__favorite-icon {
    width: 20px;
    height: 20px;
}

.service-card--catalog .service-card__title {
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    color: #f5f9ff;
    font-size: 22px;
    line-height: 1.18;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.service-card__description-list {
    display: grid;
    gap: 4px;
    min-height: 96px;
    margin: 0;
    padding: 0;
    color: var(--text-muted);
    line-height: 1.38;
    list-style: none;
}

.service-card__description-list li {
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr);
    gap: 2px;
    min-width: 0;
}

.service-card__description-list li::before {
    content: "-";
    color: #8fd4ff;
    font-weight: 900;
}

.service-card__description-list li span {
    overflow: hidden;
    min-width: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.service-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-card__tag {
    min-height: 30px;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.035);
    color: #b9cce5;
    font-size: 12px;
}

.service-card__specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.service-card__spec {
    display: grid;
    gap: 5px;
    min-width: 0;
    padding: 13px;
    border: 1px solid rgba(108, 151, 209, 0.16);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0%, rgba(71, 177, 255, 0.12), transparent 56%),
        rgba(8, 13, 22, 0.34);
}

.service-card__spec small {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.service-card__spec strong {
    overflow: hidden;
    color: #f5f9ff;
    font-size: 16px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.service-card__spec--execution {
    grid-column: 1 / -1;
}

.service-card__spec--execution strong {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: visible;
    white-space: normal;
}

.service-card__spec--execution strong > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.service-card--catalog .service-card__bottom {
    align-items: flex-end;
    margin-top: auto;
}

.service-card--catalog .card-actions {
    flex-wrap: nowrap;
}

.toolbar {
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.62);
}

.toolbar--stack {
    display: grid;
    gap: 14px;
}

.input,
.select,
.textarea,
.field {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid rgba(97, 158, 218, 0.22);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--text);
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.textarea {
    min-height: 140px;
    padding: 16px 18px;
    resize: vertical;
}

.input:focus,
.select:focus,
.textarea:focus {
    border-color: rgba(61, 165, 255, 0.55);
    box-shadow: 0 0 0 4px rgba(61, 165, 255, 0.12);
    background: rgba(255, 255, 255, 0.96);
}

.field-label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
}

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

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

.form-card {
    padding: 24px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.dashboard-overview {
    align-items: start;
}

.dashboard-overview__main {
    display: grid;
    gap: 20px;
    min-width: 0;
}

.dashboard-profile,
.loyalty-panel {
    align-self: stretch;
}

.dashboard-profile__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.dashboard-profile__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dashboard-profile__chip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    opacity: 0.9;
}

.dashboard-profile__chip-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.dashboard-profile__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.dashboard-profile__actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.dashboard-profile__actions .button {
    width: 100%;
}

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

.quick-action-tile {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 32px;
    align-items: center;
    gap: 14px;
    min-width: 0;
    min-height: 98px;
    padding: 16px;
    overflow: hidden;
    border: 1px solid rgba(106, 159, 218, 0.16);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 100%, rgba(45, 165, 255, 0.12), transparent 46%),
        rgba(14, 20, 32, 0.72);
    color: var(--text);
    text-align: left;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.quick-action-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(111, 209, 255, 0.13), transparent 42%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.quick-action-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(86, 189, 255, 0.34);
    background:
        radial-gradient(circle at 100% 100%, rgba(45, 165, 255, 0.18), transparent 48%),
        rgba(17, 26, 42, 0.88);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.quick-action-tile:hover::after {
    opacity: 1;
}

.quick-action-tile__icon {
    width: 42px;
    height: 42px;
    border-radius: 15px;
}

.quick-action-tile__icon img {
    width: 20px;
    height: 20px;
}

.quick-action-tile__body {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 5px;
    min-width: 0;
}

.quick-action-tile__body strong {
    color: #f5f9ff;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.15;
}

.quick-action-tile__body span {
    color: #9eb1cd;
    font-size: 13px;
    line-height: 1.35;
}

.quick-action-tile__arrow {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: rgba(58, 173, 255, 0.1);
    color: #78d4ff;
    font-size: 18px;
    font-weight: 900;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.quick-action-tile:hover .quick-action-tile__arrow {
    transform: translateX(2px);
    background: rgba(64, 184, 255, 0.2);
    color: #ffffff;
}

.quick-action-tile:focus-visible {
    outline: 2px solid rgba(112, 212, 255, 0.85);
    outline-offset: 3px;
}

.dashboard-profile__item,
.loyalty-stat,
.loyalty-level {
    padding: 18px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.68);
}

.dashboard-profile__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.dashboard-profile__item-body {
    min-width: 0;
    flex: 1 1 auto;
}

.dashboard-profile__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
    border: 1px solid rgba(79, 157, 233, 0.22);
    background: linear-gradient(145deg, rgba(20, 156, 255, 0.2), rgba(112, 212, 255, 0.08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.dashboard-profile__icon img {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
    opacity: 0.96;
}

.dashboard-profile__label,
.loyalty-stat__label,
.loyalty-progress__label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 700;
}

.dashboard-profile__item strong,
.loyalty-stat__value {
    display: block;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.loyalty-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.loyalty-progress {
    margin-top: 18px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.68);
}

.loyalty-progress__top,
.loyalty-level__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.loyalty-progress__track {
    position: relative;
    margin-top: 12px;
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(61, 165, 255, 0.12);
}

.loyalty-progress__bar {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(135deg, #2f9fff, #88d2ff);
    box-shadow: 0 10px 22px rgba(49, 157, 245, 0.22);
}

.loyalty-progress__meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
    color: var(--text-soft);
    font-size: 13px;
}

.loyalty-next {
    margin-top: 18px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(61, 165, 255, 0.18);
    background: rgba(61, 165, 255, 0.08);
}

.loyalty-next p {
    margin: 8px 0 0;
    color: var(--text-muted);
}

.loyalty-levels {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.loyalty-level.is-current {
    border-color: rgba(47, 178, 140, 0.24);
    background: rgba(47, 178, 140, 0.08);
}

.loyalty-level__meta {
    display: grid;
    gap: 6px;
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.45;
}

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

.payment-method-option {
    display: grid;
    grid-template-columns: auto 44px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 76px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.62);
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.payment-method-option:hover {
    transform: translateY(-1px);
    border-color: rgba(61, 165, 255, 0.28);
    box-shadow: var(--shadow-soft);
}

.payment-method-option:has(.payment-method-option__input:checked) {
    border-color: rgba(61, 165, 255, 0.42);
    background: rgba(61, 165, 255, 0.08);
    box-shadow: 0 14px 32px rgba(61, 165, 255, 0.14);
}

.payment-method-option__input {
    margin: 0;
    accent-color: var(--accent);
}

.payment-method-option__logo {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(20, 31, 48, 0.94);
    border: 1px solid rgba(108, 151, 209, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.payment-method-option__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.payment-method-option__logo--fallback {
    color: #dceaff;
    font-size: 14px;
    font-weight: 800;
    background: linear-gradient(145deg, rgba(36, 96, 170, 0.3), rgba(22, 38, 68, 0.92));
}

.payment-method-option__name {
    min-width: 0;
    font-weight: 700;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.form-note,
.empty-note,
.caption {
    color: var(--text-soft);
    font-size: 14px;
}

.stack {
    display: grid;
    gap: 14px;
}

.list {
    display: grid;
    gap: 14px;
}

.list-card {
    padding: 20px 22px;
}

.list-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.list-card__meta {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
}

.list-card__actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.empty-card {
    padding: 34px;
    text-align: center;
}

.empty-card__title {
    margin: 0 0 8px;
    font-family: "Unbounded", sans-serif;
    font-size: 24px;
    justify-content: center;
}

.review-card__rating {
    font-size: 20px;
    letter-spacing: 0.12em;
}

.feed-item,
.support-item,
.faq-entry,
.stat-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.feed-item {
    padding: 14px 0;
    border-bottom: 1px solid rgba(102, 154, 208, 0.14);
}

.feed-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.feed-item__title {
    font-weight: 700;
}

.feed-item__meta {
    color: var(--text-soft);
    font-size: 14px;
}

.feed-item__lead {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.feed-item__lead > div {
    min-width: 0;
}

.feed-item__icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
}

.richtext {
    color: var(--text);
}

.richtext a {
    color: var(--accent-strong);
    text-decoration: underline;
    text-decoration-color: rgba(21, 123, 224, 0.25);
    text-underline-offset: 3px;
}

.richtext p:first-child {
    margin-top: 0;
}

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

.auth-layout {
    display: grid;
    gap: 18px;
}

.auth-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.auth-step {
    padding: 18px;
    border-radius: 20px;
    background: rgba(61, 165, 255, 0.08);
    border: 1px solid rgba(61, 165, 255, 0.14);
}

.auth-step strong {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, #38a7ff, #86d0ff);
    color: #fff;
}

.telegram-widget {
    min-height: 58px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px dashed rgba(73, 142, 220, 0.3);
}

.modal-layer {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: grid;
    place-items: center;
    padding: 28px;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(14, 38, 66, 0.24);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-window {
    position: relative;
    z-index: 1;
    width: min(100%, 720px);
    max-height: min(90vh, 980px);
    padding: 30px;
    overflow: auto;
    border-radius: 30px;
    background: rgba(248, 252, 255, 0.95);
    border: 1px solid rgba(143, 191, 234, 0.3);
    box-shadow: 0 28px 80px rgba(49, 101, 160, 0.26);
}

.modal-window--wide {
    width: min(100%, 980px);
}

.modal-content {
    padding-right: 56px;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.88);
    color: var(--text-muted);
    font-size: 28px;
    line-height: 1;
}

.modal-title {
    font-size: 30px;
}

.modal-subtitle {
    margin-top: 10px;
    color: var(--text-muted);
}

.toast-stack {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    display: grid;
    gap: 10px;
    width: min(360px, calc(100vw - 24px));
}

.toast {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(138, 189, 236, 0.2);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    animation: toastSlide 0.24s ease;
}

.toast--success {
    border-color: rgba(47, 178, 140, 0.2);
}

.toast--error {
    border-color: rgba(255, 104, 104, 0.24);
}

.mobile-nav {
    position: fixed;
    left: 50%;
    bottom: 16px;
    z-index: 21;
    display: none;
    align-items: center;
    gap: 10px;
    transform: translateX(-50%);
    padding: 10px;
    border-radius: 26px;
    border: 1px solid rgba(123, 178, 232, 0.22);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 44px rgba(60, 112, 177, 0.18);
}

.mobile-nav__item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 72px;
    min-height: 62px;
    padding: 10px 12px;
    border-radius: 20px;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 700;
}

.mobile-nav__item.is-active {
    color: #fff;
    background: linear-gradient(135deg, #2f9fff, #87d4ff);
    box-shadow: 0 18px 32px rgba(54, 161, 249, 0.28);
}

.status-dot {
    display: inline-flex;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
}

.status-dot--success {
    background: var(--success);
}

.status-dot--warning {
    background: var(--warning);
}

.status-dot--danger {
    background: var(--danger);
}

@keyframes shimmer {
    to {
        transform: translateX(100%);
    }
}

@keyframes floatBlob {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -18px, 0) scale(1.04);
    }
}

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

@keyframes toastSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1180px) {
    .hero,
    .two-column,
    .three-column,
    .cards-grid,
    .feature-grid,
    .stats-grid,
    .metrics-grid,
    .service-grid,
    .reviews-grid,
    .bots-grid,
    .ref-grid,
    .feed-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .topnav {
        display: none;
    }
}

@media (max-width: 820px) {
    .app,
    .topbar {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero,
    .two-column,
    .three-column,
    .cards-grid,
    .feature-grid,
    .stats-grid,
    .metrics-grid,
    .service-grid,
    .reviews-grid,
    .bots-grid,
    .ref-grid,
    .feed-grid,
    .form-grid,
    .auth-steps,
    .promo-showcase__grid {
        grid-template-columns: 1fr;
    }

    .topbar {
        gap: 12px;
    }

    .brand__text span {
        display: none;
    }

    .topbar__actions {
        margin-left: auto;
    }

    .hero__panel,
    .panel,
    .metric-card,
    .service-card,
    .review-card,
    .feed-card,
    .list-card,
    .feature-card,
    .form-card {
        padding: 20px;
    }

    .hero h1 {
        max-width: none;
        font-size: clamp(34px, 12vw, 48px);
    }

    .modal-layer {
        padding: 12px;
    }

    .modal-window,
    .modal-window--wide {
        width: 100%;
        max-height: 92vh;
        padding: 24px 18px;
        border-radius: 24px;
    }

    .modal-window--service-order {
        align-self: end;
        width: min(100%, calc(100vw - 16px));
        max-height: calc(100dvh - 18px);
        padding: 16px;
        border-radius: 28px 28px 20px 20px;
    }

    .modal-window--service-order .modal-close {
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
        border-radius: 15px;
        font-size: 24px;
    }

    .modal-window--service-order .modal-content {
        padding-right: 0;
    }

    .service-order-modal {
        gap: 14px;
    }

    .service-order-modal__hero {
        gap: 12px;
        padding-right: 46px;
    }

    .service-order-modal__hero .eyebrow {
        max-width: calc(100vw - 112px);
        min-height: 40px;
        padding-inline: 14px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .service-order-modal__title-row {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 10px;
    }

    .service-order-modal__platform {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .service-order-modal__platform img {
        width: 21px;
        height: 21px;
    }

    .service-order-modal__title {
        margin-top: 0;
        font-size: clamp(24px, 7vw, 30px);
        line-height: 1.08;
    }

    .service-order-modal__description {
        gap: 5px;
        font-size: 14px;
        line-height: 1.42;
    }

    .service-order-modal__description li span {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .service-order-modal__metrics {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .service-order-modal__metric {
        grid-template-columns: 34px minmax(0, 1fr);
        min-height: 62px;
        padding: 11px 12px;
        border-radius: 18px;
    }

    .service-order-modal__metric-icon {
        width: 34px;
        height: 34px;
        border-radius: 13px;
    }

    .service-order-modal__metric-icon img {
        width: 18px;
        height: 18px;
    }

    .service-order-modal__metric-copy strong {
        font-size: 15px;
    }

    .service-order-modal__field .field-label {
        margin-bottom: 8px;
    }

    .service-order-modal__field .input,
    .service-order-modal__total {
        min-height: 50px;
        border-radius: 16px;
    }

    .service-order-modal__field .textarea {
        min-height: 104px;
        border-radius: 16px;
    }

    .service-order-modal__amount-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-order-modal__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-order-modal__actions .button {
        width: 100%;
    }

    .mobile-nav {
        display: flex;
    }
}

@media (max-width: 560px) {
    .topbar {
        align-items: flex-start;
    }

    .brand__logo {
        width: 118px;
        max-height: 24px;
    }

    .brand__mark {
        width: 48px;
        height: 48px;
    }

    .brand__text strong {
        font-size: 17px;
    }

    .action-chip,
    .button,
    .button--primary,
    .button--secondary,
    .button--soft,
    .nav-link {
        min-height: 48px;
    }

    .mobile-nav {
        width: calc(100% - 18px);
        justify-content: space-between;
        gap: 6px;
        padding: 8px;
    }

    .mobile-nav__item {
        min-width: 0;
        flex: 1 1 auto;
        font-size: 11px;
    }

    .loader-card {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 14px;
        padding: 22px;
    }

    .loader-card__mark--logo {
        width: min(210px, 100%);
        height: 50px;
    }

    .toast-stack {
        left: 12px;
        right: 12px;
        bottom: 92px;
        width: auto;
    }
}

/* Reference-style home page override */

:root {
    --bg: #060a13;
    --bg-soft: #0b1220;
    --surface: rgba(14, 19, 30, 0.88);
    --surface-strong: rgba(16, 21, 33, 0.96);
    --surface-blue: linear-gradient(145deg, rgba(11, 16, 27, 0.98), rgba(12, 22, 39, 0.96));
    --surface-deep: linear-gradient(135deg, #0b1220, #122744);
    --border: rgba(118, 162, 214, 0.16);
    --border-strong: rgba(83, 191, 255, 0.34);
    --text: #f4f8ff;
    --text-muted: #9caec6;
    --text-soft: #7e91ab;
    --accent: #62c8ff;
    --accent-strong: #2dafff;
    --accent-pale: rgba(98, 200, 255, 0.14);
    --accent-glow: rgba(52, 170, 255, 0.18);
    --shadow: 0 26px 80px rgba(2, 8, 20, 0.45);
    --shadow-soft: 0 16px 48px rgba(2, 8, 20, 0.3);
    --container: 1280px;
}

body {
    background:
        radial-gradient(circle at 28% 10%, rgba(44, 139, 221, 0.16), transparent 22%),
        radial-gradient(circle at 62% 18%, rgba(75, 170, 255, 0.12), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(36, 126, 215, 0.12), transparent 28%),
        linear-gradient(180deg, #070c15 0%, #050913 48%, #040812 100%);
    color: var(--text);
}

.ambient--one { background: rgba(67, 168, 255, 0.14); }
.ambient--two { background: rgba(75, 131, 255, 0.1); }
.ambient--three { background: rgba(27, 96, 180, 0.1); }

.topbar {
    max-width: var(--container);
    padding: 14px 24px 0;
}

.topnav,
.topbar__actions {
    padding: 6px;
    border-radius: 22px;
    border: 1px solid rgba(122, 155, 196, 0.14);
    background: rgba(14, 19, 30, 0.8);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
}

.brand__mark {
    background: linear-gradient(145deg, #0d1525, #183559);
    box-shadow: 0 16px 30px rgba(14, 28, 49, 0.28);
}

.brand__text strong { color: #f6fbff; }
.brand__text span { color: #6dc8ff; }

.nav-link,
.action-chip,
.chip,
.small-button {
    background: rgba(18, 24, 37, 0.96);
    color: #d6e5f7;
    border-color: rgba(101, 128, 165, 0.18);
}

.nav-link:hover,
.action-chip:hover,
.chip:hover,
.small-button:hover {
    background: rgba(22, 29, 43, 1);
    color: #fff;
    border-color: rgba(86, 189, 255, 0.28);
}

.nav-link.is-active,
.action-chip.is-active,
.chip.is-active,
.action-chip--primary,
.button,
.button--primary {
    background: linear-gradient(135deg, #149cff, #70d4ff);
    color: #07101d;
    box-shadow: 0 16px 32px rgba(25, 154, 255, 0.24);
}

.button--secondary {
    background: rgba(18, 24, 36, 0.94);
    color: #f1f6ff;
    border: 1px solid rgba(103, 141, 190, 0.18);
}

.button--soft {
    background: rgba(55, 165, 255, 0.12);
    color: #8fd8ff;
}

.tag {
    background: rgba(39, 155, 255, 0.12);
    border-color: rgba(74, 178, 255, 0.16);
    color: #8fd4ff;
}

.panel,
.hero__panel,
.glass-card,
.metric-card,
.service-card,
.review-card,
.info-card,
.feed-card,
.list-card,
.feature-card,
.faq-card,
.empty-card,
.form-card,
.toolbar,
.loader-card {
    background: var(--surface);
    border-color: var(--border);
    box-shadow: var(--shadow-soft);
}

.panel--highlight,
.hero__panel--accent {
    background:
        radial-gradient(circle at top center, rgba(63, 135, 255, 0.12), transparent 34%),
        radial-gradient(circle at bottom center, rgba(62, 200, 255, 0.08), transparent 38%),
        linear-gradient(145deg, rgba(12, 18, 28, 0.98), rgba(15, 25, 41, 0.96));
}

.section-subtitle,
.hero p,
.muted,
.text-muted,
.caption,
.form-note,
.empty-note,
.list-card__meta,
.feed-item__meta,
.metric-card__hint,
.metric-card__label,
.service-card__description,
.service-card__description-list,
.feature-card__text,
.list-card__text,
.price-pill span {
    color: var(--text-muted);
}

.input,
.select,
.textarea,
.field {
    background: rgba(8, 13, 22, 0.96);
    color: #f5f9ff;
    border-color: rgba(110, 146, 191, 0.18);
}

.input:focus,
.select:focus,
.textarea:focus {
    background: rgba(9, 15, 26, 1);
    box-shadow: 0 0 0 4px rgba(47, 168, 255, 0.12);
}

.modal-backdrop { background: rgba(3, 7, 15, 0.64); }

.modal-window {
    background: rgba(9, 14, 24, 0.98);
    border-color: rgba(107, 145, 188, 0.16);
    color: var(--text);
}

.modal-close {
    background: rgba(18, 24, 38, 0.92);
    color: #d6e5fb;
}

.modal-window--service-order {
    width: min(100%, 860px);
}

.modal-window--service-order .modal-content {
    padding-right: 0;
}

.service-order-modal {
    display: grid;
    gap: 20px;
}

.service-order-modal__hero {
    display: grid;
    gap: 14px;
    padding-right: 58px;
}

.service-order-modal__title-row {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
}

.service-order-modal__platform {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: rgba(39, 155, 255, 0.16);
    border: 1px solid rgba(74, 178, 255, 0.2);
}

.service-order-modal__platform img {
    width: 24px;
    height: 24px;
}

.service-order-modal__title {
    margin-top: 4px;
    overflow-wrap: anywhere;
}

.service-order-modal__description {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    color: var(--text-muted);
    line-height: 1.5;
    list-style: none;
}

.service-order-modal__description li {
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr);
    gap: 4px;
}

.service-order-modal__description li::before {
    content: "-";
    color: #8fd4ff;
    font-weight: 900;
}

.service-order-modal__metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.service-order-modal__metric,
.service-order-modal__total {
    border: 1px solid rgba(108, 151, 209, 0.16);
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0%, rgba(73, 185, 255, 0.12), transparent 40%),
        linear-gradient(145deg, rgba(18, 24, 36, 0.94), rgba(12, 18, 29, 0.96));
}

.service-order-modal__metric {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-width: 0;
    min-height: 84px;
    padding: 14px;
}

.service-order-modal__metric-icon {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: rgba(39, 155, 255, 0.16);
    border: 1px solid rgba(74, 178, 255, 0.2);
    box-sizing: border-box;
    line-height: 0;
}

.service-order-modal__metric-icon img {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.service-order-modal__metric-copy {
    min-width: 0;
}

.service-order-modal__metric-copy > span {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.service-order-modal__metric-copy strong {
    display: block;
    margin-top: 4px;
    color: #f5f9ff;
    font-size: 16px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

strong.service-order-modal__metric-value-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.service-order-modal__total {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 18px;
}

.service-order-modal__total strong {
    color: #f5f9ff;
    font-size: 18px;
    font-weight: 900;
}

.service-order-modal__actions {
    justify-content: flex-start;
}

.service-order-modal__guest {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 18px;
    border: 1px solid rgba(92, 194, 255, 0.2);
    border-radius: 22px;
    background:
        radial-gradient(circle at 0% 0%, rgba(67, 183, 255, 0.14), transparent 38%),
        rgba(13, 22, 35, 0.86);
}

.service-order-modal__guest-icon {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: rgba(43, 167, 255, 0.16);
    border: 1px solid rgba(99, 199, 255, 0.24);
}

.service-order-modal__guest-icon img {
    width: 22px;
    height: 22px;
}

.service-order-modal__guest strong {
    display: block;
    color: #f5f9ff;
    font-size: 17px;
    font-weight: 900;
}

.service-order-modal__guest p {
    margin: 6px 0 0;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 700;
}

.service-order-modal__guest .service-order-modal__actions {
    grid-column: 1 / -1;
}

@media (max-width: 820px) {
    .modal-window--service-order {
        align-self: end;
        width: min(100%, calc(100vw - 16px));
        max-height: calc(100dvh - 18px);
        padding: 16px;
        border-radius: 28px 28px 20px 20px;
    }

    .modal-window--service-order .modal-close {
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
        border-radius: 15px;
        font-size: 24px;
    }

    .modal-window--service-order .modal-content {
        padding-right: 0;
    }

    .service-order-modal {
        gap: 14px;
    }

    .service-order-modal__hero {
        gap: 12px;
        padding-right: 46px;
    }

    .service-order-modal__hero .eyebrow {
        max-width: calc(100vw - 112px);
        min-height: 40px;
        padding-inline: 14px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .service-order-modal__title-row {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 10px;
    }

    .service-order-modal__platform {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .service-order-modal__platform img {
        width: 21px;
        height: 21px;
    }

    .service-order-modal__title {
        margin-top: 0;
        font-size: clamp(24px, 7vw, 30px);
        line-height: 1.08;
    }

    .service-order-modal__description {
        gap: 5px;
        font-size: 14px;
        line-height: 1.42;
    }

    .service-order-modal__description li span {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .service-order-modal__metrics {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .service-order-modal__metric {
        grid-template-columns: 34px minmax(0, 1fr);
        min-height: 62px;
        padding: 11px 12px;
        border-radius: 18px;
    }

    .service-order-modal__metric-icon {
        width: 34px;
        height: 34px;
        border-radius: 13px;
    }

    .service-order-modal__metric-copy strong {
        font-size: 15px;
    }

    .service-order-modal__field .field-label {
        margin-bottom: 8px;
    }

    .service-order-modal__field .input,
    .service-order-modal__total {
        min-height: 50px;
        border-radius: 16px;
    }

    .service-order-modal__field .textarea {
        min-height: 104px;
        border-radius: 16px;
    }

    .service-order-modal__amount-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-order-modal__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-order-modal__actions .button {
        width: 100%;
    }

    .service-order-modal__guest {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }
}

.page--landing { gap: 56px; }

.landing-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: 40px;
    min-height: 620px;
    padding: 32px 0 10px;
    overflow: visible;
}

.landing-hero__copy {
    min-width: 0;
}

.landing-hero__copy h1 {
    margin: 0;
    max-width: 7ch;
    font: 700 clamp(62px, 7vw, 92px)/0.95 "Unbounded", sans-serif;
    letter-spacing: -0.05em;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.landing-hero__copy p {
    max-width: 540px;
    margin: 22px 0 0;
    font-size: 18px;
    overflow-wrap: anywhere;
}

.landing-pill,
.landing-badge,
.landing-social,
.currency-switch__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(99, 126, 162, 0.18);
    background: rgba(17, 22, 34, 0.88);
    color: #dbe9fc;
    font-size: 13px;
    font-weight: 700;
}

.landing-pill::before,
.landing-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #4cc6ff;
    box-shadow: 0 0 0 6px rgba(76, 198, 255, 0.12);
}

.landing-pill::before,
.landing-badge::before {
    display: none;
}

.landing-pill__icon,
.landing-badge__icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
}

.landing-socials,
.landing-badges,
.currency-switch {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.landing-socials { margin: 14px 0 18px; }
.landing-badges { margin-top: 18px; }

.currency-switch {
    padding: 4px;
    border-radius: 18px;
    background: rgba(12, 17, 28, 0.94);
    border: 1px solid rgba(96, 124, 160, 0.18);
}

.currency-switch__item {
    min-height: 36px;
    padding: 0 14px;
}

.currency-switch__item--active {
    background: linear-gradient(135deg, #149cff, #70d4ff);
    color: #07101d;
}

.landing-hero__device {
    display: flex;
    justify-content: center;
    min-width: 0;
    padding: 34px 28px 46px;
    overflow: visible;
}

.device-mockup {
    position: relative;
    width: min(430px, 100%);
    max-width: calc(100vw - 96px);
    padding: 18px 0 24px;
    transform: rotate(8deg);
    transform-origin: center;
}

.device-mockup__frame {
    padding: 18px;
    border-radius: 40px;
    background: linear-gradient(180deg, rgba(28, 34, 49, 0.98), rgba(15, 20, 31, 0.98));
    border: 1px solid rgba(99, 126, 162, 0.14);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.device-mockup__notch {
    width: 126px;
    height: 22px;
    margin: 0 auto 12px;
    border-radius: 999px;
    background: rgba(7, 10, 17, 0.96);
}

.device-mockup__content {
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(11, 15, 24, 0.98), rgba(8, 12, 21, 1));
    padding: 24px 18px 18px;
}

.device-mockup__brand {
    display: block;
    color: #7d91ac;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.device-mockup__content h3 {
    margin: 8px 0 18px;
    font: 700 36px/1.05 "Unbounded", sans-serif;
    letter-spacing: -0.05em;
}

.device-mockup__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.device-mockup__stats div,
.device-order {
    border-radius: 22px;
    border: 1px solid rgba(99, 126, 162, 0.12);
    background: rgba(18, 23, 34, 0.92);
}

.device-mockup__stats div { padding: 14px; }
.device-mockup__stats strong { display: block; font-size: 26px; }
.device-mockup__stats span { color: #7f93ad; font-size: 12px; }

.device-order {
    padding: 16px;
    margin-bottom: 12px;
}

.device-order__top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.device-order__top span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(45, 175, 255, 0.12);
    color: #8fdcff;
    font-size: 12px;
    font-weight: 700;
}

.device-order small {
    display: block;
    margin-bottom: 10px;
    color: #7e92ad;
}

.device-order__line {
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.device-order__line span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #2ea8ff, #8fe0ff);
}

.device-mockup__nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.device-mockup__nav-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 16px;
    background: rgba(18, 23, 34, 0.94);
    color: #cadbf2;
    font-size: 13px;
    font-weight: 700;
}

.device-mockup__nav-item--active {
    background: linear-gradient(135deg, #149cff, #70d4ff);
    color: #07101d;
}

.landing-section {
    position: relative;
    overflow: hidden;
    padding: 34px 32px;
    border-radius: 40px;
    border: 1px solid rgba(102, 129, 164, 0.14);
    background:
        radial-gradient(circle at top center, rgba(57, 141, 255, 0.08), transparent 32%),
        linear-gradient(180deg, rgba(12, 18, 28, 0.98), rgba(8, 12, 21, 0.98));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.landing-section--platforms::before,
.landing-section--split::before,
.landing-flow::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 10%;
    width: 380px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(55, 162, 255, 0.14), transparent 70%);
    pointer-events: none;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.platform-tile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(103, 127, 158, 0.16);
    background: rgba(16, 21, 32, 0.88);
}

.platform-tile__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(52, 167, 255, 0.26), rgba(134, 216, 255, 0.16));
    color: #dff5ff;
    font-weight: 800;
}

.platform-tile__body { min-width: 0; flex: 1; }
.platform-tile__body h3 { margin: 0 0 4px; font-size: 18px; }
.platform-tile__body span { color: var(--text-soft); font-size: 13px; }

.platform-tile__arrow {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(101, 127, 160, 0.2);
    background: rgba(20, 26, 38, 0.92);
    color: #d8e9ff;
}

.landing-section--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    align-items: center;
    gap: 26px;
}

.landing-order-preview {
    display: flex;
    justify-content: flex-end;
}

.landing-order-preview__card {
    width: min(100%, 360px);
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(102, 130, 165, 0.16);
    background: rgba(13, 18, 29, 0.96);
}

.landing-order-preview__badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(38, 168, 255, 0.12);
    color: #97ddff;
    font-size: 12px;
    font-weight: 700;
}

.landing-order-preview__step {
    position: relative;
    display: grid;
    gap: 4px;
    margin-top: 16px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(101, 127, 159, 0.14);
    background: rgba(18, 23, 34, 0.88);
}

.landing-order-preview__step strong { font-size: 18px; }
.landing-order-preview__step span { color: var(--text-muted); }

.landing-order-preview__step em {
    position: absolute;
    top: 16px;
    right: 16px;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(47, 176, 255, 0.12);
    color: #96dcff;
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
}

.landing-flow {
    display: grid;
    gap: 24px;
    padding: 30px;
}

.landing-flow__head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
}

.landing-flow__head .section-subtitle {
    max-width: 760px;
}

.landing-flow__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.landing-flow__body {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 16px;
    align-items: stretch;
}

.landing-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.landing-step-card,
.landing-free-card {
    min-width: 0;
    border: 1px solid rgba(102, 130, 165, 0.16);
    background: rgba(16, 21, 32, 0.88);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.landing-step-card {
    position: relative;
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 228px;
    padding: 20px;
    border-radius: 24px;
    overflow: hidden;
}

.landing-step-card::after {
    content: "";
    position: absolute;
    inset: auto -36px -46px auto;
    width: 112px;
    height: 112px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(54, 177, 255, 0.12), transparent 70%);
    pointer-events: none;
}

.landing-step-card__number {
    color: rgba(142, 211, 255, 0.72);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
}

.landing-step-card__icon,
.landing-free-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(92, 190, 255, 0.24);
    border-radius: 16px;
    background: rgba(42, 161, 255, 0.13);
}

.landing-step-card__icon img,
.landing-free-card__icon img {
    width: 20px;
    height: 20px;
}

.landing-step-card h3,
.landing-free-card h3 {
    margin: 0;
    color: #f6fbff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.15;
}

.landing-step-card p,
.landing-free-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.48;
}

.landing-free-card {
    display: grid;
    align-content: start;
    gap: 14px;
    min-height: 228px;
    padding: 22px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 10% 0%, rgba(47, 178, 255, 0.18), transparent 42%),
        rgba(16, 21, 32, 0.92);
}

.landing-free-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    min-height: 32px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(47, 176, 255, 0.13);
    color: #94ddff;
    font-size: 12px;
    font-weight: 900;
}

.landing-free-card .button {
    width: 100%;
    margin-top: auto;
}

@media (max-width: 1180px) {
    .landing-hero,
    .landing-section--split {
        grid-template-columns: 1fr;
    }

    .landing-hero__device,
    .landing-order-preview {
        justify-content: center;
    }

    .landing-hero__device {
        padding: 24px 28px 34px;
    }

    .device-mockup {
        width: min(430px, calc(100vw - 96px));
        transform: rotate(5deg);
    }

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

    .landing-flow__head,
    .landing-flow__body {
        grid-template-columns: 1fr;
    }

    .landing-flow__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .topbar {
        padding-top: 10px;
    }

    .topnav,
    .topbar__actions {
        overflow-x: auto;
    }

    .landing-hero__copy h1 {
        max-width: min(100%, 7ch);
        font-size: clamp(40px, 11vw, 64px);
        line-height: 0.96;
    }

    .device-mockup {
        transform: none;
    }

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

    .landing-steps {
        grid-template-columns: 1fr;
    }

    .landing-step-card,
    .landing-free-card {
        min-height: auto;
    }

    .dashboard-overview,
    .two-column {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .landing-hero {
        min-height: auto;
        padding-top: 18px;
    }

    .landing-section {
        padding: 24px 18px;
        border-radius: 28px;
    }

    .platform-grid,
    .device-mockup__stats,
    .device-mockup__nav {
        grid-template-columns: 1fr;
    }

    .landing-flow {
        gap: 18px;
    }

    .landing-flow__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .platform-tile {
        align-items: flex-start;
    }

    .dashboard-profile__grid,
    .loyalty-stats,
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }

    .loyalty-progress__meta {
        flex-wrap: wrap;
    }

    .payment-method-option {
        min-height: auto;
        padding: 14px 16px;
    }
}

.auth-page-shell {
    min-height: calc(100vh - 220px);
    align-items: start;
    justify-items: center;
    padding-top: 20px;
}

.auth-page-card {
    width: min(100%, 420px);
    padding: 18px;
    border-radius: 26px;
    border: 1px solid rgba(123, 158, 203, 0.18);
    background:
        radial-gradient(circle at top center, rgba(109, 182, 255, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(17, 22, 32, 0.98), rgba(10, 15, 25, 0.98));
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.auth-page-card__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
    padding: 6px;
    border-radius: 18px;
    background: rgba(7, 12, 20, 0.92);
    border: 1px solid rgba(105, 145, 196, 0.14);
}

.auth-page-card__tab {
    min-height: 42px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.auth-page-card__tab.is-active {
    background: linear-gradient(135deg, rgba(20, 156, 255, 0.18), rgba(112, 212, 255, 0.08));
    color: #f7fbff;
    box-shadow: inset 0 0 0 1px rgba(109, 199, 255, 0.28);
}

.auth-page-card__title {
    margin: 0 0 10px;
    font-size: clamp(34px, 4vw, 42px);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.auth-page-card__subtitle {
    margin: 0 0 18px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.58;
}

.auth-page-method {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(105, 145, 196, 0.14);
    background: rgba(10, 14, 24, 0.82);
}

.auth-page-method--secondary {
    background: rgba(8, 12, 20, 0.94);
}

.auth-page-method__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.auth-page-method__head .field-label {
    margin: 0;
}

.auth-page-method__badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(20, 156, 255, 0.14);
    border: 1px solid rgba(112, 212, 255, 0.18);
    color: #9edfff;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.auth-page-method__badge--soft {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
}

.auth-page-card__button {
    width: 100%;
    justify-content: center;
}

.auth-page-card__divider {
    position: relative;
    display: grid;
    place-items: center;
    margin: 8px 0;
}

.auth-page-card__divider::before {
    content: "";
    position: absolute;
    inset: 50% 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(109, 145, 196, 0.22), transparent);
}

.auth-page-card__divider span {
    position: relative;
    z-index: 1;
    padding: 0 12px;
    background: rgba(12, 17, 28, 0.98);
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.auth-page-widget {
    display: grid;
    justify-items: center;
    min-height: 58px;
    padding: 14px;
    border-radius: 18px;
    border: 1px dashed rgba(111, 150, 198, 0.18);
    background: rgba(7, 11, 19, 0.82);
    color: var(--text-muted);
}

.auth-page-card__footer {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.auth-inline-link {
    padding: 0;
    border: 0;
    background: transparent;
    color: #86d3ff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.auth-inline-link:hover {
    color: #b8ebff;
}

@media (max-width: 640px) {
    .auth-page-shell {
        min-height: auto;
        padding-top: 0;
    }

    .auth-page-card {
        width: 100%;
        padding: 16px;
        border-radius: 22px;
    }

    .auth-page-method__head {
        align-items: flex-start;
        flex-direction: column;
    }
}

.auth-page-card--classic {
    width: min(100%, 392px);
    padding: 18px 18px 16px;
    border-radius: 24px;
}

.auth-page-card--classic .eyebrow {
    margin-bottom: 12px;
    padding: 8px 12px;
    font-size: 11px;
}

.auth-page-card--classic .auth-page-card__title {
    margin-bottom: 8px;
    font-size: clamp(28px, 3vw, 34px);
}

.auth-page-card--classic .auth-page-card__subtitle {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.5;
}

.auth-form {
    display: grid;
    gap: 14px;
}

.auth-form__grid {
    display: grid;
    gap: 14px;
}

.auth-form__grid--double {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-form__hint {
    display: grid;
    gap: 4px;
    margin-top: -4px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.45;
}

.auth-verification {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(111, 150, 198, 0.18);
    background: rgba(13, 18, 28, 0.92);
}

.auth-verification__box {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 1px solid rgba(150, 180, 220, 0.28);
    background: rgba(255, 255, 255, 0.02);
}

.auth-verification__content {
    display: grid;
    gap: 4px;
}

.auth-verification__content strong {
    font-size: 14px;
}

.auth-verification__content span {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.4;
}

.auth-page-card__button--submit {
    min-height: 50px;
    font-size: 15px;
}

.auth-page-bot-entry {
    display: grid;
    gap: 12px;
    padding: 0;
}

.auth-page-bot-entry__head .field-label {
    margin: 0;
}

.auth-page-card__button--bot {
    width: 100%;
    justify-content: center;
    background: rgba(12, 17, 27, 0.96);
    color: #f4f8ff;
    border: 1px solid rgba(115, 155, 204, 0.18);
    box-shadow: none;
}

.auth-page-card__button--bot:hover {
    box-shadow: 0 16px 32px rgba(25, 154, 255, 0.12);
}

@media (max-width: 640px) {
    .auth-form__grid--double {
        grid-template-columns: 1fr;
    }
}

.payment-side-card {
    align-self: start;
}

.payment-flow-note {
    margin: -2px 0 0;
}

.action-chip--profile {
    min-width: 0;
    max-width: 210px;
    overflow: hidden;
    white-space: nowrap;
}

.action-chip__label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-menu {
    position: relative;
    min-width: 0;
}

.profile-menu__panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 30;
    display: grid;
    gap: 6px;
    width: 218px;
    padding: 8px;
    border: 1px solid rgba(106, 159, 218, 0.18);
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(13, 24, 38, 0.98), rgba(10, 15, 25, 0.96)),
        rgba(9, 15, 25, 0.96);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.38);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.profile-menu.is-open .profile-menu__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.profile-menu__summary {
    display: grid;
    gap: 3px;
    margin-bottom: 4px;
    padding: 10px 12px 12px;
    border-bottom: 1px solid rgba(106, 159, 218, 0.14);
}

.profile-menu__summary span,
.profile-menu__summary small {
    color: #8aa2c2;
    font-size: 12px;
    font-weight: 800;
}

.profile-menu__summary strong,
.profile-menu__summary small {
    min-width: 0;
    overflow-wrap: anywhere;
}

.profile-menu__summary strong {
    color: #f6fbff;
    font-size: 14px;
    line-height: 1.25;
}

.profile-menu__item {
    min-height: 40px;
    padding: 0 12px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: #d6e5f7;
    text-align: left;
    font-weight: 800;
    transition: background 0.18s ease, color 0.18s ease;
}

.profile-menu__item:hover {
    background: rgba(44, 157, 255, 0.12);
    color: #ffffff;
}

.profile-menu__item--danger {
    color: #ffb8b8;
}

.profile-menu__item--danger:hover {
    background: rgba(255, 102, 102, 0.12);
    color: #ffd6d6;
}

.leaderboard-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
}

.leaderboard-item__main {
    min-width: 0;
}

.leaderboard-item__title {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.leaderboard-item__earned {
    white-space: nowrap;
}

.mobile-nav {
    bottom: 14px;
    gap: 8px;
    padding: 10px;
    border-radius: 30px;
    border: 1px solid rgba(107, 156, 214, 0.22);
    background: rgba(8, 14, 24, 0.92);
    box-shadow: 0 18px 42px rgba(3, 10, 20, 0.44);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    overflow: hidden;
}

.mobile-nav__item {
    position: relative;
    gap: 7px;
    min-height: 66px;
    border-radius: 22px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
    color: #8ea7c9;
}

.mobile-nav__icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 12px;
    background: rgba(62, 161, 244, 0.1);
    color: #8fd1ff;
    font-size: 14px;
    line-height: 1;
}

.mobile-nav__icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 12px;
    background: rgba(62, 161, 244, 0.1);
    border: 1px solid rgba(97, 164, 225, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mobile-nav__icon-badge img {
    display: block;
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.mobile-nav__label {
    white-space: nowrap;
}

.mobile-nav__item.is-active {
    transform: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        0 8px 18px rgba(42, 168, 255, 0.2);
}

.mobile-nav__item.is-active .mobile-nav__icon {
    background: rgba(255, 255, 255, 0.78);
    color: #0b1627;
}

.mobile-nav__item.is-active .mobile-nav__icon-badge {
    background: rgba(255, 255, 255, 0.82);
    border-color: transparent;
}

@media (max-width: 640px) {
    .landing-hero__device,
    .landing-order-preview {
        justify-content: center;
    }

    .device-mockup {
        width: min(330px, calc(100vw - 48px));
        padding: 8px 0 12px;
        margin: 0 auto;
    }

    .device-mockup__frame {
        padding: 14px;
        border-radius: 34px;
    }

    .device-mockup__notch {
        width: 112px;
        height: 20px;
        margin-bottom: 10px;
    }

    .device-mockup__content {
        padding: 18px 14px 14px;
        border-radius: 24px;
    }

    .device-mockup__content h3 {
        margin: 8px 0 16px;
        font-size: 30px;
    }

    .device-mockup__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .device-mockup__stats div {
        padding: 10px 10px 12px;
    }

    .device-mockup__stats strong {
        font-size: 20px;
    }

    .device-order {
        padding: 14px;
        margin-bottom: 10px;
    }

    .device-order--extra {
        display: none;
    }

    .device-mockup__nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 14px;
    }

    .device-mockup__nav-item {
        min-height: 42px;
        font-size: 12px;
    }

    .leaderboard-item {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .leaderboard-item__earned {
        justify-self: start;
    }
}

@media (max-width: 560px) {
    .topbar {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 10px;
    }

    .brand {
        min-width: 0;
        justify-self: start;
    }

    .topbar__actions {
        margin-left: 0;
        min-width: 0;
    width: 100%;
}

.topbar__actions--user {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
}

    .topbar__actions--guest {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .topbar__actions--guest .currency-switch {
        width: 92px;
        justify-content: center;
        gap: 6px;
        padding: 4px;
    }

    .topbar__actions--guest .currency-switch__item {
        min-height: 34px;
        padding: 0 10px;
        font-size: 12px;
    }

    .topbar__actions--guest .action-chip,
    .topbar__actions--user .action-chip:not(.action-chip--gift) {
        min-width: 0;
        width: 100%;
    }

    .action-chip--profile {
        max-width: none;
        width: 100%;
        justify-content: flex-start;
    }

    .landing-hero__copy h1 {
        max-width: 100%;
        font-size: clamp(34px, 10.5vw, 46px);
        line-height: 0.98;
        letter-spacing: -0.04em;
    }

    .landing-hero__copy p {
        font-size: 16px;
    }

    .action-chip--balance,
    .action-chip--logout {
        padding-left: 14px;
        padding-right: 14px;
    }

    .mobile-nav {
        width: calc(100% - 18px);
        justify-content: space-between;
        gap: 6px;
        padding: 8px;
        border-radius: 26px;
    }

    .mobile-nav__item {
        min-width: 0;
        flex: 1 1 auto;
        min-height: 64px;
        padding: 9px 8px;
        border-radius: 18px;
    }

    .mobile-nav__icon {
        width: 24px;
        height: 24px;
        border-radius: 10px;
        font-size: 12px;
    }

    .mobile-nav__label {
        font-size: 10px;
        letter-spacing: 0.01em;
    }
}

.manual-payment-modal {
    background:
        radial-gradient(circle at top center, rgba(55, 167, 255, 0.12), transparent 38%),
        linear-gradient(145deg, rgba(12, 18, 28, 0.98), rgba(15, 25, 41, 0.96));
}

.manual-payment-modal__steps {
    display: grid;
    gap: 10px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(99, 156, 219, 0.16);
    background: rgba(9, 15, 26, 0.82);
}

.manual-payment-modal__step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    color: #dcecff;
    font-size: 14px;
    line-height: 1.5;
}

.manual-payment-modal__step strong:first-child {
    color: #58b9ff;
}

.manual-payment-modal__details {
    gap: 8px;
}

.select:disabled,
.input:read-only {
    cursor: not-allowed;
    opacity: 0.78;
}

.eyebrow {
    border-color: rgba(105, 187, 255, 0.24);
    background: linear-gradient(135deg, rgba(235, 246, 255, 0.96), rgba(214, 234, 255, 0.9));
    color: #2aa5ff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 14px 28px rgba(9, 25, 48, 0.16);
}

.eyebrow::before {
    box-shadow: 0 0 0 6px rgba(56, 167, 255, 0.18);
}

.toast {
    color: #f3f8ff;
    border-color: rgba(106, 160, 221, 0.3);
    background: linear-gradient(145deg, rgba(10, 16, 27, 0.98), rgba(13, 22, 37, 0.96));
    box-shadow: 0 24px 44px rgba(4, 10, 20, 0.4);
}

.toast--success {
    color: #ecfff5;
    border-color: rgba(62, 195, 149, 0.34);
    background: linear-gradient(145deg, rgba(9, 26, 22, 0.98), rgba(10, 34, 28, 0.96));
}

.toast--error {
    color: #fff2f2;
    border-color: rgba(255, 118, 118, 0.34);
    background: linear-gradient(145deg, rgba(36, 12, 16, 0.98), rgba(48, 15, 22, 0.96));
}

.action-chip--gift {
    display: none;
    width: 46px;
    min-width: 46px;
    padding: 0;
    border-radius: 16px;
}

.action-chip--balance {
    width: fit-content;
    max-width: 100%;
    white-space: nowrap;
}

.mobile-wallet {
    display: contents;
}

.mobile-wallet__caption {
    display: none;
}

.mobile-wallet__balance strong {
    font: inherit;
}

.action-chip__gift-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    pointer-events: none;
}

.platform-logo {
    display: inline-grid;
    place-items: center;
}

.platform-logo img {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.platform-logo--fallback {
    font-weight: 800;
    letter-spacing: 0.03em;
}

.landing-social {
    gap: 10px;
}

.landing-social__icon img {
    width: 18px;
    height: 18px;
}

.platform-logo--tile {
    width: 100%;
    height: 100%;
}

.platform-logo--tile img {
    width: 26px;
    height: 26px;
}

.catalog-board {
    display: grid;
    gap: 18px;
    margin: 26px 0 24px;
    padding: 20px;
    border: 1px solid rgba(108, 151, 209, 0.18);
    border-radius: 30px;
    background:
        radial-gradient(circle at 12% 0%, rgba(42, 160, 255, 0.12), transparent 32%),
        linear-gradient(145deg, rgba(13, 20, 32, 0.96), rgba(8, 13, 22, 0.98));
    box-shadow: 0 26px 70px rgba(4, 10, 20, 0.28);
}

.catalog-guest-note {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin: 22px 0 0;
    padding: 16px 18px;
    border: 1px solid rgba(92, 194, 255, 0.22);
    border-radius: 22px;
    background:
        radial-gradient(circle at 0% 0%, rgba(67, 183, 255, 0.16), transparent 36%),
        rgba(13, 22, 35, 0.72);
}

.catalog-guest-note__icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: rgba(43, 167, 255, 0.16);
    border: 1px solid rgba(99, 199, 255, 0.24);
}

.catalog-guest-note__icon img {
    width: 21px;
    height: 21px;
}

.catalog-guest-note strong {
    display: block;
    color: #f5f9ff;
    font-weight: 900;
}

.catalog-guest-note span {
    display: block;
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
}

.catalog-board__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: end;
}

.catalog-search-card {
    min-width: 0;
}

.catalog-search-card__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}

.catalog-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.catalog-filter-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(108, 151, 209, 0.18);
    border-radius: 18px;
    background: rgba(12, 18, 29, 0.72);
    color: #d9e9ff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.catalog-filter-pill:hover,
.catalog-filter-pill.is-active {
    border-color: rgba(98, 199, 255, 0.42);
    background: linear-gradient(135deg, rgba(27, 160, 255, 0.2), rgba(94, 209, 255, 0.12));
    transform: translateY(-1px);
}

.catalog-filter-pill__icon {
    width: 20px;
    height: 20px;
}

.catalog-filter-block {
    display: grid;
    gap: 14px;
}

.catalog-filter-block__head,
.catalog-results-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.catalog-filter-block__head strong,
.catalog-results-head strong {
    color: #f5f9ff;
    font-size: 16px;
    font-weight: 900;
}

.catalog-filter-block__head span,
.catalog-results-head span {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
}

.catalog-platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 12px;
}

.catalog-platform-tile {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 28px;
    gap: 12px;
    align-items: center;
    min-height: 86px;
    padding: 14px;
    border: 1px solid rgba(108, 151, 209, 0.18);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(18, 24, 36, 0.94), rgba(12, 18, 29, 0.96));
    color: #f5f9ff;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.catalog-platform-tile:hover,
.catalog-platform-tile.is-active {
    border-color: rgba(84, 194, 255, 0.42);
    background:
        radial-gradient(circle at 10% 0%, rgba(47, 178, 255, 0.18), transparent 46%),
        linear-gradient(145deg, rgba(17, 39, 61, 0.98), rgba(12, 20, 33, 0.98));
    box-shadow: 0 18px 40px rgba(20, 156, 255, 0.16);
    transform: translateY(-1px);
}

.catalog-platform-tile__icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: rgba(43, 150, 221, 0.22);
    color: #8fd8ff;
}

.catalog-platform-tile__glyph {
    width: 24px;
    height: 24px;
}

.catalog-platform-tile__body {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.catalog-platform-tile__body strong {
    overflow: hidden;
    color: #f5f9ff;
    font-size: 16px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.catalog-platform-tile__body span {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
}

.catalog-platform-tile__arrow {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(95, 185, 255, 0.12);
    color: #9ddcff;
}

.catalog-type-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.catalog-type-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(108, 151, 209, 0.18);
    border-radius: 999px;
    background: rgba(12, 18, 29, 0.72);
    color: #d9e9ff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease;
}

.catalog-type-chip small {
    display: inline-grid;
    place-items: center;
    min-width: 28px;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(95, 185, 255, 0.14);
    color: #9ddcff;
    font-size: 12px;
}

.catalog-type-chip:hover,
.catalog-type-chip.is-active {
    border-color: rgba(98, 199, 255, 0.42);
    background: linear-gradient(135deg, rgba(27, 160, 255, 0.22), rgba(94, 209, 255, 0.12));
}

.catalog-filter-note {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 14px 16px;
    border: 1px dashed rgba(108, 151, 209, 0.26);
    border-radius: 20px;
    color: var(--text-muted);
    background: rgba(8, 13, 22, 0.38);
}

.catalog-filter-note__icon {
    width: 22px;
    height: 22px;
    color: #75d2ff;
}

.catalog-results-head {
    margin: 4px 0 14px;
}

.catalog-results-head > div {
    display: grid;
    gap: 4px;
}

.dashboard-profile,
.loyalty-panel {
    align-self: start;
}

.dashboard-profile__item,
.loyalty-stat,
.loyalty-level,
.loyalty-progress,
.loyalty-next,
.payment-method-option {
    border-color: rgba(108, 151, 209, 0.18);
    background: linear-gradient(145deg, rgba(18, 24, 36, 0.94), rgba(12, 18, 29, 0.96));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 18px 36px rgba(4, 10, 20, 0.18);
}

.payment-method-option:hover {
    background: linear-gradient(145deg, rgba(22, 29, 42, 0.96), rgba(14, 22, 35, 0.98));
}

.payment-method-option:has(.payment-method-option__input:checked) {
    border-color: rgba(73, 177, 255, 0.38);
    background: linear-gradient(145deg, rgba(15, 36, 60, 0.96), rgba(13, 24, 42, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 34px rgba(33, 118, 204, 0.2);
}

.dashboard-profile__label,
.loyalty-stat__label,
.loyalty-progress__label,
.loyalty-progress__meta,
.loyalty-level__meta,
.loyalty-next p {
    color: #8ea7c9;
}

.dashboard-profile__item strong,
.loyalty-stat__value,
.loyalty-next strong,
.loyalty-level__title,
.loyalty-badge__text {
    color: #f5f9ff;
}

.loyalty-panel__title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.loyalty-next strong {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.loyalty-level__title {
    min-width: 0;
}

.loyalty-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.loyalty-badge__icon {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 14px;
    flex: 0 0 auto;
    font-size: 16px;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.loyalty-badge__text {
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.loyalty-badge--headline .loyalty-badge__icon {
    width: 38px;
    height: 38px;
}

.loyalty-badge--compact .loyalty-badge__icon {
    width: 34px;
    height: 34px;
}

.loyalty-badge--newbie .loyalty-badge__icon {
    background: linear-gradient(145deg, rgba(31, 120, 255, 0.18), rgba(43, 186, 255, 0.12));
    color: #83d7ff;
}

.loyalty-badge--regular .loyalty-badge__icon {
    background: linear-gradient(145deg, rgba(122, 100, 255, 0.2), rgba(76, 155, 255, 0.12));
    color: #b0b8ff;
}

.loyalty-badge--partner .loyalty-badge__icon {
    background: linear-gradient(145deg, rgba(255, 182, 69, 0.22), rgba(255, 122, 90, 0.14));
    color: #ffd482;
}

@media (max-width: 560px) {
    .topbar.topbar--signed-in {
        display: block;
        max-width: var(--container);
        padding: 12px 16px 0;
    }

    .topbar.topbar--signed-in .brand,
    .topbar.topbar--signed-in .topnav {
        display: none;
    }

    .topbar.topbar--signed-in .topbar__actions {
        width: 100%;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .topbar.topbar--signed-in .topbar__actions--user {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }

    .topbar.topbar--signed-in .action-chip--balance {
        width: auto;
        min-width: 72px;
        max-width: calc(100% - 56px);
        padding-left: 18px;
        padding-right: 18px;
        justify-content: center;
        flex: 0 1 auto;
    }

    .topbar.topbar--signed-in .action-chip--gift {
        display: inline-flex;
        width: 46px;
        min-width: 46px;
        margin-left: 0;
    }

    .topbar.topbar--signed-in .action-chip--profile,
    .topbar.topbar--signed-in .action-chip--logout {
        display: none;
    }

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

    .dashboard-profile__actions [data-route="free"] {
        display: none;
    }

    .modal-content {
        padding-right: 48px;
    }
}

.reviews-page__head {
    align-items: flex-start;
}

.reviews-page__head > div {
    min-width: 0;
}

.reviews-page__head .button {
    flex: 0 0 auto;
    max-width: 260px;
}

@media (max-width: 820px) {
    .reviews-page__head {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 16px;
    }

    .reviews-page__head .section-title,
    .reviews-page__head .section-subtitle {
        max-width: 100%;
    }

    .reviews-page__head .button {
        justify-self: start;
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .reviews-page {
        gap: 18px;
        padding-bottom: 104px;
    }

    .reviews-page .section {
        gap: 18px;
    }

    .reviews-page__head {
        gap: 14px;
    }

    .reviews-page__head .section-title {
        font-size: 28px;
        line-height: 1.08;
    }

    .reviews-page__head .title-with-icon {
        grid-template-columns: 42px minmax(0, 1fr);
        align-items: start;
        gap: 12px;
    }

    .reviews-page__head .title-with-icon__icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        margin-top: 2px;
    }

    .reviews-page__head .section-subtitle {
        font-size: 15px;
        line-height: 1.5;
    }

    .reviews-page__head .button {
        width: 100%;
        min-height: 50px;
        padding: 0 18px;
        justify-content: center;
    }

    .reviews-page .reviews-grid {
        gap: 14px;
    }

    .reviews-page .empty-card {
        padding: 22px 18px;
        text-align: left;
    }

    .reviews-page .empty-card__title {
        font-size: 22px;
        line-height: 1.16;
    }

    .reviews-page .empty-note {
        max-width: 100%;
        text-align: left;
        line-height: 1.5;
    }
}

.order-details {
    display: grid;
    gap: 18px;
}

.order-details__hero {
    display: grid;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(106, 159, 218, 0.18);
    border-radius: 28px;
    background:
        radial-gradient(circle at 18% 0%, rgba(53, 178, 255, 0.18), transparent 32%),
        radial-gradient(circle at 92% 20%, rgba(117, 211, 255, 0.1), transparent 34%),
        linear-gradient(145deg, rgba(12, 20, 33, 0.98), rgba(8, 13, 23, 0.98));
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.order-details__hero-top,
.order-details__progress-head,
.order-details__progress-meta,
.order-details__link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.order-details__id,
.order-details__date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: #a9bfdb;
    font-size: 14px;
    font-weight: 700;
}

.order-details__id {
    padding: 9px 14px;
    border: 1px solid rgba(94, 165, 240, 0.22);
    border-radius: 999px;
    background: rgba(9, 18, 31, 0.72);
    color: #8ed7ff;
}

.order-details__status {
    flex: 0 0 auto;
    min-height: 38px;
    padding-inline: 16px;
    font-size: 13px;
}

.order-details__service {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
}

.order-details__service-icon,
.order-details__metric-icon,
.order-details__id-icon,
.order-details__tiny-icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(91, 180, 255, 0.24);
    background: linear-gradient(145deg, rgba(36, 111, 164, 0.62), rgba(16, 50, 84, 0.78));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.order-details__service-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
}

.order-details__metric-icon,
.order-details__id-icon,
.order-details__tiny-icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
}

.order-details__id-icon,
.order-details__tiny-icon {
    width: 22px;
    height: 22px;
    border-radius: 8px;
}

.order-details__service-icon img,
.order-details__metric-icon img,
.order-details__id-icon img,
.order-details__tiny-icon img {
    display: block;
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.order-details__service-icon img {
    width: 22px;
    height: 22px;
}

.order-details__service-copy {
    min-width: 0;
}

.order-details__service-copy > span,
.order-details__label {
    display: block;
    color: #8aa2c2;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.order-details__title {
    margin: 4px 0 0;
    color: var(--text);
    font: 700 clamp(24px, 4vw, 34px)/1.05 "Unbounded", sans-serif;
    overflow-wrap: anywhere;
}

.order-details__metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.order-details__metric {
    display: grid;
    gap: 10px;
    min-width: 0;
    padding: 16px;
    border: 1px solid rgba(106, 159, 218, 0.16);
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0%, rgba(73, 185, 255, 0.12), transparent 38%),
        rgba(13, 20, 32, 0.92);
}

.order-details__metric span {
    color: #9cb0cd;
    font-size: 13px;
    font-weight: 700;
}

.order-details__metric strong {
    min-width: 0;
    color: var(--text);
    font-size: 20px;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.order-details__progress,
.order-details__link-card {
    padding: 18px;
    border: 1px solid rgba(106, 159, 218, 0.16);
    border-radius: 24px;
    background: rgba(10, 16, 27, 0.92);
}

.order-details__progress-head span,
.order-details__progress-head strong {
    color: var(--text);
    font-weight: 800;
}

.order-details__progress-track {
    height: 12px;
    margin-top: 14px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(89, 115, 149, 0.18);
}

.order-details__progress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #22a7ff, #79d8ff);
    box-shadow: 0 0 18px rgba(64, 189, 255, 0.3);
}

.order-details__progress-meta {
    margin-top: 10px;
    color: #91a6c5;
    font-size: 13px;
}

.order-details__link-card {
    align-items: flex-start;
}

.order-details__link-card > div {
    min-width: 0;
}

.order-details__link-card strong {
    display: block;
    margin-top: 6px;
    color: var(--text);
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.order-details__actions {
    justify-content: flex-end;
}

.order-details__actions:empty {
    display: none;
}

@media (max-width: 720px) {
    .order-details__metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .order-details {
        gap: 14px;
    }

    .order-details__hero,
    .order-details__progress,
    .order-details__link-card {
        padding: 16px;
        border-radius: 22px;
    }

    .order-details__hero-top,
    .order-details__progress-meta,
    .order-details__link-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .order-details__service {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .order-details__service-icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .order-details__title {
        font-size: 24px;
    }

    .order-details__metrics {
        grid-template-columns: 1fr;
    }

    .order-details__metric {
        grid-template-columns: 28px minmax(0, 1fr) auto;
        align-items: center;
        padding: 14px;
    }

    .order-details__metric strong {
        text-align: right;
        font-size: 18px;
    }

    .order-details__link-card .button {
        width: 100%;
        justify-content: center;
    }

    .order-details__actions {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .modal-window--order-details {
        padding: 14px;
        border-radius: 30px;
    }

    .modal-window--order-details .modal-content {
        padding-top: 58px;
        padding-right: 0;
    }

    .modal-window--order-details .modal-close {
        top: 18px;
        right: 18px;
        width: 44px;
        height: 44px;
        border-radius: 16px;
        z-index: 2;
    }

    .orders-page {
        gap: 16px;
        padding-bottom: 112px;
        overflow: hidden;
    }

    .orders-page__head {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
        gap: 16px;
    }

    .orders-page__head > div {
        min-width: 0;
    }

    .orders-page__head .section-title {
        max-width: 100%;
        font-size: clamp(28px, 11vw, 38px);
        line-height: 0.98;
        overflow-wrap: anywhere;
    }

    .orders-page__head .section-subtitle {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.55;
    }

    .orders-page__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 10px;
    }

    .orders-page__actions .button {
        width: 100%;
        min-height: 46px;
        padding: 0 12px;
        border-radius: 16px;
        font-size: 14px;
        justify-content: center;
    }

    .orders-page__filters {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        padding: 18px;
        border-radius: 24px;
    }

    .orders-page__filters .form-grid,
    .orders-page__filters .card-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
        min-width: 0;
        gap: 14px;
    }

    .orders-page__filters .input,
    .orders-page__filters .select {
        width: 100%;
        min-height: 54px;
    }

    .orders-page__filter-submit {
        width: 100%;
        min-height: 50px;
        padding: 0 16px;
        border-radius: 18px;
        justify-content: center;
    }

    .orders-page .list {
        gap: 14px;
    }

    .orders-page .list-card {
        overflow: hidden;
        padding: 18px;
        border-radius: 24px;
    }

    .orders-page .list-card__top {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .orders-page .list-card__top > div {
        min-width: 0;
    }

    .orders-page .list-card__top > div[style] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        text-align: left !important;
    }

    .orders-page .list-card__title {
        font-size: 21px;
        line-height: 1.12;
        overflow-wrap: anywhere;
    }

    .orders-page .list-card__meta {
        gap: 8px 10px;
        font-size: 13px;
        overflow-wrap: anywhere;
    }

    .orders-page .price-pill {
        margin-top: 0 !important;
        align-items: flex-start !important;
    }

    .orders-page .list-card__actions,
    .orders-page .list-card__actions .button {
        width: 100%;
    }

    .orders-page .list-card__actions .button {
        justify-content: center;
    }
}

@media (min-width: 901px) {
    .topbar {
        top: 10px;
        max-width: min(var(--container), calc(100% - 32px));
        margin-top: 8px;
        padding: 8px 10px;
        gap: 12px;
        border: 1px solid rgba(106, 159, 218, 0.18);
        border-radius: 30px;
        background:
            linear-gradient(135deg, rgba(12, 22, 35, 0.82), rgba(11, 16, 27, 0.66)),
            rgba(7, 13, 23, 0.72);
        box-shadow:
            0 22px 52px rgba(0, 0, 0, 0.28),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .topbar::before {
        content: "";
        position: absolute;
        inset: 1px;
        z-index: -1;
        border-radius: inherit;
        background: radial-gradient(circle at 18% 0%, rgba(79, 183, 255, 0.18), transparent 34%);
        pointer-events: none;
    }

    .topbar .brand {
        padding: 0;
        gap: 12px;
    }

    .topbar .brand__logo {
        width: min(158px, 14vw);
        max-height: 28px;
    }

    .topbar .brand__mark {
        width: 50px;
        height: 50px;
        border-radius: 17px;
    }

    .topnav,
    .topbar__actions {
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        overflow: visible;
    }

    .topnav {
        justify-self: center;
        justify-content: center;
        gap: 4px;
        width: auto;
    }

    .topbar__actions {
        gap: 8px;
    }

    .topbar__actions--user {
        grid-template-columns: auto minmax(96px, 178px);
        align-items: center;
    }

    .topbar .profile-menu {
        width: 100%;
        max-width: 178px;
    }

    .topbar .nav-link {
        min-height: 42px;
        padding: 0 16px;
        border-color: transparent;
        background: transparent;
        color: #b9c9df;
        box-shadow: none;
        font-weight: 800;
    }

    .topbar .nav-link:hover {
        border-color: rgba(102, 178, 255, 0.16);
        background: rgba(255, 255, 255, 0.055);
        color: #f6fbff;
        box-shadow: none;
    }

    .topbar .nav-link.is-active {
        color: #06111f;
        border-color: rgba(122, 216, 255, 0.38);
        background: linear-gradient(135deg, #1fa8ff, #77d9ff);
        box-shadow: 0 14px 28px rgba(29, 165, 255, 0.28);
    }

    .topbar .action-chip {
        min-height: 42px;
        border-color: rgba(108, 141, 185, 0.18);
        background: rgba(12, 18, 29, 0.62);
        color: #d6e5f7;
        box-shadow: none;
        font-weight: 800;
    }

    .topbar .action-chip:hover {
        border-color: rgba(102, 178, 255, 0.28);
        background: rgba(20, 30, 46, 0.86);
        box-shadow: none;
    }

    .topbar .action-chip--primary {
        color: #06111f;
        border-color: rgba(122, 216, 255, 0.38);
        background: linear-gradient(135deg, #1fa8ff, #77d9ff);
        box-shadow: 0 14px 28px rgba(29, 165, 255, 0.28);
    }

    .topbar .action-chip--primary:hover {
        color: #06111f;
        border-color: rgba(142, 225, 255, 0.54);
        background: linear-gradient(135deg, #35b2ff, #8be1ff);
        box-shadow: 0 16px 32px rgba(29, 165, 255, 0.34);
    }

    .topbar .action-chip--balance {
        min-width: 62px;
        padding-inline: 18px;
        color: #06111f;
        border-color: rgba(122, 216, 255, 0.38);
        background: linear-gradient(135deg, #149cff, #70d4ff);
        box-shadow: 0 12px 24px rgba(20, 156, 255, 0.24);
    }

    .topbar .action-chip--profile {
        width: 100%;
        max-width: 178px;
        justify-content: flex-start;
    }

    .topbar .action-chip--profile::after {
        content: "▾";
        margin-left: auto;
        color: #6dc8ff;
        font-size: 11px;
        line-height: 1;
    }

}

@media (min-width: 901px) and (max-width: 1180px) {
    .topbar {
        max-width: calc(100% - 20px);
        gap: 8px;
        padding-inline: 8px;
    }

    .topbar .brand {
        gap: 10px;
    }

    .topbar .brand__mark {
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }

    .topbar .brand__text span {
        display: none;
    }

    .topbar .nav-link {
        min-height: 40px;
        padding: 0 11px;
        font-size: 14px;
    }

    .topbar .action-chip {
        min-height: 40px;
        padding-inline: 12px;
        font-size: 14px;
    }

    .topbar__actions--user {
        grid-template-columns: auto minmax(82px, 146px);
    }

    .topbar .profile-menu,
    .topbar .action-chip--profile {
        max-width: 146px;
    }
}

@media (max-width: 560px) {
    .topbar.topbar--signed-in .profile-menu {
        display: none;
    }

    .topbar.topbar--signed-in .topbar__actions--user {
        display: block;
        width: 100%;
    }

    .topbar.topbar--signed-in .mobile-wallet {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 48px;
        align-items: stretch;
        gap: 8px;
        width: 100%;
        min-height: 58px;
        padding: 6px;
        border: 1px solid rgba(108, 151, 209, 0.2);
        border-radius: 24px;
        background:
            radial-gradient(circle at 0% 0%, rgba(55, 167, 255, 0.18), transparent 42%),
            linear-gradient(145deg, rgba(12, 22, 35, 0.9), rgba(8, 14, 24, 0.96));
        box-shadow:
            0 18px 36px rgba(3, 10, 20, 0.28),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .topbar.topbar--signed-in .mobile-wallet__balance {
        display: grid;
        align-content: center;
        justify-items: start;
        gap: 2px;
        width: 100%;
        min-width: 0;
        min-height: 46px;
        max-width: none;
        padding: 0 16px;
        border: 0;
        border-radius: 18px;
        color: #06111f;
        background: linear-gradient(135deg, #22a9ff, #78dbff);
        box-shadow: 0 12px 26px rgba(20, 156, 255, 0.24);
    }

    .topbar.topbar--signed-in .mobile-wallet__caption {
        display: block;
        color: rgba(6, 17, 31, 0.62);
        font-size: 11px;
        font-weight: 900;
        line-height: 1;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .topbar.topbar--signed-in .mobile-wallet__balance strong {
        display: block;
        max-width: 100%;
        overflow: hidden;
        color: #06111f;
        font-size: 17px;
        font-weight: 900;
        line-height: 1.1;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .topbar.topbar--signed-in .mobile-wallet__gift {
        display: inline-grid;
        place-items: center;
        width: 48px;
        min-width: 48px;
        min-height: 46px;
        padding: 0;
        border-radius: 18px;
        border-color: rgba(108, 151, 209, 0.2);
        background: rgba(12, 18, 29, 0.78);
        box-shadow: none;
    }

    .topbar.topbar--signed-in .mobile-wallet__gift:hover {
        background: rgba(18, 28, 43, 0.92);
    }

    .topbar.topbar--signed-in .mobile-wallet__gift .action-chip__gift-icon {
        width: 23px;
        height: 23px;
    }

    .dashboard-sections {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .quick-action-tile {
        grid-template-columns: 38px minmax(0, 1fr) 30px;
        min-height: 84px;
        padding: 14px;
        border-radius: 22px;
    }

    .quick-action-tile__icon {
        width: 38px;
        height: 38px;
        border-radius: 14px;
    }

    .quick-action-tile__body strong {
        font-size: 16px;
    }

    .quick-action-tile__body span {
        font-size: 12px;
    }
}

@media (max-width: 820px) {
    .catalog-board {
        margin-top: 18px;
        padding: 16px;
        border-radius: 24px;
    }

    .catalog-guest-note {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
        border-radius: 20px;
    }

    .catalog-board__top,
    .catalog-search-card__row {
        grid-template-columns: 1fr;
    }

    .catalog-quick-actions {
        justify-content: stretch;
    }

    .catalog-filter-pill,
    .catalog-search-card__row .button {
        width: 100%;
    }

    .catalog-filter-block__head,
    .catalog-results-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

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

    .catalog-platform-tile {
        grid-template-columns: 38px minmax(0, 1fr);
        min-height: 78px;
        padding: 12px;
    }

    .catalog-platform-tile__icon {
        width: 38px;
        height: 38px;
        border-radius: 14px;
    }

    .catalog-platform-tile__arrow {
        display: none;
    }

    .catalog-type-strip {
        flex-wrap: nowrap;
        margin-inline: -16px;
        padding: 0 16px 4px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .catalog-type-strip::-webkit-scrollbar {
        display: none;
    }

    .catalog-type-chip {
        flex: 0 0 auto;
    }
}

@media (max-width: 560px) {
    .catalog-platform-grid {
        display: flex;
        margin-inline: -16px;
        padding: 4px 16px 8px;
        overflow-x: auto;
        scrollbar-width: none;
        scroll-padding-inline: 16px;
    }

    .catalog-platform-grid::-webkit-scrollbar {
        display: none;
    }

    .catalog-platform-tile {
        flex: 0 0 184px;
        grid-template-columns: 38px minmax(0, 1fr);
        min-height: 78px;
        padding: 12px 14px;
    }

    .catalog-platform-tile__icon {
        width: 38px;
        height: 38px;
    }

    .catalog-platform-tile__body strong {
        display: -webkit-box;
        overflow: hidden;
        font-size: 14px;
        line-height: 1.15;
        white-space: normal;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .catalog-platform-tile__body span {
        font-size: 12px;
    }

    .service-card--catalog {
        gap: 12px;
        min-height: auto;
        padding: 18px;
        border-radius: 26px;
    }

    .service-card--catalog .service-card__head {
        align-items: center;
    }

    .service-card--catalog .service-card__title {
        font-size: 20px;
    }

    .service-card__description-list {
        min-height: auto;
        gap: 5px;
        font-size: 14px;
    }

    .service-card__description-list li span {
        white-space: normal;
    }

    .service-card__tags {
        max-height: 68px;
        overflow: hidden;
    }

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

    .service-card__spec--wide {
        grid-column: 1 / -1;
    }

    .service-card__spec {
        padding: 11px;
        border-radius: 16px;
    }

    .service-card--catalog .service-card__bottom {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .service-card--catalog .card-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        width: 100%;
    }

    .service-card--catalog .button,
    .service-card--catalog .small-button {
        width: 100%;
        min-width: 0;
        padding-inline: 12px;
    }
}

@media (min-width: 821px) {
    .orders-page__filters {
        align-items: flex-end;
    }

    .orders-page__filters .card-actions {
        align-self: flex-end;
        align-items: flex-end;
    }

    .orders-page__filter-submit {
        width: auto;
        min-width: 104px;
        min-height: 48px;
        padding: 0 20px;
        border-radius: 16px;
    }
}

/* Site footer */

.site-footer {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 8px auto 34px;
    padding: 0 24px 28px;
}

.site-footer__panel {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(106, 159, 218, 0.18);
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(12, 18, 28, 0.98), rgba(8, 12, 21, 0.98)),
        rgba(7, 12, 20, 0.96);
    box-shadow:
        0 26px 70px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.site-footer__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent, rgba(93, 181, 255, 0.08), transparent),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%);
    pointer-events: none;
}

.site-footer__top,
.site-footer__grid,
.site-footer__popular,
.site-footer__bottom {
    position: relative;
    z-index: 1;
}

.site-footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    min-height: 72px;
    padding: 14px;
    border: 1px solid rgba(107, 145, 188, 0.16);
    border-radius: 24px;
    background: rgba(15, 21, 33, 0.86);
}

.site-footer__kicker,
.site-footer h3,
.site-footer__payments strong,
.site-footer__popular strong {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.site-footer__kicker {
    display: block;
    margin-bottom: 6px;
}

.site-footer__kicker-logo {
    display: block;
    width: min(172px, 100%);
    height: auto;
    max-height: 28px;
    margin-bottom: 10px;
    object-fit: contain;
}

.site-footer__title {
    margin: 0;
    color: var(--text);
    font-size: clamp(17px, 1.8vw, 22px);
    font-weight: 800;
    line-height: 1.25;
}

.site-footer__badges,
.site-footer__chips,
.site-footer__popular-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.site-footer__badges {
    justify-content: flex-end;
}

.site-footer__badge,
.site-footer__chip,
.site-footer__popular-list button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    min-height: 36px;
    padding: 0 13px;
    border: 1px solid rgba(106, 159, 218, 0.18);
    border-radius: 999px;
    background: rgba(20, 27, 40, 0.9);
    color: #dbe9fc;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

.site-footer__badge img,
.site-footer__chip img,
.site-footer__popular-list img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex: 0 0 auto;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(250px, 1.2fr) minmax(150px, 0.72fr) minmax(150px, 0.72fr) minmax(170px, 0.82fr) minmax(250px, 1fr);
    gap: 16px;
    margin-top: 18px;
}

.site-footer__brand-card,
.site-footer__column,
.site-footer__contact {
    min-width: 0;
    min-height: 260px;
    padding: 18px;
    border: 1px solid rgba(107, 145, 188, 0.14);
    border-radius: 24px;
    background: rgba(12, 17, 28, 0.72);
}

.site-footer__brand-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.site-footer__brand-head {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.site-footer__brand-logo {
    display: block;
    width: min(190px, 100%);
    height: auto;
    max-height: 32px;
    object-fit: contain;
}

.site-footer__brand-head strong {
    min-width: 0;
    color: #fff;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.site-footer__brand-head strong span {
    color: #6ed2ff;
}

.site-footer__logo {
    position: relative;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(111, 199, 255, 0.22);
    border-radius: 16px;
    background: linear-gradient(145deg, #11223a, #1f4b75);
    color: #ffffff;
    font: 800 20px/1 "Unbounded", sans-serif;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.site-footer__brand-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.55;
}

.site-footer__chips {
    margin-top: auto;
}

.site-footer__chip {
    min-height: 32px;
    padding-inline: 11px;
    color: #c9d9ef;
    font-size: 12px;
}

.site-footer__column,
.site-footer__contact {
    display: grid;
    align-content: start;
    gap: 10px;
}

.site-footer h3 {
    margin: 0 0 2px;
}

.site-footer__link {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    min-width: 0;
    min-height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #d1def0;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.18;
    transition: color 0.18s ease, transform 0.18s ease;
}

.site-footer__link:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.site-footer__link img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex: 0 0 auto;
    opacity: 0.72;
}

.site-footer__link span {
    min-width: 0;
}

.site-footer__contact-actions {
    display: grid;
    gap: 10px;
}

.site-footer__contact-button {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-width: 0;
    min-height: 48px;
    padding: 7px 12px;
    border: 1px solid rgba(107, 145, 188, 0.18);
    border-radius: 16px;
    background: rgba(20, 27, 40, 0.88);
    color: #f2f7ff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.site-footer__contact-button:hover {
    transform: translateY(-1px);
    border-color: rgba(112, 212, 255, 0.32);
    background: rgba(24, 33, 49, 0.98);
}

.site-footer__contact-button--primary {
    border-color: rgba(86, 189, 255, 0.34);
    background: linear-gradient(145deg, rgba(23, 120, 188, 0.42), rgba(15, 36, 58, 0.92));
}

.site-footer__contact-button span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(112, 212, 255, 0.24);
    border-radius: 999px;
    background: rgba(52, 167, 255, 0.16);
}

.site-footer__contact-button img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.site-footer__payments {
    display: grid;
    gap: 12px;
    margin-top: 4px;
    padding: 14px;
    border: 1px solid rgba(107, 145, 188, 0.14);
    border-radius: 18px;
    background: rgba(8, 13, 22, 0.6);
}

.site-footer__payment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.site-footer__payment-grid span {
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 36px;
    padding: 7px;
    border: 1px solid rgba(107, 145, 188, 0.14);
    border-radius: 12px;
    background: rgba(12, 17, 28, 0.92);
}

.site-footer__payment-grid img {
    max-width: 58px;
    max-height: 18px;
    object-fit: contain;
}

.site-footer__popular {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin-top: 26px;
    padding: 16px;
    border: 1px solid rgba(107, 145, 188, 0.14);
    border-radius: 22px;
    background: rgba(12, 17, 28, 0.62);
}

.site-footer__popular strong {
    display: block;
    margin-bottom: 12px;
}

.site-footer__popular-list button {
    min-height: 34px;
    cursor: pointer;
}

.site-footer__popular-list button:hover {
    border-color: rgba(112, 212, 255, 0.3);
    color: #ffffff;
}

.site-footer__popular > span,
.site-footer__bottom {
    color: var(--text-soft);
    font-size: 13px;
}

.site-footer__popular > span {
    text-align: right;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(107, 145, 188, 0.14);
}

@media (max-width: 1180px) {
    .site-footer__grid {
        grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(170px, 1fr));
    }

    .site-footer__brand-card,
    .site-footer__contact {
        min-height: auto;
    }

    .site-footer__contact {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .site-footer {
        margin-top: 0;
        padding-inline: 16px;
    }

    .site-footer__panel {
        padding: 22px;
        border-radius: 30px;
    }

    .site-footer__top,
    .site-footer__popular,
    .site-footer__bottom {
        grid-template-columns: 1fr;
    }

    .site-footer__badges,
    .site-footer__popular-list {
        justify-content: flex-start;
    }

    .site-footer__popular > span {
        text-align: left;
    }
}

@media (max-width: 760px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__contact {
        grid-column: auto;
    }

    .site-footer__brand-card,
    .site-footer__column,
    .site-footer__contact {
        min-height: auto;
        border-radius: 22px;
    }

    .site-footer__bottom {
        display: grid;
    }
}

@media (max-width: 560px) {
    .site-footer {
        margin-bottom: 106px;
        padding: 0 10px 12px;
    }

    .site-footer__kicker-logo,
    .site-footer__brand-logo {
        width: min(158px, 100%);
    }

    .site-footer__panel {
        padding: 14px;
        border-radius: 26px;
    }

    .site-footer__top {
        padding: 13px;
        border-radius: 20px;
    }

    .site-footer__title {
        font-size: 18px;
    }

    .site-footer__badge,
    .site-footer__chip,
    .site-footer__popular-list button {
        flex: 1 1 132px;
        justify-content: flex-start;
        min-height: 34px;
        padding-inline: 11px;
        font-size: 12px;
    }

    .site-footer__contact-button {
        min-height: 52px;
        font-size: 13px;
    }

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

    .site-footer__popular {
        margin-top: 16px;
        padding: 13px;
        border-radius: 20px;
    }

    .site-footer__bottom {
        margin-top: 18px;
        padding-top: 14px;
        font-size: 12px;
    }
}
