:root {
  --font-title: Manrope, "Segoe UI", Arial, sans-serif;
  --font-subtitle: Inter, "Segoe UI", Arial, sans-serif;
  --font-body: "Segoe UI", Arial, sans-serif;
  --font-hint: Arial, "Segoe UI", sans-serif;
  --ink: #0f172a;
  --muted: #5b6b82;
  --soft: #eef6ff;
  --line: #d8e6f5;
  --paper: #f5f9ff;
  --white: #ffffff;
  --teal: #2b7de9;
  --teal-2: #1d5fd1;
  --amber: #74b7ff;
  --blue: #3e83f2;
  --shadow: 0 24px 70px rgba(29, 95, 209, 0.13);
  --radius: 8px;
  --radius-control: 6px;
  --radius-card: 8px;
  --fs-body: 1rem;
  --fs-hint: 0.9rem;
  --fs-eyebrow: 0.78rem;
  --fs-lead: clamp(1.02rem, 1.18vw, 1.12rem);
  --fs-h1: clamp(2.05rem, 3.25vw, 3.35rem);
  --fs-h2: clamp(1.55rem, 2.35vw, 2.35rem);
  --fs-h3: clamp(1.12rem, 1.35vw, 1.32rem);
  --container: 1180px;
}

/* Payment result */
.payment-result-page {
  min-height: 100svh;
  margin: 0;
  background: #eef6ff;
  color: #12233f;
}

.payment-result-wrap {
  display: grid;
  min-height: 100svh;
  padding: max(24px, env(safe-area-inset-top)) 18px max(24px, env(safe-area-inset-bottom));
  place-items: center;
}

.payment-result-panel {
  display: flex;
  width: min(100%, 520px);
  flex-direction: column;
  align-items: center;
  padding: clamp(30px, 7vw, 54px);
  border: 1px solid #d6e5f5;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(24, 76, 135, 0.13);
  text-align: center;
}

.payment-result-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.payment-result-icon {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  margin: 24px 0 18px;
  border: 2px solid #2584dc;
  border-radius: 50%;
  place-items: center;
}

.payment-result-icon.checking {
  border-right-color: transparent;
  animation: payment-status-spin 1s linear infinite;
}

.payment-result-icon.success {
  border-color: #15975d;
  background: #e8f8f0;
}

.payment-result-icon.success span {
  width: 27px;
  height: 14px;
  transform: translateY(-3px) rotate(-45deg);
  border-bottom: 4px solid #137a4d;
  border-left: 4px solid #137a4d;
}

.payment-result-icon.failed {
  border-color: #c34545;
  background: #fff0f0;
}

.payment-result-icon.failed::before,
.payment-result-icon.failed::after {
  position: absolute;
  width: 28px;
  height: 3px;
  background: #a93434;
  content: "";
}

.payment-result-icon.failed::before { transform: rotate(45deg); }
.payment-result-icon.failed::after { transform: rotate(-45deg); }

.payment-result-kicker {
  margin: 0 0 8px;
  color: #52708f;
  font-size: var(--fs-hint);
  font-weight: 400;
}

.payment-result-panel h1 {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  line-height: 1.12;
}

.payment-result-panel > p:not(.payment-result-kicker) {
  max-width: 390px;
  margin: 14px 0 26px;
  color: #60748b;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
}

.payment-result-button {
  width: min(100%, 300px);
}

.payment-result-link {
  margin-top: 16px;
  color: #336ea8;
  font-size: 0.92rem;
  text-decoration: none;
}

.payment-result-link:hover { text-decoration: underline; }

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

@media (prefers-reduced-motion: reduce) {
  .payment-result-icon.checking { animation: none; }
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f2f8ff 42%, #ffffff 100%);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--white);
  background: rgba(62, 131, 242, 0.72);
}

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

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

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

h1,
h2,
h3,
p,
li,
dt,
dd,
strong,
span {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-title);
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

p {
  margin: 0;
  text-wrap: pretty;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 78px;
  padding: 14px clamp(16px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(62, 131, 242, 0.14);
  box-shadow: 0 10px 34px rgba(29, 95, 209, 0.08);
  backdrop-filter: blur(20px) saturate(1.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  min-width: 212px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.brand-mark {
  display: grid;
  justify-items: center;
  gap: 3px;
  line-height: 1;
}

.brand img,
.footer-brand img {
  width: 78px;
  height: auto;
}

.brand-caption {
  display: block;
  max-width: 112px;
  color: var(--teal-2);
  font-family: var(--font-hint);
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
}

.brand-phone {
  display: block;
  color: var(--ink);
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  color: #2e353c;
  font-family: var(--font-subtitle);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a {
  padding: 9px 10px;
  white-space: nowrap;
  transition: color 0.18s ease, transform 0.18s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--teal-2);
  transform: scale(1.055);
}

.nav .mobile-account-link {
  display: none;
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 10px;
}

.mobile-legal-links {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.messenger-icons,
.messenger-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.messenger-icon,
.messenger-links a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(29, 95, 209, 0.16);
}

.messenger-icon svg,
.messenger-links a svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.messenger-icon.telegram,
.messenger-links a.telegram {
  background: #229ed9;
}

.messenger-icon.telegram svg,
.messenger-links a.telegram svg {
  fill: currentColor;
  stroke: none;
}

.messenger-icon.max,
.messenger-links a.max {
  background: #111827;
}

.messenger-icon.whatsapp,
.messenger-links a.whatsapp {
  background: #25d366;
}

.messenger-max-glyph {
  color: var(--white);
  font-family: var(--font-subtitle);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand,
.button,
.store-button,
.price-card strong,
.contact-grid strong {
  hyphens: none;
}

.menu-button {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 9px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  backdrop-filter: none;
  transition: transform 0.18s ease;
}

.menu-button:hover,
.menu-button:focus-visible {
  box-shadow: none;
  outline: none;
  transform: scale(1.04);
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--teal-2);
  border-radius: 999px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.site-header.open .menu-button span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.open .menu-button span:nth-child(2) {
  opacity: 0;
}

.site-header.open .menu-button span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 18px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(62, 131, 242, 0.28);
}

.button.secondary {
  color: var(--blue);
  background: var(--white);
  border-color: rgba(62, 131, 242, 0.24);
}

.button.dark {
  color: var(--white);
  background: var(--ink);
}

.button.outline {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(62, 131, 242, 0.28);
}

.button.small {
  min-height: 42px;
  padding: 11px 14px;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  min-height: calc(100svh - 78px);
  padding: clamp(32px, 5vw, 60px) max(18px, calc((100vw - var(--container)) / 2)) clamp(72px, 8vw, 100px);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 43%, rgba(226, 241, 255, 0.78) 100%),
    linear-gradient(135deg, #ffffff 0%, #f1f8ff 48%, #dbeeff 100%);
  overflow: hidden;
}

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

.hero::before {
  opacity: 0.54;
  background-image:
    linear-gradient(rgba(29, 95, 209, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 95, 209, 0.08) 1px, transparent 1px);
  background-size: 74px 74px;
  animation: heroGrid 24s linear infinite;
}

.hero::after {
  background:
    radial-gradient(circle at 73% 22%, rgba(18, 168, 255, 0.34), transparent 26%),
    radial-gradient(circle at 92% 64%, rgba(29, 95, 209, 0.2), transparent 28%),
    linear-gradient(180deg, transparent 72%, rgba(255, 255, 255, 0.94) 100%);
}

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

.eyebrow {
  margin: 0 0 13px;
  color: var(--teal-2);
  font-family: var(--font-subtitle);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  overflow-wrap: normal;
  hyphens: none;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.dvor-section .eyebrow {
  color: var(--blue);
}

.request .eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
}

.lead {
  max-width: 720px;
  margin-top: 24px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: var(--fs-lead);
}

.hero-offer {
  display: inline-flex;
  align-items: center;
  max-width: 680px;
  min-height: 46px;
  margin-top: 18px;
  padding: 11px 14px;
  color: #0d459d;
  font-weight: 600;
  background: rgba(234, 244, 255, 0.84);
  border: 1px solid rgba(62, 131, 242, 0.2);
  border-radius: var(--radius-card);
  box-shadow: 0 12px 30px rgba(29, 95, 209, 0.08);
}

.hero-checks {
  display: grid;
  gap: 10px;
  max-width: 680px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.hero-checks li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 600;
}

.hero-checks li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--white);
  font-size: 0.72rem;
  content: "✓";
  background: var(--blue);
  border-radius: 50%;
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 38px 0 0;
}

.hero-facts div {
  min-height: 108px;
  padding: 17px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-facts dt {
  color: var(--blue);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
}

.hero-facts dd {
  margin: 9px 0 0;
  color: var(--muted);
}

.hero-stage {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: clamp(430px, 42vw, 560px);
  isolation: isolate;
  pointer-events: none;
}

.hero-feed {
  position: absolute;
  inset: 7% 0 auto 10%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: min(84%, 520px);
  aspect-ratio: 3 / 2;
  padding: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(230, 244, 255, 0.16)),
    url("./assets/hero-camera-previews.png?v=20260811-hero-light") center / cover no-repeat;
  border: 1px solid rgba(62, 131, 242, 0.26);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(29, 95, 209, 0.2);
  backdrop-filter: blur(22px) saturate(1.24);
}

.hero-corner-camera {
  position: absolute;
  top: calc(7% - 52px);
  left: calc(10% - 58px);
  z-index: 4;
  width: clamp(124px, 13vw, 176px);
  pointer-events: none;
  filter: drop-shadow(0 18px 22px rgba(15, 23, 42, 0.22));
}

.hero-feed::after {
  position: absolute;
  inset: 8px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.02) 12%, transparent 36%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 5px);
  border-radius: 6px;
  mix-blend-mode: screen;
}

