:root {
  --bg: #f4f5f7;
  --panel: #ffffff;
  --text: #1f2937;
  --muted: #C2C2C --muted2:#9ca3af;
  --border: #dfe3ea;

  --accent: #ea4d3a;
  --accent2: #d63b2a;

  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 10px;

  --shadow-sm: 0 10px 20px rgba(16, 24, 40, .06);
  --shadow-md: 0 18px 40px rgba(16, 24, 40, .10);

  --focus: 0 0 0 4px rgba(234, 77, 58, .18);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
}
.my_move {
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Layout helpers */
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.dash-panel {
  border: 2px dashed rgba(234, 77, 58, .55);
  border-radius: var(--radius-lg);
  background: transparent;
  padding: 18px;
}


.panel-grey {
  background: #e5e6ea;
  border-radius: var(--radius-lg);
  padding: 22px;
  height: 100%;
}

.panel-grey1 {
  background: #e5e6ea;
  border-radius: var(--radius-lg);
  padding: 22px;
  height: 100%;
}

.muted-small {
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.35;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  transition: transform .14s ease, background .14s ease, border-color .14s ease, box-shadow .14s ease, opacity .14s ease, color .14s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.btn[disabled],
.btn:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  display: flex;
  background: var(--accent);
  color: #fff;
  border-color: rgba(0, 0, 0, .02);
}

.btn-primary:hover {
  background: var(--accent2);
  box-shadow: 0 14px 30px rgba(234, 77, 58, .20);
}

.btn-ghost {
  background: rgba(255, 255, 255, .85);
  border-color: rgba(234, 77, 58, .45);
  color: var(--accent);
}

.btn-ghost:hover {
  background: rgba(234, 77, 58, .06);
  border-color: rgba(234, 77, 58, .70);
}

.btn-outline {
  background: transparent;
  border-color: rgba(234, 77, 58, .55);
  color: var(--accent);
}

.btn-outline:hover {
  background: rgba(234, 77, 58, .07);
  border-color: rgba(234, 77, 58, .75);
}

/* Inputs */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

.input,
.select,
.textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  outline: none;
  transition: box-shadow .14s ease, border-color .14s ease, background .14s ease;
  color: #58585891;
  font-weight: 600;
  font-size: 12px;
}

.textarea {
  min-height: 108px;
}

.input::placeholder,
.textarea::placeholder {
  color: rgba(107, 114, 128, .75);
  font-weight: 600;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(234, 77, 58, .65);
  box-shadow: var(--focus);
}

.input:disabled,
.select:disabled,
.textarea:disabled {
  opacity: .6;
  background: #f3f4f6;
}

.star_onsiv {
  width: 19px;
  height: 19px;
  margin-top: 5px;
}

/* Top minimal */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb .arrow {
  font-weight: 1200;
  color: var(--muted2);
}

.arrow {
  display: flex;
}

/* Landing */
.landing {
  background: #f5f5f6;
  padding-bottom: 70px;
}

.bg-print {
  background: #f4f5f7;
}

.landing-hero {
  padding: 34px 0 26px;
}

.hero-row {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: start;
}

.hero-left h1 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.2px;
}

.hero-topline {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  font-weight: 800;
  font-size: 12px;
  color: #6b7280;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(234, 77, 58, .08);
  border: 1px solid rgba(234, 77, 58, .18);
  color: var(--accent2);
  font-weight: 900;
  font-size: 12px;
}

.hero-main {
  margin-top: 8px;
}

.hero-img {
  border-radius: 18px;
  height: 210px;
}

.hero-img .img-ph {
  width: 100%;
  height: 100%;
}

.landing-svc-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.svc-mini {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(0, 0, 0, .03);
}

.svc-mini-title {
  margin-top: 10px;
  font-weight: 900;
  font-size: 16px;
}

.svc-mini-sub {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.svc-mini-btn {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 24px;
  border-radius: 8px;
  background: rgba(234, 77, 58, .08);
  border: 1px solid rgba(234, 77, 58, .18);
  color: var(--accent2);
  font-weight: 900;
  font-size: 14px;
}



.landing-service-blocks {
  margin-top: 22px;
}

.service-block {
  display: grid;
  grid-template-columns: .62fr 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 2px dotted rgba(234, 77, 58, .4);
}

.service-icon {
  width: 92px;
  height: 92px;
}

.service-title {
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 8px;
}

.service-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 600;
  font-size: 13px;
  max-width: 520px;
}

.service-action {
  margin-top: 14px;
}

.testimonials {
  padding-top: 22px;
}

.testimonials h2 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 900;
}

.map-wrap {
  height: 220px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 50%, rgba(234, 77, 58, .12), transparent 55%),
    linear-gradient(135deg, rgba(234, 77, 58, .12), rgba(234, 77, 58, .04));
  border: 1px dashed rgba(234, 77, 58, .35);
  position: relative;
  overflow: hidden;
}

.map-ph {
  position: absolute;
  inset: 16px;
  border-radius: 16px;
  background:
    repeating-linear-gradient(45deg, rgba(234, 77, 58, .18), rgba(234, 77, 58, .05) 10px, transparent 10px, transparent 22px),
    radial-gradient(circle at 70% 30%, rgba(234, 77, 58, .18), transparent 56%);
  opacity: .4;
}

.quote-row {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.quote-card {
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(0, 0, 0, .03);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .06);
}

.quote-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.stars {
  color: rgba(234, 77, 58, .95);
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 12px;
}

.quote-text {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

/* App shell */
.app-shell {
  display: flex;
  gap: 18px;
  padding: 22px 0 60px;
}

.sidebar {
  width: 260px;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, .02);
  padding: 16px 14px;
  height: fit-content;
  position: sticky;
  top: 18px;
}

.side-brand {
  font-weight: 1000;
  letter-spacing: .2px;
  font-size: 25px;
  margin: 12px 0 24px;
  color: var(--accent2);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .02);
  background: #fff;
  font-weight: 800;
  color: #2c2c2c;
  cursor: pointer;
}

.nav-item:hover {
  background: rgba(234, 77, 58, .05);
}

.nav-item .nav-ic {
  width: 19px;
  height: 19px;
  border-radius: 6px;
  
}

.nav-item.is-active {
  background: var(--accent);
  color: #fff;
  border-color: rgba(0, 0, 0, .02);
}


.side-bottom {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, .04);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.side-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 4px;
}

.side-user .avatar {
  width: 26px;
  height: 26px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .05);
  background: rgba(0, 0, 0, .03);
}

.side-user .name {
  flex: 1;
  font-weight: 800;
  font-size: 16px;
  color: var(--accent);
  line-height: 1.1;
}

.side-user .role {
  color: var(--muted2);
  font-weight: 700;
  font-size: 12px;
}

.side-exit {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4 0px;
  color: #2c2c2c;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
}

.side-exit .exit-ic {
  width: 19px;
  height: 19px;
}
.arrow-icon{
  width: 19px;
  height: 19px;
}

.app-content {
  flex: 1;
}

.app-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  font-weight: 1000;
}

.app-burger:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.app-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.app-title {
  font-size: 24px;
  font-weight: 1000;
  margin: 0;
}

.app-sub {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-weight: 800;
}

.top-actions a {
  color: var(--muted);
}

/* Print pages: stepper & panels */
.pill-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(234, 77, 58, .55);
  color: var(--accent2);
  font-weight: 900;
  background: transparent;
}

.pill.is-active {
  background: rgba(234, 77, 58, .06);
}

.pill.is-inactive {
  border-color: rgba(0, 0, 0, .18);
  color: rgba(0, 0, 0, .60);
}

