:root {
  --ink: #12152d;
  --muted: #6e7288;
  --line: #e2e4ef;
  --purple: #6635df;
  --purple-2: #8b54ef;
  --purple-soft: #f4f0ff;
  --purple-pale: #faf8ff;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(24, 20, 61, 0.20);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 1500px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #eef1f8;
}
button, input, textarea { font: inherit; }
button { border: 0; }
a { color: inherit; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(102, 53, 223, 0.26);
  outline-offset: 2px;
}
body.modal-open { overflow: hidden; }
[hidden] { display: none !important; }

.header-load-error {
  position: fixed;
  z-index: 2000;
  top: 20px;
  left: 20px;
  padding: 14px 18px;
  border-radius: 12px;
  color: #fff;
  background: #b34051;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto 0;
  height: 102px;
  padding: 12px 0;
  color: #fff;
  transition: height .28s ease, padding .28s ease;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(100, 78, 160, .82), rgba(126, 96, 184, .70));
  border-bottom: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  transition: background .30s ease, box-shadow .30s ease, border-color .30s ease;
}
.site-header--scrolled { height: 76px; padding: 7px 0; }
.site-header--scrolled::before {
  background: linear-gradient(135deg, rgba(113, 82, 171, .96), rgba(91, 66, 151, .94));
  border-bottom-color: rgba(255,255,255,.24);
  box-shadow: 0 12px 34px rgba(52, 34, 94, .20);
}
.site-header__container {
  position: relative;
  z-index: 1;
  width: min(97vw, 1920px);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 84px minmax(500px, 1fr) auto;
  align-items: center;
  column-gap: clamp(16px, 1.25vw, 28px);
}
.site-header__logo {
  width: 178px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: width .22s ease, height .22s ease;
}
.site-header--scrolled .site-header__logo { width: 148px; height: 56px; }
.site-header__logo img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.site-header__socials { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.site-header__socials a {
  width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.13);
  transition: transform .18s ease, background .18s ease;
}
.site-header__socials a:hover { transform: translateY(-2px); background: rgba(255,255,255,.20); }
.site-header__socials img { width: 23px; height: 23px; object-fit: contain; }
.site-header__nav {
  min-width: 470px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 1.65vw, 34px);
}
.site-header__nav a {
  position: relative;
  padding: 12px 4px;
  color: rgba(255,255,255,.84);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .045em;
  text-decoration: none;
  white-space: nowrap;
}
.site-header__nav a::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px; bottom: 6px;
  height: 2px; border-radius: 99px; background: #a978ff;
  transform: scaleX(0); transition: transform .18s ease;
}
.site-header__nav a:hover::after, .site-header__nav a.is-active::after { transform: scaleX(1); }
.site-header__contact {
  display: grid;
  grid-template-columns: auto auto auto 42px 88px;
  align-items: center;
  gap: clamp(10px, .85vw, 18px);
}
.header-phone, .header-sms {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; text-decoration: none; white-space: nowrap;
  font-size: 13px; font-weight: 700;
}
.header-phone__icon {
  width: 15px; height: 15px; border: 2px solid currentColor; border-radius: 4px 9px 9px 4px;
  transform: rotate(45deg); opacity: .88;
}
.header-sms img { width: 24px; height: 24px; object-fit: contain; }
.header-callback {
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.07);
  font-size: 11px;
  font-weight: 760;
  white-space: nowrap;
  cursor: pointer;
}
.header-callback:hover { background: rgba(255,255,255,.15); }
.header-languages, .header-account { display: flex; flex-direction: column; align-items: stretch; justify-content: center; }
.header-languages { border-left: 1px solid rgba(255,255,255,.20); padding-left: 12px; gap: 3px; }
.header-account { border-left: 1px solid rgba(255,255,255,.20); padding-left: 13px; gap: 4px; }
.header-languages button, .header-account button {
  padding: 1px 0; color: rgba(255,255,255,.90); background: transparent;
  font-size: 11px; font-weight: 740; text-align: left; cursor: pointer; white-space: nowrap;
}
.header-languages button:hover, .header-account button:hover { color: #b993ff; }

/* Hero */
.hero {
  position: relative;
  min-height: 980px;
  padding: 118px 0 42px;
  overflow: hidden;
  background: #d9deec url('../assets/images/home/hero/home-hero-main.webp') center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.20) 0%, rgba(255,255,255,.10) 27%, rgba(255,255,255,.025) 49%, rgba(255,255,255,0) 72%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(238,241,248,.52));
  pointer-events: none;
}
.hero__container {
  position: relative;
  z-index: 1;
  width: min(97vw, 1920px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(470px, 34%) minmax(0, 66%);
  align-items: center;
  gap: clamp(22px, 1.7vw, 34px);
}
.hero__content { color: #10142a; text-shadow: 0 1px 1px rgba(255,255,255,.35); }
.hero__eyebrow { margin-bottom: 18px; color: #7242da; font-size: 14px; font-weight: 800; letter-spacing: .09em; }
.hero h1 { margin: 0; font-size: clamp(42px, 3vw, 64px); line-height: 1.04; letter-spacing: -.035em; }
.hero__lead { max-width: 510px; margin: 24px 0 34px; font-size: 18px; line-height: 1.55; color: #282d43; }
.hero__advantages { display: grid; gap: 16px; max-width: 420px; }
.hero-advantage { display: flex; align-items: center; gap: 14px; }
.hero-advantage__icon {
  width: 48px; height: 48px; flex: 0 0 48px; border-radius: 50%;
  border: 2px solid rgba(113,66,218,.72); background: rgba(255,255,255,.26);
  backdrop-filter: blur(4px);
}
.hero-advantage div:last-child { display: flex; flex-direction: column; gap: 3px; }
.hero-advantage strong { font-size: 16px; }
.hero-advantage span { color: #34394e; font-size: 13px; }

/* Unified calculator */
.calculator-shell {
  width: 100%;
  height: 840px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 292px;
  overflow: hidden;
  border: 1px solid rgba(214,216,230,.95);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}
.calculator-categories, .calculator-configurator, .order-panel { min-width: 0; min-height: 0; }
.calculator-categories {
  padding: 20px 13px;
  background: #fbfbff;
  border-right: 1px solid var(--line);
  overflow: hidden;
}
.column-heading { margin: 0 7px 16px; }
.column-heading span { color: var(--purple); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.column-heading h2 { margin: 5px 0 0; font-size: 18px; line-height: 1.2; }
.category-list { height: calc(100% - 62px); display: grid; grid-template-rows: repeat(6, 1fr); gap: 10px; }
.category-card {
  width: 100%; min-height: 0; padding: 8px 10px;
  display: grid; grid-template-columns: 60px 1fr; align-items: center; gap: 8px;
  border: 1px solid #e1e3ed; border-radius: 14px;
  color: var(--ink); background: rgba(255,255,255,.92); cursor: pointer;
  text-align: left; transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}
.category-card:hover { transform: translateY(-1px); border-color: #bca4f8; }
.category-card.is-active { color: #fff; border-color: transparent; background: linear-gradient(135deg, #7442e8, #8f52ec); box-shadow: 0 12px 24px rgba(103,54,219,.22); }
.category-card__image {
  width: 60px; height: 58px; display: grid; place-items: center; overflow: hidden;
  border-radius: 11px; background: #fff;
}
.category-card__image img { width: 100%; height: 100%; object-fit: contain; }
.category-card strong { font-size: 14px; line-height: 1.18; }

.calculator-configurator { background: #fff; border-right: 1px solid var(--line); overflow: hidden; }
.configurator-scroll { height: 100%; padding: 20px 22px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: #c8b7f7 transparent; }
.configurator-scroll::-webkit-scrollbar { width: 7px; }
.configurator-scroll::-webkit-scrollbar-thumb { background: #c8b7f7; border-radius: 99px; }
.configurator-heading { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; margin-bottom: 16px; }
.configurator-kicker { color: var(--purple); font-size: 10px; font-weight: 800; letter-spacing: .10em; }
.configurator-heading h2 { margin: 4px 0 3px; font-size: 27px; line-height: 1.1; }
.configurator-heading p { margin: 0; max-width: 650px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.api-status { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; border: 1px solid #e2e4ef; border-radius: 99px; color: #777b90; background: #fafbfe; font-size: 10px; white-space: nowrap; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #b4b8c8; }
.api-status.is-online .status-dot { background: #2aa36c; box-shadow: 0 0 0 4px rgba(42,163,108,.12); }
.api-status.is-demo .status-dot { background: #d99a29; box-shadow: 0 0 0 4px rgba(217,154,41,.12); }
.choice-section, .parameters-section { margin-top: 14px; }
.choice-section__heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.choice-section__heading h3 { margin: 0; font-size: 15px; }
.image-card-grid { display: grid; gap: 10px; }
.image-card-grid--services { grid-template-columns: repeat(var(--service-columns, 3), minmax(0, 1fr)); }
.image-card-grid--variants { grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)); }
.image-choice-card {
  position: relative; min-height: 136px; padding: 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 5px;
  border: 1px solid #dfe2ec; border-radius: 13px; color: var(--ink); background: #fff;
  cursor: pointer; overflow: hidden; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.image-choice-card:hover { transform: translateY(-1px); border-color: #b9a0f6; }
.image-choice-card.is-active { border: 2px solid #7138e7; padding: 8px; background: linear-gradient(180deg, #fff, #fbf9ff); box-shadow: 0 8px 20px rgba(102,53,223,.11); }
.image-choice-card__check {
  position: absolute; top: 8px; right: 8px; z-index: 2; width: 22px; height: 22px;
  display: none; place-items: center; border-radius: 50%; color: #fff; background: #5430d5; font-size: 12px;
}
.image-choice-card.is-active .image-choice-card__check { display: grid; }
.image-choice-card__media { width: 100%; height: 76px; display: grid; place-items: center; overflow: hidden; border-radius: 9px; background: #fff; }
.image-choice-card__media img { width: 100%; height: 100%; object-fit: contain; }
.image-choice-card strong { font-size: 12px; line-height: 1.22; text-align: center; }
.image-choice-card small { max-height: 31px; overflow: hidden; color: #777b90; font-size: 9px; line-height: 1.25; text-align: center; }
.image-choice-card .image-choice-card__price {
  max-height: none;
  margin-top: 1px;
  color: #6336d8;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 760;
  letter-spacing: .005em;
}
.image-choice-card--variant { min-height: 170px; align-items: stretch; }
.image-choice-card--variant .image-choice-card__media { height: 96px; }
.image-choice-card--variant strong, .image-choice-card--variant small { text-align: left; }
.parameter-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; }
.parameter-control { min-width: 0; padding: 11px; border: 1px solid #e1e4ee; border-radius: 12px; background: #fbfbfe; }
.parameter-control--full { grid-column: 1 / -1; }
.parameter-control__label { display: block; margin-bottom: 8px; color: #454a60; font-size: 11px; font-weight: 700; }
.stepper-control, .input-control { height: 42px; display: flex; align-items: center; border: 1px solid #d8dbea; border-radius: 9px; background: #fff; overflow: hidden; }
.stepper-control button { width: 40px; height: 100%; flex: 0 0 40px; color: #5d32d9; background: #fff; font-size: 22px; cursor: pointer; }
.stepper-control button:last-child { color: #fff; background: linear-gradient(135deg, #7742e7, #6030d4); }
.stepper-control input, .input-control input { min-width: 0; width: 100%; height: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; text-align: center; }
.stepper-control input { font-size: 18px; font-weight: 760; -moz-appearance: textfield; }
.stepper-control input::-webkit-outer-spin-button, .stepper-control input::-webkit-inner-spin-button { margin: 0; -webkit-appearance: none; }
.stepper-control span, .input-control span { padding-right: 10px; color: #62677d; font-size: 11px; white-space: nowrap; }
.input-control input { padding: 0 10px; text-align: left; }
.custom-parameter-note, .empty-state { grid-column: 1 / -1; padding: 18px; border: 1px solid #ded5f8; border-radius: 12px; background: #faf8ff; }
.custom-parameter-note { display: flex; flex-direction: column; gap: 5px; }
.custom-parameter-note span, .empty-state { color: var(--muted); font-size: 12px; }
.calculation-box {
  margin-top: 16px; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  border: 1px solid #e1e4ee; border-radius: 13px; background: linear-gradient(110deg, #fbfbfe, #f7f3ff);
}
.calculation-box span { font-size: 12px; font-weight: 760; }
.calculation-box p { margin: 5px 0 0; color: #4e5369; font-size: 12px; }
.calculation-box strong { color: #5e2fd4; font-size: 27px; white-space: nowrap; }
.add-service-button, .checkout-button, .submit-order-button {
  width: 100%; border-radius: 10px; color: #fff; background: linear-gradient(135deg, #7441e6, #5d2dcc);
  font-weight: 780; cursor: pointer; box-shadow: 0 10px 22px rgba(99,48,212,.18);
}
.add-service-button { height: 54px; margin-top: 14px; font-size: 15px; }
.add-service-button:disabled, .checkout-button:disabled, .submit-order-button:disabled { opacity: .48; cursor: not-allowed; box-shadow: none; }
.calculator-note { margin-top: 12px; padding: 12px 14px; border: 1px solid #e3e5ee; border-radius: 11px; color: #555a70; background: #fafbfe; font-size: 11px; line-height: 1.4; }

/* Order panel: only the list scrolls */
.order-panel { height: 840px; display: flex; flex-direction: column; background: #faf8ff; }
.order-panel__header { flex: 0 0 auto; min-height: 82px; padding: 21px 18px 15px; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; border-bottom: 1px solid #e5e1f0; }
.order-panel__header span { color: #7345db; font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.order-panel__header h2 { margin: 4px 0 0; font-size: 20px; }
.clear-order-button { width: 38px; height: 38px; border: 1px solid #d9dce7; border-radius: 9px; color: #24283d; background: #fff; font-size: 18px; cursor: pointer; }
.clear-order-button:disabled { opacity: .38; cursor: not-allowed; }
.order-list { min-height: 0; flex: 1 1 auto; padding: 14px 14px 6px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: #bdb2d8 transparent; }
.order-list::-webkit-scrollbar { width: 7px; }
.order-list::-webkit-scrollbar-thumb { background: #bdb2d8; border-radius: 99px; }
.order-empty { height: 100%; min-height: 210px; padding: 30px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--muted); text-align: center; }
.order-empty strong { color: var(--ink); }
.order-empty span { max-width: 240px; font-size: 12px; line-height: 1.45; }
.order-item {
  position: relative; margin-bottom: 10px; padding: 12px 34px 12px 10px; min-height: 112px;
  display: grid; grid-template-columns: 78px 1fr; grid-template-rows: 1fr auto; gap: 5px 10px;
  border: 1px solid #dddfea; border-radius: 13px; background: #fff;
}
.order-item > img { grid-row: 1 / 3; width: 78px; height: 78px; align-self: center; object-fit: contain; border-radius: 9px; background: #fff; }
.order-item__content { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.order-item__content strong { font-size: 13px; }
.order-item__content span { color: #4f5368; font-size: 11px; }
.order-item__content small { color: #73778c; font-size: 10px; }
.order-item > button { position: absolute; top: 9px; right: 9px; color: #6f7488; background: transparent; font-size: 18px; cursor: pointer; }
.order-item > b { grid-column: 2; color: #5b2fd2; font-size: 13px; text-align: right; }
.order-panel__footer { flex: 0 0 auto; padding: 14px; border-top: 1px solid #e4e0ef; background: #faf8ff; }
.order-total-row { padding: 13px 4px; display: flex; align-items: center; justify-content: space-between; gap: 15px; border-top: 1px solid #e2deeb; }
.order-total-row span { font-size: 12px; font-weight: 700; }
.order-total-row strong { font-size: 20px; }
.custom-quote-note { margin-bottom: 12px; padding: 12px; display: flex; gap: 10px; align-items: flex-start; border: 1px solid #ded3fb; border-radius: 10px; color: #5a31cc; background: #f5f0ff; }
.custom-quote-note > span { width: 22px; height: 22px; flex: 0 0 22px; display: grid; place-items: center; border: 2px solid currentColor; border-radius: 50%; font-weight: 800; }
.custom-quote-note p { margin: 0; font-size: 10px; line-height: 1.35; }
.checkout-button { height: 54px; font-size: 15px; }
.order-manager-note { margin: 11px 14px 0; color: #666a80; font-size: 10px; line-height: 1.45; text-align: center; }

/* Modals */
.modal { position: fixed; z-index: 3000; inset: 0; display: none; place-items: center; padding: 30px; }
.modal.is-open { display: grid; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(10, 12, 31, .62); backdrop-filter: blur(5px); }
.modal__dialog { position: relative; z-index: 1; width: min(520px, 94vw); max-height: 90vh; overflow-y: auto; padding: 30px; border-radius: 22px; background: #fff; box-shadow: 0 30px 100px rgba(9, 10, 27, .34); }
.modal__dialog--wide { width: min(820px, 94vw); }
.modal__close { position: absolute; top: 16px; right: 17px; width: 36px; height: 36px; border-radius: 50%; color: #34384d; background: #f2f3f8; font-size: 24px; cursor: pointer; }
.modal__heading span { color: var(--purple); font-size: 10px; font-weight: 800; letter-spacing: .09em; }
.modal__heading h2 { margin: 7px 0 6px; font-size: 27px; }
.modal__heading p { margin: 0; color: var(--muted); font-size: 13px; }
.order-form { margin-top: 24px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field > span { color: #4e5368; font-size: 11px; font-weight: 720; }
.form-field input, .form-field textarea { width: 100%; border: 1px solid #dcdfea; border-radius: 10px; color: var(--ink); background: #fff; }
.form-field input { height: 46px; padding: 0 13px; }
.form-field textarea { padding: 12px 13px; resize: vertical; }
.privacy-field { display: flex; flex-direction: row; align-items: center; gap: 9px; color: #555a70; font-size: 12px; }
.privacy-field input { width: 17px; height: 17px; accent-color: var(--purple); }
.form-message { min-height: 1px; padding: 0; border-radius: 9px; font-size: 12px; }
.form-message.is-success, .form-message.is-error { padding: 12px 14px; }
.form-message.is-success { color: #1e754d; background: #eaf7f0; }
.form-message.is-error { color: #a23b4a; background: #faecef; }
.order-form__footer { padding-top: 15px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid #e4e6ef; }
.order-form__footer > div { display: flex; flex-direction: column; gap: 4px; }
.order-form__footer span { color: var(--muted); font-size: 11px; }
.order-form__footer strong { font-size: 25px; }
.submit-order-button { width: auto; min-width: 200px; height: 48px; padding: 0 24px; }

@media (max-width: 1700px) {
  body { min-width: 1420px; }
  .site-header__container { grid-template-columns: 158px 76px minmax(420px,1fr) auto; column-gap: 12px; }
  .site-header__logo { width: 156px; }
  .site-header__nav { min-width: 420px; }
  .site-header__contact { gap: 10px; }
  .header-phone { font-size: 12px; }
  .header-callback { padding-inline: 11px; }
  .hero__container { grid-template-columns: minmax(450px, 34%) minmax(0, 66%); gap: 22px; }
  .calculator-shell { grid-template-columns: 170px minmax(0,1fr) 280px; }
}

/* =========================================================
   ARQAU v3 — уточнённые пропорции первого экрана и хедера
   ========================================================= */
:root {
  --page-max-width: 1840px;
  --page-side-space: clamp(34px, 4.2vw, 82px);
  --header-text: #17162f;
  --header-muted: #2f2b4d;
}

/* Общая сетка сайта: контент не прижимается к краям */
.site-header__container,
.hero__container {
  width: min(calc(100% - (var(--page-side-space) * 2)), var(--page-max-width));
}

/* Хедер до прокрутки — светлый, полупрозрачный фирменный тон */
.site-header {
  height: 104px;
  padding: 12px 0;
  color: var(--header-text);
  transition: height .34s ease, padding .34s ease, color .34s ease;
}
.site-header::before {
  background: linear-gradient(
    118deg,
    rgba(239, 233, 255, .91) 0%,
    rgba(225, 235, 255, .88) 52%,
    rgba(234, 225, 252, .91) 100%
  );
  border-bottom: 1px solid rgba(90, 73, 142, .17);
  box-shadow: 0 8px 28px rgba(61, 48, 111, .07);
  backdrop-filter: blur(12px) saturate(118%);
  transition: background .36s ease, box-shadow .36s ease, border-color .36s ease;
}

/* Хедер после прокрутки — другой, заметно более холодный оттенок */
.site-header--scrolled {
  height: 80px;
  padding: 8px 0;
}
.site-header--scrolled::before {
  background: linear-gradient(
    118deg,
    rgba(210, 221, 249, .98) 0%,
    rgba(199, 208, 241, .98) 48%,
    rgba(216, 202, 244, .98) 100%
  );
  border-bottom-color: rgba(73, 61, 127, .28);
  box-shadow: 0 12px 34px rgba(53, 48, 104, .16);
}

/* Логотип + соцсети образуют одну группу; навигация отделена */
.site-header__container {
  grid-template-columns: 168px 164px minmax(455px, 1fr) auto;
  column-gap: 10px;
}
.site-header__logo {
  width: 164px;
  height: 76px;
}
.site-header--scrolled .site-header__logo {
  width: 142px;
  height: 58px;
}
.site-header__socials {
  justify-content: flex-start;
  gap: 8px;
  margin-left: -3px;
}
.site-header__socials a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .62);
  border-color: rgba(66, 54, 116, .13);
  box-shadow: 0 5px 16px rgba(45, 37, 91, .08);
}
.site-header__socials a:hover {
  background: rgba(255, 255, 255, .88);
}
.site-header__nav {
  min-width: 455px;
  margin-left: 8px;
  gap: clamp(10px, 1vw, 18px);
}
.site-header__nav a {
  padding: 13px 3px;
  color: var(--header-text);
  font-size: 14px;
  font-weight: 820;
  letter-spacing: .025em;
  text-shadow: 0 1px 0 rgba(255,255,255,.45);
}
.site-header__nav a::after {
  left: 3px;
  right: 3px;
  bottom: 7px;
  height: 3px;
  background: #6c3dde;
}

.site-header__contact {
  gap: clamp(11px, .75vw, 17px);
}
.header-phone,
.header-sms {
  color: var(--header-text);
  font-size: 14px;
  font-weight: 790;
  text-shadow: 0 1px 0 rgba(255,255,255,.42);
}
.header-phone__icon {
  opacity: 1;
}
.header-callback {
  padding: 12px 16px;
  border-color: rgba(71, 53, 130, .35);
  color: var(--header-text);
  background: rgba(255,255,255,.42);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .018em;
  box-shadow: 0 5px 16px rgba(52, 41, 104, .07);
}
.header-callback:hover {
  background: rgba(255,255,255,.76);
}
.header-languages,
.header-account {
  border-left-color: rgba(68, 56, 112, .22);
}
.header-languages button,
.header-account button {
  color: var(--header-muted);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .018em;
}
.header-languages button:hover,
.header-account button:hover {
  color: #5d2ed2;
}

/* Первый блок: 34% контент / 8% фон / 58% калькулятор */
.hero {
  min-height: 920px;
  padding: 122px 0 48px;
}
.hero::before {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.16) 0%,
    rgba(255,255,255,.08) 28%,
    rgba(255,255,255,.015) 50%,
    rgba(255,255,255,0) 72%
  );
}
.hero__container {
  grid-template-columns: 34% 8% 58%;
  gap: 0;
  align-items: center;
}
.hero__content {
  grid-column: 1;
  padding-right: clamp(8px, 1vw, 18px);
}
.calculator-shell {
  grid-column: 3;
  height: 780px;
  grid-template-columns: 138px minmax(0, 1fr) 232px;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(24, 20, 61, .18);
}
.order-panel {
  height: 780px;
}

/* Компактная внутренняя компоновка калькулятора */
.calculator-categories {
  padding: 16px 10px;
}
.column-heading {
  margin: 0 5px 12px;
}
.column-heading h2 {
  font-size: 16px;
}
.category-list {
  height: calc(100% - 56px);
  gap: 8px;
}
.category-card {
  grid-template-columns: 48px 1fr;
  gap: 7px;
  padding: 7px 8px;
  border-radius: 12px;
}
.category-card__image {
  width: 48px;
  height: 48px;
  padding: 2px;
}
.category-card__image img {
  object-fit: contain;
  transform: scale(1.08);
}
.category-card strong {
  font-size: 12px;
}

.configurator-scroll {
  padding: 16px 17px;
}
.configurator-heading {
  margin-bottom: 12px;
}
.configurator-heading h2 {
  font-size: 24px;
}
.configurator-heading p {
  font-size: 11px;
}
.choice-section,
.parameters-section {
  margin-top: 11px;
}
.image-card-grid {
  gap: 8px;
}
.image-choice-card {
  min-height: 120px;
  padding: 7px;
  gap: 4px;
  border-radius: 12px;
}
.image-choice-card.is-active {
  padding: 6px;
}
.image-choice-card__media {
  height: 66px;
  padding: 2px;
  background: linear-gradient(180deg, #fff, #fcfcff);
}
.image-choice-card__media img {
  object-fit: contain;
  object-position: center;
  transform: scale(1.08);
}
.image-choice-card strong {
  font-size: 11px;
}
.image-choice-card .image-choice-card__price {
  font-size: 9px;
}
.image-choice-card--variant {
  min-height: 148px;
}
.image-choice-card--variant .image-choice-card__media {
  height: 82px;
}
.parameter-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.parameter-control {
  padding: 9px;
}
.calculation-box {
  margin-top: 12px;
  padding: 13px 14px;
}
.calculation-box strong {
  font-size: 23px;
}
.add-service-button {
  height: 48px;
  margin-top: 11px;
  font-size: 14px;
}
.calculator-note {
  margin-top: 9px;
  padding: 10px 12px;
}

.order-panel__header {
  min-height: 74px;
  padding: 17px 14px 12px;
}
.order-panel__header h2 {
  font-size: 18px;
}
.order-list {
  padding: 11px 10px 5px;
}
.order-item {
  min-height: 100px;
  grid-template-columns: 64px 1fr;
  padding: 10px 30px 10px 8px;
}
.order-item > img {
  width: 64px;
  height: 64px;
  padding: 2px;
  object-fit: contain;
  transform: scale(1.06);
}
.order-panel__footer {
  padding: 11px;
}
.checkout-button {
  height: 49px;
  font-size: 14px;
}
.order-manager-note {
  margin-top: 8px;
}

/* Никаких сломанных изображений и деформаций */
.category-card__image,
.image-choice-card__media,
.order-item > img {
  overflow: hidden;
}
.category-card__image img,
.image-choice-card__media img,
.order-item > img {
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 1700px) {
  body { min-width: 1480px; }
  .site-header__container {
    grid-template-columns: 150px 164px minmax(430px, 1fr) auto;
    column-gap: 8px;
  }
  .site-header__logo { width: 148px; }
  .site-header__nav {
    min-width: 430px;
    margin-left: 6px;
    gap: 10px;
  }
  .site-header__nav a { font-size: 13px; }
  .site-header__contact { gap: 9px; }
  .header-phone, .header-sms { font-size: 13px; }
  .header-callback { padding-inline: 12px; font-size: 11px; }
  .header-languages button, .header-account button { font-size: 11px; }
  .calculator-shell {
    grid-template-columns: 128px minmax(0, 1fr) 220px;
  }
}


/* =========================================================
   ARQAU v4 — финальные уточнения хедера и калькулятора
   ========================================================= */

/* Социальные иконки сохраняют текущий размер, но без белой окружности */
.site-header__socials a,
.site-header__socials a:hover {
  background: transparent;
  border: 0;
  box-shadow: none;
}
.site-header__socials a {
  overflow: hidden;
}
.site-header__socials img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Навигация крупнее, но визуально легче; контактный блок отделён */
.site-header__nav {
  padding-right: 14px;
}
.site-header__nav a {
  font-size: 15px;
  font-weight: 650;
  letter-spacing: .018em;
}

/* Общий заголовок единого калькулятора */
.calculator-shell {
  grid-template-columns: 158px minmax(0, 1fr) 232px;
  grid-template-rows: 78px minmax(0, 1fr);
}
.calculator-shell__intro {
  grid-column: 1 / -1;
  grid-row: 1;
  min-width: 0;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #fbf9ff 0%, #ffffff 56%, #f7f4ff 100%);
}
.calculator-shell__intro h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.018em;
}
.calculator-shell__intro p {
  margin: 5px 0 0;
  color: #666b80;
  font-size: 11px;
  line-height: 1.4;
}
.calculator-categories,
.calculator-configurator,
.order-panel {
  grid-row: 2;
}
.order-panel {
  height: auto;
}

/* Левая колонка без лишнего заголовка, категории распределены равномерно */
.calculator-categories {
  padding-top: 12px;
  padding-bottom: 12px;
}
.category-list {
  height: 100%;
  grid-template-rows: repeat(6, minmax(0, 1fr));
}
.category-card {
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 6px;
  padding-left: 7px;
  padding-right: 7px;
}
.category-card__image {
  width: 46px;
  height: 46px;
}
.category-card strong {
  min-width: 0;
  font-size: 11px;
  line-height: 1.18;
  overflow-wrap: anywhere;
  word-break: normal;
}

/* Убираем служебный верхний маркер — внутренние заголовки остаются */
.configurator-kicker {
  display: none;
}

@media (max-width: 1700px) {
  .site-header__nav {
    padding-right: 28px;
  }
  .site-header__nav a {
    font-size: 14px;
    font-weight: 650;
  }
  .calculator-shell {
    grid-template-columns: 150px minmax(0, 1fr) 220px;
  }
  .category-card {
    grid-template-columns: 43px minmax(0, 1fr);
  }
  .category-card__image {
    width: 43px;
    height: 43px;
  }
  .category-card strong {
    font-size: 10.5px;
  }
}


/* =========================================================
   ARQAU v5 — новые изображения и дополнительные секции
   ========================================================= */

.page-container {
  width: min(calc(100% - (var(--page-side-space) * 2)), var(--page-max-width));
  margin: 0 auto;
}

/* Более длинный текст первого экрана */
.hero__lead {
  max-width: 560px;
  margin: 22px 0 28px;
  display: grid;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: #292e43;
}
.hero__lead p { margin: 0; }
.hero__lead-highlight {
  font-size: 17px;
  font-weight: 760;
  color: #171b31;
}

/* Верхняя строка калькулятора: слева название, справа важная подсказка */
.calculator-shell__intro {
  justify-content: space-between;
  gap: 20px;
}
.calculator-shell__intro-copy { min-width: 0; }
.calculator-shell__intro-copy p {
  margin: 5px 0 0;
  color: #6c7084;
  font-size: 11px;
}
.calculator-shell__notice {
  width: min(320px, 40%);
  min-height: 50px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(111, 61, 222, .22);
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(245,240,255,.95), rgba(234,241,255,.9));
  box-shadow: 0 8px 20px rgba(69, 44, 134, .08);
}
.calculator-shell__notice-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #7042df, #8d55ef);
  font-size: 16px;
  font-weight: 850;
}
.calculator-shell__notice strong {
  color: #3e315f;
  font-size: 10.5px;
  line-height: 1.35;
}

/* Карточки категорий: изображение на всю ячейку, текст поверх */
.calculator-categories { padding: 10px 8px; }
.category-list {
  height: 100%;
  grid-template-rows: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
.category-card {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #dfe2eb;
  border-radius: 13px;
  color: #152039;
  background: #fbfcff;
  box-shadow: 0 5px 13px rgba(36, 41, 67, .045);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease, background .22s ease;
}
.category-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: rgba(111, 58, 222, 0);
  transition: background .22s ease;
}
.category-card:hover {
  transform: translateY(-1px);
  border-color: #9868ed;
  box-shadow: 0 8px 20px rgba(93, 51, 180, .12);
}
.category-card.is-active {
  color: #6a36d8;
  border-color: #7641df;
  background: #f7f2ff;
  box-shadow: 0 9px 22px rgba(103, 54, 219, .15);
}
.category-card.is-active::after { background: rgba(113, 59, 222, .105); }
.category-card__image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: auto;
  height: auto;
  padding: 0;
  overflow: hidden;
  border-radius: inherit;
  background: #fbfcff;
}
.category-card__image img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  display: block;
  object-fit: cover;
  object-position: center 38%;
  transform: none;
  transition: transform .28s ease, filter .22s ease;
}
.category-card:hover .category-card__image img { transform: scale(1.025); }
.category-card__label {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  min-height: 36px;
  padding: 7px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: inherit;
  background: rgba(120, 123, 132, .30);
  border-top: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(5px) saturate(108%);
  transition: color .22s ease, background .22s ease;
}
.category-card:hover .category-card__label {
  background: rgba(108, 107, 122, .34);
}
.category-card.is-active .category-card__label {
  color: #6732d2;
  background: rgba(221, 210, 244, .48);
}
.category-card__label strong {
  min-width: 0;
  font-size: 10.5px;
  font-weight: 760;
  line-height: 1.13;
  text-shadow: 0 1px 0 rgba(255,255,255,.48);
  overflow-wrap: normal;
  word-break: normal;
}

/* Новые прозрачные изображения услуг */
.image-choice-card__media {
  background: linear-gradient(180deg, #fff, #fafbff);
}
.image-choice-card__media img,
.order-item > img {
  object-fit: contain;
  transform: none;
}
.image-choice-card:hover .image-choice-card__media img { transform: scale(1.035); }

/* Блок преимуществ */
.advantages-section {
  padding: 92px 0 88px;
  background: #f8f9fd;
}
.section-heading { max-width: 780px; margin-bottom: 42px; }
.section-heading--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading > span {
  color: #7041dc;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .10em;
}
.section-heading h2 {
  margin: 10px 0 12px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.section-heading p {
  margin: 0;
  color: #666b7f;
  font-size: 17px;
  line-height: 1.6;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.advantage-card {
  min-height: 232px;
  padding: 26px 20px 22px;
  border: 1px solid #e3e5ee;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(31, 32, 65, .055);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.advantage-card:hover {
  transform: translateY(-4px);
  border-color: #cbb8f6;
  box-shadow: 0 18px 38px rgba(79, 49, 147, .10);
}
.advantage-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 23px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #6435d8;
  background: #f2edff;
  font-size: 25px;
  font-weight: 850;
}
.advantage-card__icon--text { font-size: 17px; }
.advantage-card h3 { margin: 0 0 10px; font-size: 18px; line-height: 1.25; }
.advantage-card p { margin: 0; color: #6b6f82; font-size: 14px; line-height: 1.55; }

/* Блок услуг */
.services-section {
  padding: 96px 0 110px;
  background: #fff;
}
.services-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.service-showcase-card {
  position: relative;
  min-height: 342px;
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  border: 1px solid #e3e5ee;
  border-radius: 24px;
  background: linear-gradient(135deg, #fbfbff, #f7f4ff);
  box-shadow: 0 16px 42px rgba(35, 30, 71, .075);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.service-showcase-card:hover {
  transform: translateY(-5px);
  border-color: #bda5f1;
  box-shadow: 0 24px 54px rgba(76, 44, 142, .13);
}
.service-showcase-card__number {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 20px;
  color: rgba(102, 53, 223, .22);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}
.service-showcase-card__media {
  min-width: 0;
  overflow: hidden;
  background: #fbfcff;
}
.service-showcase-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease;
}
.service-showcase-card:hover .service-showcase-card__media img { transform: scale(1.04); }
.service-showcase-card__body {
  padding: 66px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-showcase-card h3 { margin: 0 0 14px; font-size: 25px; line-height: 1.15; }
.service-showcase-card p { margin: 0; color: #696e82; font-size: 14px; line-height: 1.6; }
.service-showcase-card a {
  margin-top: auto;
  padding-top: 24px;
  color: #6735da;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.service-showcase-card a::after { content: " →"; }

@media (max-width: 1700px) {
  .hero__lead { font-size: 14px; gap: 10px; }
  .hero__lead-highlight { font-size: 16px; }
  .calculator-shell__notice { width: 290px; }
  .advantages-grid { gap: 11px; }
  .advantage-card { padding-inline: 16px; }
  .service-showcase-card { min-height: 320px; }
}

/* v6 refined calculator service cards */
.image-choice-card {
  position: relative;
  isolation: isolate;
  min-height: 178px;
  padding: 0;
  display: block;
  overflow: hidden;
  border: 1px solid #dfe2eb;
  border-radius: 14px;
  background: #fbfcff;
  box-shadow: 0 5px 14px rgba(36, 41, 67, .045);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease, background .22s ease;
}
.image-choice-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 48%, rgba(0,0,0,.03) 100%);
}
.image-choice-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  height: 54px;
  pointer-events: none;
  background: rgba(120, 123, 132, .30);
  border-top: 1px solid rgba(255,255,255,.34);
  backdrop-filter: blur(5px) saturate(108%);
  transition: background .22s ease;
}
.image-choice-card:hover {
  transform: translateY(-1px);
  border-color: #9868ed;
  box-shadow: 0 8px 20px rgba(93, 51, 180, .12);
}
.image-choice-card:hover::after { background: rgba(108, 107, 122, .34); }
.image-choice-card.is-active {
  border-color: #7641df;
  background: #f7f2ff;
  box-shadow: 0 9px 22px rgba(103, 54, 219, .15);
}
.image-choice-card.is-active::after { background: rgba(221, 210, 244, .50); }
.image-choice-card__check {
  top: 8px;
  right: 8px;
  z-index: 4;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255,255,255,.4);
  background: linear-gradient(135deg, #6e3fe0, #8e55ef);
  box-shadow: 0 6px 14px rgba(104, 55, 223, .22);
}
.image-choice-card__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: auto;
  height: auto;
  padding: 0;
  overflow: hidden;
  border-radius: inherit;
  background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
}
.image-choice-card__media img,
.order-item > img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  display: block;
  object-fit: cover;
  object-position: center 40%;
  transform: none;
  transition: transform .28s ease, filter .22s ease;
  filter: saturate(1.03) contrast(1.02);
}
.image-choice-card:hover .image-choice-card__media img { transform: scale(1.025); }
.image-choice-card strong,
.image-choice-card small {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  margin: 0;
  padding: 0 10px;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255,255,255,.45);
}
.image-choice-card strong {
  bottom: 23px;
  color: #17213b;
  font-size: 11.5px;
  line-height: 1.16;
  font-weight: 760;
}
.image-choice-card small {
  bottom: 8px;
  max-height: 16px;
  overflow: hidden;
  color: #4c5268;
  font-size: 9.4px;
  line-height: 1.15;
  font-weight: 650;
}
.image-choice-card .image-choice-card__price {
  color: #4d2dc7;
  letter-spacing: .003em;
}
.image-choice-card.is-active strong,
.image-choice-card.is-active .image-choice-card__price {
  color: #6732d2;
}
.image-choice-card--variant {
  min-height: 186px;
}
.image-choice-card--variant::after {
  height: 66px;
}
.image-choice-card--variant strong,
.image-choice-card--variant small {
  text-align: left;
  padding: 0 12px;
}
.image-choice-card--variant strong {
  bottom: 30px;
  font-size: 11.6px;
}
.image-choice-card--variant small {
  bottom: 8px;
  max-height: 30px;
  font-size: 9.2px;
  line-height: 1.22;
}


/* v8: shared components and additional landing-page sections */
.hero__stats { gap: 10px; max-width: 440px; }
.hero-stat {
  min-height: 52px;
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 14px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(57, 49, 83, .16);
}
.hero-stat:last-child { border-bottom: 0; }
.hero-stat strong { color: #6435d8; font-size: 27px; line-height: 1; letter-spacing: -.03em; }
.hero-stat span { color: #30364b; font-size: 14px; font-weight: 650; }

.services-section .section-heading { margin-left: auto; margin-right: auto; text-align: center; }
.service-showcase-card { color: inherit; text-decoration: none; }
.service-showcase-card__link {
  margin-top: auto;
  padding-top: 24px;
  color: #6735da;
  font-size: 14px;
  font-weight: 800;
}
.service-showcase-card__link::after { content: " →"; }

.process-section, .team-section, .clients-section { padding: 96px 0; }
.process-section { background: #f7f8fc; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.process-grid::before { content: ""; position: absolute; top: 35px; left: 11%; right: 11%; height: 1px; background: #d9cef5; }
.process-card { position: relative; z-index: 1; min-height: 235px; padding: 24px; border: 1px solid #e2e4ed; border-radius: 20px; background: #fff; box-shadow: 0 14px 36px rgba(38, 34, 73, .055); }
.process-card > span { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 30px; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #7540e3, #9157ef); font-weight: 850; }
.process-card h3 { margin: 0 0 12px; font-size: 20px; }
.process-card p { margin: 0; color: #686d80; font-size: 14px; line-height: 1.6; }

.team-section { background: #fff; }
.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.team-card { overflow: hidden; border: 1px solid #e1e4ec; border-radius: 22px; background: #fff; box-shadow: 0 14px 38px rgba(37, 32, 71, .07); }
.team-card img { width: 100%; height: 300px; display: block; object-fit: cover; object-position: center; background: #f2f3f8; }
.team-card > div { padding: 22px 24px 24px; }
.team-card h3 { margin: 0 0 7px; font-size: 21px; }
.team-card p { margin: 0 0 13px; color: #6a6f82; font-size: 14px; }
.team-card span { color: #6535d8; font-size: 14px; font-weight: 760; }

.clients-section { background: #f7f8fc; }
.clients-row { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 12px; align-items: center; }
.clients-row img { width: 100%; height: 100px; display: block; object-fit: contain; }

.site-footer { color: #e9eaf2; background: #11172a; }
.site-footer__grid { padding-top: 72px; padding-bottom: 58px; display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 56px; }
.site-footer__logo img { width: 150px; height: auto; display: block; }
.site-footer__brand p { max-width: 390px; margin: 22px 0; color: #aeb4c8; font-size: 14px; line-height: 1.7; }
.site-footer__socials { display: flex; gap: 12px; }
.site-footer__socials a { width: 36px; height: 36px; display: grid; place-items: center; }
.site-footer__socials img { width: 24px; height: 24px; object-fit: contain; }
.site-footer__column { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.site-footer__column h3 { margin: 0 0 8px; color: #fff; font-size: 16px; }
.site-footer__column a, .site-footer__column span { color: #aeb4c8; font-size: 13px; line-height: 1.45; text-decoration: none; }
.site-footer__column a:hover { color: #fff; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.09); }
.site-footer__bottom .page-container { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #9299ae; font-size: 12px; }
.site-footer__bottom div div { display: flex; gap: 22px; }
.site-footer__bottom a { color: #9299ae; text-decoration: none; }

/* Component loading messages */
.header-load-error, .footer-load-error { padding: 14px; text-align: center; color: #772f2f; background: #fff3f3; }

/* Service detail pages */
.service-page { min-height: 70vh; background: #fff; }
.service-page-hero { padding: 160px 0 92px; background: linear-gradient(135deg, #f7f4ff, #f7f9fd); }
.service-page-hero__grid { display: grid; grid-template-columns: 1fr 520px; align-items: center; gap: 70px; }
.service-page-hero span, .service-page-content article > span { color: #7041dc; font-size: 13px; font-weight: 850; letter-spacing: .1em; }
.service-page-hero h1 { margin: 13px 0 18px; font-size: 58px; line-height: 1.05; letter-spacing: -.04em; }
.service-page-hero p { max-width: 720px; margin: 0 0 30px; color: #5e6478; font-size: 18px; line-height: 1.65; }
.service-page-hero a, .service-page-content aside a { display: inline-flex; padding: 15px 22px; border-radius: 12px; color: #fff; background: linear-gradient(135deg, #7540e3, #6832d8); font-weight: 800; text-decoration: none; }
.service-page-hero img { width: 100%; height: 390px; display: block; object-fit: contain; border-radius: 28px; background: #fff; box-shadow: 0 24px 70px rgba(74, 48, 131, .14); }
.service-page-content { padding: 94px 0 110px; }
.service-page-content__grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 76px; }
.service-page-content h2 { margin: 12px 0 22px; font-size: 42px; }
.service-page-content article p { color: #63687b; font-size: 16px; line-height: 1.75; }
.service-page-content aside { padding: 30px; border: 1px solid #e2e4ed; border-radius: 22px; background: #faf9ff; }
.service-page-content aside h3 { margin: 0 0 18px; font-size: 21px; }
.service-page-content aside ul { margin: 0 0 28px; padding-left: 20px; color: #5f6478; line-height: 2; }

/* Avoid accidental crop in calculator service and selected-service images. */
.image-choice-card__media img { box-sizing: border-box; object-fit: contain; object-position: center; padding: 7px 7px 56px; }
.image-choice-card--variant .image-choice-card__media img { padding-bottom: 69px; }
.order-item > img { width: 78px; height: 78px; max-width: 78px; max-height: 78px; padding: 4px; object-fit: contain; object-position: center; border-radius: 9px; background: #fff; }

@media (max-width: 1500px) {
  .clients-row { gap: 8px; }
  .clients-row img { height: 82px; }
  .service-page-hero__grid { grid-template-columns: 1fr 430px; }
}

/* v9: About page */
.about-page { background: #fff; }
.about-kicker {
  display: inline-block;
  color: #7041dc;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .1em;
}
.about-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #7440e3, #6732d7);
  box-shadow: 0 14px 30px rgba(101, 52, 216, .20);
  font-size: 14px;
  font-weight: 820;
  text-decoration: none;
}
.about-primary-button:hover { transform: translateY(-1px); }

.about-hero {
  position: relative;
  min-height: 940px;
  padding: 150px 0 82px;
  overflow: hidden;
  background: #dfe4ef url('../assets/images/home/video/home-company-video-cover.webp') center / cover no-repeat;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248,249,253,.94) 0%, rgba(248,249,253,.88) 38%, rgba(238,239,248,.63) 61%, rgba(223,220,240,.54) 100%);
}
.about-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, #fff);
}
.about-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 560px;
  align-items: center;
  gap: 90px;
}
.about-hero__content { max-width: 780px; }
.about-hero__content h1 {
  max-width: 760px;
  margin: 16px 0 24px;
  font-size: 64px;
  line-height: 1.04;
  letter-spacing: -.045em;
}
.about-hero__content p {
  max-width: 720px;
  margin: 0 0 18px;
  color: #444a60;
  font-size: 17px;
  line-height: 1.72;
}
.about-hero__content .about-hero__lead { color: #252b42; font-size: 20px; font-weight: 620; }
.about-hero__content .about-primary-button { margin-top: 18px; }

.license-panel {
  padding: 24px;
  border: 1px solid rgba(221, 216, 237, .95);
  border-radius: 26px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 28px 70px rgba(49, 38, 89, .18);
  backdrop-filter: blur(12px);
}
.license-panel__heading { padding: 4px 8px 18px; }
.license-panel__heading > span { color: #7041dc; font-size: 11px; font-weight: 850; letter-spacing: .1em; }
.license-panel__heading h2 { margin: 7px 0 5px; font-size: 25px; }
.license-panel__heading p { margin: 0; color: #73788b; font-size: 12px; line-height: 1.45; }

.about-slider { position: relative; min-width: 0; }
.about-slider__viewport { overflow: hidden; border-radius: 20px; }
.about-slider__track { display: flex; transition: transform .48s cubic-bezier(.22,.72,.22,1); will-change: transform; }
.about-slide { min-width: 100%; }
.about-slider__arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(113, 66, 218, .24);
  border-radius: 50%;
  color: #6537d5;
  background: rgba(255,255,255,.94);
  box-shadow: 0 9px 24px rgba(40, 31, 74, .13);
  font-size: 19px;
  cursor: pointer;
  transform: translateY(-50%);
}
.about-slider__arrow:hover { background: #f3edff; }
.about-slider__arrow--prev { left: -23px; }
.about-slider__arrow--next { right: -23px; }
.about-slider__dots { min-height: 18px; margin-top: 17px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.about-slider__dots button { width: 8px; height: 8px; padding: 0; border-radius: 99px; background: #d6cfeb; cursor: pointer; transition: width .2s ease, background .2s ease; }
.about-slider__dots button.is-active { width: 28px; background: #7040dc; }
.license-slide { height: 550px; padding: 10px 54px; display: grid; place-items: center; background: linear-gradient(135deg, #f7f4ff, #eef1f7); }
.license-slide img { width: 100%; height: 100%; display: block; object-fit: contain; filter: drop-shadow(0 18px 25px rgba(56, 43, 93, .15)); }

.about-reviews-section, .training-section, .history-section, .channels-section, .fleet-section, .warehouses-section, .clean-city-section { padding: 100px 0; }
.about-reviews-section { background: #fff; }
.about-reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.about-review-card {
  min-height: 240px;
  padding: 25px;
  border: 1px solid #e1e3ed;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(36, 32, 70, .06);
}
.about-review-card__top { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 13px; }
.about-review-card__top > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #7441e3, #955cf1); font-weight: 850; }
.about-review-card h3 { margin: 0 0 3px; font-size: 17px; }
.about-review-card small { color: #85899a; font-size: 11px; }
.about-review-card b { color: #7040dc; font-size: 13px; }
.about-review-card b::before { content: "★ "; color: #f3b441; }
.about-review-card > p { margin: 24px 0 0; color: #5f6478; font-size: 14px; line-height: 1.7; }
.about-section-action { margin-top: 36px; text-align: center; }
.about-section-action a, .clean-city-section__copy a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid #bca6f0;
  border-radius: 12px;
  color: #6637d6;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.about-section-action a::after, .clean-city-section__copy a::after { content: " →"; margin-left: 7px; }

.training-section { background: #f7f8fc; }
.about-slider--wide { max-width: 1250px; margin: 0 auto; }
.training-slide {
  height: 570px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #1b2033;
}
.training-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18, 21, 39, .88) 0%, rgba(18, 21, 39, .48) 47%, rgba(18, 21, 39, .08) 78%); }
.training-slide > img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 34%; }
.training-slide > div { position: absolute; z-index: 2; left: 64px; bottom: 58px; width: 510px; color: #fff; }
.training-slide > div > span { color: #bc9cff; font-size: 14px; font-weight: 850; letter-spacing: .08em; }
.training-slide h3 { margin: 12px 0 14px; font-size: 37px; line-height: 1.12; }
.training-slide p { margin: 0; color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.65; }

.history-section { background: #fff; }
.history-section__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.history-copy h2, .clean-city-section__copy h2 { margin: 13px 0 22px; font-size: 46px; line-height: 1.08; letter-spacing: -.035em; }
.history-copy > p, .clean-city-section__copy > p { margin: 0 0 18px; color: #63687b; font-size: 16px; line-height: 1.75; }
.history-facts { margin-top: 34px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.history-facts > div { min-height: 94px; padding: 18px; border: 1px solid #e1e3ec; border-radius: 16px; background: #faf9ff; }
.history-facts strong { display: block; margin-bottom: 6px; color: #6737d7; font-size: 26px; }
.history-facts span { color: #62677b; font-size: 13px; }
.company-video-card { position: relative; height: 585px; overflow: hidden; border-radius: 28px; background: #171b2f; box-shadow: 0 28px 70px rgba(38, 33, 70, .17); }
.company-video-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,18,34,.03) 30%, rgba(15,18,34,.9) 100%); }
.company-video-card > img { width: 100%; height: 100%; display: block; object-fit: cover; }
.company-video-card > button { position: absolute; z-index: 3; top: 50%; left: 50%; width: 84px; height: 84px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #7441e3, #9b60f3); box-shadow: 0 15px 40px rgba(85, 45, 177, .35); cursor: pointer; transform: translate(-50%,-50%); }
.company-video-card > button span { margin-left: 5px; font-size: 27px; }
.company-video-card > div { position: absolute; z-index: 3; left: 38px; right: 38px; bottom: 34px; color: #fff; }
.company-video-card > div > span { color: #c8adff; font-size: 11px; font-weight: 850; letter-spacing: .1em; }
.company-video-card h3 { margin: 9px 0 8px; font-size: 28px; }
.company-video-card p { margin: 0; color: rgba(255,255,255,.75); font-size: 13px; line-height: 1.55; }

.channels-section { background: #f7f8fc; }
.channels-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.channel-card { min-height: 230px; padding: 25px; display: grid; grid-template-columns: 72px 1fr; align-items: flex-start; gap: 20px; border: 1px solid #e1e3ec; border-radius: 20px; color: inherit; background: #fff; box-shadow: 0 14px 34px rgba(35, 31, 67, .055); text-decoration: none; }
.channel-card > img { width: 72px; height: 72px; padding: 12px; display: block; object-fit: contain; border-radius: 18px; background: #f4f1fb; }
.channel-card div > span, .mobile-app-card__copy > span { color: #7140dc; font-size: 11px; font-weight: 850; letter-spacing: .08em; }
.channel-card h3 { margin: 10px 0 10px; font-size: 20px; line-height: 1.25; }
.channel-card p { margin: 0; color: #676c7f; font-size: 13px; line-height: 1.6; }
.mobile-app-card { grid-column: 1 / -1; min-height: 420px; display: grid; grid-template-columns: 1fr 480px; align-items: center; overflow: hidden; border-radius: 26px; color: #fff; background: linear-gradient(135deg, #191e34, #34235f 66%, #7142df); box-shadow: 0 24px 60px rgba(46, 33, 84, .17); }
.mobile-app-card__copy { padding: 58px 20px 58px 64px; }
.mobile-app-card__copy > span { color: #c7aaff; }
.mobile-app-card h3 { margin: 12px 0 17px; font-size: 42px; }
.mobile-app-card p { max-width: 700px; margin: 0 0 28px; color: rgba(255,255,255,.76); font-size: 16px; line-height: 1.7; }
.mobile-app-card button { min-height: 48px; padding: 0 19px; border-radius: 12px; color: #4e2ab3; background: #fff; font-size: 13px; font-weight: 800; opacity: 1; }
.mobile-app-card > img { width: 100%; height: 420px; display: block; object-fit: contain; object-position: center bottom; }

.about-team-section { padding-top: 105px; padding-bottom: 110px; background: #fff; }
.fleet-section { background: #f7f8fc; }
.warehouses-section { background: #fff; }
.about-slider--feature { max-width: 1320px; margin: 0 auto; }
.feature-slide { min-height: 570px; display: grid; grid-template-columns: 58% 42%; overflow: hidden; border: 1px solid #e0e2eb; border-radius: 26px; background: #fff; box-shadow: 0 22px 55px rgba(36, 31, 68, .08); }
.feature-slide--reverse { grid-template-columns: 54% 46%; }
.feature-slide__media { min-height: 570px; padding: 45px; display: grid; place-items: center; background: linear-gradient(135deg, #f8f7fc, #eef1f6); }
.feature-slide__media img { width: 100%; height: 100%; max-height: 480px; display: block; object-fit: contain; object-position: center; }
.feature-slide__copy { padding: 70px 58px; display: flex; flex-direction: column; justify-content: center; }
.feature-slide__copy > span { color: #7040dc; font-size: 12px; font-weight: 850; letter-spacing: .1em; }
.feature-slide__copy h3 { margin: 14px 0 16px; font-size: 42px; line-height: 1.08; }
.feature-slide__copy p { margin: 0 0 24px; color: #64697c; font-size: 15px; line-height: 1.7; }
.feature-slide__copy ul { margin: 0; padding-left: 20px; color: #555b70; font-size: 14px; line-height: 2; }

.clean-city-section { background: #f7f8fc; }
.clean-city-section__grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 72px; }
.clean-city-section__media { overflow: hidden; border-radius: 28px; box-shadow: 0 22px 58px rgba(38, 32, 69, .10); }
.clean-city-section__media img { width: 100%; height: 520px; display: block; object-fit: cover; }
.clean-city-section__copy a { margin-top: 15px; }

.about-video-message {
  position: fixed;
  z-index: 2000;
  left: 50%;
  bottom: 34px;
  min-width: 430px;
  padding: 22px 58px 22px 24px;
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 1px solid #d7ccf4;
  border-radius: 16px;
  color: #272c42;
  background: #fff;
  box-shadow: 0 20px 60px rgba(35, 29, 70, .22);
  transform: translateX(-50%);
}
.about-video-message.is-visible { display: flex; }
.about-video-message > button { position: absolute; top: 10px; right: 12px; width: 32px; height: 32px; border-radius: 50%; color: #5c6072; background: #f0eef7; cursor: pointer; }
.about-video-message strong { font-size: 15px; }
.about-video-message span { color: #6f7488; font-size: 12px; }

@media (max-width: 1650px) {
  .about-hero__grid { grid-template-columns: minmax(0, 1fr) 500px; gap: 60px; }
  .about-hero__content h1 { font-size: 56px; }
  .license-slide { height: 500px; padding-left: 46px; padding-right: 46px; }
  .mobile-app-card { grid-template-columns: 1fr 430px; }
}

/* v10: home advantages with video and open-format reviews */
.advantages-media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  align-items: stretch;
  gap: 24px;
}
.advantages-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.advantages-grid--compact .advantage-card {
  min-height: 230px;
  height: 100%;
}
.home-video-card {
  position: relative;
  min-height: 474px;
  overflow: hidden;
  border-radius: 22px;
  background: #171b2f;
  box-shadow: 0 20px 52px rgba(38, 33, 70, .15);
}
.home-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,18,34,.03) 28%, rgba(15,18,34,.88) 100%);
}
.home-video-card > img {
  width: 100%;
  height: 100%;
  min-height: 474px;
  display: block;
  object-fit: cover;
  object-position: center;
}
.home-video-card > button {
  position: absolute;
  z-index: 3;
  top: 46%;
  left: 50%;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #7441e3, #9b60f3);
  box-shadow: 0 15px 40px rgba(85, 45, 177, .35);
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.home-video-card > button span {
  margin-left: 5px;
  font-size: 25px;
}
.home-video-card__caption {
  position: absolute;
  z-index: 3;
  left: 30px;
  right: 30px;
  bottom: 28px;
  color: #fff;
}
.home-video-card__caption > span {
  color: #c8adff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .1em;
}
.home-video-card__caption h3 {
  margin: 8px 0 7px;
  font-size: 28px;
}
.home-video-card__caption p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.55;
}
.home-reviews-section {
  padding: 96px 0;
  background: #fff;
}
.home-reviews-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}
.home-review-item {
  min-width: 0;
  text-align: center;
}
.home-review-item img {
  width: 96px;
  height: 96px;
  display: block;
  margin: 0 auto 17px;
  border: 4px solid #f1ecfd;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;
  background: #f1f2f7;
  box-shadow: 0 9px 24px rgba(63, 43, 112, .11);
}
.home-review-item h3 {
  margin: 0 0 5px;
  font-size: 17px;
}
.home-review-item > span {
  display: block;
  min-height: 29px;
  color: #7242dc;
  font-size: 11px;
  font-weight: 760;
  line-height: 1.3;
}
.home-review-item p {
  margin: 13px 0 0;
  color: #656a7d;
  font-size: 12.5px;
  line-height: 1.65;
}
.home-video-message {
  position: fixed;
  z-index: 2000;
  left: 50%;
  bottom: 34px;
  min-width: 430px;
  padding: 22px 58px 22px 24px;
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 1px solid #d7ccf4;
  border-radius: 16px;
  color: #272c42;
  background: #fff;
  box-shadow: 0 20px 60px rgba(35, 29, 70, .22);
  transform: translateX(-50%);
}
.home-video-message.is-visible { display: flex; }
.home-video-message > button {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #5c6072;
  background: #f0eef7;
  cursor: pointer;
}
.home-video-message strong { font-size: 15px; }
.home-video-message span { color: #6f7488; font-size: 12px; }

@media (max-width: 1650px) {
  .advantages-media-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  }
  .advantages-grid--compact .advantage-card {
    min-height: 216px;
    padding: 22px 16px 19px;
  }
  .home-video-card,
  .home-video-card > img {
    min-height: 446px;
  }
  .home-reviews-row { gap: 16px; }
}

/* v11: services page, category calculators and standalone navigation pages */
.services-page { background: #f6f7fb; }
.services-intro {
  padding: 146px 0 86px;
  background: linear-gradient(135deg, #f8f7fd 0%, #eef1f8 100%);
}
.services-intro__grid {
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(520px, .98fr);
  align-items: stretch;
  gap: 58px;
}
.services-intro__copy {
  padding: 52px 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.services-kicker {
  color: #7040dc;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .11em;
}
.services-intro h1 {
  max-width: 790px;
  margin: 16px 0 24px;
  color: #171b2f;
  font-size: 58px;
  line-height: 1.06;
  letter-spacing: -.04em;
}
.services-intro__copy > p {
  max-width: 780px;
  margin: 0 0 17px;
  color: #606579;
  font-size: 16px;
  line-height: 1.75;
}
.services-intro__copy .services-intro__lead {
  color: #272c42;
  font-size: 19px;
  font-weight: 620;
}
.services-intro__note {
  max-width: 790px;
  margin-top: 20px;
  padding: 19px 22px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  border: 1px solid #d9cff4;
  border-radius: 17px;
  background: rgba(255,255,255,.72);
}
.services-intro__note > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #7242dc;
  font-size: 15px;
  font-weight: 850;
}
.services-intro__note p {
  margin: 0;
  color: #555b70;
  font-size: 13px;
  line-height: 1.65;
}
.services-intro__note strong { color: #292e44; }
.services-intro__media {
  min-height: 570px;
  overflow: hidden;
  border-radius: 30px;
  background: #dfe3ed;
  box-shadow: 0 30px 78px rgba(42, 36, 73, .15);
}
.services-intro__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 68% center;
}
.services-accordion-section { padding: 100px 0 118px; }
.services-page-heading { margin-bottom: 46px; }
.services-accordion { display: grid; gap: 18px; }
.service-accordion-item {
  scroll-margin-top: 102px;
  overflow: hidden;
  border: 1px solid #dfe2eb;
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 13px 34px rgba(39, 34, 68, .055);
  transition: border-color .24s ease, box-shadow .24s ease;
}
.service-accordion-item.is-open {
  border-color: #9f7be7;
  box-shadow: 0 24px 62px rgba(72, 49, 126, .13);
}
.service-accordion-summary {
  width: 100%;
  min-height: 176px;
  padding: 14px 30px 14px 14px;
  display: grid;
  grid-template-columns: 320px 72px minmax(0, 1fr) 150px;
  align-items: center;
  gap: 24px;
  color: #20253a;
  background: #fff;
  text-align: left;
  cursor: pointer;
}
.service-accordion-summary__media {
  height: 148px;
  overflow: hidden;
  border-radius: 15px;
  background: #f0f1f6;
}
.service-accordion-summary__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.service-accordion-summary__number {
  color: #6c3ad9;
  font-size: 29px;
  font-weight: 850;
  letter-spacing: -.04em;
}
.service-accordion-summary__copy { min-width: 0; display: flex; flex-direction: column; }
.service-accordion-summary__copy strong {
  margin-bottom: 10px;
  color: #171b2f;
  font-size: 27px;
  line-height: 1.1;
}
.service-accordion-summary__copy small {
  max-width: 720px;
  color: #656a7d;
  font-size: 14px;
  line-height: 1.55;
}
.service-accordion-summary__copy b {
  margin-top: 14px;
  color: #6b39d7;
  font-size: 13px;
  font-weight: 820;
  text-transform: none;
}
.service-accordion-summary__action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
  color: #373c51;
  font-size: 13px;
  font-weight: 790;
}
.service-accordion-summary__action i {
  width: 11px;
  height: 11px;
  border-right: 2px solid #6b39d7;
  border-bottom: 2px solid #6b39d7;
  transform: rotate(45deg) translateY(-3px);
  transition: transform .24s ease;
}
.service-accordion-item.is-open .service-accordion-summary__action i { transform: rotate(225deg) translate(-2px, -2px); }
.service-accordion-item.is-open .service-accordion-summary__action { color: #6b39d7; }
.service-accordion-panel {
  padding: 0 14px 14px;
  background: #fff;
}
.category-calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 14px;
  border-top: 1px solid #ececf2;
  padding-top: 14px;
}
.category-calculator,
.category-detail-panel {
  border: 1px solid #e2e3ec;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(37, 32, 67, .055);
}
.category-calculator { padding: 28px; min-width: 0; }
.category-calculator__header {
  margin-bottom: 26px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.category-calculator__header > div:first-child > span,
.category-detail-panel__eyebrow {
  color: #7242dc;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .11em;
}
.category-calculator__header h3 {
  margin: 8px 0 7px;
  color: #171b2f;
  font-size: 30px;
  line-height: 1.1;
}
.category-calculator__header p { margin: 0; color: #73788a; font-size: 13px; }
.category-calculator__status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7082;
  font-size: 11px;
  white-space: nowrap;
}
.category-calculator__status i { width: 8px; height: 8px; border-radius: 50%; background: #53b77b; box-shadow: 0 0 0 4px rgba(83,183,123,.12); }
.category-calculator__section { margin-top: 25px; }
.category-calculator__section-heading {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.category-calculator__section-heading > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #6c39d8;
  background: #f0eafb;
  font-size: 10px;
  font-weight: 850;
}
.category-calculator__section-heading h4 { margin: 0; color: #2a2f44; font-size: 15px; }
.category-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.mobile-service-carousel { display: none; }
.mobile-category-intro { display: none; }
.category-service-card {
  position: relative;
  min-width: 0;
  min-height: 184px;
  overflow: hidden;
  border: 1px solid #dfe1e9;
  border-radius: 15px;
  background: #f7f8fb;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.category-service-card:hover { border-color: #ad91e6; transform: translateY(-1px); }
.category-service-card.is-active { border-color: #7440de; box-shadow: 0 0 0 2px rgba(116,64,222,.1); }
.category-service-card__image { height: 125px; display: block; overflow: hidden; background: #f0f1f6; }
.category-service-card__image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.category-service-card__body {
  min-height: 58px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,.95);
}
.category-service-card__body strong { overflow: hidden; color: #23283d; font-size: 12.5px; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.category-service-card__body small { overflow: hidden; color: #7440dc; font-size: 10px; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.category-service-card__check {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 25px;
  height: 25px;
  display: none;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #7140dc;
  font-size: 13px;
  font-weight: 850;
}
.category-service-card.is-active .category-service-card__check { display: grid; }
.category-variant-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.category-variant-card {
  min-width: 0;
  min-height: 96px;
  padding: 9px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 1px solid #e0e2ea;
  border-radius: 13px;
  background: #fbfbfd;
  text-align: left;
  cursor: pointer;
}
.category-variant-card.is-active { border-color: #7440de; background: #faf7ff; box-shadow: 0 0 0 2px rgba(116,64,222,.08); }
.category-variant-card img { width: 72px; height: 76px; display: block; object-fit: cover; border-radius: 10px; background: #f0f1f6; }
.category-variant-card span { min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.category-variant-card strong { color: #2b3045; font-size: 11px; line-height: 1.25; }
.category-variant-card small { color: #7140d9; font-size: 9.5px; line-height: 1.3; }
.category-parameter-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.category-parameter { min-width: 0; display: flex; flex-direction: column; gap: 7px; }
.category-parameter--full { grid-column: 1 / -1; }
.category-parameter > label,
.category-parameter > span { color: #555a6e; font-size: 11px; font-weight: 720; }
.category-input-wrap,
.category-stepper {
  min-height: 45px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #dfe1e9;
  border-radius: 11px;
  background: #fff;
}
.category-input-wrap input,
.category-stepper input {
  width: 100%;
  min-width: 0;
  height: 43px;
  padding: 0 13px;
  color: #2b3045;
  background: transparent;
  font-size: 13px;
  outline: 0;
}
.category-input-wrap em,
.category-stepper span { padding-right: 12px; color: #73788a; font-size: 10px; font-style: normal; white-space: nowrap; }
.category-stepper button {
  width: 42px;
  height: 43px;
  flex: 0 0 42px;
  color: #5f6578;
  background: #f5f4f9;
  font-size: 20px;
  cursor: pointer;
}
.category-stepper input { padding: 0 4px; text-align: center; }
.category-custom-quote {
  padding: 18px 20px;
  border: 1px dashed #cdbced;
  border-radius: 13px;
  background: #faf7ff;
}
.category-custom-quote strong { color: #6132ca; font-size: 14px; }
.category-custom-quote p { margin: 7px 0 0; color: #676c7e; font-size: 12px; line-height: 1.55; }
.category-calculation-box {
  margin-top: 24px;
  min-height: 94px;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border: 1px solid #d8cdf1;
  border-radius: 15px;
  background: linear-gradient(135deg, #faf7ff, #f3effd);
}
.category-calculation-box span { color: #5e6376; font-size: 11px; font-weight: 760; }
.category-calculation-box p { margin: 8px 0 0; color: #6c7183; font-size: 11px; }
.category-calculation-box > strong { color: #6331cf; font-size: 27px; line-height: 1.1; text-align: right; }
.category-calculator__actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}
.category-add-button {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #7541df, #8f4ee5);
  box-shadow: 0 12px 28px rgba(103, 52, 207, .24);
  font-size: 13px;
  font-weight: 820;
  cursor: pointer;
}
.category-calculator__actions p { margin: 0; color: #777c8e; font-size: 10.5px; line-height: 1.5; }
.category-detail-panel {
  align-self: stretch;
  padding: 27px 24px 24px;
  min-width: 0;
}
.category-detail-panel__visual {
  height: 210px;
  margin: 14px 0 20px;
  overflow: hidden;
  border-radius: 15px;
  background: linear-gradient(135deg, #f7f5fc, #ebeef4);
}
.category-detail-panel__visual img { width: 100%; height: 100%; display: block; object-fit: cover; }
.category-detail-panel h3 { margin: 0 0 11px; color: #6634d2; font-size: 27px; line-height: 1.1; }
.category-detail-panel__intro { margin: 0 0 21px; color: #5e6477; font-size: 12.5px; line-height: 1.65; }
.category-detail-panel__group { margin-top: 19px; }
.category-detail-panel__group h4 { margin: 0 0 9px; color: #292e43; font-size: 12.5px; }
.category-detail-panel__group ul { margin: 0; padding: 0; display: grid; gap: 7px; list-style: none; }
.category-detail-panel__group li { position: relative; padding-left: 15px; color: #666b7e; font-size: 11.5px; line-height: 1.4; }
.category-detail-panel__group li::before { content: ""; position: absolute; top: .55em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: #7541df; }
.category-detail-panel__specs { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 7px; }
.category-detail-panel__specs span { padding: 7px 9px; border-radius: 8px; color: #5f36b6; background: #f2edfb; font-size: 9.5px; font-weight: 760; }
.category-detail-panel__tariff {
  margin-top: 22px;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #e7e7ed;
  border-bottom: 1px solid #e7e7ed;
}
.category-detail-panel__tariff span { color: #6e7385; font-size: 11px; }
.category-detail-panel__tariff strong { color: #6633d2; font-size: 14px; text-align: right; }
.category-detail-panel__meta { margin: 11px 0 0; color: #6d7284; font-size: 10.5px; line-height: 1.45; }
.category-detail-panel__important { margin-top: 18px; padding: 14px 15px; border-radius: 12px; background: #f8f6fd; }
.category-detail-panel__important strong { color: #6634d2; font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; }
.category-detail-panel__important p { margin: 6px 0 0; color: #686d7f; font-size: 10.5px; line-height: 1.5; }

.services-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  align-items: start;
  gap: 24px;
}
.services-workspace__catalog { min-width: 0; }
.services-order-column { min-width: 0; align-self: stretch; }
.services-order-panel {
  position: sticky;
  top: 112px;
  height: calc(100vh - 132px);
  min-height: 620px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d9dce8;
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 24px 62px rgba(48, 39, 83, .13);
}
.services-order-panel__header {
  min-height: 98px;
  padding: 23px 24px 19px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #e7e8ef;
  background: linear-gradient(145deg, #fbfaff, #f6f2ff);
}
.services-order-panel__header span {
  color: #7140d9;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .11em;
}
.services-order-panel__header h2 {
  margin: 7px 0 0;
  color: #191d31;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.035em;
}
.services-order-panel__header > strong,
.services-order-panel__header-actions > strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, #7240dc, #8c50e7);
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(105, 57, 205, .22);
}
.services-order-panel__body {
  min-height: 0;
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 18px;
  scrollbar-width: thin;
  scrollbar-color: #c7b7ed transparent;
}
.services-order-panel__body::-webkit-scrollbar { width: 7px; }
.services-order-panel__body::-webkit-scrollbar-thumb { border-radius: 99px; background: #c7b7ed; }
.services-order-panel__footer {
  flex: 0 0 auto;
  padding: 18px 20px 20px;
  border-top: 1px solid #e6e7ee;
  background: #fff;
  box-shadow: 0 -12px 28px rgba(34, 29, 62, .045);
}
.services-order-empty {
  min-height: 100%;
  padding: 42px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.services-order-empty__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #7240dc;
  background: #f1ebfd;
  font-size: 34px;
  font-weight: 300;
}
.services-order-empty h3 { margin: 22px 0 10px; color: #24293e; font-size: 20px; }
.services-order-empty p { max-width: 270px; margin: 0; color: #717688; font-size: 12.5px; line-height: 1.65; }
.services-order-list { display: grid; gap: 12px; }
.services-order-item {
  padding: 16px;
  border: 1px solid #e1e3eb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(41, 35, 70, .045);
}
.services-order-item__top {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: start;
  gap: 10px;
}
.services-order-item__top > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #6b39d5;
  background: #f0eafb;
  font-size: 9px;
  font-weight: 850;
}
.services-order-item__top > div { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.services-order-item__top strong { color: #282d42; font-size: 13px; line-height: 1.3; }
.services-order-item__top small { color: #7b8092; font-size: 10.5px; line-height: 1.3; }
.services-order-item__top button {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: #8a8fa0;
  background: #f4f5f8;
  font-size: 18px;
  cursor: pointer;
}
.services-order-item dl { margin: 14px 0 0; display: grid; gap: 7px; }
.services-order-item dl div { display: flex; justify-content: space-between; gap: 12px; }
.services-order-item dt { color: #777c8f; font-size: 10.5px; }
.services-order-item dd { margin: 0; max-width: 190px; color: #4a5065; font-size: 10.5px; font-weight: 720; text-align: right; overflow-wrap: anywhere; }
.services-order-item__quote-note { margin: 14px 0 0; color: #777c8e; font-size: 10.5px; }
.services-order-item__bottom {
  margin-top: 14px;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid #ececf2;
}
.services-order-item__bottom button { padding: 0; color: #6d3bd7; background: none; font-size: 10.5px; font-weight: 800; cursor: pointer; }
.services-order-item__bottom strong { color: #6332ce; font-size: 14px; text-align: right; }
.services-order-total { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; }
.services-order-total > div { display: flex; flex-direction: column; gap: 4px; }
.services-order-total span { color: #565c70; font-size: 11px; font-weight: 740; }
.services-order-total small { color: #8a8e9e; font-size: 9.5px; }
.services-order-total strong { color: #5f2dca; font-size: 25px; line-height: 1; text-align: right; }
.services-order-total--empty { align-items: center; }
.services-order-custom-note { margin: 9px 0 0; color: #6b3bd2; font-size: 10px; font-weight: 730; }
.services-order-disclaimer { margin: 10px 0 14px; color: #85899a; font-size: 9.5px; line-height: 1.45; }
.services-order-submit {
  width: 100%;
  min-height: 50px;
  margin-top: 14px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #7541df, #8d4de5);
  box-shadow: 0 12px 26px rgba(103, 52, 207, .22);
  font-size: 12.5px;
  font-weight: 830;
  cursor: pointer;
}
.services-order-submit:disabled { color: #999dac; background: #eceef3; box-shadow: none; cursor: not-allowed; }
.services-order-submit--secondary { color: #6635d2; background: #f2ecfd; box-shadow: none; }
.services-checkout-form { display: grid; gap: 13px; }
.services-checkout-form__intro button { padding: 0; color: #6c3bd4; background: none; font-size: 10.5px; font-weight: 780; cursor: pointer; }
.services-checkout-form__intro h3 { margin: 14px 0 7px; color: #23283d; font-size: 20px; }
.services-checkout-form__intro p { margin: 0; color: #74798b; font-size: 11.5px; line-height: 1.55; }
.services-checkout-account-note { padding: 11px 12px; border-radius: 10px; color: #5d3aa9; background: #f2edfc; font-size: 10px; line-height: 1.45; }
.services-checkout-form label { display: grid; gap: 7px; }
.services-checkout-form label > span { color: #575c70; font-size: 10.5px; font-weight: 720; }
.services-checkout-form input,
.services-checkout-form textarea {
  width: 100%;
  border: 1px solid #dfe1ea;
  border-radius: 10px;
  color: #282d42;
  background: #fff;
  font-size: 12px;
  outline: 0;
}
.services-checkout-form input { height: 43px; padding: 0 12px; }
.services-checkout-form textarea { min-height: 92px; padding: 11px 12px; resize: vertical; }
.services-checkout-form input:focus,
.services-checkout-form textarea:focus { border-color: #916ce0; box-shadow: 0 0 0 3px rgba(116, 64, 222, .09); }
.services-checkout-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.services-checkout-consent { grid-template-columns: 18px 1fr !important; align-items: start; gap: 9px !important; }
.services-checkout-consent input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: #7040d9; }
.services-checkout-consent span { font-weight: 500 !important; line-height: 1.45; }
.services-checkout-error { min-height: 16px; margin: 0; color: #b33c4c; font-size: 10.5px; line-height: 1.4; }
.services-order-success {
  min-height: 100%;
  padding: 32px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.services-order-success__icon { width: 70px; height: 70px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #6c3bd6, #8e51e6); font-size: 30px; box-shadow: 0 16px 34px rgba(100, 53, 201, .24); }
.services-order-success > span { margin-top: 21px; color: #7140d9; font-size: 9.5px; font-weight: 850; letter-spacing: .11em; }
.services-order-success h3 { margin: 8px 0 10px; color: #23283c; font-size: 21px; }
.services-order-success > p { max-width: 300px; margin: 0; color: #74798a; font-size: 11.5px; line-height: 1.6; }
.services-order-success > div:not(.services-order-success__icon) { width: 100%; margin-top: 22px; padding: 14px; display: grid; gap: 5px; border-radius: 12px; background: #f5f1fd; }
.services-order-success small { color: #7c8192; font-size: 9.5px; }
.services-order-success strong { color: #5e2dca; font-size: 13px; overflow-wrap: anywhere; }
.services-order-success a { margin-top: 18px; color: #6735d1; font-size: 11px; font-weight: 790; text-decoration: none; }

.services-toast {
  position: fixed;
  z-index: 2100;
  left: 50%;
  bottom: 32px;
  max-width: 520px;
  padding: 15px 22px;
  border: 1px solid #d6c8f3;
  border-radius: 13px;
  color: #fff;
  background: #5f31c7;
  box-shadow: 0 18px 46px rgba(56, 36, 101, .28);
  font-size: 12px;
  font-weight: 760;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity .2s ease, transform .2s ease;
}
.services-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* Main hero statistics and reviews link restored in v11 */
.hero__stats { display: grid; }
.home-reviews-more { margin-top: 42px; text-align: center; }
.home-reviews-more a {
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #9a78df;
  border-radius: 12px;
  color: #6433d1;
  background: #fff;
  font-size: 13px;
  font-weight: 820;
  text-decoration: none;
}
.home-reviews-more a::after { content: " →"; margin-left: 7px; }

/* Reviews, business and vacancies pages */
.content-page { background: #f7f8fc; }
.content-page-hero { padding: 150px 0 88px; background: linear-gradient(135deg, #f8f6fd, #edf1f8); }
.content-page-hero__grid { min-height: 420px; display: grid; grid-template-columns: 1fr 520px; align-items: center; gap: 64px; }
.content-page-hero__copy > span { color: #7040dc; font-size: 12px; font-weight: 850; letter-spacing: .11em; }
.content-page-hero h1 { margin: 15px 0 21px; color: #171b2f; font-size: 58px; line-height: 1.06; letter-spacing: -.04em; }
.content-page-hero p { margin: 0; color: #62677a; font-size: 17px; line-height: 1.75; }
.content-page-hero__media { height: 420px; overflow: hidden; border-radius: 28px; background: #e8eaf1; box-shadow: 0 25px 65px rgba(42,35,73,.13); }
.content-page-hero__media img { width: 100%; height: 100%; display: block; object-fit: cover; }
.content-page-section { padding: 96px 0 112px; }
.reviews-page-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.review-page-card { padding: 25px; border: 1px solid #e0e2ea; border-radius: 18px; background: #fff; box-shadow: 0 12px 32px rgba(38,33,68,.055); }
.review-page-card__head { display: grid; grid-template-columns: 64px 1fr; align-items: center; gap: 14px; }
.review-page-card img { width: 64px; height: 64px; display: block; border-radius: 50%; object-fit: cover; }
.review-page-card h3 { margin: 0 0 5px; font-size: 17px; }
.review-page-card span { color: #7040dc; font-size: 11px; font-weight: 760; }
.review-page-card p { margin: 18px 0 0; color: #64697c; font-size: 13px; line-height: 1.7; }
.info-feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.info-feature-card { min-height: 260px; padding: 28px; border: 1px solid #dfe2ea; border-radius: 19px; background: #fff; box-shadow: 0 12px 32px rgba(38,33,68,.05); }
.info-feature-card > span { color: #7140dc; font-size: 12px; font-weight: 850; }
.info-feature-card h2, .info-feature-card h3 { margin: 14px 0 12px; color: #24293e; font-size: 22px; }
.info-feature-card p { margin: 0; color: #666b7e; font-size: 13px; line-height: 1.7; }
.info-feature-card ul { margin: 17px 0 0; padding-left: 18px; color: #606679; font-size: 13px; line-height: 1.8; }

@media (max-width: 1650px) {
  .services-intro__grid { grid-template-columns: minmax(0, 1fr) 470px; gap: 45px; }
  .services-intro h1 { font-size: 52px; }
  .service-accordion-summary { grid-template-columns: 270px 62px minmax(0, 1fr) 130px; gap: 20px; }
  .category-calculator-layout { grid-template-columns: minmax(0, 1fr) 350px; }
  .category-calculator { padding: 24px; }
  .category-service-grid { gap: 10px; }
  .category-service-card { min-height: 168px; }
  .category-service-card__image { height: 112px; }
  .content-page-hero__grid { grid-template-columns: 1fr 470px; }
}

/* Alternating closed service rows */
.service-accordion-item:nth-child(even) .service-accordion-summary {
  grid-template-columns: 72px minmax(0, 1fr) 150px 320px;
}
.service-accordion-item:nth-child(even) .service-accordion-summary__number { grid-column: 1; grid-row: 1; }
.service-accordion-item:nth-child(even) .service-accordion-summary__copy { grid-column: 2; grid-row: 1; }
.service-accordion-item:nth-child(even) .service-accordion-summary__action { grid-column: 3; grid-row: 1; }
.service-accordion-item:nth-child(even) .service-accordion-summary__media { grid-column: 4; grid-row: 1; }
@media (max-width: 1650px) {
  .service-accordion-item:nth-child(even) .service-accordion-summary {
    grid-template-columns: 62px minmax(0, 1fr) 130px 270px;
  }
}

/* =========================================================
   ARQAU v12 — pages «Бизнесу» and «Вакансии»
   ========================================================= */

/* Business page */
.business-page,
.career-page { background: #f5f7fb; }
.business-kicker,
.career-kicker,
.business-section-heading > span,
.business-request-card__eyebrow,
.candidate-form-card__eyebrow {
  color: #7040dc;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .11em;
}

.business-hero {
  padding: 138px 0 72px;
  background: linear-gradient(135deg, #f8f6fd 0%, #edf1f8 100%);
}
.business-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 450px;
  align-items: stretch;
  gap: 28px;
}
.business-hero__content {
  position: relative;
  min-height: 620px;
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(107, 76, 173, .14);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(248,249,253,.97) 0%, rgba(248,249,253,.94) 48%, rgba(245,246,251,.70) 74%, rgba(241,243,248,.40) 100%),
    url('../assets/images/catalog/category-freight.webp') 92% center / 53% auto no-repeat,
    #f5f6fa;
  box-shadow: 0 28px 72px rgba(49, 39, 89, .12);
}
.business-hero__content::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 58%, rgba(111,64,220,.08));
}
.business-hero__content > * { position: relative; z-index: 1; }
.business-hero h1 {
  max-width: 760px;
  margin: 17px 0 23px;
  color: #171b2f;
  font-size: 60px;
  line-height: 1.03;
  letter-spacing: -.045em;
}
.business-hero__lead {
  max-width: 710px;
  margin: 0;
  color: #555b70;
  font-size: 17px;
  line-height: 1.72;
}
.business-format-cards {
  max-width: 880px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.business-format-card {
  min-height: 172px;
  padding: 23px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  border: 1px solid rgba(114, 74, 201, .18);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 34px rgba(46, 37, 81, .08);
  backdrop-filter: blur(8px);
}
.business-format-card > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #7540e3, #6331d3);
  font-size: 12px;
  font-weight: 850;
}
.business-format-card h2 { margin: 2px 0 10px; font-size: 20px; }
.business-format-card p { margin: 0; color: #676c7f; font-size: 13px; line-height: 1.65; }

.business-request-card {
  min-height: 620px;
  padding: 36px;
  border: 1px solid #dde0e9;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 72px rgba(49, 39, 89, .12);
}
.business-request-card h2,
.candidate-form-card h2 {
  margin: 10px 0 9px;
  color: #181c31;
  font-size: 30px;
  line-height: 1.14;
}
.business-request-card > p,
.candidate-form-card > p {
  margin: 0;
  color: #6c7184;
  font-size: 13px;
  line-height: 1.6;
}
.business-request-form,
.candidate-form {
  margin-top: 25px;
  display: grid;
  gap: 13px;
}
.business-request-form label,
.candidate-form label {
  display: grid;
  gap: 7px;
}
.business-request-form label > span,
.candidate-form label > span {
  color: #4f556a;
  font-size: 11px;
  font-weight: 760;
}
.business-request-form input,
.business-request-form select,
.business-request-form textarea,
.candidate-form input,
.candidate-form select,
.candidate-form textarea {
  width: 100%;
  border: 1px solid #dcdfea;
  border-radius: 10px;
  color: #20253a;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.business-request-form input,
.business-request-form select,
.candidate-form input,
.candidate-form select {
  height: 45px;
  padding: 0 12px;
}
.business-request-form textarea,
.candidate-form textarea { padding: 11px 12px; resize: vertical; }
.business-request-form input:focus,
.business-request-form select:focus,
.business-request-form textarea:focus,
.candidate-form input:focus,
.candidate-form select:focus,
.candidate-form textarea:focus {
  outline: none;
  border-color: #8f68df;
  box-shadow: 0 0 0 4px rgba(112,64,220,.10);
}
.business-request-form > button,
.candidate-form > button {
  min-height: 50px;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, #7540e3, #6130d2);
  box-shadow: 0 13px 28px rgba(102, 51, 214, .20);
  font-size: 14px;
  font-weight: 820;
  cursor: pointer;
}
.business-request-form > button:hover,
.candidate-form > button:hover { transform: translateY(-1px); }
.business-request-form > small,
.candidate-form > small { color: #858a9b; font-size: 10px; line-height: 1.45; text-align: center; }
.business-form-message,
.candidate-form-message { min-height: 0; border-radius: 9px; font-size: 11px; line-height: 1.45; }
.business-form-message.is-error,
.business-form-message.is-success,
.candidate-form-message.is-error,
.candidate-form-message.is-success { padding: 11px 12px; }
.business-form-message.is-error,
.candidate-form-message.is-error { color: #9a3344; background: #fcedf0; }
.business-form-message.is-success,
.candidate-form-message.is-success { color: #1f764e; background: #eaf7f0; }

.business-solutions-section { padding: 96px 0; background: #fff; }
.business-solutions-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: 32px;
}
.business-section-heading { margin-bottom: 26px; }
.business-section-heading h2 {
  margin: 10px 0 11px;
  color: #1a1e33;
  font-size: 37px;
  line-height: 1.12;
  letter-spacing: -.03em;
}
.business-section-heading p { margin: 0; color: #6d7285; font-size: 14px; line-height: 1.65; }
.business-models { display: grid; gap: 16px; }
.business-model-card {
  min-height: 222px;
  padding: 29px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  border: 1px solid #dfe2eb;
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(38, 33, 68, .06);
}
.business-model-card__number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, #7440e2, #5f2fcf);
  font-size: 14px;
  font-weight: 850;
}
.business-model-card h3 { margin: 2px 0 12px; color: #20253a; font-size: 25px; }
.business-model-card p { margin: 0 0 15px; color: #656b7e; font-size: 14px; line-height: 1.7; }
.business-model-card strong { color: #5d35bf; font-size: 12px; line-height: 1.6; }
.business-services-panel {
  padding: 32px;
  border: 1px solid #dfe2eb;
  border-radius: 24px;
  background: #f9f8fd;
  box-shadow: 0 14px 38px rgba(38, 33, 68, .055);
}
.business-services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.business-services-list a {
  min-height: 62px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e0e2eb;
  border-radius: 13px;
  color: #262b40;
  background: #fff;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.business-services-list a:hover {
  transform: translateY(-1px);
  border-color: #ad91e8;
  box-shadow: 0 10px 24px rgba(73, 49, 128, .08);
}
.business-services-list a span {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #6d3bd7;
  background: #f0ebfc;
  font-size: 10px;
  font-weight: 850;
}
.business-services-list a strong { font-size: 13px; line-height: 1.25; }

.business-benefits-section { padding: 92px 0 100px; background: #f5f7fb; }
.business-benefits-grid,
.career-benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.business-benefits-grid article,
.career-benefits-grid article {
  min-height: 232px;
  padding: 24px 20px;
  border: 1px solid #dfe2eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(38, 33, 68, .045);
}
.business-benefits-grid article > span,
.career-benefits-grid article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #6c39d7;
  background: #f0ebfc;
  font-size: 11px;
  font-weight: 850;
}
.business-benefits-grid h3,
.career-benefits-grid h3 { margin: 21px 0 11px; font-size: 17px; line-height: 1.25; }
.business-benefits-grid p,
.career-benefits-grid p { margin: 0; color: #6b7083; font-size: 12px; line-height: 1.65; }

.business-process-section,
.career-process-section { padding: 92px 0 105px; background: #fff; }
.business-process-row,
.career-process-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}
.business-process-row::before,
.career-process-row::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: #d8cdf2;
}
.business-process-row article,
.career-process-row article {
  position: relative;
  z-index: 1;
  min-height: 235px;
  padding: 23px;
  border: 1px solid #e0e2eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(38, 33, 68, .045);
}
.business-process-row article > span,
.career-process-row article > span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #7540e3, #6130d2);
  font-size: 12px;
  font-weight: 850;
}
.business-process-row h3,
.career-process-row h3 { margin: 0 0 11px; font-size: 18px; line-height: 1.3; }
.business-process-row p,
.career-process-row p { margin: 0; color: #6c7184; font-size: 12px; line-height: 1.65; }
.business-clients-section { padding-top: 90px; }

/* Vacancies page */
.career-hero {
  padding: 138px 0 76px;
  background: linear-gradient(135deg, #f8f6fd 0%, #edf1f8 100%);
}
.career-hero__grid {
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 560px;
  align-items: stretch;
  gap: 34px;
}
.career-hero__copy {
  padding: 62px 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.career-hero h1 {
  max-width: 820px;
  margin: 17px 0 22px;
  color: #171b2f;
  font-size: 62px;
  line-height: 1.03;
  letter-spacing: -.045em;
}
.career-hero__copy > p {
  max-width: 820px;
  margin: 0;
  color: #5f6579;
  font-size: 17px;
  line-height: 1.72;
}
.career-hero__advantages {
  max-width: 820px;
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}
.career-hero__advantages div {
  min-height: 96px;
  padding: 17px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid #dedfea;
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 30px rgba(38, 33, 68, .055);
}
.career-hero__advantages span {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #7540e3, #6130d2);
  font-size: 10px;
  font-weight: 850;
}
.career-hero__advantages strong { font-size: 14px; line-height: 1.35; }
.career-hero__media {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 30px;
  background: #e4e7ef;
  box-shadow: 0 28px 72px rgba(49, 39, 89, .14);
}
.career-hero__media > img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 16%; }
.career-hero__media > div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 19px 21px;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 17px;
  color: #fff;
  background: rgba(28, 31, 52, .67);
  backdrop-filter: blur(8px);
}
.career-hero__media strong { font-size: 17px; }
.career-hero__media span { color: rgba(255,255,255,.82); font-size: 12px; line-height: 1.5; }

.career-vacancies-section { padding: 96px 0 108px; background: #fff; }
.career-vacancies-heading { margin-bottom: 42px; }
.career-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: start;
  gap: 22px;
}
.vacancy-list { display: grid; gap: 10px; }
.vacancy-item {
  overflow: hidden;
  border: 1px solid #dfe2ea;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(38, 33, 68, .045);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.vacancy-item.is-open { border-color: #9e7de2; box-shadow: 0 16px 38px rgba(75, 52, 128, .10); }
.vacancy-item__summary {
  min-height: 86px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 48px minmax(250px, 1fr) 82px 112px 150px 80px 104px;
  align-items: center;
  gap: 12px;
}
.vacancy-item__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #6c39d7;
  background: #f0ebfc;
  font-size: 11px;
  font-weight: 850;
}
.vacancy-item__name { min-width: 0; display: grid; gap: 4px; }
.vacancy-item__name strong { font-size: 15px; line-height: 1.25; }
.vacancy-item__name span { color: #777c8e; font-size: 10px; line-height: 1.35; }
.vacancy-item__meta { color: #5f6578; font-size: 10px; line-height: 1.35; }
.vacancy-item__salary { color: #5f35c4; font-size: 10px; font-weight: 780; line-height: 1.35; }
.vacancy-details-button,
.vacancy-add-button {
  min-height: 38px;
  border-radius: 9px;
  font-size: 10px;
  font-weight: 820;
  cursor: pointer;
}
.vacancy-details-button { color: #5e36c2; background: #f0ebfc; }
.vacancy-add-button { color: #fff; background: linear-gradient(135deg, #7540e3, #6130d2); }
.vacancy-add-button.is-added { color: #286f50; background: #e7f5ed; }
.vacancy-item__details {
  padding: 22px 25px 25px 76px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  border-top: 1px solid #ebeaf1;
  background: #fbfaff;
}
.vacancy-item__details h3 { margin: 0 0 10px; color: #30354a; font-size: 13px; }
.vacancy-item__details ul { margin: 0; padding-left: 17px; color: #666c7f; font-size: 11px; line-height: 1.75; }

.candidate-form-card {
  padding: 30px;
  border: 1px solid #dfe2eb;
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(39, 33, 70, .09);
}
.selected-vacancies-box {
  margin-top: 23px;
  padding: 15px;
  border: 1px solid #dedfea;
  border-radius: 13px;
  background: #faf9fd;
}
.selected-vacancies-box > strong { display: block; margin-bottom: 10px; color: #383d52; font-size: 11px; }
.selected-vacancies { display: flex; flex-wrap: wrap; gap: 7px; }
.selected-vacancies__empty { margin: 0; color: #818697; font-size: 10px; line-height: 1.5; }
.selected-vacancy-tag {
  min-height: 31px;
  padding: 5px 7px 5px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #cbb8f1;
  border-radius: 99px;
  color: #5d34bf;
  background: #f2edfc;
  font-size: 10px;
  font-weight: 760;
  cursor: pointer;
}
.selected-vacancy-tag b {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #7540e3;
  font-size: 13px;
}
.candidate-form__row { display: grid; grid-template-columns: 1fr 110px; gap: 10px; }
.candidate-form__checks { display: grid; gap: 8px; }
.candidate-form__checks label { display: flex; align-items: center; gap: 8px; }
.candidate-form__checks input { width: 16px; height: 16px; accent-color: #7040dc; }
.candidate-form__checks label > span { font-size: 10px; font-weight: 650; }
.candidate-file-field input { height: auto; padding: 10px; color: #74798b; font-size: 10px; }

.career-benefits-section { padding: 92px 0 100px; background: #f5f7fb; }

@media (max-width: 1650px) {
  .business-hero__grid { grid-template-columns: minmax(0, 1fr) 420px; }
  .business-hero__content { padding: 52px; }
  .business-hero h1 { font-size: 53px; }
  .business-benefits-grid,
  .career-benefits-grid { gap: 10px; }
  .business-benefits-grid article,
  .career-benefits-grid article { padding: 21px 17px; }
  .business-process-row,
  .career-process-row { gap: 10px; }
  .career-hero__grid { grid-template-columns: minmax(0, 1fr) 500px; }
  .career-hero h1 { font-size: 55px; }
  .career-workspace { grid-template-columns: minmax(0, 1fr) 400px; }
  .vacancy-item__summary {
    grid-template-columns: 44px minmax(220px, 1fr) 70px 96px 126px 72px 94px;
    gap: 9px;
  }
  .candidate-form-card { padding: 25px; }
}

/* =========================================================
   ARQAU v13 — adaptive layout for desktop, tablet and mobile
   ========================================================= */

body { min-width: 0; overflow-x: hidden; }
img, svg, video { max-width: 100%; }
.site-header__menu-toggle,
.site-header__mobile-menu { display: none; }

@media (max-width: 1440px) {
  :root { --page-side-space: 34px; }
  .site-header__container { width: calc(100% - 48px); }
  .site-header__nav { margin-left: 12px; padding-right: 12px; gap: 14px; }
  .site-header__nav a { font-size: 12px; }
  .site-header__contact { gap: 8px; }
  .header-phone, .header-sms { font-size: 12px; }
  .header-callback { padding-inline: 10px; font-size: 10px; }
  .header-languages button, .header-account button { font-size: 10px; }

  .hero__container { grid-template-columns: minmax(360px, 31%) 3% minmax(0, 66%); }
  .hero h1 { font-size: 48px; }
  .hero__lead { font-size: 14px; }
  .calculator-shell { grid-template-columns: 130px minmax(0, 1fr) 220px; }

  .advantages-media-layout { grid-template-columns: 1fr 420px; }
  .home-reviews-row { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 38px; }
  .services-showcase { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .business-benefits-grid, .career-benefits-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .business-process-row, .career-process-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .business-process-row::before, .career-process-row::before { display: none; }
}

@media (max-width: 1180px) {
  :root { --page-side-space: 28px; }
  body.menu-open { overflow: hidden; }

  .site-header,
  .site-header--scrolled { height: 78px; padding: 8px 0; }
  .site-header__container {
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }
  .site-header__logo,
  .site-header--scrolled .site-header__logo { width: 142px; height: 58px; }
  .site-header__socials,
  .site-header__nav,
  .site-header__contact { display: none; }
  .site-header__menu-toggle {
    position: relative;
    z-index: 4;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(71, 53, 130, .25);
    border-radius: 13px;
    color: #282342;
    background: rgba(255,255,255,.58);
    box-shadow: 0 8px 22px rgba(58, 43, 112, .09);
    cursor: pointer;
  }
  .site-header__menu-toggle span {
    width: 23px;
    height: 2px;
    display: block;
    border-radius: 99px;
    background: currentColor;
    transition: transform .22s ease, opacity .22s ease;
  }
  .site-header.is-menu-open .site-header__menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.is-menu-open .site-header__menu-toggle span:nth-child(2) { opacity: 0; }
  .site-header.is-menu-open .site-header__menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-header__mobile-menu {
    position: fixed;
    z-index: 3;
    top: 78px;
    left: 0;
    right: 0;
    max-height: calc(100dvh - 78px);
    padding: 26px 28px 32px;
    display: grid;
    gap: 24px;
    overflow-y: auto;
    color: #1e2137;
    background: rgba(248, 247, 253, .985);
    border-top: 1px solid rgba(84, 65, 143, .14);
    box-shadow: 0 24px 50px rgba(43, 33, 83, .18);
    transform: translateY(-115%);
    visibility: hidden;
    opacity: 0;
    transition: transform .28s ease, opacity .2s ease, visibility .28s ease;
  }
  .site-header.is-menu-open .site-header__mobile-menu {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
  .site-header__mobile-nav { display: grid; }
  .site-header__mobile-nav a {
    padding: 16px 0;
    border-bottom: 1px solid #e3e0ed;
    color: #22263b;
    font-size: 16px;
    font-weight: 780;
    text-decoration: none;
  }
  .site-header__mobile-nav a.is-active { color: #6836d5; }
  .site-header__mobile-contact {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 12px;
  }
  .site-header__mobile-contact .header-phone,
  .site-header__mobile-contact .header-sms { color: #22263b; font-size: 14px; }
  .site-header__mobile-contact .header-callback {
    min-height: 44px;
    color: #fff;
    background: linear-gradient(135deg, #7540e3, #6130d2);
    border: 0;
  }
  .site-header__mobile-bottom {
    padding-top: 20px;
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 24px;
    border-top: 1px solid #e3e0ed;
  }
  .site-header__mobile-socials { display: flex; gap: 10px; }
  .site-header__mobile-socials a { width: 38px; height: 38px; display: grid; place-items: center; }
  .site-header__mobile-socials img { width: 25px; height: 25px; object-fit: contain; }
  .header-languages--mobile,
  .header-account--mobile {
    padding-left: 18px;
    border-left: 1px solid #d9d4e7;
    flex-direction: row;
    gap: 14px;
  }
  .header-languages--mobile button,
  .header-account--mobile button { color: #39364d; font-size: 12px; }

  .hero { min-height: 0; padding: 112px 0 60px; background-position: 35% center; }
  .hero__container { display: grid; grid-template-columns: 1fr; gap: 38px; }
  .hero__content, .calculator-shell { grid-column: auto; }
  .hero__content { max-width: 760px; padding-right: 0; }
  .hero h1 { font-size: clamp(44px, 6vw, 62px); }
  .hero__lead { max-width: 720px; }
  .hero__stats { max-width: 780px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .calculator-shell { width: 100%; height: 760px; grid-template-columns: 150px minmax(0, 1fr) 250px; }

  .advantages-media-layout,
  .history-section__grid,
  .clean-city-section__grid,
  .business-solutions-grid,
  .career-workspace { grid-template-columns: 1fr; }
  .advantages-grid--compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-video-card, .home-video-card > img { min-height: 420px; }
  .services-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid::before { display: none; }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .clients-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .site-footer__grid { grid-template-columns: 1.4fr repeat(2, 1fr); gap: 34px; }
  .site-footer__column:last-child { grid-column: 2 / -1; }

  .about-hero,
  .services-intro,
  .business-hero,
  .career-hero,
  .content-page-hero,
  .service-page-hero { padding-top: 112px; }
  .about-hero__grid,
  .services-intro__grid,
  .business-hero__grid,
  .career-hero__grid,
  .content-page-hero__grid,
  .service-page-hero__grid { grid-template-columns: 1fr; gap: 38px; min-height: 0; }
  .about-hero__content,
  .services-intro__copy,
  .career-hero__copy { padding: 30px 0 0; }
  .about-hero__content h1,
  .services-intro h1,
  .business-hero h1,
  .career-hero h1,
  .content-page-hero h1 { font-size: clamp(44px, 6vw, 58px); }
  .license-panel,
  .services-intro__media,
  .career-hero__media,
  .content-page-hero__media { min-height: 480px; height: 480px; }
  .channels-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-slide,
  .feature-slide--reverse { min-height: 0; grid-template-columns: 1fr; }
  .feature-slide__media { min-height: 430px; }
  .feature-slide__copy { padding: 48px 42px; }
  .mobile-app-card { grid-template-columns: 1fr 360px; }

  .services-intro__grid { gap: 34px; }
  .service-accordion-summary { grid-template-columns: 280px minmax(0,1fr) 160px; }
  .service-accordion-panel { padding: 24px; }
  .category-calculator-layout { grid-template-columns: minmax(0, 1fr) 330px; }
  .category-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-variant-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .business-hero__content { padding: 48px; }
  .business-request-card { max-width: none; }
  .business-solutions-grid { gap: 26px; }
  .business-models { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .business-benefits-grid, .career-benefits-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .business-process-row, .career-process-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .career-hero__media { min-height: 480px; }
  .career-workspace { gap: 36px; }
  .candidate-form-card { max-width: 760px; }
  .vacancy-item__summary {
    grid-template-columns: 48px minmax(240px, 1fr) 80px 105px 140px 82px 104px;
    gap: 9px;
  }
  .reviews-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  :root { --page-side-space: 24px; }

  .calculator-shell {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    overflow: visible;
  }
  .calculator-shell__intro { grid-column: 1; grid-row: 1; }
  .calculator-categories { grid-row: 2; border-right: 0; border-bottom: 1px solid var(--line); overflow: visible; }
  .calculator-configurator { grid-row: 3; border-right: 0; border-bottom: 1px solid var(--line); overflow: visible; }
  .order-panel { grid-row: 4; height: auto; min-height: 0; }
  .category-list { height: auto; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: none; }
  .category-card { min-height: 108px; }
  .configurator-scroll { height: auto; max-height: none; overflow: visible; }
  .order-list { max-height: 360px; }
  .order-panel__footer { position: static; }

  .advantages-grid--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: auto; }
  .home-reviews-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-video-message { width: calc(100% - 48px); min-width: 0; }
  .services-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__column:last-child { grid-column: auto; }

  .about-hero__grid,
  .services-intro__grid,
  .business-hero__grid,
  .career-hero__grid,
  .content-page-hero__grid { gap: 28px; }
  .history-section__grid { gap: 42px; }
  .history-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .channels-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mobile-app-card { grid-template-columns: 1fr; }
  .mobile-app-card__media { min-height: 360px; }
  .clean-city-section__grid { gap: 38px; }

  .service-accordion-summary,
  .service-accordion-item:nth-child(even) .service-accordion-summary {
    min-height: 220px;
    grid-template-columns: 240px minmax(0, 1fr) 138px;
  }
  .service-accordion-summary__media { min-height: 220px; }
  .service-accordion-panel { padding: 20px; }
  .category-calculator-layout { grid-template-columns: 1fr; }
  .category-detail-panel { border-top: 1px solid #e1e3eb; }
  .category-detail-panel__visual { height: 300px; }

  .business-hero__content { padding: 38px; }
  .business-format-cards { grid-template-columns: 1fr 1fr; }
  .business-models { grid-template-columns: 1fr 1fr; }
  .business-services-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .business-benefits-grid, .career-benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .business-process-row, .career-process-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .career-hero__advantages { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .vacancy-item__summary {
    grid-template-columns: 48px minmax(0, 1fr) 92px 110px;
    grid-template-areas:
      "icon name details add"
      "icon city salary add";
    padding: 14px;
  }
  .vacancy-item__icon { grid-area: icon; }
  .vacancy-item__name { grid-area: name; }
  .vacancy-item__meta:nth-of-type(1) { grid-area: city; }
  .vacancy-item__meta:nth-of-type(2) { display: none; }
  .vacancy-item__salary { grid-area: salary; }
  .vacancy-details-button { grid-area: details; }
  .vacancy-add-button { grid-area: add; align-self: stretch; }
  .vacancy-item__details { padding-left: 24px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  :root { --page-side-space: 18px; }
  .site-header__container { width: calc(100% - 28px); }
  .site-header__logo,
  .site-header--scrolled .site-header__logo { width: 126px; height: 52px; }
  .site-header__menu-toggle { width: 44px; height: 44px; flex-basis: 44px; }
  .site-header__mobile-menu { padding: 18px 20px 28px; }
  .site-header__mobile-contact { grid-template-columns: 1fr auto; }
  .site-header__mobile-contact .header-callback { grid-column: 1 / -1; }
  .site-header__mobile-bottom { grid-template-columns: auto 1fr; gap: 16px; }
  .header-account--mobile { grid-column: 1 / -1; justify-content: flex-start; padding: 15px 0 0; border-left: 0; border-top: 1px solid #e3e0ed; }

  .hero { padding-top: 102px; background-position: 30% center; }
  .hero__eyebrow { font-size: 11px; }
  .hero h1 { font-size: 40px; line-height: 1.08; }
  .hero__lead, .hero__lead-highlight { font-size: 14px; }
  .hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .hero-stat { min-height: 96px; padding: 14px; }

  .calculator-shell { border-radius: 18px; }
  .calculator-shell__intro { padding: 16px; flex-direction: column; align-items: stretch; }
  .calculator-shell__intro h2 { font-size: 20px; }
  .calculator-shell__notice { width: 100%; }
  .category-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-card { min-height: 100px; }
  .configurator-scroll { padding: 18px 14px; }
  .configurator-heading { flex-direction: column; }
  .image-card-grid--services,
  .image-card-grid--variants { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .parameter-grid { grid-template-columns: 1fr; }
  .calculation-box { align-items: flex-start; flex-direction: column; gap: 10px; }
  .calculation-box strong { text-align: left; }
  .order-panel__header, .order-panel__footer { padding: 16px; }

  .advantages-section,
  .home-reviews-section,
  .services-section,
  .process-section,
  .team-section,
  .clients-section,
  .history-section,
  .training-section,
  .channels-section,
  .fleet-section,
  .warehouses-section,
  .clean-city-section,
  .services-accordion-section,
  .business-solutions-section,
  .business-benefits-section,
  .business-process-section,
  .career-vacancies-section,
  .career-benefits-section,
  .career-process-section,
  .content-page-section { padding-top: 64px; padding-bottom: 70px; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2, .business-section-heading h2 { font-size: 34px; }
  .section-heading p { font-size: 14px; }
  .advantages-grid--compact,
  .services-showcase,
  .process-grid,
  .team-grid,
  .reviews-page-grid { grid-template-columns: 1fr; }
  .advantages-grid--compact .advantage-card { min-height: 190px; }
  .home-reviews-row { grid-template-columns: 1fr; gap: 34px; }
  .home-review-item { max-width: 520px; margin: 0 auto; }
  .home-video-card, .home-video-card > img { min-height: 360px; }
  .home-video-card__caption { left: 20px; right: 20px; bottom: 20px; }
  .home-video-card > button { width: 66px; height: 66px; }
  .clients-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .clients-row img { height: 80px; }

  .site-footer__grid { padding-top: 52px; padding-bottom: 42px; grid-template-columns: 1fr; gap: 30px; }
  .site-footer__brand, .site-footer__column:last-child { grid-column: auto; }
  .site-footer__bottom .page-container { padding: 18px 0; min-height: 0; flex-direction: column; align-items: flex-start; }
  .site-footer__bottom div div { flex-wrap: wrap; gap: 12px 18px; }

  .about-hero,
  .services-intro,
  .business-hero,
  .career-hero,
  .content-page-hero,
  .service-page-hero { padding: 100px 0 56px; }
  .about-hero__content h1,
  .services-intro h1,
  .business-hero h1,
  .career-hero h1,
  .content-page-hero h1 { font-size: 39px; }
  .about-hero__lead,
  .services-intro__copy > p,
  .business-hero__lead,
  .career-hero__copy > p,
  .content-page-hero p { font-size: 14px; }
  .license-panel,
  .services-intro__media,
  .career-hero__media,
  .content-page-hero__media { min-height: 350px; height: 350px; border-radius: 22px; }
  .license-slide { height: 350px; padding: 28px; }
  .history-copy h2 { font-size: 36px; }
  .history-facts { grid-template-columns: 1fr 1fr; }
  .channels-grid { grid-template-columns: 1fr; }
  .feature-slide__media { min-height: 320px; padding: 24px; }
  .feature-slide__copy { padding: 34px 24px; }
  .feature-slide__copy h3 { font-size: 32px; }
  .mobile-app-card__copy { padding: 34px 24px; }
  .clean-city-section__copy h2 { font-size: 35px; }

  .services-intro__note { grid-template-columns: 30px 1fr; padding: 15px; }
  .service-accordion-summary {
    grid-template-columns: 118px minmax(0, 1fr);
    grid-template-rows: auto auto;
    min-height: 0;
  }
  .service-accordion-summary__media { min-height: 150px; grid-row: 1 / 3; }
  .service-accordion-summary__number { display: none; }
  .service-accordion-summary__copy { padding: 18px 16px 8px; }
  .service-accordion-summary__copy strong { font-size: 22px; }
  .service-accordion-summary__action { margin: 0 16px 16px; justify-self: start; }
  .service-accordion-panel { padding: 14px; }
  .category-calculator, .category-detail-panel { padding: 20px 16px; }
  .category-calculator__header { flex-direction: column; align-items: flex-start; }
  .category-service-grid, .category-variant-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-parameter-grid { grid-template-columns: 1fr; }
  .category-parameter--full { grid-column: auto; }
  .category-calculation-box { flex-direction: column; align-items: flex-start; }
  .category-calculation-box > strong { text-align: left; }
  .category-calculator__actions { grid-template-columns: 1fr; }
  .category-detail-panel__visual { height: 240px; }
  .services-toast { width: calc(100% - 36px); }

  .business-hero__content { padding: 28px 22px; }
  .business-format-cards, .business-models, .business-services-list { grid-template-columns: 1fr; }
  .business-request-card, .business-services-panel { padding: 24px 20px; }
  .business-benefits-grid, .career-benefits-grid { grid-template-columns: 1fr; }
  .business-benefits-grid article, .career-benefits-grid article { min-height: 0; }
  .business-process-row, .career-process-row { grid-template-columns: 1fr; }
  .business-process-row article, .career-process-row article { min-height: 0; }

  .career-hero__advantages { grid-template-columns: 1fr; }
  .career-hero__media { min-height: 360px; }
  .career-vacancies-heading { margin-bottom: 28px; }
  .vacancy-item__summary {
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-areas:
      "icon name"
      "city city"
      "salary salary"
      "details add";
    gap: 10px 12px;
    padding: 14px;
  }
  .vacancy-item__meta:nth-of-type(1) { padding-left: 56px; }
  .vacancy-item__salary { padding-left: 56px; }
  .vacancy-details-button, .vacancy-add-button { min-height: 44px; }
  .vacancy-item__details { padding: 20px; grid-template-columns: 1fr; gap: 20px; }
  .candidate-form-card { padding: 24px 18px; }
  .candidate-form__row { grid-template-columns: 1fr; }

  .modal__dialog, .modal__dialog--wide { width: calc(100% - 28px); max-height: calc(100dvh - 28px); overflow-y: auto; padding: 26px 20px; }
  .order-form__footer { align-items: stretch; flex-direction: column; }
  .submit-order-button { width: 100%; min-width: 0; }
}

@media (max-width: 480px) {
  :root { --page-side-space: 14px; }
  .site-header__mobile-menu { padding-left: 16px; padding-right: 16px; }
  .site-header__mobile-contact { grid-template-columns: 1fr; }
  .site-header__mobile-contact .header-callback { grid-column: auto; }
  .site-header__mobile-bottom { grid-template-columns: 1fr; }
  .header-languages--mobile, .header-account--mobile { padding-left: 0; border-left: 0; }

  .hero h1 { font-size: 34px; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .hero-stat strong { font-size: 22px; }
  .calculator-shell__intro { padding: 14px; }
  .category-list { gap: 7px; }
  .category-card { min-height: 90px; }
  .image-card-grid--services,
  .image-card-grid--variants,
  .category-service-grid,
  .category-variant-grid { grid-template-columns: 1fr; }
  .image-choice-card { min-height: 150px; }
  .category-service-card { min-height: 220px; }
  .category-service-card__image { height: 160px; }

  .section-heading h2, .business-section-heading h2 { font-size: 30px; }
  .home-video-card, .home-video-card > img { min-height: 330px; }
  .home-video-card__caption h3 { font-size: 23px; }
  .clients-row { grid-template-columns: 1fr 1fr; }

  .about-hero__content h1,
  .services-intro h1,
  .business-hero h1,
  .career-hero h1,
  .content-page-hero h1 { font-size: 34px; }
  .history-facts { grid-template-columns: 1fr; }
  .service-accordion-summary { grid-template-columns: 92px minmax(0, 1fr); }
  .service-accordion-summary__media { min-height: 132px; }
  .service-accordion-summary__copy strong { font-size: 19px; }
  .category-detail-panel__visual { height: 200px; }
  .business-hero__content { padding: 24px 18px; }
  .business-request-card, .business-services-panel { padding: 21px 16px; }
  .career-hero__media { min-height: 310px; }
  .vacancy-item__summary { grid-template-columns: 40px minmax(0, 1fr); }
  .vacancy-item__meta:nth-of-type(1), .vacancy-item__salary { padding-left: 52px; }
  .vacancy-details-button, .vacancy-add-button { font-size: 9px; }
}

/* v13 responsive specificity corrections */
@media (max-width: 1180px) {
  .service-accordion-summary,
  .service-accordion-item:nth-child(even) .service-accordion-summary {
    grid-template-columns: 240px 54px minmax(0, 1fr) 132px;
    gap: 16px;
  }
  .service-accordion-item:nth-child(even) .service-accordion-summary__media,
  .service-accordion-item:nth-child(even) .service-accordion-summary__number,
  .service-accordion-item:nth-child(even) .service-accordion-summary__copy,
  .service-accordion-item:nth-child(even) .service-accordion-summary__action {
    grid-column: auto;
    grid-row: auto;
  }
  .service-page-content__grid { grid-template-columns: 1fr; gap: 34px; }
  .info-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .service-accordion-summary,
  .service-accordion-item:nth-child(even) .service-accordion-summary {
    grid-template-columns: 118px minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
      "media copy"
      "media action";
    gap: 0;
    padding: 0;
  }
  .service-accordion-summary__media,
  .service-accordion-item:nth-child(even) .service-accordion-summary__media {
    grid-area: media;
    grid-column: auto;
    grid-row: auto;
    height: 100%;
    min-height: 160px;
    border-radius: 0;
  }
  .service-accordion-summary__copy,
  .service-accordion-item:nth-child(even) .service-accordion-summary__copy {
    grid-area: copy;
    grid-column: auto;
    grid-row: auto;
  }
  .service-accordion-summary__action,
  .service-accordion-item:nth-child(even) .service-accordion-summary__action {
    grid-area: action;
    grid-column: auto;
    grid-row: auto;
  }
  .service-accordion-summary__number { display: none; }

  .service-page-hero h1 { font-size: 36px; }
  .service-page-hero p { font-size: 14px; }
  .service-page-hero img { height: 310px; border-radius: 20px; }
  .service-page-content { padding: 64px 0 72px; }
  .service-page-content h2 { font-size: 32px; }
  .service-page-content article p { font-size: 14px; }
  .service-page-content aside { padding: 22px 18px; }
  .info-feature-grid { grid-template-columns: 1fr; }
  .info-feature-card { min-height: 0; }
}

@media (max-width: 480px) {
  .service-accordion-summary,
  .service-accordion-item:nth-child(even) .service-accordion-summary { grid-template-columns: 92px minmax(0, 1fr); }
  .service-accordion-summary__media,
  .service-accordion-item:nth-child(even) .service-accordion-summary__media { min-height: 145px; }
  .service-page-hero h1 { font-size: 32px; }
  .service-page-hero img { height: 250px; }
}

/* =========================================================
   Callback form and shared contact actions
   ========================================================= */
.callback-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.callback-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #26304a;
}
.callback-form input,
.callback-form textarea {
  width: 100%;
  border: 1px solid #dfe3ef;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: #182039;
  background: #fff;
  outline: none;
}
.callback-form input:focus,
.callback-form textarea:focus {
  border-color: #7667db;
  box-shadow: 0 0 0 3px rgba(118, 103, 219, .12);
}
.callback-form__account-actions,
.contact-prefill-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.callback-form__account-actions button,
.contact-prefill-actions button {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: #f0effb;
  color: #5144b7;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.callback-form__submit {
  min-height: 48px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, #6758d6, #4632b7);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.callback-form__submit:disabled { opacity: .65; cursor: wait; }
.callback-form__message { min-height: 20px; font-size: 13px; }
.callback-form__message.is-success { color: #15803d; }
.callback-form__message.is-error { color: #b42318; }

.services-business-mode-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 22px;
  padding: 15px 18px;
  border: 1px solid rgba(103, 88, 214, .22);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(103, 88, 214, .09), rgba(80, 154, 214, .08));
  color: #26304a;
}
.services-business-mode-banner strong { color: #5144b7; font-size: 13px; letter-spacing: .06em; }
.services-business-mode-banner span { font-size: 13px; }

/* =========================================================
   Extended corporate request workflow
   ========================================================= */
.business-request-form--extended { gap: 13px; }
.business-frequency-fieldset {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  border: 0;
  padding: 0;
  margin: 0;
}
.business-frequency-fieldset legend {
  grid-column: 1 / -1;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 800;
  color: #26304a;
}
.business-frequency-fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 12px;
  border: 1px solid #e0e3ef;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.business-frequency-fieldset input { width: auto; }
.business-service-picker {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid #e1e4f0;
  border-radius: 15px;
  background: #f9f9fd;
}
.business-service-picker__head {
  display: grid;
  gap: 10px;
}
.business-service-picker__head > strong { color: #26304a; font-size: 13px; }
.business-service-picker__head > div { display: flex; flex-wrap: wrap; gap: 8px; }
.business-service-picker__head button {
  border: 1px solid rgba(103, 88, 214, .25);
  border-radius: 999px;
  padding: 8px 11px;
  background: #fff;
  color: #5144b7;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.business-service-picker__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}
.business-service-picker__list[hidden] { display: none; }
.business-service-picker__list label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e5e7f1;
  font-size: 12px;
  cursor: pointer;
}
.business-service-picker__list input { width: auto; }
.business-selected-services { display: grid; gap: 10px; }
.business-selected-services__empty {
  padding: 12px;
  border-radius: 11px;
  background: #fff;
  color: #70778b;
  font-size: 12px;
  text-align: center;
}
.business-selected-services__title,
.business-selected-services__total,
.business-selected-services__items article footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.business-selected-services__title span {
  display: inline-grid;
  place-items: center;
  min-width: 25px;
  height: 25px;
  border-radius: 999px;
  background: #6758d6;
  color: #fff;
  font-size: 11px;
}
.business-selected-services__items { display: grid; gap: 8px; }
.business-selected-services__items article {
  padding: 11px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e5e7f1;
}
.business-selected-services__items article > div { display: grid; gap: 2px; }
.business-selected-services__items article small { color: #7b8192; }
.business-selected-services__items article p { margin: 7px 0; color: #656c7e; font-size: 11px; line-height: 1.45; }
.business-selected-services__items article footer b { color: #4632b7; font-size: 12px; }
.business-selected-services__items article footer button {
  border: 0;
  background: transparent;
  color: #b42318;
  font: inherit;
  font-size: 11px;
  cursor: pointer;
}
.business-selected-services__total {
  padding-top: 10px;
  border-top: 1px solid #e1e4f0;
  font-size: 12px;
}
.business-selected-services__total strong { text-align: right; color: #26304a; }
.business-form-message.is-success { color: #15803d; }
.business-form-message.is-error { color: #b42318; }

/* =========================================================
   ARQAU — production media integration, 2026-07-31
   Clean source images; overlays, gradients and text remain CSS-only.
   ========================================================= */

/* Home hero: image on the left/centre, calculator on a CSS surface. */
.hero {
  isolation: isolate;
  background: linear-gradient(135deg, #f8f6fd 0%, #eff2f8 68%, #eceff7 100%);
}
.hero::before {
  z-index: 0;
  inset: 0 auto 0 0;
  width: 65%;
  height: auto;
  background: url('../assets/images/home/hero/home-hero-main.webp') center 43% / cover no-repeat;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 76%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 76%, transparent 100%);
}
.hero::after {
  z-index: 0;
  inset: 0;
  height: auto;
  background:
    linear-gradient(90deg, rgba(249,248,252,.90) 0%, rgba(249,248,252,.72) 24%, rgba(249,248,252,.20) 48%, rgba(245,244,250,.03) 58%, rgba(241,243,249,.94) 68%, #eef1f7 100%),
    linear-gradient(180deg, rgba(255,255,255,.10) 72%, rgba(238,241,248,.76) 100%);
}
.hero__container { position: relative; z-index: 1; }
.hero__content { text-shadow: 0 1px 1px rgba(255,255,255,.75); }

/* Advantages: full-background cards. */
.advantage-card {
  position: relative;
  isolation: isolate;
  min-height: 230px;
  padding: 0;
  overflow: hidden;
  border-color: rgba(255,255,255,.24);
  color: #fff;
  background: #19243d;
}
.advantage-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,16,31,.04) 20%, rgba(10,16,31,.86) 100%);
}
.advantage-card__media {
  position: absolute;
  z-index: -2;
  inset: 0;
}
.advantage-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .38s ease;
}
.advantage-card:hover .advantage-card__media img { transform: scale(1.045); }
.advantage-card__content {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 58px 20px 20px;
}
.advantage-card h3 { margin: 0 0 8px; color: #fff; font-size: 19px; }
.advantage-card p { margin: 0; color: rgba(255,255,255,.84); font-size: 13px; line-height: 1.5; }

/* Home services: one 16:9 image fills each card. */
.service-showcase-card {
  position: relative;
  isolation: isolate;
  min-height: 0;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  color: #fff;
  background: #17223a;
}
.service-showcase-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,15,29,.03) 18%, rgba(10,15,29,.22) 49%, rgba(10,15,29,.91) 100%);
}
.service-showcase-card__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: #e9ebf1;
}
.service-showcase-card__media img { object-fit: cover; object-position: center; }
.service-showcase-card__number {
  z-index: 3;
  top: 20px;
  right: 22px;
  color: rgba(255,255,255,.72);
  text-shadow: 0 2px 18px rgba(0,0,0,.22);
}
.service-showcase-card__body {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 70px 26px 24px;
  color: #fff;
}
.service-showcase-card h3 { margin: 0 0 9px; color: #fff; font-size: 26px; }
.service-showcase-card p { max-width: 92%; color: rgba(255,255,255,.82); font-size: 13px; line-height: 1.5; }
.service-showcase-card__link { margin-top: 15px; padding-top: 0; color: #fff; }

/* Process: 3D-lite illustrations as full-background 16:9 cards. */
.process-grid::before { display: none; }
.process-card {
  position: relative;
  isolation: isolate;
  min-height: 0;
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  border-color: rgba(255,255,255,.34);
  color: #fff;
  background: #17223a;
}
.process-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,25,45,.02) 22%, rgba(17,25,45,.18) 54%, rgba(17,25,45,.90) 100%);
}
.process-card__media { position: absolute; z-index: 0; inset: 0; }
.process-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .38s ease;
}
.process-card:hover .process-card__media img { transform: scale(1.04); }
.process-card__content {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.process-card__content > span {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  color: #fff;
  background: rgba(70,43,145,.68);
  backdrop-filter: blur(6px);
  font-size: 13px;
  font-weight: 850;
}
.process-card h3 { margin: 0 0 8px; color: #fff; font-size: 20px; }
.process-card p { margin: 0; color: rgba(255,255,255,.82); font-size: 12px; line-height: 1.5; }

/* Team portraits preserve the approved 8:5 composition. */
.team-card img {
  height: auto;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  object-position: center;
}

/* Approved daughter-company logos: transparent PNG, original colours. */
.clients-row { gap: 18px; }
.clients-row img {
  height: 92px;
  padding: 6px;
  object-fit: contain;
  object-position: center;
}

/* Services page and individual service pages use the same 16:9 masters. */
.services-intro__media { min-height: 0; aspect-ratio: 16 / 9; align-self: center; }
.services-intro__media img { object-position: center; }
.service-accordion-summary { min-height: 208px; }
.service-accordion-summary__media {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
.service-accordion-summary__media img { object-fit: cover; object-position: center; }
.service-page-hero img {
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}
.content-page-hero__media img { object-position: center; }

@media (max-width: 1650px) {
  .advantage-card__content { padding: 52px 17px 17px; }
  .service-showcase-card__body { padding: 62px 22px 20px; }
  .service-accordion-summary { min-height: 188px; }
}

@media (max-width: 1180px) {
  .hero::before {
    width: 100%;
    opacity: .28;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero::after { background: linear-gradient(135deg, rgba(249,248,252,.90), rgba(239,242,248,.92)); }
  .service-accordion-summary,
  .service-accordion-item:nth-child(even) .service-accordion-summary {
    grid-template-columns: 240px 54px minmax(0, 1fr) 132px;
  }
}

@media (max-width: 720px) {
  .advantage-card { min-height: 220px; }
  .service-showcase-card { aspect-ratio: 4 / 3; }
  .process-card { aspect-ratio: 4 / 3; }
  .service-accordion-summary__media,
  .service-accordion-item:nth-child(even) .service-accordion-summary__media {
    aspect-ratio: auto;
  }
  .clients-row img { height: 76px; }
}

/* ARQAU MERGED FINAL OVERRIDES — 2026-08-01 */
:root {
  --arqau-blue: #2f74ff;
  --arqau-card-gradient: linear-gradient(135deg, rgba(78, 43, 189, .94) 0%, rgba(116, 64, 223, .91) 52%, rgba(155, 101, 238, .88) 100%);
}

/* First screen: preserve the approved composition, reduce brightness, and increase text contrast. */
.hero::after {
  z-index: 0;
  inset: 0;
  height: auto;
  background:
    linear-gradient(90deg,
      rgba(9, 16, 38, .72) 0%,
      rgba(17, 21, 49, .61) 28%,
      rgba(26, 27, 59, .34) 47%,
      rgba(35, 33, 66, .08) 60%,
      rgba(241, 243, 249, .88) 69%,
      #eef1f7 100%),
    linear-gradient(180deg, rgba(12, 17, 39, .06) 68%, rgba(238, 241, 248, .70) 100%);
}
.hero__content {
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-shadow: 0 2px 16px rgba(4, 8, 24, .30);
}
.hero h1 { color: #fff; font-weight: 790; }
.hero__eyebrow { color: #d8c5ff; }
.hero__lead,
.hero__lead-highlight,
.hero-stat span { color: rgba(255, 255, 255, .90); }
.hero__lead-highlight { font-weight: 780; }
.hero__brand {
  color: var(--arqau-blue);
  font: inherit;
  font-weight: 850;
  text-shadow: 0 1px 0 rgba(255,255,255,.18), 0 2px 14px rgba(15, 70, 190, .28);
}
.hero-stat { border-bottom-color: rgba(255,255,255,.20); }
.hero-stat strong { color: #d7c4ff; }

/* Home service cards: approved cards stay intact; branded gradient and slight enlargement appear on hover. */
.service-showcase-card {
  transition: transform .30s ease, box-shadow .30s ease, border-color .30s ease;
  transform-origin: center;
  will-change: transform;
}
.service-showcase-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: var(--arqau-card-gradient);
  opacity: 0;
  transition: opacity .30s ease;
}
.service-showcase-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(128, 79, 225, .84);
  box-shadow: 0 24px 52px rgba(72, 40, 143, .25);
}
.service-showcase-card:hover::after { opacity: .76; }
.service-showcase-card:hover .service-showcase-card__media img { transform: scale(1.035); }
.service-showcase-card__media img { transition: transform .36s ease; }
.service-showcase-card:hover h3,
.service-showcase-card:hover p,
.service-showcase-card:hover .service-showcase-card__link { color: #fff; }

/* Process cards remain unchanged except for the removed numbered circles. */
.process-card__content > span { display: none !important; }

/* Completed calculator: every internal service category uses two cards per row. */
.image-card-grid--services,
.image-card-grid--services[data-category="loaders"],
.image-card-grid--services[data-category="freight-transport"],
.image-card-grid--services[data-category="special-cargo"],
.image-card-grid--services[data-category="packaging"],
.image-card-grid--services[data-category="storage"],
.image-card-grid--services[data-category="other-services"],
.category-service-grid,
.category-service-grid--loaders,
.category-service-grid--freight-transport,
.category-service-grid--special-cargo,
.category-service-grid--packaging,
.category-service-grid--storage,
.category-service-grid--other-services {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

/* Main calculator cards: 1200×900 masters are shown uncropped with text in a separate area. */
.image-card-grid--services .image-choice-card {
  min-height: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #dfd9ed;
  background: #fff;
}
.image-card-grid--services .image-choice-card::before,
.image-card-grid--services .image-choice-card::after { display: none; }
.image-card-grid--services .image-choice-card__media {
  position: relative;
  z-index: 0;
  inset: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  flex: 0 0 auto;
  padding: 0;
  border-radius: 0;
  background: #fff;
}
.image-card-grid--services .image-choice-card__media img {
  width: 100%;
  height: 100%;
  padding: 6px;
  object-fit: contain;
  object-position: center;
  filter: none;
}
.image-card-grid--services .image-choice-card > strong,
.image-card-grid--services .image-choice-card > small {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  max-height: none;
  margin: 0;
  padding-left: 12px;
  padding-right: 12px;
  text-align: left;
  text-shadow: none;
}
.image-card-grid--services .image-choice-card > strong {
  padding-top: 11px;
  color: #22283b;
  font-size: 12.5px;
  line-height: 1.25;
}
.image-card-grid--services .image-choice-card > small {
  margin-top: 4px;
  padding-bottom: 12px;
  color: #6b3ad4;
  font-size: 10px;
  line-height: 1.25;
}
.image-card-grid--services .image-choice-card:hover {
  border-color: #8957e4;
  background: #faf7ff;
}
.image-card-grid--services .image-choice-card.is-active {
  border-color: #7440de;
  background: #f5efff;
  box-shadow: 0 0 0 2px rgba(116,64,222,.10), 0 12px 28px rgba(103,54,219,.13);
}

/* Category calculators on the services page use the same uncropped 4:3 presentation. */
.category-service-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.category-service-card__image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  flex: 0 0 auto;
  padding: 6px;
  background: #fff;
}
.category-service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .25s ease;
}
.category-service-card:hover .category-service-card__image img { transform: scale(1.025); }
.category-service-card__body {
  min-height: 66px;
  padding: 11px 13px 12px;
  background: #fff;
}
.category-service-card__body strong,
.category-service-card__body small {
  white-space: normal;
  text-overflow: clip;
}
.category-service-card:hover { border-color: #8957e4; background: #faf7ff; }
.category-service-card:hover .category-service-card__body { background: #faf7ff; }
.category-service-card.is-active {
  border-color: #7440de;
  background: #f5efff;
  box-shadow: 0 0 0 2px rgba(116,64,222,.10), 0 12px 28px rgba(103,54,219,.13);
}
.category-service-card.is-active .category-service-card__body { background: #f5efff; }


/* ARQAU approved refinements — 2026-08-01 */
/* Hero: enlarge supporting copy and statistic labels, keep numeric values unchanged. */
.hero__lead { font-size: 21px; }
.hero-stat span { font-size: 18px; line-height: 1.35; }

/* Calculator: two cards per row in every category. */
.service-grid, .category-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Selected services: fixed image on the left, only service name and price on the right. */
.order-item { grid-template-columns: 78px minmax(0, 1fr); grid-template-rows: auto; align-items: center; gap: 12px; }
.order-item > img { grid-row: auto; width: 78px; height: 78px; max-width: 78px; max-height: 78px; }
.order-item__content { min-width: 0; padding-right: 22px; }
.order-item__content strong { overflow-wrap: anywhere; line-height: 1.3; }
.order-item__content b { color: #5b2fd2; font-size: 13px; line-height: 1.3; }
.order-item > b { display: none; }

/* Business hero: one main container with two visually separate background zones. */
.business-hero__grid { grid-template-columns: minmax(0, 1fr) 450px; align-items: start; }
.business-hero__content { min-height: 0; padding: 0; display: block; overflow: hidden; background: #fff; }
.business-hero__content::after { display: none; }
.business-hero__top { position: relative; z-index: 1; min-height: 430px; padding: 64px; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(90deg, rgba(248,249,253,.98) 0%, rgba(248,249,253,.94) 52%, rgba(245,246,251,.62) 78%, rgba(241,243,248,.36) 100%), url('../assets/images/catalog/category-freight.webp') 92% center / 53% auto no-repeat, #f5f6fa; }
.business-hero__bottom { position: relative; z-index: 1; padding: 38px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: start; gap: 24px; border-top: 1px solid rgba(107,76,173,.14); background: linear-gradient(135deg, #f1edfb 0%, #eef3fa 55%, #f8f6fd 100%); }
.business-hero__bottom .business-section-heading { margin-bottom: 18px; }
.business-hero__bottom .business-section-heading h2 { font-size: 25px; }
.business-hero__bottom .business-model-card { min-height: 0; padding: 20px; grid-template-columns: 46px 1fr; gap: 14px; }
.business-hero__bottom .business-model-card__number { width: 44px; height: 44px; border-radius: 13px; }
.business-hero__bottom .business-model-card h3 { font-size: 20px; }
.business-hero__bottom .business-model-card p { font-size: 12px; line-height: 1.55; }
.business-hero__bottom .business-services-panel { padding: 22px; background: rgba(255,255,255,.78); }
.business-hero__bottom .business-services-list { grid-template-columns: 1fr; gap: 7px; }
.business-hero__bottom .business-services-list a { min-height: 42px; padding: 9px 11px; }
.business-request-card { position: sticky; top: 110px; }
@media (max-width: 1280px) { .business-hero__bottom { grid-template-columns: 1fr; } .business-request-card { position: static; } }

/* =========================================================
   Home page responsive hardening — 2026-08-09
   Kept at the end so approved mobile rules win the cascade.
   ========================================================= */
.hero__container,
.hero__content,
.hero__stats,
.calculator-shell,
.calculator-shell > *,
.configurator-scroll,
.order-panel { min-width: 0; }

.hero h1,
.hero__lead,
.hero-stat span,
.calculator-shell h2,
.calculator-shell h3 { overflow-wrap: anywhere; }

.hero__stats {
  width: 100%;
  max-width: 440px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.hero-stat {
  min-height: 76px;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 13px;
  background: rgba(12,18,42,.26);
  backdrop-filter: blur(4px);
}
.hero-stat:last-child { border-bottom: 1px solid rgba(255,255,255,.17); }
.hero-stat span { overflow-wrap: normal; word-break: normal; }

@media (min-width: 1181px) and (max-width: 1280px) {
  .hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
  }
  .hero-stat strong { font-size: 23px; }
  .hero-stat span { font-size: 11px; }
}

@media (min-width: 1181px) and (max-width: 1440px) {
  .hero__lead { font-size: 16px; }
  .hero-stat span { font-size: 13px; }
}

@media (max-width: 1180px) {
  .hero::before {
    width: 100%;
    opacity: 1;
    background-position: center 43%;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero::after {
    background:
      linear-gradient(90deg, rgba(9,16,38,.82), rgba(15,20,45,.62)),
      linear-gradient(180deg, rgba(8,13,31,.04) 70%, rgba(8,13,31,.38));
  }
  .hero__container { grid-template-columns: minmax(0, 1fr); }
  .hero__content { width: 100%; }
  .hero__lead { font-size: 17px; line-height: 1.58; }
  .hero-stat span { font-size: 14px; }
}

@media (max-width: 980px) {
  .hero { padding: 108px 0 52px; }
  .hero__container { gap: 32px; }
  .hero__content { max-width: none; }
  .hero h1 {
    max-width: 760px;
    font-size: clamp(40px, 7vw, 56px);
    line-height: 1.06;
  }
  .hero__lead { max-width: 760px; margin: 22px 0 26px; }
  .hero__stats {
    width: 100%;
    max-width: 760px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .hero-stat {
    min-height: 86px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;
    background: rgba(12,18,42,.36);
    backdrop-filter: blur(5px);
  }
  .hero-stat:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
  .hero-stat strong { font-size: 25px; white-space: nowrap; }
  .calculator-shell {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .hero { padding: 96px 0 42px; }
  .hero::before { background-position: 43% center; }
  .hero::after {
    background:
      linear-gradient(90deg, rgba(8,14,35,.86), rgba(13,19,43,.58)),
      linear-gradient(180deg, rgba(8,13,31,.05) 65%, rgba(8,13,31,.48));
  }
  .hero__container { gap: 28px; }
  .hero__eyebrow { margin-bottom: 12px; line-height: 1.4; }
  .hero h1 {
    max-width: 560px;
    font-size: clamp(34px, 10vw, 44px);
    letter-spacing: -.025em;
  }
  .hero__lead,
  .hero__lead-highlight { font-size: 15px; }
  .hero__lead { gap: 10px; margin: 18px 0 24px; }
  .hero__stats { gap: 8px; }
  .hero-stat {
    min-height: 92px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
    padding: 13px;
  }
  .hero-stat strong { font-size: 24px; }
  .hero-stat span { font-size: 12.5px; line-height: 1.35; }

  .calculator-shell { overflow: hidden; }
  .calculator-shell__intro-copy,
  .calculator-shell__notice,
  .calculator-categories,
  .calculator-configurator,
  .order-panel { width: 100%; max-width: 100%; }
  .category-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-card,
  .image-choice-card { min-width: 0; }
  .add-service-button,
  .checkout-button,
  .submit-order-button { min-height: 48px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(32px, 9.6vw, 38px); }
  .hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-stat strong { font-size: 22px; }
  .hero-stat span { font-size: 11.5px; }
  .calculator-shell__notice { padding: 10px; }
  .calculator-shell__notice strong { font-size: 10px; }
}

@media (hover: none) {
  .service-showcase-card:hover,
  .advantage-card:hover .advantage-card__media img,
  .process-card:hover .process-card__media img { transform: none; }
  .service-showcase-card:hover::after { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   ARQAU final visual pass — 2026-08-01
   Background imagery, section separation and approved
   calculator category artwork only.
   ========================================================= */

/* Calculator: preserve the approved geometry and logic; only the
   left category artwork is refreshed. */
.category-card__image img {
  object-fit: cover;
  object-position: center top;
}
.category-card__label {
  background: linear-gradient(180deg, rgba(24, 29, 50, .06), rgba(24, 29, 50, .88));
  backdrop-filter: blur(2px);
}

/* Business page: two zones in one rounded container, each with its own background. */
.business-hero__content {
  border-radius: 30px;
  box-shadow: 0 28px 72px rgba(49, 39, 89, .12);
}
.business-hero__top {
  min-height: 440px;
  background:
    linear-gradient(90deg, rgba(17, 23, 43, .92) 0%, rgba(17, 23, 43, .78) 50%, rgba(17, 23, 43, .36) 100%),
    url('../assets/images/backgrounds/business-hero.webp') center / cover no-repeat;
}
.business-hero__top .business-kicker { color: #ffd044; }
.business-hero__top h1 { color: #fff; }
.business-hero__top .business-hero__lead { max-width: 760px; color: rgba(255,255,255,.90); }
.business-hero__bottom {
  background:
    linear-gradient(135deg, rgba(244, 239, 229, .97), rgba(234, 240, 239, .96)),
    url('../assets/images/backgrounds/process-bg.webp') center / cover no-repeat;
}
.business-hero__bottom .business-model-card,
.business-hero__bottom .business-services-panel {
  border: 1px solid rgba(61, 72, 83, .10);
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 34px rgba(51, 58, 68, .08);
}
.business-benefits-section {
  background: linear-gradient(180deg, #f5f7fb 0%, #edf3f2 100%);
}
.business-process-section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(247, 244, 238, .97), rgba(247, 244, 238, .90)),
    url('../assets/images/backgrounds/process-bg.webp') center / cover fixed no-repeat;
}

/* Services: use a dedicated photographic hero and a neutral content field. */
.services-intro {
  position: relative;
  background:
    linear-gradient(90deg, rgba(247,249,253,.98) 0%, rgba(247,249,253,.94) 48%, rgba(247,249,253,.48) 100%),
    url('../assets/images/backgrounds/services-hero.webp') center / cover no-repeat;
}
.services-intro__media {
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 22px 48px rgba(25,35,58,.18);
}
.services-accordion-section {
  background: linear-gradient(180deg, #ffffff 0%, #f3f0e9 100%);
}

/* About: photo-backed opening and alternating calm section tones. */
.about-hero {
  background:
    linear-gradient(90deg, rgba(246,248,252,.98) 0%, rgba(246,248,252,.92) 56%, rgba(246,248,252,.42) 100%),
    url('../assets/images/backgrounds/about-hero.webp') center / cover no-repeat;
}
.history-section { background: #f4f0e8; }
.training-section { background: #eef4f2; }
.channels-section { background: #f5f2f8; }
.fleet-section { background: #eef2f7; }
.warehouses-section { background: #f4f1ea; }
.clean-city-section {
  background:
    linear-gradient(90deg, rgba(241,247,244,.96), rgba(241,247,244,.86)),
    url('../assets/images/backgrounds/cleaning-bg.webp') center / cover no-repeat;
}

/* Vacancies: keep existing structure and add a restrained photographic field. */
.career-hero {
  background:
    linear-gradient(90deg, rgba(246,248,252,.98) 0%, rgba(246,248,252,.92) 58%, rgba(246,248,252,.54) 100%),
    url('../assets/images/backgrounds/vacancies-hero.webp') center / cover no-repeat;
}
.career-vacancies-section { background: #f5f2eb; }
.career-benefits-section { background: #eef4f2; }
.career-process-section { background: #f2f0f7; }

/* Content pages: clear visual rhythm without forcing the full brand palette. */
.content-page-hero { background: linear-gradient(135deg, #eef3f7 0%, #f4efe7 100%); }
.content-page-section { background: #fbfcfd; }

@media (max-width: 900px) {
  .business-hero__top,
  .services-intro,
  .about-hero,
  .career-hero { background-position: 62% center; }
  .business-process-section { background-attachment: scroll; }
}

/* =========================================================
   ARQAU update 2026-08-06: approved page assets and contact UX
   ========================================================= */
.header-sms {
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}
.site-footer__contact-action {
  border: 0;
  padding: 0;
  color: #aeb4c8;
  background: transparent;
  font: inherit;
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
}
.site-footer__contact-action:hover { color: #fff; }
.contact-choice-modal__dialog { width: min(520px, calc(100vw - 32px)); }
.contact-choice-actions { display: grid; gap: 12px; margin-top: 24px; }
.contact-choice-actions a {
  min-height: 82px;
  padding: 17px 20px;
  display: grid;
  align-content: center;
  gap: 5px;
  border: 1px solid #dfe3ef;
  border-radius: 16px;
  color: #20263a;
  background: #fff;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.contact-choice-actions a:hover {
  transform: translateY(-2px);
  border-color: #8f78df;
  box-shadow: 0 15px 34px rgba(54, 42, 101, .10);
}
.contact-choice-actions strong { font-size: 16px; }
.contact-choice-actions span { color: #6b7184; font-size: 13px; }

.license-slide__link { width: 100%; height: 100%; display: block; }
.license-slide__link img { width: 100%; height: 100%; object-fit: contain; background: #fff; }

/* Services hero: one background image across the entire first block. */
.services-intro {
  min-height: 760px;
  isolation: isolate;
  background: url('../assets/images/backgrounds/services-hero.webp') center / cover no-repeat;
}
.services-intro::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,20,36,.88) 0%, rgba(12,20,36,.72) 35%, rgba(12,20,36,.22) 58%, rgba(12,20,36,0) 76%);
  pointer-events: none;
}
.services-intro__grid { min-height: 620px; grid-template-columns: minmax(0, 760px); }
.services-intro__copy { position: relative; z-index: 1; }
.services-intro h1 { color: #fff; }
.services-intro__copy > p,
.services-intro__copy .services-intro__lead { color: rgba(255,255,255,.90); }
.services-kicker { color: #ffd044; }
.services-intro__note {
  border-color: rgba(255,255,255,.25);
  background: rgba(14,22,39,.58);
  backdrop-filter: blur(8px);
}
.services-intro__note p,
.services-intro__note strong { color: rgba(255,255,255,.91); }

/* Vacancies hero: full background, no separate media card. */
.career-hero {
  position: relative;
  isolation: isolate;
  min-height: 730px;
  background: url('../assets/images/backgrounds/vacancies-hero.webp') center / cover no-repeat;
}
.career-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,22,38,.84) 0%, rgba(14,22,38,.68) 35%, rgba(14,22,38,.12) 61%, rgba(14,22,38,0) 77%);
}
.career-hero__grid { min-height: 600px; grid-template-columns: minmax(0, 790px); }
.career-hero__copy { position: relative; z-index: 1; }
.career-hero h1 { color: #fff; }
.career-hero__copy > p { color: rgba(255,255,255,.88); }
.career-kicker { color: #ffd044; }
.career-hero__advantages div {
  border-color: rgba(255,255,255,.24);
  color: #fff;
  background: rgba(16,24,43,.52);
  box-shadow: none;
  backdrop-filter: blur(7px);
}

/* Image-led vacancies benefit cards. */
.career-benefits-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.career-benefits-grid article {
  min-height: 0;
  padding: 0 0 24px;
  overflow: hidden;
}
.career-benefits-grid article > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  object-position: center;
}
.career-benefits-grid article > span { margin: 20px 22px 0; }
.career-benefits-grid h3 { margin: 18px 22px 10px; }
.career-benefits-grid p { margin: 0 22px; }

/* Image-led five-step hiring process. */
.career-process-row { gap: 18px; }
.career-process-row::before { display: none; }
.career-process-row article {
  min-height: 0;
  padding: 0 0 22px;
  overflow: hidden;
}
.career-process-row article > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  object-position: center;
}
.career-process-row article > span { margin: 18px 20px 18px; }
.career-process-row h3,
.career-process-row p { margin-left: 20px; margin-right: 20px; }
.career-process-row h3 { margin-bottom: 10px; }

.candidate-privacy-field {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 9px !important;
  color: #4e5569;
  font-size: 11px;
  line-height: 1.45;
}
.candidate-privacy-field input { width: 17px !important; height: 17px !important; flex: 0 0 17px; accent-color: #7040dc; }

@media (max-width: 1180px) {
  .services-intro::before,
  .career-hero::before { background: linear-gradient(90deg, rgba(14,22,38,.84), rgba(14,22,38,.50)); }
  .services-intro__grid,
  .career-hero__grid { grid-template-columns: minmax(0, 1fr); }
  .career-benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .career-process-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .career-benefits-grid,
  .career-process-row { grid-template-columns: 1fr; }
  .services-intro,
  .career-hero { background-position: 68% center; }
}

/* Home request CTA and image-free mobile hero. */
.hero-request-button {
  width: min(100%, 440px);
  min-height: 54px;
  margin-top: 22px;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #7440de, #5b2fc6);
  box-shadow: 0 15px 34px rgba(74, 42, 155, .28);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.hero-request-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 19px 40px rgba(74, 42, 155, .34);
}
.hero-request-button:focus-visible {
  outline: 3px solid rgba(116,64,222,.28);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .hero {
    padding: 92px 0 34px;
    background:
      radial-gradient(circle at 92% 5%, rgba(129,81,229,.20), transparent 34%),
      radial-gradient(circle at 8% 48%, rgba(76,118,210,.16), transparent 38%),
      linear-gradient(155deg, #111833 0%, #1b2144 48%, #292054 100%);
  }
  .hero::before {
    width: 100%;
    opacity: 1;
    background:
      radial-gradient(circle at 18% 22%, rgba(255,255,255,.11) 0 2px, transparent 3px),
      radial-gradient(circle at 82% 68%, rgba(255,255,255,.08) 0 2px, transparent 3px);
    background-size: 42px 42px, 54px 54px;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero::after {
    background:
      linear-gradient(135deg, rgba(255,255,255,.04), transparent 42%),
      linear-gradient(180deg, transparent 58%, rgba(6,10,27,.18));
  }
  .hero__container { gap: 26px; }
  .hero__content {
    padding: 22px 16px 24px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 22px;
    background: rgba(12,17,39,.30);
    box-shadow: 0 24px 60px rgba(4,8,25,.18);
    backdrop-filter: blur(5px);
  }
  .hero-request-button { width: 100%; margin-top: 18px; }
  .calculator-shell {
    margin-top: 0;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 22px;
    background: linear-gradient(155deg, #f8f7fc, #edf1f8);
    box-shadow: 0 24px 58px rgba(4,8,25,.28);
  }
}

/* Public pages: final responsive safeguards. */
html { max-width: 100%; overflow-x: clip; }

@media (max-width: 1180px) {
  .business-hero__grid,
  .services-workspace { grid-template-columns: minmax(0, 1fr); }
  .business-hero__grid > *,
  .services-workspace > *,
  .business-request-card,
  .services-order-column,
  .services-order-panel { width: 100%; min-width: 0; max-width: 100%; }
  .services-order-panel {
    position: static;
    top: auto;
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .about-hero,
  .business-hero__top,
  .services-intro,
  .career-hero,
  .content-page-hero,
  .service-page-hero {
    background-image:
      radial-gradient(circle at 92% 8%, rgba(145,102,235,.22), transparent 32%),
      radial-gradient(circle at 5% 76%, rgba(73,124,214,.15), transparent 36%),
      linear-gradient(150deg, #f8f7fc 0%, #eef2f8 54%, #f3effc 100%);
    background-color: #f3f4fa;
  }
  .services-intro,
  .career-hero {
    min-height: 0;
    color: #fff;
    background-image:
      radial-gradient(circle at 88% 12%, rgba(158,112,245,.28), transparent 34%),
      radial-gradient(circle at 6% 82%, rgba(77,126,222,.20), transparent 38%),
      linear-gradient(150deg, #121936 0%, #20234b 52%, #332363 100%);
  }
  .services-intro::before,
  .career-hero::before { display: none; }
  .business-hero__top {
    min-height: 0;
    padding: 32px 20px;
    color: #fff;
    background-image:
      radial-gradient(circle at 90% 10%, rgba(159,111,244,.30), transparent 33%),
      linear-gradient(145deg, #171d3d 0%, #292052 100%);
  }
  .about-hero::before,
  .about-hero::after { display: none; }
  .about-hero__content { text-shadow: none; }
  .business-hero__top h1,
  .business-hero__top .business-hero__lead,
  .services-intro h1,
  .services-intro__copy > p,
  .services-intro__copy .services-intro__lead,
  .career-hero h1,
  .career-hero__copy > p { color: #fff; }
  .business-hero__content,
  .business-hero__top,
  .business-hero__bottom,
  .business-request-card { border-radius: 20px; }
  .business-hero__bottom { padding: 22px 16px; }
  .business-model-card { grid-template-columns: 42px minmax(0, 1fr); }
  .business-request-card { padding: 22px 16px; }
  .business-request-form input,
  .business-request-form textarea,
  .business-request-form select { min-width: 0; max-width: 100%; }
  .business-service-picker__head { align-items: stretch; }
  .business-service-picker__head > div { width: 100%; }
  .business-service-picker__head button { flex: 1 1 0; min-width: 0; }

  .services-workspace { gap: 20px; }
  .services-order-panel { border-radius: 18px; }
  .services-order-panel__header,
  .services-order-panel__footer { padding-inline: 16px; }

  .about-slider,
  .about-slider__viewport,
  .about-slider__track,
  .about-slide,
  .mobile-app-card,
  .mobile-app-card__media { min-width: 0; max-width: 100%; }
  .mobile-app-card__media { width: 100%; overflow: hidden; }
  .mobile-app-card__media img,
  .content-page-hero__media img,
  .service-page-hero img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
  }
  .content-page-hero__media,
  .service-page-hero img { height: clamp(220px, 72vw, 300px); }
}

@media (max-width: 360px) {
  :root { --page-side-space: 14px; }
  .business-service-picker__head > div,
  .contact-prefill-actions { grid-template-columns: 1fr; }
  .service-page-hero h1,
  .content-page-hero h1,
  .about-hero__content h1,
  .business-hero h1,
  .services-intro h1,
  .career-hero h1 { font-size: 30px; overflow-wrap: anywhere; }
}

/* Mobile about documents and service catalogue structure. */
.document-lightbox { display: none; }
.services-order-panel__header-actions { display: flex; align-items: center; gap: 9px; }
[data-toggle-mobile-order] { display: none; }

@media (max-width: 767px) {
  body { overflow-x: clip; }
  .about-hero { padding-bottom: 0; overflow: visible; }
  .about-hero__grid { gap: 0; }
  .about-hero__content { padding-bottom: 46px; }
  .license-panel {
    width: calc(100% + (var(--page-side-space) * 2));
    max-width: none;
    min-height: 0;
    height: auto;
    margin-left: calc(var(--page-side-space) * -1);
    padding: 48px var(--page-side-space) 56px;
    border: 0;
    border-radius: 28px 28px 0 0;
    background: #fff;
    box-shadow: 0 -18px 48px rgba(44,36,80,.09);
    backdrop-filter: none;
  }
  .license-panel__heading { padding: 0 0 22px; text-align: center; }
  .license-panel__heading h2 { font-size: 27px; }
  .license-panel__heading p { font-size: 13px; }
  .about-slider--licenses { width: min(100%, 330px); margin: 0 auto; }
  .about-slider--licenses .about-slider__viewport {
    border: 1px solid #e1e3ec;
    border-radius: 16px;
    background: #f5f6fa;
    box-shadow: 0 18px 42px rgba(43,35,78,.10);
  }
  .about-slider--licenses .license-slide {
    height: auto;
    aspect-ratio: 210 / 297;
    padding: 12px;
    background: #f2f3f7;
  }
  .about-slider--licenses .license-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .about-slider--licenses .about-slider__arrow { top: 50%; width: 42px; height: 42px; }
  .about-slider--licenses .about-slider__arrow--prev { left: 8px; }
  .about-slider--licenses .about-slider__arrow--next { right: 8px; }

  .document-lightbox.is-open {
    position: fixed;
    z-index: 5000;
    inset: 0;
    display: grid;
    place-items: stretch;
  }
  .document-lightbox__backdrop { position: absolute; inset: 0; background: rgba(7,9,20,.94); }
  .document-lightbox__dialog {
    position: relative;
    z-index: 1;
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-rows: 62px minmax(0, 1fr) 70px;
    color: #fff;
  }
  .document-lightbox__header {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(14,17,35,.96);
  }
  .document-lightbox__header strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
  .document-lightbox__header button {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    color: #fff;
    background: rgba(255,255,255,.13);
    font-size: 28px;
  }
  .document-lightbox__stage {
    min-width: 0;
    min-height: 0;
    padding: 14px;
    overflow: auto;
    display: grid;
    place-items: start center;
    overscroll-behavior: contain;
    touch-action: pan-x pan-y;
  }
  .document-lightbox__stage img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: none;
    display: block;
    object-fit: contain;
    transition: transform .16s ease;
  }
  .document-lightbox__controls {
    padding: 10px 14px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    background: rgba(14,17,35,.96);
  }
  .document-lightbox__controls button {
    min-width: 0;
    border-radius: 10px;
    color: #fff;
    background: rgba(255,255,255,.12);
    font-size: 17px;
    font-weight: 800;
  }

  .training-section .about-slider--wide { width: 100%; }
  .training-section .about-slider__viewport { border-radius: 20px; }
  .training-section .about-slider__track { width: 100%; align-items: stretch; }
  .training-section .training-slide {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid #e1e3ec;
    border-radius: 20px;
    color: #20253a;
    background: #fff;
  }
  .training-section .training-slide::before {
    content: "ARQAU • 4:3";
    width: 100%;
    aspect-ratio: 4 / 3;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.82);
    background:
      radial-gradient(circle at 82% 18%, rgba(157,113,242,.34), transparent 32%),
      linear-gradient(145deg, #20284b, #392569);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .14em;
  }
  .training-section .training-slide::after,
  .training-section .training-slide > img { display: none; }
  .training-section .training-slide > div {
    position: static;
    width: auto;
    padding: 24px 20px 28px;
    color: #20253a;
  }
  .training-section .training-slide > div > span { color: #7040dc; font-size: 11px; }
  .training-section .training-slide h3 { margin: 9px 0 10px; font-size: 25px; }
  .training-section .training-slide p { color: #666c7f; font-size: 13px; }
  .training-section .about-slider__arrow { top: 29%; }
  .training-section .about-slider__arrow--prev { left: 8px; }
  .training-section .about-slider__arrow--next { right: 8px; }

  .services-accordion-section { padding-top: 14px; }
  .services-page-heading { margin: 38px 0 28px; }
  .services-workspace { display: block; }
  .services-order-column { position: sticky; z-index: 90; top: 76px; margin-bottom: 0; }
  .services-order-panel {
    max-height: 82px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(35,28,70,.18);
    transition: max-height .32s cubic-bezier(.22,.72,.22,1), box-shadow .25s ease;
  }
  .services-order-panel.is-mobile-open { max-height: 35dvh; box-shadow: 0 22px 48px rgba(35,28,70,.25); }
  .services-order-panel__header { min-height: 80px; padding: 13px 15px; cursor: pointer; }
  .services-order-panel__header span { font-size: 9px; }
  .services-order-panel__header h2 { margin-top: 4px; font-size: 21px; }
  .services-order-panel__header-actions > strong { width: 32px; height: 32px; }
  [data-toggle-mobile-order] {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: #f0ebfb;
  }
  [data-toggle-mobile-order] i {
    width: 10px;
    height: 10px;
    border-right: 2px solid #6736d2;
    border-bottom: 2px solid #6736d2;
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform .22s ease;
  }
  .services-order-panel.is-mobile-open [data-toggle-mobile-order] i { transform: rotate(225deg) translate(-2px, -2px); }
  .services-order-panel__body { min-height: 0; padding: 12px; overflow-y: auto; }
  .services-order-panel__footer { padding: 12px; }
  .services-order-empty { min-height: 120px; padding: 18px 12px; }
  .services-order-empty__icon { display: none; }

  .service-accordion-summary,
  .service-accordion-item:nth-child(even) .service-accordion-summary {
    min-height: 108px;
    padding: 10px;
    grid-template-columns: 84px minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas: "media copy" "media action";
    gap: 0 10px;
  }
  .service-accordion-summary__media,
  .service-accordion-item:nth-child(even) .service-accordion-summary__media {
    position: relative;
    height: 100%;
    width: 84px;
    height: 88px;
    min-height: 88px;
    grid-column: 1;
    grid-row: 1 / 3;
    border-radius: 13px;
    background:
      radial-gradient(circle at 78% 18%, rgba(158,112,242,.34), transparent 32%),
      linear-gradient(145deg, #20284b, #392569);
  }
  .service-accordion-item:nth-child(even) .service-accordion-summary__copy,
  .service-accordion-item:nth-child(even) .service-accordion-summary__action { grid-column: 2; }
  .service-accordion-summary__media::after {
    content: "4:3";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.78);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .12em;
  }
  .service-accordion-summary__media img { display: none; }
  .service-accordion-summary__number,
  .service-accordion-summary__copy small { display: none; }
  .service-accordion-summary__copy,
  .service-accordion-item:nth-child(even) .service-accordion-summary__copy { align-self: end; padding: 2px 0 3px; }
  .service-accordion-summary__copy strong,
  .service-accordion-item:nth-child(even) .service-accordion-summary__copy strong { margin: 0; font-size: clamp(15px, 4.5vw, 18px); white-space: nowrap; }
  .service-accordion-summary__copy b,
  .service-accordion-item:nth-child(even) .service-accordion-summary__copy b { margin-top: 7px; font-size: 10.5px; }
  .service-accordion-summary__action,
  .service-accordion-item:nth-child(even) .service-accordion-summary__action { align-self: start; margin: 2px 0 0; padding: 0; font-size: 11px; justify-self: stretch; justify-content: space-between; }

  .category-service-grid,
  .category-calculator__section--variants,
  .category-detail-panel { display: none; }
  .mobile-category-intro { margin: -8px 0 22px; display: block; color: #696e80; font-size: 12px; line-height: 1.6; }
  .mobile-service-carousel { display: block; }
  .mobile-service-carousel--variants { margin-top: 28px; padding-top: 25px; border-top: 1px solid #e5e2ec; }
  .mobile-service-carousel__heading { margin-bottom: 14px; }
  .mobile-service-carousel__heading span { color: #7340dc; font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
  .mobile-service-carousel__heading h4 { margin: 6px 0 0; color: #262b40; font-size: 18px; }
  .mobile-service-carousel__controls { margin-bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 9px; }
  .mobile-service-carousel__arrow {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: grid;
    place-items: center;
    border: 1px solid #ddd4ee;
    border-radius: 50%;
    color: #6432cd;
    background: #fff;
    font-size: 17px;
  }
  .mobile-service-carousel__numbers { min-width: 0; display: flex; align-items: center; justify-content: center; gap: 4px; }
  .mobile-service-carousel__numbers button {
    width: 28px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #777b89;
    background: transparent;
    font-size: 11px;
    font-weight: 800;
  }
  .mobile-service-carousel__numbers button.is-active { color: #fff; background: #713bd9; box-shadow: 0 7px 18px rgba(96,47,196,.24); }
  .mobile-selection-card {
    position: relative;
    height: clamp(390px, 118vw, 470px);
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(145deg, #20284b, #392569);
    box-shadow: 0 16px 36px rgba(32,26,61,.18);
    touch-action: pan-y;
  }
  .mobile-selection-card > img { width: 100%; height: 100%; display: block; object-fit: cover; }
  .mobile-selection-card__caption {
    position: absolute;
    right: 48px;
    bottom: 0;
    left: 0;
    padding: 54px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: #fff;
    background: linear-gradient(transparent, rgba(19,16,35,.92));
  }
  .mobile-selection-card__caption strong { font-size: 23px; line-height: 1.1; }
  .mobile-selection-card__caption span { color: #e4d8ff; font-size: 12px; font-weight: 750; }
  .mobile-selection-card__detail-toggle {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    width: 48px;
    height: 100%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(34,24,62,.48);
    border-left: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(5px);
  }
  .mobile-selection-card__detail-toggle span { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 11px; font-weight: 820; letter-spacing: .09em; text-transform: uppercase; }
  .mobile-selection-card__detail {
    position: absolute;
    z-index: 2;
    inset: 0 48px 0 0;
    padding: 24px 18px;
    overflow-y: auto;
    color: #ece8f7;
    background: linear-gradient(145deg, rgba(27,32,61,.98), rgba(54,35,96,.98));
    opacity: 0;
    visibility: hidden;
    transform: translateX(16px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }
  .mobile-selection-card.is-detail-open .mobile-selection-card__detail { opacity: 1; visibility: visible; transform: none; }
  .mobile-selection-card.is-detail-open .mobile-selection-card__caption { opacity: 0; }
  .mobile-selection-card__detail h5 { margin: 0 0 13px; color: #fff; font-size: 23px; }
  .mobile-selection-card__detail p { margin: 0 0 18px; color: #d8d2e7; font-size: 12px; line-height: 1.6; }
  .mobile-selection-card__detail > strong { display: block; margin-top: 14px; color: #c9adff; font-size: 11px; text-transform: uppercase; }
  .mobile-selection-card__detail ul { margin: 8px 0 0; padding-left: 18px; display: grid; gap: 6px; }
  .mobile-selection-card__detail li { color: #eeeaf7; font-size: 11px; line-height: 1.4; }

  .category-service-card { min-height: 112px; display: grid; grid-template-columns: 40% minmax(0, 1fr); }
  .category-service-card__image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 110px;
    background: linear-gradient(145deg, #20284b, #392569);
  }
  .category-service-card__image::after {
    content: "4:3";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.76);
    font-size: 10px;
    font-weight: 850;
  }
  .category-service-card__image img { display: none; }
  .category-service-card__body { min-height: 110px; justify-content: center; }
  .category-service-card__body strong,
  .category-service-card__body small { white-space: normal; }
  .category-service-grid { grid-template-columns: 1fr; }
}