.hero-feed span {
  min-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(215, 236, 255, 0.58);
  box-shadow: inset 0 0 0 1px rgba(12, 26, 54, 0.05);
  animation: feedPulse 4.8s ease-in-out infinite;
}

.hero-feed span:nth-child(2n) {
  animation-delay: 0.7s;
}

.hero-feed span:nth-child(3n) {
  animation-delay: 1.35s;
}

.signal-orbit {
  position: absolute;
  right: 2%;
  bottom: 12%;
  z-index: 0;
  width: min(86%, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(62, 131, 242, 0.2);
  border-radius: 50%;
  animation: orbitSpin 18s linear infinite;
}

.signal-orbit::before,
.signal-orbit::after {
  position: absolute;
  inset: 16%;
  content: "";
  border: 1px dashed rgba(29, 95, 209, 0.32);
  border-radius: 50%;
}

.signal-orbit::after {
  inset: 32%;
  border-style: solid;
  opacity: 0.7;
}

.hero-technician {
  position: absolute;
  right: -4%;
  bottom: -7%;
  z-index: 3;
  width: min(70%, 520px);
  max-height: 105%;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(15, 23, 42, 0.24));
}

.choice-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(var(--container), calc(100% - 36px));
  margin: -76px auto 0;
}

.choice-strip article,
.benefit-grid article,
.scheme-grid article,
.workflow-grid article,
.shop-card,
.faq-list details {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(62, 131, 242, 0.14);
  border-radius: var(--radius-card);
  box-shadow: 0 14px 38px rgba(29, 95, 209, 0.08);
  backdrop-filter: blur(16px);
}

.choice-strip article {
  min-height: 154px;
  padding: 20px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.choice-strip article:hover {
  border-color: rgba(62, 131, 242, 0.34);
  box-shadow: 0 20px 46px rgba(29, 95, 209, 0.14);
  transform: translateY(-3px);
}

.choice-strip span,
.solution-card span,
.benefit-grid span,
.scheme-grid span,
.workflow-grid span,
.price-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 30px;
  padding: 0 9px;
  color: var(--teal-2);
  font-size: 0.78rem;
  font-weight: 700;
  background: #eaf4ff;
  border-radius: 999px;
}

.choice-strip strong {
  display: block;
  margin-top: 15px;
  font-size: 1.1rem;
  line-height: 1.16;
}

.choice-strip p {
  margin-top: 8px;
  color: var(--muted);
}

.offer-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(var(--container), calc(100% - 36px));
  margin: 28px auto 0;
}

.offer-strip div {
  min-height: 156px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(62, 131, 242, 0.15);
  border-radius: var(--radius-card);
  box-shadow: 0 14px 38px rgba(29, 95, 209, 0.08);
}

.offer-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--blue);
  border-radius: 999px;
}

.offer-strip strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  line-height: 1.16;
}

.offer-strip p {
  margin-top: 8px;
  color: var(--muted);
}

.owner-intro {
  width: 100%;
  padding: clamp(58px, 8vw, 104px) max(18px, calc((100vw - var(--container)) / 2));
  background: #ffffff;
  scroll-margin-top: 96px;
}

.owner-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  min-height: 420px;
  padding: clamp(22px, 4vw, 42px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 247, 255, 0.84)),
    #ffffff;
  border: 1px solid rgba(62, 131, 242, 0.16);
  border-radius: var(--radius-card);
  box-shadow: 0 24px 70px rgba(29, 95, 209, 0.12);
}

.owner-portrait {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(232, 243, 255, 0.78));
}

.owner-portrait img {
  position: absolute;
  top: 16px;
  right: -6%;
  bottom: 0;
  left: -6%;
  z-index: 1;
  width: 112%;
  height: calc(100% - 16px);
  max-width: none;
  margin: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 28px rgba(15, 23, 42, 0.16));
}

.owner-copy {
  min-width: 0;
}

.owner-copy h2 {
  max-width: 840px;
  font-size: clamp(1.7rem, 2.7vw, 2.65rem);
}

.owner-copy p:not(.eyebrow),
.owner-copy li {
  color: var(--muted);
}

.owner-copy p:not(.eyebrow) {
  max-width: 790px;
  margin-top: 18px;
  font-size: 1.08rem;
}

.owner-copy .button {
  margin-top: 24px;
}

.service-summary {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: min(var(--container), calc(100% - 36px));
  margin: -34px auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-summary article {
  min-height: 230px;
  padding: 25px;
  border-right: 1px solid var(--line);
}

.service-summary article:last-child {
  border-right: 0;
}

.service-summary h2 {
  margin-top: 20px;
  font-size: 1.28rem;
}

.service-summary p {
  margin-top: 11px;
  color: var(--muted);
}

.mini-icon {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  background: var(--soft);
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.camera-icon::before {
  position: absolute;
  top: 17px;
  left: 10px;
  width: 32px;
  height: 18px;
  content: "";
  background: var(--teal);
  border: 2px solid var(--ink);
  border-radius: 4px 14px 14px 4px;
}

.camera-icon::after {
  position: absolute;
  top: 20px;
  right: 6px;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--amber);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.cloud-icon::before,
.cloud-icon::after {
  position: absolute;
  content: "";
  background: var(--blue);
  border: 2px solid var(--ink);
}

.cloud-icon::before {
  top: 25px;
  left: 9px;
  width: 34px;
  height: 16px;
  border-radius: 18px;
}

.cloud-icon::after {
  top: 14px;
  left: 18px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
}

.access-icon::before {
  position: absolute;
  top: 12px;
  left: 14px;
  width: 24px;
  height: 32px;
  content: "";
  background: var(--blue);
  border: 2px solid var(--ink);
  border-radius: 4px;
}

.access-icon::after {
  position: absolute;
  top: 26px;
  right: 10px;
  width: 11px;
  height: 11px;
  content: "";
  background: var(--amber);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.wifi-icon::before,
.wifi-icon::after {
  position: absolute;
  left: 50%;
  content: "";
  border: 3px solid var(--blue);
  border-bottom: 0;
  border-radius: 40px 40px 0 0;
  transform: translateX(-50%);
}

.wifi-icon::before {
  top: 16px;
  width: 34px;
  height: 20px;
}

.wifi-icon::after {
  top: 26px;
  width: 18px;
  height: 10px;
}

.section,
.contacts {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 124px) 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  margin-top: 17px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: var(--fs-lead);
}

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

.solution-card {
  display: grid;
  grid-template-rows: 300px minmax(0, 1fr);
  min-height: 620px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(62, 131, 242, 0.14);
  border-radius: var(--radius-card);
  box-shadow: 0 16px 44px rgba(29, 95, 209, 0.09);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.solution-card:hover {
  border-color: rgba(62, 131, 242, 0.34);
  box-shadow: 0 24px 64px rgba(29, 95, 209, 0.14);
  transform: translateY(-4px);
}

.solution-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 24px;
  object-fit: contain;
  background:
    radial-gradient(circle at 52% 54%, rgba(62, 131, 242, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(234, 244, 255, 0.72));
  filter: saturate(1.05) contrast(1.02);
}

.solution-card div {
  padding: 24px;
}

.solution-card h3 {
  margin-top: 16px;
  font-size: clamp(1.24rem, 1.55vw, 1.55rem);
}

.solution-card p,
.solution-card li {
  color: var(--muted);
}

.solution-card p {
  margin-top: 12px;
}

.service-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 22px;
  min-height: 280px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(16, 20, 24, 0.06);
}

.service-card img {
  width: 160px;
  height: 100%;
  min-height: 238px;
  object-fit: cover;
  border-radius: 7px;
}

.service-card p,
.service-card li {
  color: var(--muted);
}

.service-card p {
  margin-top: 12px;
}

ul {
  margin: 16px 0 0;
  padding-left: 19px;
}

li + li {
  margin-top: 8px;
}

.benefits-section,
.workflow-section,
.faq-section,
.dvor-section,
.systems,
.request,
.shop-section,
.service-area,
.apps-section {
  width: 100%;
  padding: clamp(70px, 10vw, 124px) max(18px, calc((100vw - var(--container)) / 2));
}

#solutions,
#pricing,
#testimonials,
#shop,
#request,
#contacts,
#apps,
#chat,
.owner-intro,
.dvor-section,
.systems,
.faq-section {
  scroll-margin-top: 96px;
}

.benefits-section {
  background: var(--white);
}

.testimonials-section {
  width: 100%;
  padding: clamp(70px, 10vw, 124px) 0;
  overflow: hidden;
  background: linear-gradient(180deg, #f5faff 0%, #ffffff 74%);
  border-top: 1px solid rgba(62, 131, 242, 0.12);
  border-bottom: 1px solid rgba(62, 131, 242, 0.12);
}

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

.testimonials-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.testimonials-head h2 {
  max-width: 780px;
}

.testimonials-head p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 16px;
  color: var(--muted);
  font-size: var(--fs-lead);
}

.testimonials-count {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 12px;
  color: var(--teal-2);
  font-family: var(--font-subtitle);
  font-size: var(--fs-hint);
  font-weight: 600;
  background: #eaf4ff;
  border: 1px solid rgba(62, 131, 242, 0.2);
  border-radius: var(--radius-control);
  white-space: nowrap;
}

.testimonials-tools {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.testimonials-controls {
  display: inline-flex;
  gap: 8px;
}

.testimonials-controls button {
  width: 42px;
  height: 42px;
  color: var(--teal-2);
  font-size: 1.8rem;
  line-height: 1;
  background: #ffffff;
  border: 1px solid rgba(62, 131, 242, 0.2);
  border-radius: var(--radius-control);
  cursor: pointer;
}

.testimonials-controls button:hover {
  border-color: rgba(62, 131, 242, 0.42);
  transform: scale(1.04);
}

.testimonials-note {
  max-width: 920px;
  margin: 0 0 22px;
  color: #536982;
  font-family: var(--font-hint);
  font-size: var(--fs-hint);
}

.testimonials-track {
  display: flex;
  gap: 14px;
  margin-right: max(-18px, calc((var(--container) - 100vw) / 2));
  padding: 4px max(18px, calc((100vw - var(--container)) / 2)) 18px 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-left: 0;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(62, 131, 242, 0.52) rgba(62, 131, 242, 0.12);
}

.testimonial-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px 14px;
  align-content: start;
  flex: 0 0 min(360px, 86vw);
  min-height: 238px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(62, 131, 242, 0.16);
  border-radius: var(--radius-card);
  box-shadow: 0 16px 44px rgba(29, 95, 209, 0.08);
  scroll-snap-align: start;
}

.testimonial-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 1px solid rgba(62, 131, 242, 0.12);
  border-radius: 50%;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  font-family: var(--font-subtitle);
  font-size: 1.03rem;
  line-height: 1.18;
}

.testimonial-card span {
  margin-top: 4px;
  color: var(--teal-2);
  font-size: 0.82rem;
  font-weight: 600;
}

.testimonial-card .testimonial-rating {
  margin-top: 7px;
  color: #1d5fd1;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.testimonial-card p {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.52;
}

.service-area {
  background: #ffffff;
  border-top: 1px solid rgba(62, 131, 242, 0.1);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.area-grid article {
  min-height: 178px;
  padding: 20px;
  background: #f7fbff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.area-grid strong {
  display: block;
  font-family: var(--font-subtitle);
  font-size: 1.08rem;
  line-height: 1.2;
}

.area-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.98rem;
}

.benefit-grid,
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.benefit-grid article,
.workflow-grid article {
  min-height: 220px;
  padding: 22px;
}

.benefit-grid span {
  min-width: 32px;
  min-height: 32px;
  color: var(--white);
  background: var(--blue);
}

.benefit-grid h3,
.workflow-grid strong {
  display: block;
  margin-top: 18px;
  font-size: 1.18rem;
  line-height: 1.16;
}

.benefit-grid p,
.workflow-grid p {
  margin-top: 11px;
  color: var(--muted);
}

.dvor-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 16%, rgba(62, 131, 242, 0.14), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f3f9ff 55%, #e7f2ff 100%);
  border-top: 1px solid rgba(62, 131, 242, 0.12);
  border-bottom: 1px solid rgba(62, 131, 242, 0.12);
}