.stepper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  --step-gap: 22px;
  gap: 22px;
  margin: 18px 0 18px;
}

.step {
  width: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(50% + 17px);
  top: 17px;
  height: 2px;
  width: calc(100% + var(--step-gap) - 34px);
  background: rgba(0, 0, 0, .08);
}

.step .circle {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: rgba(0, 0, 0, .55);
  background: #fff;
}

.step .name {
  font-size: 12px;
  font-weight: 800;
  color: rgba(0, 0, 0, .55);
}

.step.is-active .circle {
  border-color: rgba(234, 77, 58, .65);
  color: var(--accent2);
}

.step.is-active .name {
  color: var(--accent2);
}

.print-grid {
  display: grid;
  grid-template-columns: 1.55fr .75fr;
  gap: 18px;
  align-items: start;
}

.print-left {
  height: 540px;
}

.print-left1 {
  height: 380px;
}

.print-left2 {
  height: 466px;
}

.print-grid .print-left2.dash-panel {
  padding: 15px;
}

/* Print step 3: full-panel 3Д preview */
.panel-grey--model {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding-top: 48px;
  overflow: hidden;
}

.panel-grey.panel-grey--model.is-model-preview {
  padding: 0;
  padding-top: 0;
}

.model-panel__toolbar {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 44px);
  pointer-events: none;
}

.model-panel__toolbar .model-panel__file-name {
  pointer-events: auto;
}

.panel-grey--model.is-model-preview .model-panel__toolbar {
  top: 12px;
  right: 12px;
}

.model-panel__toolbar-icon {
  width: 19px;
  height: 19px;
  border: 0;
  flex-shrink: 0;
}

.panel-grey--model.is-model-preview .model-panel__toolbar-icon img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

button.model-panel__file-name {
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-align: left;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: inherit;
}

.panel-grey--model.is-model-preview .model-panel__file-name {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75);
}

.model-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.model-upload-empty {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 18px 22px;
}

.panel-grey--model.is-model-preview .model-upload-empty {
  display: none;
}

.model-upload-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 12px;
}

.model-upload-trigger:focus-visible {
  outline: 2px solid rgba(234, 77, 58, .75);
  outline-offset: 4px;
}

.model-upload-trigger__icon {
  width: 69px;
  height: 69px;
  margin: 0;
}

.model-upload-hint {
  max-width: 480px;
}

.model-viewer-host {
  display: none;
  flex: 1;
  min-height: 200px;
  width: 100%;
  position: relative;
}

.panel-grey--model.is-model-preview .model-viewer-host {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  flex: none;
}

#model-preview-canvas {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background: #454545;
}

.panel-grey--model.is-model-preview #model-preview-canvas {
  border-radius: 0;
}

.panel-grey--model.is-model-preview .model-upload-status:empty {
  display: none;
}

.model-upload-status {
  position: absolute;
  left: 22px;
  bottom: 14px;
  z-index: 2;
  max-width: calc(100% - 44px);
  font-size: 11px;
  pointer-events: none;
}

.panel-grey--model.is-model-preview .model-upload-status:not(:empty) {
  left: 12px;
  bottom: 10px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Replace-file dialog (print-step-3) */
.model-replace-dialog[hidden] {
  display: none !important;
}

.model-replace-dialog {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.model-replace-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 28, 0.5);
  cursor: pointer;
}

.model-replace-dialog__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  padding: 22px 24px 20px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.model-replace-dialog__title {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.82);
  text-align: center;
  line-height: 1.35;
}

.model-replace-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.model-replace-dialog__btn {
  min-width: 100px;
}

.model-replace-dialog__btn--no {
  background: #9ca3af;
  color: #fff;
  border-color: rgba(0, 0, 0, 0.06);
}

.model-replace-dialog__btn--no:hover {
  background: #868e96;
  box-shadow: none;
}

.print-left .img-ph {
  width: 100%;
  height: 100%;
}

.print-right {
  padding: 18px;
  background: #fff;
}

.config-title {
  text-align: center;
  font-weight: 1000;
  margin: -2px 0 14px;
  color: rgba(0, 0, 0, .70);
}

.config-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.config-hint {
  font-size: 12px;
  font-weight: 800;
  color: rgba(0, 0, 0, .55);
  margin-top: 8px;
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 1000;
  margin-top: 12px;
  color: rgba(0, 0, 0, .65);
  font-size: 13px;
}

.price-line .sum {
  color: var(--accent2);
}

.price-line .sum.is-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.price-spinner {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(214, 59, 42, 0.25);
  border-top-color: var(--accent2);
  border-radius: 50%;
  animation: processing-spin .8s linear infinite;
}

.price-loading-text {
  color: rgba(0, 0, 0, .55);
  font-weight: 800;
}

.print-actions {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

/* Address */
.addr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.search-box {
  padding: 16px;
}

.search-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-row .input {
  flex: 1;
}

.map-card {
  padding: 16px;
}

.map-placeholder {
  height: 210px;
  border-radius: 14px;
  background: #d1d1d3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .85);
  font-size: 26px;
  font-weight: 900;
}

.delivery-map {
  position: relative;
  overflow: hidden;
}

.delivery-map-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .85);
  font-size: 20px;
  font-weight: 800;
  background: #d1d1d3;
  z-index: 1;
}

.map-placeholder .muted {
  opacity: .55;
}

.save-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.saved-row {
  padding: 16px;
}

.saved-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.chip {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px 12px;
  font-weight: 800;
  font-size: 12px;
}

.chip-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.chip-remove {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(234, 77, 58, .35);
  background: rgba(234, 77, 58, .08);
  color: var(--accent2);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.chip-remove:hover {
  background: rgba(234, 77, 58, .16);
  border-color: rgba(234, 77, 58, .55);
}

.chip.is-active {
  border-color: rgba(234, 77, 58, .5);
  background: rgba(234, 77, 58, .06);
  color: var(--accent2);
}

.chip .small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  margin-top: 6px;
}

/* Payment */
.pay-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.pay-top {
  padding: 16px;
}

.pay-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.bank-card {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .08);
  padding: 14px;
  height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #e7e7ea;
}

.bank-card.is-active {
  background: rgba(234, 77, 58, .92);
  border-color: rgba(234, 77, 58, .6);
  color: #fff;
}

.bank-card .brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 1000;
  font-size: 13px;
}

.bank-card .num {
  font-weight: 1000;
  letter-spacing: 1px;
  font-size: 13px;
}

.bank-card .hint {
  font-weight: 800;
  font-size: 11px;
  opacity: .85;
}

.bank-card .trash {
  width: 18px;
  height: 18px;
  border-radius: 7px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, .40);
}

.new-card {
  background: transparent;
  border: 2px dashed rgba(0, 0, 0, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  font-weight: 900;
  padding: 12px;
}

.pay-list {
  padding: 16px;
}

.pay-list-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 1000;
  margin-bottom: 12px;
  color: rgba(0, 0, 0, .65);
}

.pay-item {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .06);
  padding: 12px;
  background: rgba(255, 255, 255, .65);
}

.pay-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pay-item .left {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pay-item .ico {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  border: 1px solid rgba(234, 77, 58, .25);
  background: rgba(234, 77, 58, .08);
}

.pay-item .meta {
  font-weight: 900;
  color: rgba(0, 0, 0, .65);
  font-size: 13px;
}

.pay-item .meta .sub {
  display: block;
  color: var(--muted);
  font-weight: 800;
  margin-top: 4px;
  font-size: 12px;
}

.pay-item .right {
  text-align: right;
}

.pay-item .right .sum {
  font-weight: 1000;
  color: var(--accent2);
  font-size: 13px;
}

.pay-item .right .link {
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
  text-decoration: underline;
  margin-top: 6px;
  display: inline-block;
}

/* Profile */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.profile-card {
  padding: 18px;
}

.profile-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 1000;
}

