: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;
}

* {
  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: 12px;
  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: 800;
  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: 900;
  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: 760;
}

.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);
}

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

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

.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;
  backdrop-filter: none;
  transition: transform 0.18s ease;
}

.menu-button:hover,
.menu-button:focus-visible {
  box-shadow: 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: 850;
  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: 900;
  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: 900;
  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: 760;
}

.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: 950;
  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.1), rgba(12, 49, 103, 0.1)),
    url("./assets/hero-camera-previews.png") center / cover no-repeat;
  border: 1px solid rgba(62, 131, 242, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(29, 95, 209, 0.16);
  backdrop-filter: blur(22px) saturate(1.24);
}

.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));
}

.hero-live-card,
.hero-status-card {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(62, 131, 242, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(20px) saturate(1.28);
}

.hero-live-card {
  left: 2%;
  bottom: 12%;
  max-width: 330px;
  padding: 18px;
}

.hero-live-card span,
.hero-live-card strong,
.hero-live-card p {
  display: block;
}

.hero-live-card span {
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-live-card strong {
  margin-top: 6px;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.6vw, 1.45rem);
  line-height: 1.15;
}

.hero-live-card p {
  margin-top: 8px;
  color: var(--muted);
}

.hero-status-card {
  top: 23%;
  right: 4%;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 11px 13px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero-status-card span {
  width: 9px;
  height: 9px;
  background: #22c55e;
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.14);
  animation: statusBlink 1.8s ease-in-out infinite;
}

.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: 950;
  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: 950;
  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%;
  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,
#shop,
#request,
#contacts,
#apps,
#chat,
.owner-intro,
.dvor-section,
.systems,
.faq-section {
  scroll-margin-top: 96px;
}

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

.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: 900;
  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: 850;
  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: 900;
  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: 900;
  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;
  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: 900;
  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: 900;
  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: 950;
  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-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: 900;
  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;
}

.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: 18px;
  align-items: center;
  width: min(680px, calc(100vw - 28px));
  padding: 16px;
  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: 1rem;
}

.cookie-consent p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: var(--fs-hint);
  line-height: 1.42;
}

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

.cookie-consent-actions a {
  color: var(--teal-2);
  font-size: var(--fs-hint);
  font-weight: 850;
}

.cookie-consent-actions button {
  min-height: 40px;
  padding: 10px 14px;
  color: var(--white);
  font-weight: 900;
  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: absolute;
  left: -10000px;
  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 {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-family: var(--font-hint);
  font-size: var(--fs-hint);
  font-weight: 400 !important;
}

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

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

.legal-page a:not(.back-link) {
  color: var(--teal-2);
  font-weight: 850;
  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 > *:last-child {
  grid-column: 1 / -1;
  min-height: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  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;
}

.chat-widget {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 70;
  width: min(380px, calc(100vw - 28px));
  pointer-events: none;
}

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

.chat-toggle {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 52px;
  padding: 13px 18px;
  float: right;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--teal-2), var(--blue));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 20px 44px rgba(29, 95, 209, 0.28);
  cursor: pointer;
}

.chat-toggle::before {
  width: 10px;
  height: 10px;
  content: "";
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.16);
}

.chat-panel {
  clear: both;
  margin-bottom: 12px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  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-head {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.chat-head strong {
  font-size: 1.08rem;
  line-height: 1.18;
}

.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-size: 0.94rem;
}

.messenger-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
}

.messenger-links a {
  padding: 9px 11px;
  color: var(--teal-2);
  font-size: 0.9rem;
  font-weight: 850;
  background: #eaf4ff;
  border: 1px solid rgba(62, 131, 242, 0.16);
  border-radius: 999px;
}

.chat-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.chat-messages {
  display: grid;
  gap: 8px;
  max-height: 210px;
  margin-top: 14px;
  overflow: auto;
}

.chat-message {
  width: fit-content;
  max-width: 86%;
  padding: 9px 11px;
  color: var(--ink);
  font-size: 0.9rem;
  background: #edf6ff;
  border: 1px solid rgba(62, 131, 242, 0.12);
  border-radius: 8px;
}

.chat-message.operator {
  justify-self: end;
  color: var(--white);
  background: var(--blue);
  border-color: transparent;
}

.chat-form label {
  display: grid;
  gap: 6px;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 850;
}

.chat-form input,
.chat-form textarea {
  width: 100%;
  padding: 11px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #cbdced;
  border-radius: 7px;
}

.chat-form textarea {
  resize: vertical;
}

.chat-consent {
  display: flex !important;
  gap: 9px !important;
  align-items: flex-start;
  color: var(--muted) !important;
  font-size: 0.82rem !important;
  font-weight: 650 !important;
}

.chat-consent input {
  width: 17px;
  margin-top: 3px;
}

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

.chat-status {
  min-height: 20px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.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: 850;
}

.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 (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 .header-actions {
    gap: 9px;
    padding: 0 14px 14px;
  }

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

  .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);
  }

  .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: 230px 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.82rem, 7.4vw, 2.34rem);
    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;
  }

  .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,
  #request,
  #contacts,
  #apps,
  #chat,
  .owner-intro,
  .dvor-section,
  .systems,
  .faq-section {
    scroll-margin-top: 82px;
  }

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

  .hero {
    padding-top: 26px;
    padding-bottom: 12px;
  }

  .lead {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .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: 220px;
  }

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

  .hero-feed {
    inset: 2% auto auto 0;
    width: 76%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

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

  .hero-technician {
    right: -4%;
    bottom: -7%;
    width: 64%;
  }

  .hero-live-card {
    right: 34%;
    bottom: 5%;
    left: 0;
    max-width: none;
    padding: 14px;
  }

  .hero-status-card {
    top: 34%;
    right: 0;
  }

  .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,
  .workflow-grid,
  .shop-grid,
  .area-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

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

  .chat-widget {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
  }

  .chat-toggle {
    min-width: 104px;
    min-height: 48px;
    padding: 12px 15px;
  }

  .chat-panel {
    padding: 14px;
  }

  .cookie-consent {
    right: 10px;
    bottom: 72px;
    left: 10px;
    grid-template-columns: 1fr;
    width: auto;
    padding: 14px;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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