.dvor-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.cloud-dashboard {
  display: grid;
  gap: 14px;
  width: min(100%, 430px);
  justify-self: end;
}

.cloud-card,
.cloud-metrics div {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(62, 131, 242, 0.18);
  border-radius: var(--radius-card);
  box-shadow: 0 14px 36px rgba(29, 95, 209, 0.08);
}

.cloud-card.main {
  position: relative;
  min-height: 230px;
  padding: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 72%, rgba(62, 131, 242, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.86);
  animation: cloudCardPulse 4.8s ease-in-out infinite;
}

.cloud-card.main::before {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 156px;
  height: 156px;
  content: "";
  background:
    radial-gradient(circle, rgba(62, 131, 242, 0.88) 0 28px, transparent 29px),
    radial-gradient(circle, transparent 0 62px, rgba(62, 131, 242, 0.16) 63px 65px, transparent 66px);
  border: 2px solid rgba(62, 131, 242, 0.16);
  border-radius: 50%;
  animation: cloudRadarPulse 2.8s ease-in-out infinite;
}

.cloud-card.main::after {
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 250px;
  height: 250px;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(62, 131, 242, 0.18), transparent 58%);
  border-radius: 50%;
  animation: cloudGlowPulse 4.8s ease-in-out infinite;
}

.cloud-card span,
.cloud-card strong,
.cloud-card p {
  position: relative;
  z-index: 2;
  display: block;
}

.cloud-card span {
  color: var(--amber);
  font-weight: 700;
  text-transform: uppercase;
}

.cloud-card strong {
  max-width: 280px;
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.2vw, 2.85rem);
  line-height: 1;
}

.cloud-card p {
  margin-top: 16px;
  color: var(--muted);
}

.cloud-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.cloud-metrics div {
  min-height: 74px;
  padding: 16px;
}

.cloud-metrics span,
.cloud-metrics strong {
  display: block;
}

.cloud-metrics span {
  color: var(--muted);
}

.cloud-metrics strong {
  margin-top: 4px;
  color: var(--ink);
}

.systems {
  background: #f4f9ff;
}

.scheme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.scheme-grid article {
  min-height: 310px;
  padding: 24px;
}

.scheme-grid h3 {
  margin-top: 22px;
  font-size: clamp(1.18rem, 1.45vw, 1.42rem);
}

.scheme-grid p {
  margin-top: 12px;
  color: var(--muted);
}

.scheme-grid strong {
  display: block;
  margin-top: 20px;
  color: var(--teal-2);
  line-height: 1.25;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.tab {
  min-width: 112px;
  min-height: 42px;
  padding: 10px 16px;
  color: var(--ink);
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
}

.tab.active {
  color: var(--white);
  background: var(--teal-2);
  border-color: var(--teal-2);
}

.diagram-wrap {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: clamp(8px, 2vw, 24px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.diagram {
  display: none;
  width: 100%;
  height: auto;
}

.diagram.active {
  display: block;
}

.architecture-panel {
  color: var(--ink);
}

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

.architecture-map article {
  position: relative;
  min-height: 220px;
  padding: 20px;
  background: #f8fafb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.architecture-map article::after {
  position: absolute;
  top: 50%;
  right: -13px;
  z-index: 2;
  width: 24px;
  height: 2px;
  content: "";
  background: var(--teal);
}

.architecture-map article:last-child::after {
  content: none;
}

.architecture-map span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 32px;
  padding: 0 9px;
  color: var(--teal-2);
  font-size: 0.82rem;
  font-weight: 600;
  background: #e6f3f3;
  border-radius: 999px;
}

.architecture-map strong {
  display: block;
  margin-top: 22px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.architecture-map p {
  margin-top: 12px;
  color: var(--muted);
}

.architecture-map .active-node {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(43, 125, 233, 0.95), rgba(29, 95, 209, 0.96)),
    var(--teal-2);
  border-color: rgba(43, 125, 233, 0.7);
  box-shadow: 0 18px 42px rgba(43, 125, 233, 0.22);
}

.architecture-map .active-node.blue {
  background:
    linear-gradient(135deg, rgba(62, 131, 242, 0.95), rgba(30, 86, 174, 0.96)),
    var(--blue);
  border-color: rgba(62, 131, 242, 0.7);
  box-shadow: 0 18px 42px rgba(62, 131, 242, 0.22);
}

.architecture-map .active-node span {
  color: var(--ink);
  background: var(--amber);
}

.architecture-map .active-node p {
  color: rgba(255, 255, 255, 0.78);
}

.architecture-map.split {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.architecture-result {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 14px;
  padding: 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.architecture-result strong {
  color: var(--amber);
  font-size: 1.15rem;
}

.architecture-result p {
  color: rgba(255, 255, 255, 0.76);
}

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

.price-card {
  min-height: 360px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 16px 44px rgba(16, 20, 24, 0.07);
}

.price-card.featured {
  border-color: rgba(62, 131, 242, 0.4);
  box-shadow: 0 22px 58px rgba(62, 131, 242, 0.18);
}

.price-card.premium {
  border-color: rgba(116, 183, 255, 0.5);
}

.price-card strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(2.15rem, 3.4vw, 3.4rem);
  line-height: 1;
}

.price-card.featured span,
.price-card.premium span {
  color: var(--white);
  background: var(--blue);
}

.workflow-section {
  background: var(--white);
}

.workflow-grid span {
  min-width: 42px;
  min-height: 42px;
  color: var(--white);
  font-size: 1rem;
  background: var(--teal-2);
}

.faq-section {
  background: #f4f9ff;
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(920px, 100%);
  margin: 0 auto;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  color: var(--ink);
  font-weight: 650;
  cursor: pointer;
}

.faq-list details > div,
.faq-list p {
  margin-top: 12px;
  color: var(--muted);
}

.price-card p {
  margin-top: 7px;
  color: var(--muted);
}

.price-card li {
  color: var(--muted);
}

.shop-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
}

.video-story,
.shop-hero,
.blog-hero,
.shop-cta-section {
  width: min(var(--container), calc(100% - 36px));
  margin: clamp(24px, 5vw, 64px) auto;
}

.video-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3vw, 24px);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.video-story-copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.video-story-copy h2,
.shop-hero h1,
.blog-hero h1,
.shop-cta-section h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: var(--fs-h2);
  line-height: 1.1;
  letter-spacing: 0;
}