.profile-card .topline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.profile-card .topline .icon {
  width: 29px;
  height: 29px;
  border-radius: 7px;
  
}

.profile-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.profile-form .wide {
  grid-column: span 3;
}

.profile-actions {
  display: flex;
  justify-content: flex-start;
}

.support-chat {
  margin-top: 12px;
}

.support-chat__messages {
  max-height: 260px;
  overflow: auto;
  border: 1px solid #e8eaf2;
  border-radius: 10px;
  padding: 8px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.support-chat__input {
  resize: vertical;
}

.support-chat__message {
  max-width: 78%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.support-chat__message.is-user {
  margin-left: auto;
  background: rgba(234, 77, 58, .10);
  border-color: rgba(234, 77, 58, .20);
}

.support-chat__message.is-admin {
  margin-right: auto;
  background: #ffffff;
  border-color: #e5e7eb;
}

.support-chat__message.is-bot {
  margin-right: auto;
  background: #eefcf3;
  border-color: #cdeedb;
}

.support-chat__meta {
  font-size: 11px;
  line-height: 1.35;
  color: rgba(15, 23, 42, .62);
  font-weight: 800;
}

.support-chat__text {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.4;
  color: #1f2937;
  font-weight: 700;
  white-space: pre-wrap;
  word-break: break-word;
}

.support-chat__closed-note {
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(15, 23, 42, .06);
  border: 1px solid rgba(15, 23, 42, .12);
  color: rgba(15, 23, 42, .72);
  font-size: 12px;
  font-weight: 800;
}

.profile-support .support-select {
  max-width: 420px;
}

/* Orders */
.orders-card {
  padding: 0;
  overflow: hidden;
}

.orders-head {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.orders-head h2 {
  margin: 0 0 6px;
  font-weight: 1000;
  font-size: 18px;
}

.orders-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.orders-table thead th {
  background: rgba(234, 77, 58, .90);
  color: #fff;
  text-align: left;
  padding: 10px 14px;
  font-weight: 1000;
}

.orders-table tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  vertical-align: top;
  color: rgba(0, 0, 0, .7);
  font-weight: 800;
}

.orders-row-main td {
  background: #fff;
}

.orders-toggle-btn {
  padding: 4px 10px !important;
  border-radius: 10px !important;
}

.orders-toggle-btn img {
  width: 16px;
  height: 16px;
  display: block;
}

.table-loading-cell {
  text-align: center;
  color: rgba(15, 23, 42, .72);
  font-weight: 900;
  padding: 18px 14px !important;
}

.inline-spinner {
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: -1px;
  margin-right: 8px;
  border: 2px solid rgba(214, 59, 42, 0.25);
  border-top-color: var(--accent2);
  border-radius: 50%;
  animation: processing-spin .8s linear infinite;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 1000;
  font-size: 12px;
  border: 1px solid rgba(0, 0, 0, .08);
}

.status-badge.ok {
  background: rgba(16, 185, 129, .12);
  color: rgba(16, 185, 129, .95);
  border-color: rgba(16, 185, 129, .2);
}

.status-badge.wait {
  background: rgba(234, 77, 58, .10);
  color: var(--accent2);
  border-color: rgba(234, 77, 58, .25);
}

.status-badge.progress {
  background: rgba(245, 158, 11, .12);
  color: #b45309;
  border-color: rgba(245, 158, 11, .28);
}

.orders-row-details td {
  padding: 0;
  background: #f6f8fc;
}

.order-details-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.order-details-block {
  min-height: 96px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 14px;
  padding: 12px;
}

.order-details-block--actions {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.order-details-title {
  font-size: 13px;
  font-weight: 1000;
  color: #1f2937;
  margin-bottom: 10px;
}

.order-kv {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
  font-size: 12px;
}

.order-kv__key {
  color: rgba(15, 23, 42, .56);
  font-weight: 800;
}

.order-kv__value {
  text-align: right;
  color: rgba(15, 23, 42, .92);
  font-weight: 900;
  word-break: break-word;
}

.order-details-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  color: #fff;
  background: var(--accent2);
  border: 1px solid var(--accent2);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 1000;
  text-decoration: none;
}

.order-details-link--btn {
  border: 1px solid rgba(234, 77, 58, .45);
  background: rgba(234, 77, 58, .06);
  color: var(--accent2);
  padding: 8px 12px;
  text-align: left;
  cursor: pointer;
}

.order-details-link.is-disabled,
.order-details-link[aria-disabled="true"] {
  pointer-events: none;
  opacity: .55;
}

.support-loading {
  padding: 8px 0;
  color: rgba(15, 23, 42, .72);
  font-weight: 800;
}

@media (max-width: 980px) {
  .order-details-panel {
    grid-template-columns: 1fr;
  }
}

/* Login */
.login-wrap {
  min-height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.login-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px 40px;
  background: #fff;
}

.login-breadcrumb-row {
  position: fixed;
  top: 34px;
  left: 34px;
  z-index: 20;
}

.login-right {
  position: relative;
  background:
    linear-gradient(135deg, rgba(234, 77, 58, .15), rgba(234, 77, 58, .02)),
    radial-gradient(circle at 60% 70%, rgba(234, 77, 58, .25), transparent 60%),
    linear-gradient(180deg, #2b1b2b, #000);
  overflow: hidden;
}

.login-right .brand {
  position: absolute;
  bottom: 34px;
  left: 34px;
  font-weight: 1000;
  color: rgba(255, 255, 255, .70);
  letter-spacing: .4px;
}

.checkout-wrap {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 26px 0 80px;
}

.checkout-card {
  width: min(420px, 92vw);
  padding: 18px 18px 20px;

}

.checkout-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.checkout-head h1 {
  margin: 0;
  font-size: 18px;
  font-weight: 1000;
}

.summary {
  background: rgba(0, 0, 0, .02);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 12px;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 900;
  color: rgba(0, 0, 0, .65);
  font-size: 13px;
  margin: 6px 0;
}

.summary-row .sum {
  color: var(--accent2);
}

.card-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.inline-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.checkout-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.checkout-cards-box {
  margin-top: 12px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 12px;
}

.checkout-cards-head {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 900;
  color: rgba(0, 0, 0, .7);
}

.checkout-cards-head .btn {
  min-height: 30px;
  padding: 0;
}

.checkout-cards-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 4px;
}

.checkout-card-chip {
  border: 1px solid rgba(0, 0, 0, .14);
  background: #fff;
  border-radius: 12px;
  min-width: 150px;
  padding: 10px;
  display: grid;
  gap: 4px;
  cursor: pointer;
  text-align: left;
}

.checkout-card-chip.is-active {
  border-color: rgba(234, 77, 58, .9);
  box-shadow: 0 0 0 2px rgba(234, 77, 58, .2) inset;
}

.checkout-card-chip__mask {
  font-weight: 900;
}

.checkout-card-chip__meta {
  color: rgba(0, 0, 0, .55);
  font-size: 12px;
  font-weight: 800;
}

.processing-page {
  margin: 0;
  min-height: 100vh;
  background: #f6f6f7;
}

.processing-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  place-content: center;
  gap: 10px;
}

.processing-spinner {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 4px solid rgba(0, 0, 0, .1);
  border-top-color: rgba(234, 77, 58, .95);
  animation: processing-spin 0.8s linear infinite;
}

.processing-text {
  font-weight: 1000;
  color: rgba(0, 0, 0, .78);
}

.processing-sub {
  color: rgba(0, 0, 0, .55);
  font-weight: 800;
}

.processing-error {
  margin-top: 8px;
  color: #b91c1c;
  font-weight: 800;
}

@keyframes processing-spin {
  to {
    transform: rotate(360deg);
  }
}

.login-back {
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}

.login-back span {
  color: var(--muted2);
  margin-right: 10px;
  font-weight: 1000;
}

.login-left h1 {
  margin: 40px 0 6px;
  font-size: 24px;
  font-weight: 1000;
}

.left_hello {
  width: 320px;

  h1 {
    margin: 0 0 10px;
  }
}

.login-left .sub {
  color: var(--muted);
  font-weight: 800;
  margin: 0 0 32px;
  font-size: 14px;
}

.yandex_logo {
  width: 24px;
  height: 24px;
}

.login-form {
  width: min(400px, 100%);
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.login-consent input[type="checkbox"] {
  margin-top: 2px;
}

.login-note {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.login-help {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.login-help .help-btn {
  width: 320px;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 980px) {
  .container {
    width: min(1180px, calc(100% - 26px));
  }

  .hero-row {
    grid-template-columns: 1fr;
  }

  .landing-svc-row {
    grid-template-columns: 1fr;
  }

  .service-block {
    grid-template-columns: 1fr;
  }

  .quote-row {
    grid-template-columns: 1fr;
  }

  .app-shell {
    padding: 14px 0 60px;
  }

  .app-burger {
    display: inline-flex;
  }

  .sidebar {
    position: fixed;
    left: 14px;
    top: 70px;
    z-index: 100;
    transform: translateX(-120%);
    transition: transform .18s ease;
    max-width: 86vw;
  }

  .app-shell input[type="checkbox"]:checked~.sidebar {
    transform: translateX(0);
  }

  .app-content {
    width: 100%;
    min-width: 0;
    position: relative;
  }

  .app-content::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .35);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity .16s ease;
  }

  .app-shell input[type="checkbox"]:checked~.app-content::before {
    opacity: 1;
    pointer-events: auto;
  }

  .app-content {
    width: 100%;
  }

  .app-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .print-grid {
    grid-template-columns: 1fr;
  }

  .print-left {
    height: 280px;
  }

  .saved-chips {
    grid-template-columns: 1fr;
  }

  .pay-cards {
    grid-template-columns: 1fr;
  }

  .profile-form {
    grid-template-columns: 1fr;
  }

  .login-wrap {
    grid-template-columns: 1fr;
  }

  .login-right {
    display: none;
  }
}

/* ===== Landing (главная 1-в-1 по макету) ===== */
.landing-home {
  background: #ffffff;
  padding-bottom: 40px;
  min-height: 100vh;
}

/* ===== Landing (главная точная верстка) ===== */
.landing-page {
  background: #ffffff;
  color: #2c2c2c;
  min-height: 100vh;
  overflow-x: clip;
}

/* На главной контейнер немного уже, как на макете */
.landing-page .container {
  width: min(1120px, calc(100% - 56px));
}

/* —— Landing: лёгкие анимации (минимализм) —— */
@keyframes landing-hero-line-in {
  from {
    opacity: 0;
    transform: translateY(1.1rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.landing-reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.landing-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.landing-service-cards .landing-reveal:nth-child(1) {
  transition-delay: 0.04s;
}

.landing-service-cards .landing-reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.landing-service-cards .landing-reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.landing-portfolio__grid .landing-reveal:nth-child(1) {
  transition-delay: 0.02s;
}

.landing-portfolio__grid .landing-reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.landing-portfolio__grid .landing-reveal:nth-child(3) {
  transition-delay: 0.14s;
}

.landing-portfolio__grid .landing-reveal:nth-child(4) {
  transition-delay: 0.1s;
}

.landing-portfolio__grid .landing-reveal:nth-child(5) {
  transition-delay: 0.16s;
}

.landing-portfolio__grid .landing-reveal:nth-child(6) {
  transition-delay: 0.2s;
}

.landing-dashed__inner .landing-reveal {
  transition:
    opacity 0.42s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.landing-dashed__inner .landing-reveal:nth-child(1) {
  transition-delay: 0.02s;
}

.landing-dashed__inner .landing-reveal:nth-child(2) {
  transition-delay: 0.05s;
}

.landing-dashed__inner .landing-reveal:nth-child(3) {
  transition-delay: 0.08s;
}

.landing-anim-line {
  opacity: 0;
  animation: landing-hero-line-in 0.78s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.landing-anim-line:nth-child(1) {
  animation-delay: 0.08s;
}

.landing-anim-line:nth-child(2) {
  animation-delay: 0.16s;
}

.landing-anim-line:nth-child(3) {
  animation-delay: 0.24s;
}

.landing-fade-up {
  opacity: 0;
  animation: landing-hero-line-in 0.72s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.landing-fade-up--delay-3 {
  animation-delay: 0.38s;
}

.landing-fade-up--delay-4 {
  animation-delay: 0.48s;
}

@media (prefers-reduced-motion: reduce) {

  .landing-reveal,
  .landing-reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .landing-anim-line,
  .landing-fade-up {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

}

.landing-header {
  position: static;
  top: auto;
  z-index: 40;
  padding: 18px 0 4px;
  background: transparent;
  transition: padding 0.35s ease;
}

.landing-header--scrolled {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  padding: 18px 0 4px;
}

.landing-header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 0;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease,
    -webkit-backdrop-filter 0.35s ease,
    border-radius 0.35s ease,
    padding 0.35s ease;
}

.landing-header--scrolled .landing-header__inner {
  background: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.landing-brand {
  font-weight: 1000;
  font-size: 25px;
  color: rgba(0, 0, 0, .75);
  transition: color 0.35s ease;
}

.landing-header--scrolled .landing-brand {
  color: rgba(0, 0, 0, .75);
  text-shadow: none;
}

.landing-header--scrolled .landing-header__btn.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.38) !important;
  color: #fff !important;
}

.landing-header--scrolled .landing-header__btn.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55) !important;
}

.landing-header__actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.landing-header__btn {
  padding: 8px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 1000;
}

.landing-header__btn--red {
  background: var(--accent) !important;
}

.landing-hero {
  margin-top: 100px;
  position: relative;
  padding: 18px 0 40px;
}

/* Волна фона снизу */
.landing-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.landing-hero__left {
  padding-left: 10px;
}

.landing-hero__title {
  font-weight: 1000;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -.4px;
}

.landing-hero__title-accent {
  color: var(--accent);
  font-weight: 1000;
  font-size: 52px;
}

.landing-hero__subtitle {
  margin-top: 10px;
  color: rgba(0, 0, 0, .45);
  font-weight: 900;
  font-size: 14px;
}

.landing-hero__cta {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.landing-btn-small {
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 1000;
}

.landing-btn-small--ghost {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(234, 77, 58, .35);
  color: var(--accent);
}

.landing-btn-small--ghost:hover {
  background: rgba(234, 77, 58, .06);
  border-color: rgba(234, 77, 58, .55);
}

.landing-btn-small--red {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}

.landing-btn-small--red:hover {
  background: var(--accent2) !important;
}

.landing-img-slot {
  background-image: url('image/Rectangle_1_107.png');
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  overflow: hidden;
}

.landing-img-slot--printer {
  width: 420px;
  height: 430px;
  margin-left: auto;
  margin-right: auto;
}

.landing-services {
  margin-top: 100px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.landing-services__center-text {
  text-align: center;
  margin-top: 8px;
}

.landing-services__center-title {
  font-size: 24px;
  font-weight: 1000;
  color: #2c2c2c;
}

.landing-services__center-sub {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(0, 0, 0, .55);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}

.landing-service-cards {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.landing-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, .04);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .06);
  padding: 16px 14px 18px;
  transition:
    transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.35s ease;
}

.landing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.09);
  border-color: rgba(234, 77, 58, 0.12);
}

.landing-card__title {
  text-align: center;
  font-weight: 1000;
  font-size: 12px;
  color: rgba(0, 0, 0, .65);
}

.landing-card__title--accent {
  color: var(--accent);
}

.landing-card__img {
  margin-top: 14px;
  height: 220px;
  border-radius: 6px;
  border: none;

}

.landing-card__bottom {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}

.landing-card__hint {
  font-size: 14px;
  font-weight: 800;
  color: rgba(0, 0, 0, .55);
  line-height: 1.3;
  margin-bottom: 12px;
}

.landing-card__btn {
  display: inline-flex;
  width: 120px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px 12px !important;
  border-radius: 12px !important;
  border: 2px solid rgba(234, 77, 58, .35) !important;
  background: transparent !important;
  color: var(--accent) !important;
  font-weight: 1000 !important;
  font-size: 12px !important;
}

.landing-card__btn:hover {
  background: rgba(234, 77, 58, .06) !important;
  border-color: rgba(244, 36, 5, 0.55) !important;
}

.landing-dashed {
  margin-top: 100px;
  background: #f4f5f7;
  padding: 34px 0px 34px;
}

.landing-dashed__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.landing-dashed__item {
  background: #fff;
  border-radius: 0;
  border: 2px dashed rgba(234, 77, 58, .35);
  border-radius: 12px;
  padding: 18px 18px;
  display: grid;
  grid-template-columns: 130px 1fr 170px;
  align-items: center;
  column-gap: 20px;
  transition:
    transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.4s ease;
}

.landing-dashed__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(234, 77, 58, 0.08);
}

.landing-dashed__item--last {
  margin-bottom: 0;
}

.landing-dashed__img-slot {
  width: 150px;
  height: 120px;

}

.landing-dashed__title {
  font-size: 24px;
  font-weight: 1000;
  color: rgba(0, 0, 0, .75);
}

.landing-dashed__title--accent {
  color: var(--accent);
}

.landing-dashed__desc {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(0, 0, 0, .55);
  font-weight: 700;
  line-height: 1.35;
}

.landing-dashed__list {
  margin: 8px 0 0;
  padding-left: 18px;
  color: rgba(0, 0, 0, .55);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.45;
}

.landing-dashed__list li {
  color: var(--accent);
}

.landing-dashed__cta {
  display: flex;
  justify-content: flex-end;
}

.landing-btn-dashed {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 12px !important;
  font-weight: 1000 !important;
  font-size: 12px !important;
  height: 37px;
  width: 120px;
  width: 120px;
}

.landing-btn-dashed:hover {
  background: var(--accent2) !important;
}

/* —— Портфолио / альбом работ —— */
.landing-portfolio {
  margin-top: 100px;
  padding: 0px 0 0px;
}

.landing-portfolio__head {
  text-align: center;
  margin-bottom: 26px;
}

.landing-portfolio__title {
  margin: 0;
  font-size: 24px;
  font-weight: 1000;
  color: rgba(0, 0, 0, 0.75);
  letter-spacing: -0.02em;
}

.landing-portfolio__title-accent {
  color: var(--accent);
}

.landing-portfolio__sub {
  margin: 10px auto 0;
  max-width: 520px;
  font-size: 0.875rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.45;
}

.landing-portfolio__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.landing-portfolio__item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #f4f5f7;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.45s ease;
}

.landing-portfolio__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.landing-portfolio__figure {
  position: relative;
  margin: 0;
  height: 100%;
  min-height: 200px;
  overflow: hidden;
}

.landing-portfolio__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.55) 100%);
  opacity: 0.55;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.landing-portfolio__item:hover .landing-portfolio__figure::after {
  opacity: 0.75;
}

