@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --bg-0: #f4f7ff;
  --bg-1: #e9f0ff;
  --bg-2: #dbe7ff;
  --text: #0f2347;
  --text-soft: #5a6f96;
  --line: rgba(45, 82, 139, 0.2);
  --surface: rgba(255, 255, 255, 0.68);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --header-bg: rgba(246, 250, 255, 0.84);
  --chip-bg: rgba(36, 84, 150, 0.06);
  --chip-border: rgba(36, 84, 150, 0.25);
  --primary-1: #59d2f3;
  --primary-2: #2d8fc0;
  --danger: #d47f9d;
  --dna-opacity: 0.58;
  --dna-opacity-2: 0.34;
  --dna-wave-x: 0px;
  --dna-wave-y: 120px;
  --dna-wave-x2: 0px;
  --dna-wave-y2: 180px;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 11px;
  --shadow-soft: 0 14px 35px rgba(19, 45, 84, 0.14);
  --shadow-hero: 0 28px 60px rgba(14, 34, 70, 0.2);
  --ease-futuristic: cubic-bezier(0.22, 1, 0.36, 1);
  --anim-fast: 220ms;
  --anim-base: 420ms;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --bg-0: #0f2a52;
    --bg-1: #1a3f72;
    --bg-2: #225087;
    --text: #e9f1ff;
    --text-soft: #c1d2f4;
    --line: rgba(155, 182, 224, 0.24);
    --surface: rgba(20, 46, 86, 0.56);
    --surface-strong: rgba(20, 48, 90, 0.8);
    --header-bg: rgba(14, 33, 63, 0.82);
    --chip-bg: rgba(14, 30, 62, 0.56);
    --chip-border: rgba(173, 198, 239, 0.38);
    --danger: #d894af;
    --dna-opacity: 0.24;
    --dna-opacity-2: 0.16;
    --shadow-soft: 0 10px 24px rgba(5, 15, 34, 0.2);
    --shadow-hero: 0 18px 42px rgba(5, 15, 34, 0.28);
  }
}