.shop-cta-section p {
  margin: 0;
  color: var(--muted);
}

.video-story-copy p:not(.eyebrow) {
  display: none;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: clamp(260px, 42vw, 620px);
  background: #081b36;
  border: 1px solid rgba(62, 131, 242, 0.18);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.video-frame video,
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-placeholder {
  display: grid;
  place-content: center;
  height: 100%;
  padding: 24px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(29, 95, 209, 0.88), rgba(8, 27, 54, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 44px);
}

.video-placeholder span {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
}

.video-placeholder strong {
  margin-top: 8px;
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.video-placeholder p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.shop-hero,
.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  padding-top: clamp(22px, 4vw, 42px);
}

.blog-hero {
  grid-template-columns: minmax(0, 1fr) auto;
}

.shop-hero-copy,
.blog-hero > div {
  display: grid;
  gap: 16px;
}

.shop-disabled-note,
.blog-disabled-note {
  padding: 13px 15px;
  color: #24456f;
  font-size: var(--fs-hint);
  background: #eaf4ff;
  border: 1px solid rgba(62, 131, 242, 0.18);
  border-radius: var(--radius-control);
}

.equipment-carousel {
  min-width: 0;
  overflow: hidden;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(234, 245, 255, 0.88));
  border: 1px solid rgba(62, 131, 242, 0.16);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.equipment-carousel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

.equipment-carousel-head span,
.equipment-slide-copy span {
  display: block;
  color: var(--teal-2);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
}

.equipment-carousel-head strong {
  display: block;
  margin-top: 2px;
  font-family: var(--font-subtitle);
  font-size: 1rem;
}

.equipment-controls {
  display: inline-flex;
  gap: 8px;
}

.equipment-controls button {
  width: 42px;
  height: 42px;
  color: var(--teal-2);
  font-size: 1.8rem;
  line-height: 1;
  background: #ffffff;
  border: 1px solid rgba(62, 131, 242, 0.18);
  border-radius: var(--radius-control);
  cursor: pointer;
}

.equipment-viewport {
  overflow: hidden;
}

.equipment-track {
  display: flex;
  transition: transform 0.36s ease;
}

.equipment-slide {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 400px;
  padding: clamp(16px, 3vw, 28px);
  background: #ffffff;
  border: 1px solid rgba(62, 131, 242, 0.12);
  border-radius: var(--radius-card);
}

.equipment-slide img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

.equipment-slide-copy {
  display: grid;
  gap: 12px;
  align-content: center;
}

.equipment-slide-copy h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  line-height: 1.08;
}

.equipment-slide-copy strong {
  color: var(--teal-2);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1;
}

.equipment-slide-copy p,
.equipment-slide-copy li {
  color: var(--muted);
}

.equipment-slide-copy ul {
  margin: 0;
}

.equipment-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.equipment-dots button {
  width: 28px;
  height: 4px;
  padding: 0;
  background: rgba(62, 131, 242, 0.22);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.equipment-dots button.active {
  background: var(--teal-2);
}

.shop-catalog {
  background: linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
}

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

.shop-card {
  display: grid;
  grid-template-rows: 190px minmax(0, 1fr);
  min-height: 560px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.shop-card:hover {
  border-color: rgba(62, 131, 242, 0.34);
  box-shadow: 0 22px 58px rgba(29, 95, 209, 0.14);
  transform: translateY(-4px);
}

.shop-media {
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 48%, rgba(62, 131, 242, 0.16), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(234, 244, 255, 0.76));
}

.shop-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.04) contrast(1.02);
}

.shop-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.shop-body span {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--blue);
  border-radius: 999px;
}

.shop-body h3 {
  font-size: clamp(1.18rem, 1.55vw, 1.42rem);
}

.shop-body strong {
  color: var(--teal-2);
  font-size: clamp(1.36rem, 2vw, 1.7rem);
  line-height: 1;
}

.shop-stock {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  color: var(--teal-2);
  font-family: var(--font-hint);
  font-size: var(--fs-hint);
  font-weight: 700;
  background: rgba(43, 125, 233, 0.09);
  border-radius: var(--radius-control);
}

.equipment-slide-copy .shop-stock {
  margin: -3px 0 2px;
}

.shop-body p,
.shop-body li {
  color: var(--muted);
}

.shop-body ul {
  margin-top: 0;
}

.shop-body .button {
  align-self: end;
  margin-top: 4px;
  white-space: normal;
}

.shop-cta-section {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: clamp(20px, 3vw, 32px) 0;
  border-top: 1px solid rgba(62, 131, 242, 0.14);
  border-bottom: 1px solid rgba(62, 131, 242, 0.14);
}

.shop-cta-section div {
  max-width: 740px;
}

.blog-section {
  background: linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
}

.blog-grid {
  display: grid;
  gap: 18px;
}

.blog-card {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 3vw, 28px);
  background: #ffffff;
  border: 1px solid rgba(62, 131, 242, 0.14);
  border-radius: var(--radius-card);
  box-shadow: 0 18px 48px rgba(29, 95, 209, 0.08);
}

.blog-card time {
  color: var(--teal-2);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.12;
}

.blog-card > p,
.blog-card-body p {
  margin: 0;
  color: var(--muted);
}

.blog-card-body {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.custom-content-block,
.custom-page-hero,
.custom-page-body {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
}

.custom-content-block {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 52px);
  background: var(--white);
  border: 1px solid rgba(62, 131, 242, 0.14);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.custom-content-block.soft {
  background: linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
}

.custom-content-block.accent {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-2), var(--blue));
}

.custom-content-block.accent .eyebrow,
.custom-content-block.accent p,
.custom-content-block.accent .custom-content-body p {
  color: rgba(255, 255, 255, 0.84);
}

.custom-content-body {
  display: grid;
  gap: 10px;
  max-width: 850px;
}

.custom-content-body p,
.custom-page-body p {
  color: var(--muted);
}

.custom-page-hero {
  display: grid;
  gap: 18px;
  min-height: 42svh;
  padding: clamp(54px, 9vw, 96px) 0 clamp(26px, 5vw, 44px);
}

.custom-page-hero .button {
  justify-self: start;
}

.custom-page-body {
  padding-top: 18px;
}

.custom-page-body > div {
  display: grid;
  gap: 12px;
  max-width: 880px;
}

.cookie-consent {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(88px, 10vw, 112px);
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: min(410px, calc(100vw - 28px));
  padding: 9px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(62, 131, 242, 0.22);
  border-radius: var(--radius-card);
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(18px) saturate(1.15);
}

.cookie-consent strong {
  display: block;
  font-family: var(--font-subtitle);
  font-size: 0.88rem;
  font-weight: 600;
}

.cookie-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.35;
}

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

.cookie-consent p a {
  color: var(--teal-2);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent-actions button {
  min-height: 34px;
  padding: 7px 11px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--teal-2);
  border: 0;
  border-radius: var(--radius-control);
  cursor: pointer;
}

.apps-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.apps-section p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.store-button {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 210px;
  min-height: 64px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.store-button svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.store-button span,
.store-button small {
  display: block;
}

.store-button small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
}

.request {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #1d5fd1 0%, #2b7de9 58%, #74b7ff 100%);
}

.request-copy {
  position: sticky;
  top: 110px;
}

.request-copy p:not(.eyebrow) {
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-card);
}

.request-form label {
  display: grid;
  gap: 8px;
  color: #333a42;
  font-family: var(--font-subtitle);
  font-size: 0.94rem;
  font-weight: 650;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcfd;
  border: 1px solid #cfd9e2;
  border-radius: var(--radius-control);
}

.request-form textarea {
  resize: vertical;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: #7a8797;
  font-family: var(--font-hint);
  font-size: var(--fs-hint);
  font-weight: 400;
  opacity: 0.72;
}