.landing-portfolio__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
  transform: scale(1);
  transition: transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.landing-portfolio__item--featured .landing-portfolio__figure img {
  aspect-ratio: 16 / 11;
  min-height: 240px;
}

.landing-portfolio__item:hover .landing-portfolio__figure img {
  transform: scale(1.05);
}

.landing-portfolio__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.45s ease;
}

@media (hover: hover) and (pointer: fine) {
  .landing-portfolio__caption {
    transform: translateY(6px);
    opacity: 0.92;
  }

  .landing-portfolio__item:hover .landing-portfolio__caption {
    transform: translateY(0);
    opacity: 1;
  }
}

.landing-portfolio__cap-title {
  font-size: 0.9rem;
  font-weight: 1000;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.landing-portfolio__cap-meta {
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .landing-portfolio__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-portfolio__item--featured {
    grid-column: 1 / -1;
  }

  .landing-portfolio__item--wide {
    grid-column: 1 / -1;
  }

  .landing-portfolio__item--featured .landing-portfolio__figure img {
    aspect-ratio: 21 / 9;
    min-height: 260px;
  }
}

@media (min-width: 900px) {
  .landing-portfolio__grid {
    grid-template-columns: 1.15fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 16px;
  }

  .landing-portfolio__item--featured {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .landing-portfolio__grid .landing-portfolio__item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .landing-portfolio__grid .landing-portfolio__item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }

  .landing-portfolio__grid .landing-portfolio__item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .landing-portfolio__grid .landing-portfolio__item:nth-child(6) {
    grid-column: 3;
    grid-row: 2;
  }

  .landing-portfolio__item--wide {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .landing-portfolio__item--featured .landing-portfolio__figure img {
    aspect-ratio: auto;
    min-height: min(420px, 52vh);
    height: 100%;
  }

  .landing-portfolio__grid .landing-portfolio__item:nth-child(2) .landing-portfolio__figure img,
  .landing-portfolio__grid .landing-portfolio__item:nth-child(3) .landing-portfolio__figure img,
  .landing-portfolio__grid .landing-portfolio__item:nth-child(4) .landing-portfolio__figure img,
  .landing-portfolio__grid .landing-portfolio__item:nth-child(6) .landing-portfolio__figure img {
    aspect-ratio: 1;
    min-height: 200px;
  }

  .landing-portfolio__item--wide .landing-portfolio__figure img {
    aspect-ratio: 21 / 8;
    min-height: 200px;
  }
}

.landing-testimonials {
  margin-top: 70px;
  background: #fff;
  padding: 0px 0px 0px;
}

.landing-testimonials__wrap {
  position: relative;
}

.landing-testimonials__head {
  text-align: left;
}

.landing-testimonials__title {
  font-size: 24px;
  font-weight: 1000;
  color: rgba(0, 0, 0, .75);
}

.landing-testimonials__title-accent {
  color: var(--accent);
}

.landing-testimonials__sub {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(0, 0, 0, .55);
  font-weight: 800;
  max-width: 600px;
}

.landing-testimonials__controls {
  display: flex;
  justify-content: flex-start;
  margin-top: 16px;
  gap: 10px;
}

.landing-testimonials__dot {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .18s ease, opacity .18s ease;
}

.landing-testimonials__dot img {
  width: 24px;
  height: 24px;
}

.landing-testimonials__dot:hover:not(:disabled) {
  transform: translateY(-1px);
}

.landing-testimonials__dot:disabled {
  opacity: .45;
  cursor: default;
}

.landing-testimonials__map {
  position: relative;
  margin-top: 22px;
  min-height: 500px;
}

.landing-testimonials__map-bg {
  height: 500px;
  position: absolute;
  inset: -8px 0 0;
  border-radius: 0;
  border: none;
  background:
    linear-gradient(180deg, rgba(234, 77, 58, .04), rgba(234, 77, 58, .00)),
    repeating-linear-gradient(45deg, rgba(234, 77, 58, .18), rgba(234, 77, 58, .02) 10px, transparent 10px, transparent 24px);
  opacity: .55;
}

.landing-testimonials__slider {
  position: absolute;
  inset: 34px 16px auto;
  z-index: 2;
  overflow: hidden;
}

.landing-testimonials__track {
  display: flex;
  gap: 12px;
  transition: transform .48s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.landing-review-form {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 20px;
  width: auto;
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .88);
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .05);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .10);
  padding: 16px 14px 14px;
  z-index: 2;
}