@keyframes card-enter {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes card-breathe {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes stat-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(88, 173, 224, 0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(88, 173, 224, 0.08);
  }
}

@keyframes wave-drift-right-a {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(1600px, 0, 0);
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
  background:
    radial-gradient(1100px 520px at 88% 6%, rgba(121, 188, 255, 0.18), transparent 68%),
    radial-gradient(880px 460px at 4% 88%, rgba(147, 204, 255, 0.14), transparent 70%),
    linear-gradient(180deg, #f4f8ff 0%, #e8f0fb 52%, #dde8f6 100%);
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  isolation: isolate;
  font-family: "Manrope", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: -0.01em;
  color: var(--text);
  background: transparent;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: -18vh;
  bottom: -18vh;
  left: -1600px;
  width: calc(100vw + 3200px);
  pointer-events: none;
  z-index: 0;
}

body::before {
  opacity: 0.12;
  background: url("IMG/paper-waves-bg.svg") 0 120px / 1600px auto repeat-x;
  animation: wave-drift-right-a 8.4s linear infinite;
  will-change: transform;
  filter: brightness(0);
}

body::after {
  display: none;
}

@media (prefers-color-scheme: dark) {
  html {
    background:
      radial-gradient(1100px 520px at 88% 6%, rgba(107, 173, 255, 0.12), transparent 68%),
      radial-gradient(880px 460px at 4% 88%, rgba(86, 155, 255, 0.1), transparent 70%),
      linear-gradient(180deg, #10284d 0%, #173965 52%, #1f4a7d 100%);
  }

  body::before {
    opacity: 0.06;
    filter: none;
  }
}

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

.site {
  flex: 1 0 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding-bottom: 0;
  overflow: clip;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
  backdrop-filter: blur(12px);
}

.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-icon {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.demo-link {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid var(--chip-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 6px 16px rgba(20, 56, 108, 0.14);
  transition:
    transform var(--anim-fast) var(--ease-futuristic),
    box-shadow var(--anim-fast) ease,
    border-color var(--anim-fast) ease;
}

.demo-link::before {
  content: "";
  position: absolute;
  inset: -2px auto -2px -60%;
  width: 54%;
  z-index: -1;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(140, 220, 251, 0.35), rgba(255, 255, 255, 0));
  transform: translateX(0) skewX(-18deg);
  transition: transform 620ms var(--ease-futuristic);
}

.demo-link:hover {
  transform: translateY(-2px);
  border-color: rgba(112, 178, 234, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 10px 22px rgba(20, 56, 108, 0.2);
}

.demo-link:hover::before {
  transform: translateX(245%) skewX(-18deg);
}

.demo-link span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid var(--chip-border);
  background: rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.hero {
  display: grid;
  grid-template-columns: 1.03fr 1.07fr;
  gap: 42px;
  align-items: center;
  padding-top: 54px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(38px, 4.3vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  max-width: 620px;
}

.hero-copy p {
  margin: 18px 0 0;
  max-width: 620px;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.62;
  color: var(--text-soft);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform var(--anim-fast) var(--ease-futuristic),
    box-shadow var(--anim-fast) ease,
    border-color var(--anim-fast) ease,
    background-color var(--anim-fast) ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -2px auto -2px -70%;
  width: 56%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  transform: translateX(0) skewX(-18deg);
  transition: transform 700ms var(--ease-futuristic);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(23, 56, 107, 0.2);
}

.btn:hover::before {
  transform: translateX(285%) skewX(-18deg);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(150, 172, 206, 0.2);
}

.btn-primary {
  color: var(--text);
  border-color: var(--chip-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 8px 16px rgba(23, 56, 107, 0.14);
}

.btn-primary:hover {
  border-color: rgba(104, 170, 227, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 14px 26px rgba(23, 56, 107, 0.24);
}

.btn-primary:active {
  color: #eaf6ff;
  border-color: rgba(56, 118, 177, 0.88);
  background: linear-gradient(145deg, #3e85bf 0%, #2c6ea3 55%, #23588b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 10px 20px rgba(11, 44, 80, 0.45);
}

.btn-ghost {
  border-color: var(--chip-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 8px 16px rgba(23, 56, 107, 0.13);
}

.btn-ghost:hover {
  border-color: rgba(111, 175, 230, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 14px 24px rgba(23, 56, 107, 0.18);
}

@media (prefers-color-scheme: dark) {
  .kpi,
  .trust,
  .problem-panel,
  .contact-card,
  .final-cta {
    box-shadow: 0 8px 20px rgba(4, 13, 30, 0.18);
  }

  .kpi:hover,
  .trust:hover,
  .problem-panel:hover,
  .contact-card:hover,
  .final-cta:hover {
    box-shadow: 0 12px 26px rgba(4, 13, 30, 0.22);
  }

  .product-shot {
    box-shadow: 0 16px 36px rgba(4, 13, 30, 0.25);
  }

  .product-shot:hover {
    box-shadow: 0 22px 48px rgba(4, 13, 30, 0.3);
  }

  .demo-link {
    background: linear-gradient(180deg, rgba(33, 62, 114, 0.86), rgba(21, 41, 80, 0.72));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 10px 20px rgba(2, 9, 22, 0.35);
  }

  .demo-link span {
    background: rgba(255, 255, 255, 0.08);
  }

  .btn-ghost {
    background: linear-gradient(180deg, rgba(33, 62, 114, 0.84), rgba(21, 41, 80, 0.66));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 10px 20px rgba(2, 9, 22, 0.3);
  }

  .btn-ghost:hover {
    border-color: rgba(126, 194, 242, 0.56);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.26),
      0 14px 28px rgba(2, 9, 22, 0.42);
  }

  .btn-primary {
    color: var(--text);
    background: linear-gradient(180deg, rgba(36, 66, 118, 0.84), rgba(23, 43, 82, 0.66));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 10px 20px rgba(2, 9, 22, 0.34);
  }

  .btn-primary:hover {
    border-color: rgba(126, 194, 242, 0.62);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.24),
      0 14px 24px rgba(2, 9, 22, 0.4);
  }

  .btn-primary:active {
    color: #eaf6ff;
    border-color: rgba(96, 165, 226, 0.8);
    background: linear-gradient(145deg, #3475ac 0%, #275f93 58%, #1f4f7f 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 12px 22px rgba(4, 12, 30, 0.5);
  }
}

.hero-visual {
  position: relative;
}

.product-shot {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(170, 196, 231, 0.42);
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  box-shadow: var(--shadow-hero);
  text-decoration: none;
  transform-origin: center;
  transition:
    transform var(--anim-base) var(--ease-futuristic),
    box-shadow var(--anim-base) var(--ease-futuristic),
    border-color var(--anim-fast) ease;
  animation: card-enter 620ms var(--ease-futuristic) both;
  animation-delay: 70ms;
}

.product-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.2), transparent 24%, transparent 72%, rgba(83, 200, 237, 0.1)),
    radial-gradient(360px 140px at 100% 0%, rgba(87, 206, 246, 0.12), transparent 72%);
}

.product-shot::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--anim-base) var(--ease-futuristic);
  background: radial-gradient(420px 180px at 50% 0%, rgba(87, 206, 246, 0.26), transparent 70%);
}

.fake-link {
  text-decoration: none;
}

.product-shot:hover {
  transform: translateY(-6px) scale(1.008);
  box-shadow: 0 40px 74px rgba(12, 35, 76, 0.3);
  border-color: rgba(104, 185, 235, 0.55);
}

.product-shot:hover::after {
  opacity: 1;
}

.product-shot:focus-visible {
  outline: 0;
  box-shadow:
    0 0 0 3px rgba(95, 181, 239, 0.24),
    0 40px 74px rgba(12, 35, 76, 0.3);
  border-color: rgba(95, 181, 239, 0.62);
}

.fake-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(95, 181, 239, 0.22);
}

.browser-chrome {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  background: linear-gradient(180deg, #f6f8fc 0%, #edf3fb 100%);
  border-bottom: 1px solid #dce5f2;
}

.browser-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.browser-chrome span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.browser-chrome span:nth-child(1) { background: #f58b7a; }
.browser-chrome span:nth-child(2) { background: #f1c26f; }
.browser-chrome span:nth-child(3) { background: #74c98f; }

.browser-address {
  flex: 1;
  min-width: 0;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #dde6f3;
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #60779d;
  font-size: 10px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.browser-address span {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-address i,
.browser-actions i {
  font-size: 13px;
  line-height: 1;
}

.browser-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7d91b4;
}

.dashboard-shell {
  color: #11213f;
  background: #fcfdff;
}

@media (prefers-color-scheme: dark) {
  .dashboard-shell {
    color: #eef5ff;
    background: linear-gradient(180deg, rgba(11, 28, 54, 0.98), rgba(15, 35, 66, 0.98));
  }

  .browser-chrome {
    background: linear-gradient(180deg, rgba(9, 21, 41, 0.96), rgba(13, 29, 55, 0.94));
    border-bottom-color: rgba(173, 198, 239, 0.12);
  }

  .dashboard-top {
    background: rgba(12, 29, 56, 0.36);
    border-bottom-color: rgba(173, 198, 239, 0.12);
  }

  .dashboard-sidebar {
    background: linear-gradient(180deg, rgba(10, 26, 50, 0.94), rgba(14, 33, 62, 0.94));
    border-right-color: rgba(173, 198, 239, 0.12);
  }

  .menu-item {
    color: rgba(226, 237, 255, 0.8);
  }

  .menu-item.active {
    color: #ffffff;
    background: linear-gradient(180deg, rgba(58, 117, 189, 0.82), rgba(41, 88, 149, 0.82));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .dashboard-logo,
  .dashboard-main h3,
  .document-stats strong {
    color: #ffffff;
  }

  .dashboard-search {
    color: rgba(214, 228, 249, 0.6);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(173, 198, 239, 0.12);
  }

  .dashboard-notif {
    color: #8ddcff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(173, 198, 239, 0.12);
  }

  .dashboard-profile {
    color: #ffffff;
    background: linear-gradient(180deg, #3f78c8 0%, #2d5da6 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 8px 18px rgba(5, 15, 34, 0.24);
  }
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid #dde6f3;
}

.dashboard-logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-logo {
  font-size: 14px;
  font-weight: 800;
}

.dashboard-badge {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(84, 208, 145, 0.12);
  border: 1px solid rgba(84, 208, 145, 0.2);
  color: #24714b;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.dashboard-search {
  min-width: 178px;
  height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid #dce6f3;
  background: #f5f9fe;
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  color: #6c81a4;
}

.dashboard-notif,
.dashboard-profile {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #dce6f3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}

.dashboard-notif i,
.dashboard-profile i {
  font-size: 14px;
  line-height: 1;
}

.dashboard-notif {
  color: #2d6ea3;
  background: #f4f8fd;
}

.dashboard-profile {
  color: #ffffff;
  background: linear-gradient(180deg, #4f89d8, #3166b2);
}

.dashboard-workspace {
  display: grid;
  grid-template-columns: 144px 1fr;
  min-height: 302px;
}

.dashboard-sidebar {
  padding: 10px;
  background: #f8faff;
  border-right: 1px solid #dfe8f6;
}

.menu-item {
  display: block;
  width: 100%;
  padding: 7px 9px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  color: #334e7d;
  cursor: pointer;
  transition: background var(--anim-fast) ease, color var(--anim-fast) ease, transform var(--anim-fast) var(--ease-futuristic);
}

.menu-item + .menu-item {
  margin-top: 6px;
}

.menu-item.active {
  color: #edf3ff;
  background: #2e5a9f;
}

.menu-item:hover {
  transform: translateX(2px);
}

.dashboard-main {
  padding: 14px;
}

.dashboard-main-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-main h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
}

.dashboard-subtitle {
  margin: 5px 0 0;
  font-size: 10px;
  line-height: 1.5;
  color: #6881a9;
}

.document-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.document-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  border-width: 1px;
  border-style: solid;
  border-radius: 999px;
  background: #eef4fb;
  font-size: 9px;
  font-weight: 800;
  color: #49648f;
}

.document-tag.active {
  color: #edf3ff;
  background: #2e5a9f;
  border-color: #2e5a9f;
}

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

.document-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(132px, 0.9fr);
  gap: 8px;
}

.fake-view-stack {
  margin-top: 8px;
  display: grid;
  gap: 8px;
}

.fake-view-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(132px, 0.9fr);
  gap: 8px;
}

.document-stats article,
.fake-stat-card {
  border: 1px solid #e5ecf7;
  border-radius: 9px;
  background: #f5f9ff;
  padding: 8px;
  display: block;
  transition:
    transform var(--anim-fast) var(--ease-futuristic),
    box-shadow var(--anim-fast) ease,
    border-color var(--anim-fast) ease;
  animation: stat-pulse 5.8s ease-in-out infinite;
}

.document-stats article:nth-child(2),
.fake-stat-card:nth-child(2) {
  animation-delay: 450ms;
}

.document-stats article:nth-child(3),
.fake-stat-card:nth-child(3) {
  animation-delay: 900ms;
}

.document-stats article:hover,
.fake-stat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(80, 152, 218, 0.55);
  box-shadow: 0 8px 16px rgba(42, 106, 160, 0.2);
}

.document-stats strong {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.document-stats span {
  font-size: 9px;
  font-weight: 600;
  color: #5d7298;
}

.document-list-card,
.document-activity-card {
  margin-top: 8px;
  border: 1px solid #e3e9f6;
  border-radius: 9px;
  background: #fdfeff;
  padding: 8px;
}

.document-list-card {
  display: grid;
  gap: 7px;
}

.document-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 9px;
  border-radius: 8px;
  background: #f4f8fe;
  transition: transform var(--anim-fast) var(--ease-futuristic), box-shadow var(--anim-fast) ease, border-color var(--anim-fast) ease;
}

.document-row:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(29, 79, 134, 0.1);
}

.document-name {
  font-size: 10px;
  font-weight: 700;
  color: #203d6d;
}

.document-status {
  padding: 4px 7px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
}

.document-status.waiting {
  color: #8a4d00;
  background: rgba(246, 190, 87, 0.24);
}

.document-status.ok {
  color: #1f6a44;
  background: rgba(103, 202, 148, 0.22);
}

.document-status.review {
  color: #1f4f86;
  background: rgba(95, 181, 239, 0.2);
}

.document-activity-card {
  display: grid;
  gap: 6px;
}

.document-side-panel {
  display: grid;
  gap: 8px;
}

.mini-kpi-card {
  border: 1px solid #e3e9f6;
  border-radius: 9px;
  background: linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
  padding: 10px;
  display: grid;
  gap: 5px;
}

.mini-kpi-card,
.document-activity-card,
.product-shot-footer,
.browser-address {
  transition: transform var(--anim-fast) var(--ease-futuristic), border-color var(--anim-fast) ease, box-shadow var(--anim-fast) ease, background var(--anim-fast) ease;
}

.mini-kpi-card:hover,
.document-activity-card:hover,
.product-shot-footer:hover,
.browser-address:hover {
  transform: translateY(-1px);
}

.mini-kpi-label {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6a81a5;
}

.mini-kpi-card strong {
  font-size: 22px;
  line-height: 1;
  color: #173869;
}

.mini-kpi-card small {
  font-size: 8px;
  line-height: 1.5;
  color: #5f779e;
}

.product-shot-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid #dde6f3;
  background: linear-gradient(180deg, rgba(246, 249, 255, 0.92), rgba(237, 244, 252, 0.92));
  color: #234878;
  font-size: 12px;
  font-weight: 800;
}

.product-shot-footer i {
  font-size: 16px;
}

.fake-list-card,
.fake-schedule-card,
.fake-compliance-card {
  border: 1px solid #e3e9f6;
  border-radius: 9px;
  background: #fdfeff;
  padding: 8px;
}

.fake-list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 9px 10px;
  border-radius: 8px;
  background: #f4f8fe;
}

.fake-list-item + .fake-list-item {
  margin-top: 7px;
}

.fake-list-main {
  display: grid;
  gap: 3px;
}

.fake-list-main strong {
  font-size: 10px;
  color: #203d6d;
}

.fake-list-main span {
  font-size: 8px;
  color: #6780a8;
  line-height: 1.5;
}

.fake-badge-soft {
  padding: 4px 7px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  color: #28588f;
  background: rgba(95, 181, 239, 0.18);
}

.fake-badge-success {
  color: #1f6a44;
  background: rgba(103, 202, 148, 0.22);
}

.fake-badge-warning {
  color: #8a4d00;
  background: rgba(246, 190, 87, 0.24);
}

.fake-badge-danger {
  color: #932f45;
  background: rgba(222, 118, 145, 0.2);
}

.fake-schedule-header {
  display: grid;
  grid-template-columns: 64px repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 7px;
}

.fake-schedule-header span {
  padding: 6px 8px;
  border-radius: 8px;
  background: #edf3fb;
  font-size: 8px;
  font-weight: 800;
  color: #56729d;
  text-align: center;
}

.fake-schedule-row {
  display: grid;
  grid-template-columns: 64px repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.fake-schedule-row + .fake-schedule-row {
  margin-top: 6px;
}

.fake-schedule-time {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f3f7fd;
  color: #5e789f;
  font-size: 8px;
  font-weight: 800;
}

.fake-schedule-slot {
  min-height: 56px;
  border-radius: 10px;
  border: 1px solid #dfebfa;
  background: linear-gradient(180deg, #f8fbff 0%, #f1f6ff 100%);
  padding: 7px;
  display: grid;
  align-content: start;
  gap: 3px;
}

.fake-schedule-slot strong {
  font-size: 8px;
  color: #214777;
}

.fake-schedule-slot span {
  font-size: 7px;
  color: #6780a8;
}

.fake-schedule-slot.is-busy {
  border-color: rgba(82, 150, 223, 0.32);
  background: linear-gradient(180deg, rgba(95, 181, 239, 0.18), rgba(95, 181, 239, 0.08));
}

.fake-schedule-slot.is-review {
  border-color: rgba(246, 190, 87, 0.32);
  background: linear-gradient(180deg, rgba(246, 190, 87, 0.18), rgba(246, 190, 87, 0.08));
}

.fake-mini-grid {
  display: grid;
  gap: 8px;
}

.document-activity-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.document-activity-head strong {
  font-size: 10px;
  color: #203d6d;
}

.document-activity-head span {
  font-size: 8px;
  font-weight: 700;
  color: #6580aa;
}

.document-progress {
  height: 12px;
  border-radius: 999px;
  background: #edf3fb;
  overflow: hidden;
}

.document-progress i {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #57c7ec, #2d87b8);
}

.document-lines {
  display: grid;
  gap: 6px;
}

.document-lines div {
  height: 10px;
  border-radius: 6px;
  background: #edf3fb;
}

@media (prefers-color-scheme: dark) {
  .dashboard-shell {
    color: #eef5ff;
    background: linear-gradient(180deg, #0c2141 0%, #10284d 100%);
  }

  .browser-chrome {
    background: linear-gradient(180deg, #08172d 0%, #0d213d 100%);
    border-bottom-color: rgba(173, 198, 239, 0.12);
  }

  .browser-address {
    color: rgba(214, 228, 249, 0.72);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(173, 198, 239, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .browser-actions {
    color: rgba(214, 228, 249, 0.58);
  }

  .dashboard-top {
    background: rgba(11, 28, 54, 0.58);
    border-bottom-color: rgba(173, 198, 239, 0.12);
  }

  .dashboard-top li {
    color: rgba(214, 228, 249, 0.56);
    opacity: 1;
  }

  .dashboard-top li.active,
  .dashboard-logo {
    color: #8ddcff;
  }

  .dashboard-sidebar {
    background: linear-gradient(180deg, #10284b 0%, #14335d 100%);
    border-right-color: rgba(173, 198, 239, 0.12);
  }

  .menu-item {
    color: rgba(230, 240, 255, 0.78);
  }

  .menu-item.active {
    color: #ffffff;
    background: linear-gradient(180deg, #3f78c8 0%, #2d5da6 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 8px 18px rgba(5, 15, 34, 0.24);
  }

  .dashboard-badge {
    color: #b8ffd7;
    background: rgba(79, 191, 128, 0.14);
    border-color: rgba(79, 191, 128, 0.2);
  }

  .dashboard-main h3,
  .document-stats strong {
    color: #ffffff;
  }

  .dashboard-subtitle {
    color: rgba(211, 226, 249, 0.72);
  }

  .document-stats span {
    color: rgba(211, 226, 249, 0.72);
  }

  .document-tag {
    color: rgba(220, 233, 255, 0.74);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(173, 198, 239, 0.12);
  }

  .document-tag.active {
    color: #ffffff;
    background: linear-gradient(180deg, #3f78c8 0%, #2d5da6 100%);
    border-color: rgba(82, 151, 235, 0.42);
  }

  .document-stats article,
  .fake-stat-card,
  .document-list-card,
  .document-activity-card {
    border-color: rgba(173, 198, 239, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  }

  .mini-kpi-card {
    border-color: rgba(173, 198, 239, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  }

  .mini-kpi-label,
  .mini-kpi-card small {
    color: rgba(211, 226, 249, 0.7);
  }

  .mini-kpi-card strong {
    color: #ffffff;
  }

  .fake-list-card,
  .fake-schedule-card,
  .fake-compliance-card {
    border-color: rgba(173, 198, 239, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  }

  .fake-list-item,
  .fake-schedule-time {
    background: rgba(255, 255, 255, 0.04);
  }

  .fake-list-main strong,
  .fake-schedule-slot strong {
    color: #edf5ff;
  }

  .fake-list-main span,
  .fake-schedule-slot span,
  .fake-schedule-header span {
    color: rgba(211, 226, 249, 0.72);
  }

  .fake-schedule-header span {
    background: rgba(184, 206, 240, 0.08);
  }

  .fake-schedule-slot {
    border-color: rgba(173, 198, 239, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  }

  .fake-schedule-slot.is-busy {
    border-color: rgba(95, 181, 239, 0.26);
    background: linear-gradient(180deg, rgba(95, 181, 239, 0.18), rgba(95, 181, 239, 0.08));
  }

  .fake-schedule-slot.is-review {
    border-color: rgba(246, 190, 87, 0.22);
    background: linear-gradient(180deg, rgba(246, 190, 87, 0.14), rgba(246, 190, 87, 0.06));
  }

  .document-row {
    background: rgba(255, 255, 255, 0.04);
  }

  .document-name,
  .document-activity-head strong {
    color: #edf5ff;
  }

  .document-activity-head span {
    color: rgba(211, 226, 249, 0.6);
  }

  .document-progress,
  .document-lines div {
    background: rgba(184, 206, 240, 0.12);
  }

  .product-shot-footer {
    border-top-color: rgba(173, 198, 239, 0.12);
    background: linear-gradient(180deg, rgba(12, 29, 56, 0.74), rgba(8, 21, 41, 0.82));
    color: #dceaff;
  }
}

.kpi,
.trust,
.problem-panel,
.contact-card,
.final-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--surface-strong));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  transition:
    transform var(--anim-base) var(--ease-futuristic),
    box-shadow var(--anim-base) var(--ease-futuristic),
    border-color var(--anim-fast) ease;
  animation: card-enter 620ms var(--ease-futuristic) both;
}

.kpi::after,
.trust::after,
.problem-panel::after,
.contact-card::after,
.final-cta::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -55%;
  width: 44%;
  height: 220%;
  pointer-events: none;
  opacity: 0;
  transform: rotate(20deg) translateX(0);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(132, 214, 248, 0.28), rgba(255, 255, 255, 0));
  transition: transform 800ms var(--ease-futuristic), opacity 500ms ease;
}

.kpi:hover,
.trust:hover,
.problem-panel:hover,
.contact-card:hover,
.final-cta:hover {
  transform: translateY(-4px);
  border-color: rgba(93, 164, 224, 0.45);
  box-shadow: 0 22px 48px rgba(20, 51, 95, 0.22);
}

.kpi:hover::after,
.trust:hover::after,
.problem-panel:hover::after,
.contact-card:hover::after,
.final-cta:hover::after {
  opacity: 1;
  transform: rotate(20deg) translateX(360%);
}

.kpi {
  animation-delay: 120ms;
}

.trust {
  animation-delay: 180ms;
}

.problem-panel {
  animation-delay: 230ms;
}

.contact-card {
  animation-delay: 290ms;
}

.final-cta {
  animation-delay: 340ms;
}

.kpi {
  margin-top: 36px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.kpi article {
  padding: 0 12px;
  transition: transform var(--anim-fast) var(--ease-futuristic);
}

.kpi article + article {
  border-left: 1px solid var(--line);
}

.kpi:hover article {
  animation: card-breathe 2.8s ease-in-out infinite;
}

.kpi:hover article:nth-child(2) {
  animation-delay: 220ms;
}

.kpi p {
  margin: 0;
  font-size: 17px;
  line-height: 1.46;
}

.kpi strong {
  display: block;
  font-size: 27px;
  line-height: 1.1;
}

.trust {
  margin-top: 18px;
  width: min(860px, 100%);
  padding: 18px 20px;
}

.trust p {
  margin: 0;
  font-size: 17px;
  line-height: 1.46;
}

.trust strong {
  font-weight: 800;
}

.trust span {
  display: block;
  margin-top: 3px;
  color: var(--text-soft);
}

.problem-title {
  margin-top: 64px;
}

.problem-title h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(34px, 3.2vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.problem-panel {
  margin-top: 22px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(119, 165, 224, 0.42);
  box-shadow: 0 18px 40px rgba(12, 37, 75, 0.22);
  isolation: isolate;
}

.problem-panel::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(170, 199, 233, 0.75), rgba(255, 255, 255, 0));
  z-index: 1;
  pointer-events: none;
}

.compare-side {
  padding: 28px 30px 26px;
  min-height: 100%;
}

.compare-before {
  background:
    radial-gradient(520px 180px at 22% 0%, rgba(135, 184, 255, 0.2), transparent 72%),
    linear-gradient(180deg, rgba(116, 146, 192, 0.92), rgba(96, 122, 164, 0.94));
  color: #102d5a;
}

.compare-after {
  background:
    radial-gradient(460px 180px at 80% 6%, rgba(255, 255, 255, 0.42), transparent 72%),
    linear-gradient(180deg, rgba(244, 249, 255, 0.98), rgba(230, 240, 252, 0.95));
  color: #173968;
}

.compare-side h3 {
  margin: 0 0 20px;
  font-size: clamp(30px, 2.35vw, 42px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.compare-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.compare-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(18px, 1.2vw, 23px);
  line-height: 1.34;
}

.compare-list b {
  font-weight: 800;
}

.compare-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  transform: translateY(0);
  flex: 0 0 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.compare-icon-cross {
  color: #f7d3e0;
  border: 1px solid rgba(240, 162, 188, 0.52);
  background: linear-gradient(180deg, rgba(205, 119, 154, 0.38), rgba(181, 90, 128, 0.18));
}

.compare-icon-square {
  color: #f7d3e0;
  border: 1px solid rgba(240, 162, 188, 0.52);
  background: linear-gradient(180deg, rgba(205, 119, 154, 0.38), rgba(181, 90, 128, 0.18));
}

.compare-icon-check {
  color: #effff5;
  border: 1px solid rgba(113, 214, 160, 0.66);
  background: linear-gradient(180deg, rgba(112, 207, 157, 0.96), rgba(78, 171, 126, 0.84));
}

.compare-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-68%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08) 60%, rgba(255, 255, 255, 0.02) 100%);
  color: #f7fbff;
  display: grid;
  place-items: center;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 24px rgba(160, 217, 255, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 14px 34px rgba(16, 43, 85, 0.2);
  backdrop-filter: blur(12px);
  z-index: 2;
}

@media (prefers-color-scheme: dark) {
  .problem-panel::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(132, 171, 222, 0.46), rgba(255, 255, 255, 0));
  }

  .workflow-index {
    color: #f3f8ff;
  }

  .compare-before {
    background:
      radial-gradient(520px 180px at 18% 0%, rgba(101, 163, 255, 0.18), transparent 72%),
      linear-gradient(180deg, rgba(24, 58, 108, 0.86), rgba(18, 45, 87, 0.82));
    color: #eef5ff;
  }

  .compare-after {
    background: linear-gradient(180deg, rgba(246, 251, 255, 0.96), rgba(233, 243, 253, 0.92));
    color: #143363;
  }

.compare-after h3,
  .compare-after li {
    color: #143363;
  }
}

.section-heading {
  margin-top: 64px;
  display: grid;
  gap: 10px;
  text-align: center;
}

.section-eyebrow {
  justify-self: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--chip-border);
  background: var(--chip-bg);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.section-heading p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.65;
}

.workflow,
.reasons {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

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

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

.workflow-step,
.reason-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--surface-strong));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  transition:
    transform var(--anim-base) var(--ease-futuristic),
    box-shadow var(--anim-base) var(--ease-futuristic),
    border-color var(--anim-fast) ease;
  animation: card-enter 620ms var(--ease-futuristic) both;
}

.workflow-step::after,
.reason-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%);
}

.workflow-step::before,
.reason-card::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -55%;
  width: 44%;
  height: 220%;
  pointer-events: none;
  opacity: 0;
  transform: rotate(20deg) translateX(0);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(132, 214, 248, 0.28), rgba(255, 255, 255, 0));
  transition: transform 800ms var(--ease-futuristic), opacity 500ms ease;
}

.workflow-step:hover,
.reason-card:hover {
  transform: translateY(-4px);
  border-color: rgba(93, 164, 224, 0.45);
  box-shadow: 0 22px 48px rgba(20, 51, 95, 0.22);
}

.workflow-step:hover::before,
.reason-card:hover::before {
  opacity: 1;
  transform: rotate(20deg) translateX(360%);
}

.workflow-step:nth-child(1) {
  animation-delay: 160ms;
}

.workflow-step:nth-child(2) {
  animation-delay: 220ms;
}

.workflow-step:nth-child(3) {
  animation-delay: 280ms;
}

.reason-card:nth-child(1) {
  animation-delay: 180ms;
}

.reason-card:nth-child(2) {
  animation-delay: 240ms;
}

.reason-card:nth-child(3) {
  animation-delay: 300ms;
}

.reason-card:nth-child(4) {
  animation-delay: 360ms;
}

.workflow-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(112, 170, 229, 0.3);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.16));
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #274d86;
}