.form-trap {
  position: fixed !important;
  left: -10000px !important;
  display: none !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.request-status {
  min-height: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
}

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

.consent {
  position: relative;
  display: block !important;
  min-height: 24px;
  padding-left: 30px;
  color: var(--muted) !important;
  font-family: var(--font-hint);
  font-size: var(--fs-hint);
  font-weight: 400 !important;
  line-height: 1.42;
  cursor: pointer;
}

.consent input {
  position: absolute;
  top: 1px;
  left: 0;
  z-index: 1;
  width: 22px;
  min-height: 22px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.consent > span,
.chat-consent > span {
  display: block;
}

.consent > span::before,
.chat-consent > span::before {
  position: absolute;
  top: 3px;
  left: 2px;
  width: 15px;
  height: 15px;
  background: #f4f8fd;
  border: 1px solid #b8c7da;
  border-radius: 3px;
  content: "";
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.consent > span::after,
.chat-consent > span::after {
  position: absolute;
  top: -5px;
  left: -1px;
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  content: "✓";
  opacity: 0;
  pointer-events: none;
  transform: rotate(-7deg) scale(0.72);
  transform-origin: center;
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.consent input:checked + span::before,
.chat-consent input:checked + span::before {
  background: #eef5ff;
  border-color: #8eadd7;
}

.consent input:checked + span::after,
.chat-consent input:checked + span::after {
  opacity: 1;
  transform: rotate(-7deg) scale(1);
}

.consent input:focus-visible + span::before,
.chat-consent input:focus-visible + span::before {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(45, 120, 234, 0.16);
}

.consent a {
  color: var(--teal-2);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-reference {
  margin: -7px 0 0;
  padding-left: 30px;
  color: var(--muted);
  font-family: var(--font-hint);
  font-size: var(--fs-hint);
  font-weight: 400;
  line-height: 1.42;
}

.privacy-reference a {
  color: var(--teal-2);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-legal-box {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 7px 18px;
  align-items: flex-start;
  padding-top: 12px;
  border-top: 1px solid rgba(76, 105, 140, 0.16);
}

.form-legal-box .consent,
.form-legal-box .chat-consent {
  flex: 1 1 290px;
  margin: 0;
}

.form-policy-link {
  flex: 0 1 auto;
  color: #718096;
  font-family: var(--font-hint);
  font-size: var(--fs-hint);
  font-weight: 500;
  line-height: 1.42;
  text-decoration: underline;
  text-decoration-color: rgba(113, 128, 150, 0.46);
  text-underline-offset: 3px;
}

.form-policy-link:hover,
.form-policy-link:focus-visible {
  color: var(--blue);
  text-decoration-color: currentColor;
}

.chat-legal-box {
  display: grid;
  gap: 5px;
  padding-top: 8px;
  border-top-color: rgba(76, 105, 140, 0.1);
}

.chat-legal-box .chat-consent,
.chat-legal-box .chat-consent > span,
.chat-legal-box .form-policy-link,
.chat-legal-box .chat-consent a {
  color: #7b8793 !important;
  font-family: var(--font-hint);
  font-size: 0.69rem !important;
  font-weight: 400 !important;
  line-height: 1.4;
}

.chat-legal-box .form-policy-link {
  margin-left: 29px;
  text-decoration-color: rgba(123, 135, 147, 0.36);
  text-decoration-thickness: 1px;
}

.chat-legal-box .chat-consent a {
  text-decoration-color: rgba(123, 135, 147, 0.36);
  text-decoration-thickness: 1px;
}

.chat-legal-box .form-policy-link:hover,
.chat-legal-box .form-policy-link:focus-visible,
.chat-legal-box .chat-consent a:hover,
.chat-legal-box .chat-consent a:focus-visible {
  color: #536779 !important;
  text-decoration-color: currentColor;
}

.request-legal-box {
  display: grid;
  gap: 5px;
  padding-top: 8px;
  border-top-color: rgba(76, 105, 140, 0.1);
}

.request-legal-box .consent,
.request-legal-box .consent > span,
.request-legal-box .form-policy-link,
.request-legal-box .consent a {
  color: #7b8793 !important;
  font-family: var(--font-hint);
  font-size: 0.69rem !important;
  font-weight: 400 !important;
  line-height: 1.4;
}

.request-legal-box .form-policy-link {
  margin-left: 30px;
  text-decoration-color: rgba(123, 135, 147, 0.36);
  text-decoration-thickness: 1px;
}

.request-legal-box .consent a {
  text-decoration-color: rgba(123, 135, 147, 0.36);
  text-decoration-thickness: 1px;
}

.request-legal-box .form-policy-link:hover,
.request-legal-box .form-policy-link:focus-visible,
.request-legal-box .consent a:hover,
.request-legal-box .consent a:focus-visible {
  color: #536779 !important;
  text-decoration-color: currentColor;
}

.legal-page a:not(.back-link) {
  color: var(--teal-2);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contacts {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  padding: 4px 0;
}

.contact-grid > * {
  min-height: 86px;
  padding: 16px 0 17px;
  background: transparent;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.contact-grid span {
  display: block;
  color: var(--muted);
  font-family: var(--font-hint);
  font-size: var(--fs-hint);
}

.contact-grid strong {
  display: block;
  margin-top: 7px;
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  line-height: 1.35;
  white-space: pre-line;
}

.contact-grid .contact-area,
.contact-grid .contact-messengers {
  grid-column: 1 / -1;
  min-height: 0;
}

.contact-grid .contact-messengers {
  gap: 9px;
  padding: 15px 0 0;
  border-bottom: 0;
}

.contact-messengers-label {
  flex: 0 0 100%;
}

.footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 34px clamp(18px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.76);
  background: #0c0f12;
}

.footer-brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  width: auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.footer a:hover {
  color: var(--white);
}

.footer p {
  white-space: nowrap;
}

.footer .footer-legal-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 18px;
  align-items: center;
  grid-column: 1 / -1;
  margin-top: 2px;
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-hint);
  font-size: var(--fs-hint);
  font-weight: 400;
}

.chat-widget {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 70;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 12px;
  width: min(430px, calc(100vw - 28px));
  pointer-events: none;
}

.chat-widget.open {
  z-index: 95;
}

.chat-toggle,
.chat-panel {
  pointer-events: auto;
}

.chat-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  min-width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 0;
  float: right;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-2), var(--blue));
  border: 0;
  border-radius: 50%;
  box-shadow: 0 20px 44px rgba(29, 95, 209, 0.28);
  cursor: pointer;
}

.chat-widget.open .chat-toggle {
  display: none;
}

.chat-toggle svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chat-panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: min(82svh, 700px);
  padding: 14px;
  overflow: hidden;
  color: var(--ink);
  font-family: var(--font-body);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(62, 131, 242, 0.18);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(22px) saturate(1.25);
}

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

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

.chat-head strong {
  font-family: var(--font-title);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.18;
}

.chat-head-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.chat-notifications,
.chat-close {
  flex: 0 0 auto;
}

.chat-notifications {
  display: grid;
  place-items: center;
  width: 34px;
  min-height: 34px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.chat-notifications:hover,
.chat-notifications:focus-visible {
  color: var(--blue);
  background: #eef6ff;
}

.chat-notifications:disabled {
  opacity: 0.42;
  cursor: default;
}

.chat-notifications svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chat-notifications .chat-bell-on,
.chat-notifications.is-enabled .chat-bell-off {
  display: none;
}

.chat-notifications.is-enabled .chat-bell-on {
  display: block;
}

.chat-close {
  display: grid;
  place-items: center;
  width: 34px;
  min-height: 34px;
  padding: 0;
  color: var(--muted);
  font-size: 1.35rem;
  background: #eef6ff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.chat-intro {
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 400;
}

.messenger-links {
  margin-top: 13px;
}

.chat-form {
  position: relative;
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.chat-start-fields {
  display: none;
}

.chat-widget.has-thread .chat-start-fields,
.chat-widget.has-thread .chat-quick-questions,
.chat-widget.has-thread .chat-consent,
.chat-widget.has-thread .chat-privacy-reference,
.chat-widget.has-thread .chat-legal-box,
.chat-widget:not(.has-thread) .chat-messages {
  display: none !important;
}

.chat-widget:not(.has-thread) .chat-attachment-actions,
.chat-widget:not(.has-thread) .chat-attach {
  display: none;
}

.chat-widget.has-thread .chat-intro {
  display: none;
}

.chat-widget.has-thread .chat-panel {
  height: min(86svh, 700px);
}

.chat-messages {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  gap: 6px;
  min-height: 240px;
  max-height: min(56svh, 540px);
  margin-top: 10px;
  padding: 10px;
  overflow: auto;
  overscroll-behavior: contain;
  background: #f3f7fa;
  border: 0;
  border-radius: 8px;
}

.chat-widget.has-thread .chat-messages {
  min-height: 0;
  max-height: none;
}

.chat-messages[hidden] {
  display: none !important;
}

.chat-message {
  width: fit-content;
  max-width: 88%;
  padding: 7px 9px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.36;
  background: #ffffff;
  border: 1px solid #e1e9ef;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(24, 54, 84, 0.05);
}

.chat-message.has-attachment {
  width: min(88%, 360px);
}

.chat-message p {
  margin: 0;
}

.chat-message-author {
  display: flex;
  gap: 6px;
  align-items: center;
  min-height: 24px;
  margin-bottom: 5px;
  font-family: var(--font-hint);
}

.chat-message-author img,
.chat-message-author-fallback {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  object-fit: cover;
  padding: 0;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 750;
  background: var(--white);
  border: 1px solid rgba(51, 113, 169, 0.16);
  border-radius: 50%;
}

.chat-message.automated .chat-message-author img {
  object-fit: contain;
  padding: 4px;
}

.chat-message-author small {
  color: inherit;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.2;
  opacity: 0.82;
}

.chat-message.typing {
  min-width: 148px;
}

.chat-typing {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #647789;
  font-family: var(--font-hint);
  font-size: 0.72rem;
  font-weight: 400;
}

.chat-typing-dots {
  display: inline-flex;
  gap: 3px;
  align-items: center;
  height: 10px;
}

.chat-typing-dots i {
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
  animation: chat-typing-dot 1.1s ease-in-out infinite;
}

.chat-typing-dots i:nth-child(2) {
  animation-delay: 0.16s;
}

.chat-typing-dots i:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes chat-typing-dot {
  0%,
  60%,
  100% {
    opacity: 0.38;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.chat-attachment {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.chat-attachment img,
.chat-attachment video {
  display: block;
  width: 100%;
  max-height: min(42svh, 360px);
  object-fit: contain;
  background: #162033;
  border-radius: 6px;
}

.chat-attachment video {
  aspect-ratio: 16 / 9;
}

.chat-attachment small {
  color: inherit;
  font-family: var(--font-hint);
  font-size: 0.68rem;
  font-weight: 400;
  opacity: 0.72;
  overflow-wrap: anywhere;
}

.chat-attachment-file {
  display: grid;
  gap: 2px;
  padding: 9px 10px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(62, 131, 242, 0.16);
  border-radius: 6px;
}

.chat-message.client .chat-attachment-file {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.chat-attachment-file strong {
  font-family: var(--font-subtitle);
  font-size: 0.78rem;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.chat-message.operator {
  align-self: flex-start;
  color: var(--ink);
  background: #ffffff;
  border-color: #dfe8ef;
}

.chat-message.client {
  align-self: flex-end;
  color: var(--white);
  background: var(--blue);
  border-color: transparent;
}

.chat-form label {
  display: grid;
  gap: 5px;
  color: #333a42;
  font-family: var(--font-subtitle);
  font-size: 0.94rem;
  font-weight: 650;
}

.chat-form input,
.chat-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 9px 11px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  background: #fbfcfd;
  border: 1px solid #cfd9e2;
  border-radius: var(--radius-control);
}

.chat-attachment-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 34px;
}

.chat-quick-questions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 10px;
  padding: 2px 0;
}

.chat-quick-questions button {
  justify-content: flex-start;
  width: 100%;
  min-height: 30px;
  padding: 5px 2px;
  color: #28517d;
  font-family: var(--font-hint);
  font-size: 0.74rem;
  font-weight: 500;
  text-align: left;
  white-space: normal;
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

.chat-quick-questions button:hover,
.chat-quick-questions button:focus-visible {
  color: var(--blue);
  background: rgba(232, 242, 253, 0.62);
  border-color: transparent;
}

.chat-composer {
  display: grid;
  grid-template-columns: 34px 34px minmax(0, 1fr) 38px;
  gap: 4px;
  align-items: end;
  min-width: 0;
  padding: 5px;
  background: #ffffff;
  border: 1px solid #dce5ec;
  border-radius: 9px;
}

.chat-widget:not(.has-thread) .chat-composer {
  grid-template-columns: 34px minmax(0, 1fr) 38px;
}

.chat-composer textarea {
  min-width: 0;
  min-height: 36px;
  max-height: 112px;
  padding: 8px 6px;
  resize: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: none;
}

.chat-emoji-toggle,
.chat-send {
  display: grid;
  place-items: center;
  width: 34px;
  min-width: 34px;
  min-height: 34px;
  padding: 0;
  color: #587083;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.chat-send {
  width: 38px;
  min-width: 38px;
  min-height: 38px;
  color: #ffffff;
  background: var(--blue);
}

.chat-emoji-toggle svg,
.chat-send svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chat-emoji-toggle:hover,
.chat-emoji-toggle:focus-visible {
  color: var(--blue);
  background: #eef5fb;
}

.chat-emoji-panel {
  position: absolute;
  right: 0;
  bottom: 52px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 34px);
  gap: 3px;
  padding: 7px;
  background: #ffffff;
  border: 1px solid #dce5ec;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(24, 54, 84, 0.14);
}

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

.chat-emoji-panel button {
  display: grid;
  place-items: center;
  width: 34px;
  min-height: 34px;
  padding: 0;
  font-size: 1.15rem;
  background: transparent;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
}

.chat-emoji-panel button:hover,
.chat-emoji-panel button:focus-visible {
  background: #eef5fb;
}

.chat-contact-form {
  display: grid;
  gap: 6px;
  flex: 0 0 auto;
  margin-top: 8px;
  padding: 4px 2px 2px;
  background: transparent;
  border: 0;
}

.chat-contact-form[hidden] {
  display: none;
}

.chat-contact-title {
  color: #5f6e7a;
  font-family: var(--font-hint);
  font-size: 0.72rem;
  font-weight: 400;
}

.chat-contact-row input {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 7px 2px 6px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #b9c9d6;
  border-radius: 0;
  outline: none;
}

.chat-contact-row input:focus {
  border-bottom-color: var(--blue);
  box-shadow: 0 1px 0 var(--blue);
}

.chat-contact-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  gap: 6px;
}

.chat-contact-row[hidden] {
  display: none;
}

.chat-contact-row button {
  display: grid;
  place-items: center;
  width: 38px;
  min-height: 38px;
  padding: 0;
  color: #ffffff;
  background: var(--blue);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.chat-contact-row svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chat-attachment-actions > span {
  color: var(--muted);
  font-family: var(--font-hint);
  font-size: 0.72rem;
  font-weight: 400;
}

.chat-attach {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  min-height: 34px;
  padding: 0;
  color: var(--blue);
  background: #eef6ff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.chat-attach svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chat-attach:disabled {
  cursor: wait;
  opacity: 0.55;
}

.chat-form input::placeholder,
.chat-form textarea::placeholder {
  color: #7a8797;
  font-family: var(--font-hint);
  font-size: var(--fs-hint);
  font-weight: 400;
  opacity: 0.72;
}

.chat-form textarea {
  min-height: 64px;
  max-height: 120px;
  resize: vertical;
}

.chat-form .chat-consent {
  position: relative;
  display: block !important;
  min-height: 23px;
  padding-left: 29px;
  color: var(--muted) !important;
  font-family: var(--font-hint);
  font-size: var(--fs-hint) !important;
  font-weight: 400 !important;
  line-height: 1.38;
  cursor: pointer;
}

.chat-consent input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 22px;
  min-width: 22px;
  min-height: 22px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.chat-privacy-reference {
  margin-top: -7px;
  padding-left: 29px;
}

.chat-consent a,
.consent-line a {
  color: var(--teal-2);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-line {
  display: flex !important;
  gap: 9px !important;
  align-items: flex-start;
  color: var(--muted) !important;
  font-family: var(--font-hint);
  font-size: var(--fs-hint) !important;
  font-weight: 400 !important;
  line-height: 1.42;
}

.consent-line input {
  width: 17px;
  min-width: 17px;
  min-height: 17px;
  margin-top: 3px;
}

.chat-form button[type="submit"] {
  min-height: 38px;
  color: var(--white);
  font-family: var(--font-subtitle);
  font-weight: 700;
  background: var(--blue);
  border: 0;
  border-radius: 7px;
  cursor: pointer;
}

.chat-form .chat-composer textarea {
  min-width: 0;
  min-height: 36px;
  max-height: 112px;
  padding: 8px 6px;
  resize: none;
  overflow-y: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: none;
}

.chat-form .chat-composer .chat-send {
  width: 38px;
  min-width: 38px;
  min-height: 38px;
  padding: 0;
  border-radius: 50%;
}

.chat-status {
  min-height: 0;
  color: var(--muted);
  font-family: var(--font-hint);
  font-size: var(--fs-hint);
  font-weight: 400;
}

.chat-status:not(:empty) {
  display: block;
  padding: 6px 8px;
  color: #5f7082;
  line-height: 1.35;
  background: #f3f7fa;
  border-radius: 5px;
}

.chat-status:empty {
  display: none;
}

.chat-status.error {
  color: #b42318;
  font-weight: 500;
}

.legal-page {
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(40px, 7vw, 88px) 0;
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 4rem);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.legal-page p {
  margin-top: 12px;
  color: var(--muted);
}

.legal-page ul,
.legal-page ol {
  color: var(--muted);
}

.legal-note {
  padding: 16px;
  background: #eaf4ff;
  border: 1px solid #b8d7ff;
  border-radius: var(--radius);
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--teal-2);
  font-weight: 600;
}

.requisites-list {
  display: grid;
  margin: 18px 0 0;
}

.requisites-list > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.requisites-list dt {
  color: var(--muted);
}

.requisites-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
}

.account-page {
  min-height: 100svh;
  background: #f4f8ff;
}

.account-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 76px;
  padding: 12px clamp(16px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.account-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--font-subtitle);
  font-weight: 750;
}

.account-brand img {
  width: 62px;
  height: 46px;
  object-fit: contain;
}

.account-back-link {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 7px;
  align-items: center;
  min-height: 40px;
  padding: 7px 2px;
  color: #53647a;
  font-family: var(--font-subtitle);
  font-size: 0.92rem;
  font-weight: 700;
  background: transparent;
  border: 0;
  border-radius: 0;
  transition: color 0.18s ease, transform 0.18s ease;
}

.account-back-link:hover,
.account-back-link:focus-visible {
  color: var(--blue);
  background: transparent;
  transform: translateX(-2px);
}

.account-back-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-login-wrap {
  display: grid;
  grid-template-columns: minmax(430px, 1.2fr) minmax(360px, 460px);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  width: min(1360px, 100%);
  min-height: calc(100svh - 76px);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 76px) clamp(16px, 4vw, 48px);
}

.account-logo-stage {
  display: grid;
  min-height: clamp(430px, 68svh, 600px);
  place-items: center;
  overflow: visible;
}

.account-logo-motion {
  position: relative;
  display: grid;
  width: min(52vw, 78svh, 700px);
  aspect-ratio: 1.24;
  align-items: start;
  isolation: isolate;
}

.account-logo-motion img {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 4;
  width: 44%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.98)) drop-shadow(0 14px 20px rgba(20, 64, 119, 0.28));
  transform-origin: center;
  animation: account-logo-heartbeat 2.8s ease-in-out infinite;
}