.landing-review-form__title {
  font-weight: 1000;
  font-size: 16px;
  color: rgba(0, 0, 0, .75);
}

.landing-review-form__sub {
  margin-top: 8px;
  font-weight: 800;
  font-size: 12px;
  color: rgba(0, 0, 0, .55);
}

.landing-stars {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  gap: 4px;
}

.landing-stars__btn {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: transform .16s ease;
}

.landing-stars__btn.is-active {
  color: #f59e0b;
}

.landing-stars__btn:hover {
  transform: scale(1.08);
}

.landing-stars__btn img {
  width: 19px;
  height: 19px;
  display: block;
}

.landing-review-form__field .textarea {
  min-height: 90px;
  resize: none;
}

.landing-review-form__btn {
  margin-top: 14px;
  width: 100%;
  border-radius: 12px !important;
  padding: 12px 14px !important;
}

.landing-review {
  flex: 0 0 calc((100% - 24px) / 3);
  min-height: 142px;
  background: rgba(255, 255, 255, .80);
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .05);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .08);
  padding: 14px 14px;
  z-index: 2;
}

.landing-review__text {
  font-size: 12px;
  font-weight: 800;
  color: rgba(0, 0, 0, .55);
  line-height: 1.35;
  margin-top: 6px;
}

.landing-review__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(0, 0, 0, .62);
  font-size: 11px;
  font-weight: 700;
}