.workflow-step h3,
.reason-card h3 {
  margin: 18px 0 10px;
  font-size: 24px;
  line-height: 1.15;
}

.workflow-step p,
.reason-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.62;
}

@media (prefers-color-scheme: dark) {
  .workflow-index {
    color: #f3f8ff;
  }
}

.contact {
  margin-top: 34px;
}

.contact-card {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 28px;
  border-radius: 20px;
  overflow: hidden;
}

.contact-head h2 {
  margin: 0;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.2;
}

.contact-head p {
  margin: 12px 0 0;
  max-width: 760px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}

.contact-form {
  margin-top: 20px;
  display: grid;
  gap: 16px;
  min-width: 0;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-soft);
  min-width: 0;
  letter-spacing: 0.01em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.84);
  color: #10213d;
  font: inherit;
  font-size: 14px;
  line-height: 1.4;
  padding: 12px 13px;
  outline: none;
  transition:
    border-color var(--anim-fast) ease,
    box-shadow var(--anim-fast) ease,
    background-color var(--anim-fast) ease;
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(56, 132, 204, 0.62);
  box-shadow: 0 0 0 3px rgba(72, 148, 219, 0.18);
  background: rgba(255, 255, 255, 0.92);
}

.form-full {
  grid-column: 1 / -1;
  min-width: 0;
}