.account-video-wall {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #f6f9fd url("./assets/account-camera-wall-3x2-v3.jpg") center / cover no-repeat;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 34px 74px rgba(35, 70, 116, 0.24), 0 8px 24px rgba(35, 70, 116, 0.14);
}

.account-video-feed {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 0;
}

.account-video-feed:not(:nth-child(3n)) {
  border-right: 2px solid rgba(255, 255, 255, 0.92);
}

.account-video-feed:nth-child(-n + 3) {
  border-bottom: 2px solid rgba(255, 255, 255, 0.92);
}

.account-video-feed i {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  background: #34d17b;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(52, 209, 123, 0.16), 0 0 12px rgba(52, 209, 123, 0.72);
  animation: account-feed-dot 1.8s ease-in-out infinite;
}

.account-video-feed i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(52, 209, 123, 0.66);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
  animation: account-feed-ring 1.8s ease-out infinite;
}

.account-video-feed:nth-child(2) i,
.account-video-feed:nth-child(2) i::after {
  animation-delay: -0.2s;
}

.account-video-feed:nth-child(3) i,
.account-video-feed:nth-child(3) i::after {
  animation-delay: -0.4s;
}

.account-video-feed:nth-child(4) i,
.account-video-feed:nth-child(4) i::after {
  animation-delay: -0.6s;
}