.landing-review__stars {
  margin-top: 8px;
  display: flex;
  gap: 3px;
}

.landing-review__star-icon {
  width: 12px;
  height: 12px;
  display: block;
}

/* Тест: убрать “старые” landing-home placeholder-декорации для главной */
.landing-page .img-ph {
  border: none !important;
}

.landing-page .landing-img-slot,
.landing-page .landing-img-slot--printer {
  border: none;
}

@media (max-width: 980px) {
  .landing-page .container {
    width: calc(100% - 26px);
  }

  .landing-hero {
    margin-top: 56px;
  }

  .landing-hero__inner {
    grid-template-columns: 1fr;
  }

  .landing-img-slot--printer {
    width: 100%;
    max-width: 520px;
    height: 260px;
  }

  .landing-service-cards {
    grid-template-columns: 1fr;
  }

  .landing-dashed__item {
    grid-template-columns: 1fr;
  }

  .landing-dashed__cta {
    justify-content: flex-start;
  }

  .landing-testimonials__map {
    min-height: 560px;
  }

  .landing-review {
    flex-basis: calc((100% - 12px) / 2);
  }

  .landing-review-form {
    max-width: none;
  }

  .landing-testimonials__map-bg {
    inset: 0;
  }
}

@media (max-width: 720px) {
  .landing-page .container {
    width: calc(100% - 20px);
  }

  .landing-header__inner {
    flex-wrap: wrap;
    gap: 10px;
  }

  .landing-header__actions {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }

  .landing-hero__left {
    padding-left: 0;
  }

  .landing-hero__title,
  .landing-hero__title-accent {
    font-size: clamp(26px, 8.8vw, 34px);
    line-height: 1.1;
    letter-spacing: -0.1px;
    overflow-wrap: normal;
    word-break: normal;
  }

  .landing-hero__subtitle {
    font-size: clamp(14px, 4.2vw, 16px);
    line-height: 1.35;
  }

  .landing-hero__cta {
    flex-wrap: wrap;
    gap: 10px;
  }

  .landing-btn-small {
    flex: 1 1 140px;
  }

  .landing-img-slot--printer {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 4 / 3;
    height: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #fff;
  }

  .landing-header--scrolled {
    padding: 8px 10px 12px;
  }

  .landing-header--scrolled .landing-header__inner {
    padding: 10px 14px;
    border-radius: 14px;
  }

  .landing-testimonials__slider {
    inset: 24px 10px auto;
  }

  .landing-review {
    flex-basis: 100%;
  }

  .landing-review-form {
    left: 10px;
    right: 10px;
    bottom: 14px;
  }
}

/* ===== Footer (единый для всех страниц) ===== */
.site-footer {
  background: #41414123;
  padding: 26px 0;
  margin-top: 100px;
}

.site-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.site-footer__brand {
  font-weight: 1000;
  font-size: 14px;
  color: rgba(0, 0, 0, .75);
}

.site-footer__text {
  margin-top: 8px;
  color: rgba(0, 0, 0, .55);
  font-weight: 800;
  font-size: 12px;
  line-height: 1.45;
  max-width: 420px;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.site-footer__nav a {
  font-weight: 900;
  font-size: 12px;
  color: rgba(0, 0, 0, .60);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background .14s ease, border-color .14s ease, color .14s ease, transform .14s ease;
}

.site-footer__nav a:hover {
  background: rgba(234, 77, 58, .06);
  border-color: rgba(234, 77, 58, .22);
  color: rgba(0, 0, 0, .75);
}

.site-footer__nav a:active {
  transform: translateY(1px);
}

.site-footer__right {
  text-align: right;
}

.site-footer__contacts {
  color: rgba(0, 0, 0, .60);
  font-weight: 900;
  font-size: 12px;
}

.site-footer__copy {
  margin-top: 10px;
  color: rgba(0, 0, 0, .45);
  font-weight: 800;
  font-size: 12px;
}

@media (max-width: 980px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__nav {
    justify-content: flex-start;
  }

  .site-footer__right {
    text-align: left;
  }
}

.landing-home__hero {
  position: relative;
}

/* Верхняя светлая “волна/фон” */
.landing-home__hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 210px;
  background: #f7f7f8;
  border-bottom-left-radius: 180px;
  border-bottom-right-radius: 180px;
  z-index: 0;
}

.landing-home__hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "pill pill"
    "left right";
  align-items: start;
  padding-top: 22px;
  gap: 18px;
}

.hero-top-pill {
  grid-area: pill;
  justify-self: center;
  margin-bottom: 2px;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(234, 77, 58, .92);
  color: #fff;
  font-weight: 1000;
  font-size: 12px;
  letter-spacing: .2px;
}

.hero-left {
  grid-area: left;
  padding-left: 8px;
  padding-top: 14px;
}

.hero-kicker {
  font-weight: 1000;
  font-size: 14px;
  color: rgba(0, 0, 0, .70);
  line-height: 1.25;
}