.contact-submit {
  justify-self: start;
  min-width: 220px;
}

@media (prefers-color-scheme: dark) {
  .contact-form input,
  .contact-form textarea {
    color: var(--text);
    background: rgba(14, 31, 60, 0.7);
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    background: rgba(18, 40, 74, 0.9);
  }
}

.final-cta {
  margin-top: 30px;
  margin-bottom: clamp(32px, 5vw, 56px);
  padding: 22px;
}

.demo-video-frame {
  width: min(780px, 100%);
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(121, 158, 212, 0.45);
  background:
    radial-gradient(460px 200px at 50% 18%, rgba(95, 179, 237, 0.12), transparent 72%),
    rgba(255, 255, 255, 0.34);
  box-shadow: 0 12px 40px rgba(18, 40, 74, 0.12);
}

.demo-video-player {
  display: block;
  width: 100%;
  height: auto;
  background: #0f1c2e;
}

@media (prefers-color-scheme: dark) {
  .demo-video-frame {
    border-color: rgba(127, 170, 230, 0.45);
    background:
      radial-gradient(460px 200px at 50% 18%, rgba(95, 179, 237, 0.16), transparent 72%),
      rgba(12, 29, 56, 0.46);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  }
}

.footer {
  margin-top: auto;
  position: relative;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(8px);
}