.account-video-feed:nth-child(5) i,
.account-video-feed:nth-child(5) i::after {
  animation-delay: -0.8s;
}

.account-video-feed:nth-child(6) i,
.account-video-feed:nth-child(6) i::after {
  animation-delay: -1s;
}

@keyframes account-logo-heartbeat {
  0%,
  36%,
  100% {
    transform: translateX(-50%) scale(1);
  }
  7% {
    transform: translateX(-50%) scale(1.07);
  }
  13% {
    transform: translateX(-50%) scale(0.99);
  }
  20% {
    transform: translateX(-50%) scale(1.12);
  }
  28% {
    transform: translateX(-50%) scale(1);
  }
}

@keyframes account-feed-dot {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.86);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes account-feed-ring {
  0% {
    opacity: 0.78;
    transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.25);
  }
}

@media (prefers-reduced-motion: reduce) {
  .account-logo-motion img,
  .account-video-feed i,
  .account-video-feed i::after {
    animation: none;
  }
}

.account-login-panel {
  width: min(100%, 460px);
  padding: clamp(24px, 5vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 24px 64px rgba(29, 95, 209, 0.12);
}

.account-login-panel h1 {
  margin-top: 0;
  font-size: clamp(1.75rem, 4vw, 2.45rem);
}

.account-login-lead {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 400;
}

.account-login-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.account-login-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-family: var(--font-subtitle);
  font-weight: 650;
}

.account-login-form input {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #b8cce2;
  border-radius: var(--radius-control);
  outline: none;
}

.account-login-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(62, 131, 242, 0.16);
}

.account-login-form .button {
  width: 100%;
  min-height: 48px;
  border: 0;
}

.account-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin-top: 17px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.account-legal-links a {
  color: #718096;
  font-family: var(--font-hint);
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-color: rgba(113, 128, 150, 0.35);
  text-underline-offset: 3px;
}

.account-legal-links a:hover,
.account-legal-links a:focus-visible {
  color: var(--blue);
  text-decoration-color: currentColor;
}

.account-security-note {
  margin-top: 18px;
  color: var(--muted);
  font-family: var(--font-hint);
  font-size: var(--fs-hint);
  font-weight: 400;
  line-height: 1.45;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-stage {
  animation: heroPhotoEnter 0.85s ease both;
}

@keyframes heroGrid {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 74px 74px, 74px 74px;
  }
}

@keyframes feedPulse {
  0%,
  100% {
    opacity: 0.78;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.015);
  }
}

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

@keyframes statusBlink {
  0%,
  100% {
    opacity: 0.62;
  }

  50% {
    opacity: 1;
  }
}

@keyframes cloudCardPulse {
  0%,
  100% {
    box-shadow: 0 14px 36px rgba(29, 95, 209, 0.08);
  }

  50% {
    box-shadow: 0 20px 52px rgba(29, 95, 209, 0.18);
  }
}

@keyframes cloudRadarPulse {
  0%,
  100% {
    opacity: 0.76;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.07);
  }
}

@keyframes cloudGlowPulse {
  0%,
  100% {
    opacity: 0.36;
    transform: scale(0.94);
  }

  50% {
    opacity: 0.72;
    transform: scale(1.08);
  }
}

@keyframes heroPhotoEnter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 1440px) {
  :root {
    --container: 1240px;
  }
}