.hero-kicker--accent {
  color: rgba(234, 77, 58, .95);
  font-size: 13px;
  margin-top: 6px;
  letter-spacing: .3px;
}

.hero-right {
  grid-area: right;
  display: flex;
  justify-content: flex-end;
  padding-right: 8px;
  padding-top: 6px;
}

.hero-img {
  width: 420px;
  height: 190px;
  border-radius: 6px;
  border: none;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, .03), rgba(0, 0, 0, .01)),
    radial-gradient(circle at 60% 20%, rgba(234, 77, 58, .18), transparent 55%),
    repeating-linear-gradient(45deg, rgba(234, 77, 58, .12), rgba(234, 77, 58, .02) 10px, transparent 10px, transparent 22px);
}

/* Карточки 3 услуг (верх) */
.landing-home__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 12px;
  padding-bottom: 12px;
}

.landing-card {
  background: rgba(255, 255, 255, .72);
  border: 1px solid #31313151;
  border-radius: 12px;
  padding: 14px 14px 44px;
  position: relative;
  min-height: 150px;
}

.landing-card__img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 220px;
  border-radius: 10px;
  border: 1px solid rgba(234, 77, 58, .18);

}

.landing-card__title {
  margin-top: 12px;
  font-weight: 1000;
  color: rgba(234, 77, 58, .95);
  font-size: 16px;
}

.landing-card__desc {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(0, 0, 0, .55);
  font-weight: 800;
  line-height: 1.35;
}

.btn-red-mini {
  position: absolute;
  right: 12px;
  bottom: 14px;
  padding: 8px 14px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 1000;
  white-space: nowrap;
  border-color: rgba(0, 0, 0, .04) !important;
  background: var(--accent) !important;
}

.btn-red-mini:hover {
  background: var(--accent2) !important;
}

/* Список услуг (3 строки) */
.landing-home__services {
  margin-top: 10px;
  padding-top: 6px;
}

.service-row {
  display: grid;
  grid-template-columns: 94px 1fr 140px;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(234, 77, 58, .55);
}

.service-row--last {
  border-bottom: none;
}

.service-row--dotted {
  border-bottom: 1px dashed rgba(234, 77, 58, .55);
}

.service-row__icon {
  width: 68px;
  height: 68px;
  margin-left: 2px;
  border-radius: 12px;
  border: 1px solid rgba(234, 77, 58, .22);
  background:
    linear-gradient(135deg, rgba(234, 77, 58, .12), rgba(234, 77, 58, .02));
}

.service-row__title {
  font-weight: 1000;
  color: rgba(234, 77, 58, .95);
  font-size: 14px;
}

.service-row__desc {
  margin-top: 4px;
  color: rgba(0, 0, 0, .55);
  font-weight: 800;
  font-size: 12px;
  line-height: 1.4;
}

.btn-red-mini--action {
  justify-self: end;
  position: static;
  margin-right: 0;
  width: 120px;
}

/* Отзывы */
.landing-home__reviews {
  margin-top: 22px;
}

.reviews-title {
  font-weight: 1000;
  color: rgba(0, 0, 0, .70);
  font-size: 14px;
  margin-bottom: 12px;
}

.reviews-map {
  position: relative;
  height: 250px;
}

.reviews-map__bg {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(234, 77, 58, .18), rgba(234, 77, 58, .05)),
    radial-gradient(circle at 30% 60%, rgba(234, 77, 58, .25), transparent 60%);
  opacity: .6;
  border: 2px dashed rgba(234, 77, 58, .20);
}

.review-card {
  position: absolute;
  top: 44px;
  width: 210px;
  height: 82px;
  background: rgba(255, 255, 255, .55);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .02);
  padding: 10px;
}

.review-card__img {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, .25);
}

.review-card--left {
  left: 20px;
}

.review-card--mid {
  left: 160px;
}

.review-card--right {
  right: 12px;
}

.reviews-phone {
  position: absolute;
  right: 10px;
  top: 132px;
  width: 70px;
  height: 40px;
  border-radius: 20px;
  background: rgba(234, 77, 58, .15);
  border: 1px dashed rgba(234, 77, 58, .35);
}

.order-notify-root {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
}

.order-notify-bell {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(234, 77, 58, .35);
  position: relative;
}

.order-notify-bell img {
  width: 19px;
  height: 19px;
  display: block;
  margin: 0 auto;
  color: #fff;
}

.order-notify-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #bb1f31;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 1px solid #ffffff;
}

.order-notify-panel {
  position: absolute;
  right: 0;
  bottom: 62px;
  width: min(420px, calc(100vw - 24px));
  height: min(520px, calc(100vh - 120px));
  background: #e6eaf2;
  border-radius: 14px;
  border: 1px solid rgba(53, 64, 87, .26);
  box-shadow: 0 24px 48px rgba(17, 24, 39, .28);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.order-notify-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(53, 64, 87, .22);
  background: #dde3ee;
  flex-shrink: 0;
}

.order-notify-panel__head button {
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  color: #1f2937;
}

.order-notify-list {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 10px;
  background: #d9e0ec;
}

.order-notify-body {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 360px;
  max-height: min(66vh, 520px);
}

.notify-item {
  display: block;
  background: #edf2fa;
  border: 1px solid rgba(53, 64, 87, .2);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 8px;
}

.notify-item__logo {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  object-fit: cover;
  flex: 0 0 30px;
}

.notify-item__content {
  min-width: 0;
}

.notify-item__title {
  font-size: 13px;
  font-weight: 1000;
  color: #0f172a;
}

.notify-item__text {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(15, 23, 42, .95);
  white-space: pre-wrap;
  word-break: break-word;
}

.notify-item__time {
  margin-top: 6px;
  font-size: 11px;
  color: rgba(15, 23, 42, .66);
}

.order-notify-threads {
  border-right: 1px solid rgba(0, 0, 0, .08);
  overflow: auto;
  padding: 8px;
}

.order-thread-item {
  display: block;
  width: 100%;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
  border-radius: 10px;
  margin-bottom: 8px;
  padding: 8px;
  cursor: pointer;
  position: relative;
}

.order-thread-item.is-active {
  border-color: rgba(234, 77, 58, .45);
  background: rgba(234, 77, 58, .05);
}

.order-thread-item small {
  display: block;
  margin-top: 4px;
  color: rgba(15, 23, 42, .6);
  font-size: 11px;
}