.footer-inner {
  padding: 24px 0 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px 24px;
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-brand .brand {
  font-size: 20px;
}

.footer-brand p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-meta {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.footer-links-legal {
  max-width: 620px;
  justify-content: flex-end;
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.form-note a {
  color: var(--text);
  font-weight: 700;
}

.footer-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  transition: color 160ms ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 12px 0 18px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
  color: var(--text-soft);
}

.legal-shell {
  min-height: 100vh;
}

.legal-main {
  padding: 120px 0 72px;
}

.legal-hero {
  display: grid;
  gap: 18px;
  margin-bottom: 26px;
}

.legal-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--chip-border);
  background: var(--chip-bg);
  color: var(--text-soft);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.98;
}

.legal-hero p {
  margin: 0;
  max-width: 760px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 2.1fr);
  gap: 22px;
  align-items: start;
}

.legal-aside,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px);
}

.legal-aside {
  position: sticky;
  top: 96px;
  padding: 22px;
}

.legal-aside h2,
.legal-card h2 {
  margin: 0 0 14px;
  font-size: 1.1rem;
}

.legal-aside nav {
  display: grid;
  gap: 10px;
}

.legal-aside a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: 24px;
}

.legal-card p,
.legal-card li {
  color: var(--text-soft);
  line-height: 1.78;
}