@media (min-width: 1121px) and (max-width: 1350px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    padding-inline: 28px;
  }

  .brand {
    min-width: 78px;
  }

  .brand-phone {
    display: none;
  }

  .nav {
    gap: 8px;
    font-size: 0.9rem;
  }

  .nav a {
    padding-inline: 6px;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
    align-items: center;
  }

  .menu-button {
    display: block;
  }

  .nav,
  .header-actions,
    .mobile-legal-links {
    display: none;
  }

  .site-header.open .nav,
  .site-header.open .header-actions,
  .site-header.open .mobile-legal-links {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .site-header.open .nav {
    gap: 8px;
    padding: 4px 14px 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header.open .nav a {
    padding: 13px 14px;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .site-header.open .nav .mobile-account-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 3px;
    color: var(--white);
    background: var(--blue);
    border-radius: var(--radius-control);
    box-shadow: 0 12px 28px rgba(29, 95, 209, 0.22);
  }

  .site-header.open .nav .mobile-account-link:hover,
  .site-header.open .nav .mobile-account-link:focus-visible {
    color: var(--white);
  }

  .site-header.open .header-actions {
    display: none;
  }

  .site-header.open .mobile-legal-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0 14px 8px;
  }

  .site-header.open .mobile-legal-links a {
    padding: 11px 12px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 800;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .site-header.open .button {
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .video-story,
  .shop-hero,
  .blog-hero {
    grid-template-columns: 1fr;
  }

  .video-story-copy {
    display: grid;
    align-items: start;
  }

  .equipment-slide {
    grid-template-columns: 1fr;
  }

  .equipment-slide img {
    height: 250px;
  }

  .hero-stage {
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
  }

  .choice-strip,
  .owner-card,
  .service-summary,
  .solution-grid,
  .service-grid,
  .benefit-grid,
  .workflow-grid,
  .shop-grid,
  .area-grid,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-summary article:nth-child(2) {
    border-right: 0;
  }

  .service-summary article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .solution-card,
  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card img {
    width: 100%;
    height: 220px;
    min-height: 0;
  }

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

  .architecture-map article:nth-child(2)::after {
    content: none;
  }

  .request,
  .contacts,
  .apps-section {
    grid-template-columns: 1fr;
  }

  .request-copy {
    position: static;
  }

  .store-buttons {
    justify-content: flex-start;
  }

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

  .footer p {
    white-space: normal;
  }
}

@media (max-width: 820px) {
  h1 {
    font-size: clamp(2rem, 7.2vw, 3.05rem);
  }

  .account-login-wrap {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .account-logo-stage {
    min-height: 420px;
  }

  .account-logo-motion {
    width: min(84vw, 560px);
  }

  .brand,
  .footer-brand {
    width: auto;
  }

  .brand {
    min-width: 0;
  }

  .brand img,
  .footer-brand img {
    width: 66px;
  }

  .brand-caption {
    max-width: 96px;
    font-size: 0.56rem;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .hero-stage {
    min-height: 360px;
  }

  .choice-strip,
  .hero-facts,
  .dvor-section,
  .owner-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cloud-dashboard {
    justify-self: stretch;
    width: 100%;
  }

  .service-summary,
  .choice-strip {
    margin-top: -36px;
  }

  .solution-card {
    min-height: auto;
    grid-template-rows: 220px auto;
  }

  .owner-portrait {
    min-height: 360px;
  }

  .owner-portrait img {
    top: 22px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 22px);
    object-fit: contain;
    object-position: center bottom;
  }

  .service-summary article,
  .service-summary article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-summary article:last-child {
    border-bottom: 0;
  }

  .diagram-wrap {
    overflow: visible;
  }

  .diagram {
    min-width: 0;
  }

  .architecture-map,
  .architecture-map.split {
    grid-template-columns: 1fr;
  }

  .architecture-map article::after,
  .architecture-map article:nth-child(2)::after {
    top: auto;
    right: calc(50% - 1px);
    bottom: -13px;
    width: 2px;
    height: 24px;
    content: "";
  }

  .architecture-map article:last-child::after {
    content: none;
  }

  .architecture-result {
    grid-template-columns: 1fr;
  }

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

  .contact-grid > *:last-child {
    grid-column: auto;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: clamp(1.66rem, 6.55vw, 2.1rem);
    line-height: 1.12;
  }

  h2 {
    font-size: clamp(1.42rem, 6.2vw, 2rem);
    line-height: 1.14;
  }

  h3 {
    font-size: 1.08rem;
    line-height: 1.18;
  }

  .site-header {
    min-height: 68px;
    padding: 12px 14px;
  }

  .account-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .account-brand {
    gap: 9px;
    font-size: 0.9rem;
  }

  .account-brand span {
    max-width: 150px;
    line-height: 1.2;
  }

  .account-brand img {
    width: 52px;
    height: 42px;
  }

  .account-back-link {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.86rem;
  }

  .account-login-wrap {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: calc(100svh - 68px);
    padding: 20px 12px max(20px, env(safe-area-inset-bottom));
  }

  .account-logo-stage {
    min-height: 290px;
  }

  .account-logo-motion {
    width: min(94vw, 430px);
  }

  .account-logo-motion img {
    width: 48%;
  }

  .account-video-feed i {
    top: 6px;
    left: 6px;
    width: 6px;
    height: 6px;
  }

  .account-login-panel {
    width: min(100%, 460px);
    margin: 0 auto;
    padding: 22px 18px;
  }

  .requisites-list > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .brand {
    min-width: 0;
    padding-right: 8px;
  }

  .brand img,
  .footer-brand img {
    width: 58px;
  }

  .brand-phone {
    font-size: 0.8rem;
  }

  .hero,
  .section,
  .video-story,
  .shop-hero,
  .blog-hero,
  .shop-cta-section,
  .contacts,
  .benefits-section,
  .workflow-section,
  .faq-section,
  .dvor-section,
  .systems,
  .apps-section,
  .shop-section,
  .service-area,
  .request {
    padding-right: 14px;
    padding-left: 14px;
  }

  #solutions,
  #pricing,
  #testimonials,
  #request,
  #contacts,
  #apps,
  #chat,
  .owner-intro,
  .dvor-section,
  .systems,
  .faq-section {
    scroll-margin-top: 82px;
  }

  .section,
  .contacts {
    width: 100%;
  }

  .hero {
    gap: 18px;
    padding-top: 22px;
    padding-bottom: 20px;
  }

  .lead {
    margin-top: 16px;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .hero-offer {
    min-height: 0;
    margin-top: 15px;
    padding: 10px 12px;
    font-size: 0.95rem;
    line-height: 1.38;
  }

  .hero-checks {
    display: none;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .service-summary {
    width: calc(100% - 28px);
  }

  .choice-strip {
    width: calc(100% - 28px);
    margin-top: -44px;
  }

  .offer-strip {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .choice-strip article,
  .benefit-grid article,
  .workflow-grid article,
  .scheme-grid article,
  .price-card {
    min-height: auto;
  }

  .hero-actions,
  .dvor-actions,
  .store-buttons {
    display: grid;
  }

  .button,
  .store-button {
    width: 100%;
    white-space: normal;
  }

  .video-story,
  .shop-hero,
  .blog-hero,
  .shop-cta-section {
    width: 100%;
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .video-story {
    padding: 0 14px;
  }

  .video-frame {
    min-height: 190px;
  }

  .equipment-carousel {
    padding: 10px;
  }

  .equipment-carousel-head,
  .shop-cta-section {
    display: grid;
  }

  .equipment-controls {
    justify-content: end;
  }

  .equipment-slide {
    min-height: auto;
    padding: 14px;
  }

  .equipment-slide img {
    height: 190px;
  }

  .hero-stage {
    min-height: 330px;
    margin-top: 2px;
  }

  .hero-actions .button.secondary {
    display: none;
  }

  .hero-feed {
    inset: 0 0 auto 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .hero-corner-camera {
    top: -28px;
    left: -12px;
    width: clamp(104px, 22vw, 148px);
  }

  .hero-feed span {
    min-height: 58px;
  }

  .hero-technician {
    right: -5%;
    bottom: 0;
    width: 52%;
    max-height: 230px;
  }

  .owner-card {
    padding: 18px;
  }

  .owner-portrait {
    min-height: 330px;
  }

  .owner-portrait img {
    top: 28px;
    height: calc(100% - 28px);
  }

  .owner-copy h2 {
    font-size: clamp(1.45rem, 6.2vw, 2rem);
  }

  .cloud-card.main {
    min-height: 210px;
  }

  .request-form {
    padding: 18px;
  }

  .solution-grid,
  .service-grid,
  .benefit-grid,
  .testimonials-head,
  .workflow-grid,
  .shop-grid,
  .area-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-section {
    padding-top: 58px;
    padding-bottom: 60px;
  }

  .testimonials-inner {
    width: 100%;
    padding: 0 14px;
  }

  .testimonials-head {
    gap: 12px;
  }

  .testimonials-count {
    justify-self: start;
    white-space: normal;
  }

  .testimonials-tools {
    justify-items: start;
  }

  .testimonials-track {
    margin-right: -14px;
    padding-right: 14px;
  }

  .testimonial-card {
    flex-basis: min(326px, 84vw);
    min-height: 226px;
    padding: 16px;
  }

  .solution-card {
    grid-template-rows: auto;
  }

  .solution-card img {
    height: clamp(160px, 48vw, 210px);
    padding: 16px;
  }

  .solution-card div {
    padding: 18px;
  }

  .shop-card {
    grid-template-rows: 180px auto;
    min-height: auto;
  }

  .chat-widget {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    width: auto;
    padding: 0;
  }

  .chat-toggle {
    width: 56px;
    min-width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    float: none;
    border-radius: 50%;
    box-shadow: 0 14px 34px rgba(29, 95, 209, 0.3);
  }

  .chat-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: min(90svh, 720px);
    min-height: 0;
    margin: 0;
    padding: 14px 14px max(14px, env(safe-area-inset-bottom));
    overflow: hidden;
    border-radius: 12px;
  }

  .chat-head {
    flex: 0 0 auto;
  }

  .chat-head strong {
    font-size: 1.05rem;
  }

  .chat-intro {
    flex: 0 0 auto;
    margin-top: 8px;
    font-size: var(--fs-hint);
    font-weight: 400;
    line-height: 1.38;
  }

  .messenger-links {
    flex: 0 0 auto;
    gap: 6px;
    margin-top: 10px;
  }

  .messenger-links a {
    padding: 8px 9px;
    font-size: 0.9rem;
    border-radius: 7px;
  }

  .chat-messages {
    flex: 1 1 auto;
    min-height: 240px;
    max-height: none;
    padding: 2px 2px 6px;
    overscroll-behavior: contain;
  }

  .chat-widget.has-thread .chat-messages {
    min-height: 0;
  }

  .chat-message {
    max-width: 92%;
    font-size: 0.82rem;
    line-height: 1.38;
  }

  .chat-form {
    flex: 0 0 auto;
    gap: 7px;
    margin-top: 8px;
  }

  .chat-form label {
    gap: 8px;
    font-size: 0.94rem;
  }

  .chat-form input,
  .chat-form textarea {
    min-height: 42px;
    padding: 9px 10px;
    font-size: 1rem;
    border-radius: var(--radius-control);
  }

  .chat-form textarea {
    min-height: 58px;
    max-height: 14svh;
  }

  .chat-form .chat-consent {
    font-size: var(--fs-hint) !important;
    font-weight: 400 !important;
    line-height: 1.32 !important;
  }

  .chat-form button[type="submit"] {
    min-height: 38px;
    border-radius: 8px;
  }

  .chat-status {
    min-height: 0;
    font-size: var(--fs-hint);
  }

  .cookie-consent {
    right: 10px;
    bottom: calc(72px + env(safe-area-inset-bottom));
    left: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    width: auto;
    max-height: none;
    padding: 10px 11px;
  }

  .cookie-consent strong {
    font-size: 0.96rem;
  }

  .cookie-consent p {
    font-size: 0.76rem;
    line-height: 1.34;
  }

  .cookie-consent-actions {
    display: grid;
    gap: 5px;
    justify-items: end;
  }

  .cookie-consent-actions button {
    min-width: 0;
  }

  .site-header.open .mobile-legal-links {
    grid-template-columns: 1fr;
  }
}