.order-thread-item__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--accent2);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.order-notify-chat {
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.order-notify-messages {
  flex: 1;
  overflow: auto;
  padding: 10px;
  background: #f8fafc;
}

.order-message {
  max-width: 92%;
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.35;
}

.order-message.is-user {
  margin-left: auto;
  background: rgba(234, 77, 58, .12);
}

.order-message.is-admin {
  margin-right: auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
}

.order-message-meta {
  color: rgba(15, 23, 42, .55);
  font-size: 11px;
  margin-bottom: 4px;
}

.order-message-files {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.order-message-file {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent2);
}

.order-notify-form {
  padding: 8px;
  border-top: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
}

.order-notify-textarea {
  width: 100%;
  resize: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
}

.order-notify-form__actions {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.order-notify-file {
  font-size: 12px;
}

.order-notify-empty {
  color: rgba(15, 23, 42, .6);
  font-size: 13px;
  padding: 8px;
}

.order-notify-reply {
  border-top: 1px solid rgba(53, 64, 87, .22);
  padding: 10px;
  background: #dde3ee;
  flex-shrink: 0;
}

.order-notify-reply__text {
  width: 100%;
  resize: none;
  min-height: 64px;
  max-height: 120px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
  font: inherit;
}

.order-notify-reply__actions {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.order-notify-reply__file {
  font-size: 12px;
  max-width: 56%;
}

.order-notify-reply__send {
  min-width: 130px;
}

.order-notify-reply__status {
  margin-top: 6px;
  font-size: 12px;
  min-height: 16px;
}

/* Mobile layout для главной */
@media (max-width: 980px) {
  .landing-home__hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "pill"
      "left"
      "right";
  }

  .hero-right {
    justify-content: flex-start;
    padding-right: 0;
  }

  .hero-img {
    width: 100%;
    max-width: 420px;
    height: 180px;
  }

  .landing-home__cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-row {
    grid-template-columns: 84px 1fr;
    grid-template-rows: auto auto;
  }

  .btn-red-mini--action {
    grid-column: 1 / -1;
    justify-self: start;
    width: auto;
  }

  .reviews-map {
    height: 340px;
  }

  .review-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: auto;
    margin-top: 10px;
  }

  .review-card--left,
  .review-card--mid,
  .review-card--right {
    display: none;
  }

  .reviews-phone {
    display: none;
  }

  .order-notify-panel {
    width: calc(100vw - 12px);
    right: -2px;
    height: min(500px, calc(100vh - 94px));
  }

  .order-notify-body {
    grid-template-columns: 1fr;
  }

  .order-notify-threads {
    max-height: 160px;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
  }
}

/* ===== Responsive Overhaul (global) ===== */
@media (max-width: 1200px) {
  .container {
    width: min(1180px, calc(100% - 28px));
  }

  .landing-page .container {
    width: min(1120px, calc(100% - 28px));
  }

  .landing-hero__title,
  .landing-hero__title-accent {
    font-size: clamp(34px, 6vw, 52px);
  }

  .landing-img-slot--printer {
    width: min(100%, 420px);
    height: clamp(260px, 40vw, 430px);
  }
}

@media (max-width: 1024px) {
  .app-shell {
    gap: 12px;
    padding: 12px 0 42px;
  }

  .sidebar {
    width: min(300px, calc(100vw - 32px));
    max-height: calc(100vh - 86px);
    overflow: auto;
  }

  .app-top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 14px;
  }

  .print-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .print-left,
  .print-left1,
  .print-left2 {
    height: auto;
    min-height: 300px;
  }

  .print-right {
    padding: 14px;
  }

  .model-panel__toolbar {
    top: 12px;
    right: 12px;
  }

  .order-notify-panel {
    width: min(460px, calc(100vw - 16px));
    height: min(520px, calc(100vh - 90px));
    right: 0;
  }

  .landing-header__actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .landing-header__btn {
    min-height: 40px;
  }

  .landing-services,
  .landing-dashed,
  .landing-portfolio,
  .landing-testimonials {
    margin-top: 64px;
  }

  .landing-service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-dashed__item {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .landing-dashed__img-slot {
    width: min(100%, 200px);
    height: auto;
  }
}

@media (max-width: 768px) {
  .container,
  .landing-page .container {
    width: calc(100% - 18px);
  }

  .app-shell {
    display: block;
    padding-top: 8px;
  }

  .app-burger {
    display: inline-flex;
    width: 40px;
    height: 40px;
    position: fixed;
    left: 10px;
    top: 10px;
    z-index: 140;
  }

  .app-content {
    padding-top: 2px;
  }

  .sidebar {
    left: 10px;
    top: 56px;
    transform: translateX(-130%);
    max-height: calc(100vh - 66px);
    box-shadow: 0 18px 34px rgba(16, 24, 40, .18);
  }

  .app-shell input[type="checkbox"]:checked~.sidebar {
    transform: translateX(0);
  }

  .app-title {
    font-size: 20px;
  }

  .app-sub {
    font-size: 12px;
  }

  .breadcrumb {
    font-size: 11px;
    gap: 4px;
  }

  .stepper {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
    --step-gap: 14px;
    gap: 14px;
    scrollbar-width: thin;
  }

  .step {
    width: 76px;
    flex: 0 0 auto;
  }

  .step:not(:last-child)::after {
    width: calc(100% + var(--step-gap) - 34px);
  }

  .orders-card {
    overflow: auto;
  }

  .orders-table {
    min-width: 760px;
  }

  .order-details-panel {
    grid-template-columns: 1fr;
    padding: 10px 12px;
    gap: 10px;
  }

  .saved-chips,
  .pay-cards {
    grid-template-columns: 1fr;
  }

  .pay-list-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .pay-item-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .pay-item .right {
    text-align: left;
  }

  .search-row {
    flex-direction: column;
    align-items: stretch;
  }

  .search-row .btn {
    width: 100%;
  }

  #support-messages {
    max-height: 260px !important;
  }

  #support-chat {
    margin-top: 12px !important;
  }

  .inline-2,
  .two-cols {
    grid-template-columns: 1fr;
  }

  .landing-header {
    padding: 10px 0 4px;
  }

  .landing-header__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .landing-header__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .landing-header__btn {
    font-size: 13px;
  }

  .landing-hero {
    margin-top: 34px;
    padding-bottom: 22px;
  }

  .landing-hero__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .landing-hero__left {
    padding-left: 0;
  }

  .landing-hero__title,
  .landing-hero__title-accent {
    font-size: clamp(28px, 9.5vw, 42px);
    line-height: 1.08;
  }

  .landing-hero__cta {
    flex-wrap: wrap;
    gap: 10px;
  }

  .landing-btn-small {
    min-height: 40px;
  }

  .landing-service-cards {
    grid-template-columns: 1fr;
  }

  .landing-review-form__btn,
  .btn,
  .btn-primary,
  .btn-ghost,
  .btn-outline {
    min-height: 40px;
  }

  .site-footer {
    margin-top: 56px;
    padding: 18px 0;
  }

  .site-footer__inner {
    gap: 10px;
  }

  .order-notify-root {
    right: 10px;
    bottom: 10px;
  }

  .order-notify-panel {
    width: calc(100vw - 12px);
    right: -2px;
    height: min(500px, calc(100vh - 70px));
    bottom: 54px;
  }

  .order-notify-reply__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .order-notify-reply__file,
  .order-notify-reply__send {
    max-width: 100%;
    width: 100%;
  }

  .map-placeholder {
    height: 180px;
    font-size: 20px;
  }

  .delivery-map-fallback {
    font-size: 16px;
    text-align: center;
    padding: 0 10px;
  }
}

@media (max-width: 560px) {
  .pill-group {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .pill {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .login-left {
    padding: 24px 16px;
  }

  .login-left h1 {
    margin-top: 20px;
    font-size: 22px;
  }

  .left_hello,
  .login-help .help-btn {
    width: 100%;
  }

  .checkout-wrap {
    padding: 16px 0 28px;
    align-items: flex-start;
  }

  .checkout-card {
    width: min(100%, calc(100vw - 12px));
    padding: 14px 12px 16px;
  }

  .summary-row {
    font-size: 12px;
  }

  .print-right {
    padding: 12px;
  }

  .panel-grey,
  .panel-grey1 {
    padding: 14px;
  }

  .config-title {
    font-size: 15px;
  }

  .landing-brand {
    font-size: 22px;
  }

  .landing-services__center-title,
  .landing-portfolio__title,
  .landing-testimonials__title,
  .landing-dashed__title {
    font-size: 20px;
  }

  .landing-services__center-sub,
  .landing-portfolio__sub,
  .landing-testimonials__sub {
    font-size: 13px;
  }

  .order-notify-bell {
    width: 40px;
    height: 40px;
  }
}