.legal-card ul {
  margin: 0;
  padding-left: 20px;
}

.legal-card strong {
  color: var(--text);
}

.legal-placeholder {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(224, 74, 74, 0.52);
  background: rgba(224, 74, 74, 0.16);
  color: #b32020;
  font-size: 0.92rem;
  font-weight: 800;
}

@media (prefers-color-scheme: dark) {
  .legal-placeholder {
    border-color: rgba(255, 120, 120, 0.58);
    background: rgba(138, 22, 22, 0.34);
    color: #ff9e9e;
  }
}

.legal-note {
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--chip-border);
  background: var(--chip-bg);
  color: var(--text-soft);
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-copy h1,
  .hero-copy p {
    max-width: 100%;
  }

  .dashboard-workspace {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    border-right: 0;
    border-bottom: 1px solid #dfe8f6;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

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

  .menu-item + .menu-item {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 22px);
  }

  .topbar-inner {
    min-height: 64px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 0;
  }

  .hero {
    padding-top: 28px;
    gap: 20px;
  }

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

  .browser-actions {
    display: none;
  }

  .dashboard-main-head {
    display: grid;
    gap: 10px;
  }

  .kpi {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .kpi article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 12px;
  }

  .problem-title {
    margin-top: 44px;
  }

  .problem-panel {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .workflow,
  .reasons {
    grid-template-columns: 1fr;
  }

  .compare-before {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .compare-arrow {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 52px;
    height: 52px;
    margin: -10px auto;
    font-size: 32px;
    border-radius: 18px;
  }

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

  .contact-card,
  .kpi,
  .trust,
  .problem-panel,
  .workflow-step,
  .reason-card,
  .final-cta {
    padding: 16px;
  }

  .contact-card {
    width: 100%;
  }

  .btn,
  .contact-submit {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 20px 0 14px;
  }

  .footer-meta {
    justify-items: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-links-legal {
    justify-content: center;
  }

  .legal-main {
    padding: 104px 0 56px;
  }

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

  .legal-aside {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
