:root {
  --navy-950: #061326;
  --navy-900: #091a33;
  --navy-800: #102747;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-100: #dbeafe;
  --ink: #0c1a2f;
  --muted: #607089;
  --line: #dce5f0;
  --surface: #f5f8fc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

svg {
  width: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 76px;
  border-bottom: 1px solid rgba(220, 229, 240, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.brand strong {
  color: var(--blue-600);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: var(--navy-900);
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #3b4c66;
  font-size: 14px;
  font-weight: 600;
}

.nav-links > a:not(.button) {
  position: relative;
  padding-block: 10px;
}

.nav-links > a:not(.button)::after {
  position: absolute;
  content: "";
  inset: auto 0 3px;
  height: 2px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links > a:hover::after,
.nav-links > a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid var(--blue-600);
  border-radius: 10px;
  background: var(--blue-600);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  background: #1d4ed8;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.25);
  transform: translateY(-2px);
}

.button:focus-visible,
.menu-button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(59, 130, 246, 0.35);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
}

.button-secondary {
  border-color: #cbd7e7;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy-900);
  box-shadow: none;
}

.button-secondary:hover {
  border-color: var(--blue-600);
  background: var(--white);
  color: var(--blue-600);
  box-shadow: 0 10px 24px rgba(9, 26, 51, 0.08);
}

.menu-button {
  display: none;
  border: 0;
  background: none;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  padding: 150px 0 88px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 82%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image: linear-gradient(#dce7f5 1px, transparent 1px), linear-gradient(90deg, #dce7f5 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, transparent 2%, #000 48%, transparent 96%);
}

.hero::before {
  position: absolute;
  content: "";
  width: 540px;
  height: 540px;
  right: -170px;
  top: 32px;
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(59, 130, 246, 0.035), 0 0 0 160px rgba(59, 130, 246, 0.02);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  animation: enter-up 650ms ease both;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--blue-600);
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(48px, 5.1vw, 76px);
  font-weight: 750;
  letter-spacing: -0.058em;
  line-height: 1.02;
}

.hero h1 span {
  color: var(--blue-600);
}

.hero-copy > p {
  max-width: 590px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
  color: #51627a;
  font-size: 12px;
  font-weight: 600;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-notes i {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #e6f8ef;
  color: #15803d;
  font-size: 10px;
  font-style: normal;
}

.workspace-visual {
  position: relative;
  min-height: 490px;
  animation: enter-up 700ms 100ms ease both;
}

.visual-glow {
  position: absolute;
  inset: 15% 3% 4% 6%;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  filter: blur(55px);
}

.workspace-window {
  position: absolute;
  z-index: 2;
  width: 92%;
  inset: 38px 0 auto auto;
  overflow: hidden;
  border: 1px solid rgba(190, 205, 225, 0.8);
  border-radius: 18px;
  background: white;
  box-shadow: 0 38px 80px rgba(9, 26, 51, 0.18), 0 2px 8px rgba(9, 26, 51, 0.06);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.window-bar {
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid #e9eef5;
  color: #607089;
  font-size: 10px;
  font-weight: 700;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8d3e2;
}

.window-dots i:first-child { background: #ff8f7f; }
.window-dots i:nth-child(2) { background: #f5c65b; }
.window-dots i:last-child { background: #55c89d; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border-radius: 99px;
  background: #eefbf5;
  color: #26815e;
}

.status-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #31a878;
}

.workspace-body {
  display: grid;
  min-height: 345px;
  grid-template-columns: 54px 1fr;
}

.workspace-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 17px;
  background: var(--navy-900);
}

.mini-logo {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 7px;
  background: var(--blue-600);
  color: white;
  font-size: 8px;
  font-weight: 800;
}

.workspace-sidebar i {
  width: 16px;
  height: 16px;
  border: 2px solid #6e7b8f;
  border-radius: 5px;
}

.workspace-sidebar i.active {
  border-color: #80adff;
  background: rgba(59, 130, 246, 0.25);
}

.workspace-content {
  padding: 28px 26px;
  background: #f8fafd;
}

.workspace-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.workspace-heading div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.workspace-heading small,
.workspace-bottom small {
  color: #8492a7;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.workspace-heading strong {
  color: #132641;
  font-size: 17px;
}

.mock-button {
  border: 0;
  border-radius: 7px;
  background: var(--blue-600);
  color: white;
  padding: 7px 10px;
  font-size: 8px;
  font-weight: 700;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.resource-card {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 13px;
  border: 1px solid #e2eaf4;
  border-radius: 11px;
  background: white;
}

.resource-icon {
  display: grid;
  width: 27px;
  height: 27px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 800;
}

.resource-card.blue .resource-icon { background: #e7f0ff; color: #2563eb; }
.resource-card.violet .resource-icon { background: #f0eaff; color: #7c3aed; }
.resource-card.mint .resource-icon { background: #e6f8f1; color: #0d8b67; }

.resource-card strong {
  color: #243752;
  font-size: 9px;
}

.resource-card small {
  margin-top: 5px;
  color: #96a2b3;
  font-size: 7px;
}

.workspace-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 11px 16px;
  border-radius: 10px;
  background: white;
  border: 1px solid #e6edf5;
}

.workspace-bottom > div:first-child {
  flex: 1;
}

.activity-line {
  display: block;
  width: 68%;
  height: 5px;
  margin-top: 10px;
  border-radius: 99px;
  background: #e7edf4;
}

.activity-line.short {
  width: 44%;
  margin-top: 6px;
}

.progress-ring {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--blue-600) 82%, #e7edf4 0);
}

.progress-ring::before {
  content: "";
  position: absolute;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: white;
}

.progress-ring span {
  z-index: 1;
  color: #3e506a;
  font-size: 7px;
  font-weight: 800;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 165px;
  padding: 11px 13px;
  border: 1px solid rgba(205, 217, 231, 0.9);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 30px rgba(9, 26, 51, 0.15);
  animation: float 4.5s ease-in-out infinite;
}

.floating-card div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.floating-card strong {
  color: #19304f;
  font-size: 10px;
}

.floating-card small {
  color: #8290a4;
  font-size: 7px;
}

.float-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: #e8f1ff;
  color: var(--blue-600);
  font-size: 15px;
  font-weight: 800;
}

.card-download {
  left: 0;
  bottom: 38px;
}

.card-creative {
  right: -13px;
  top: 86px;
  animation-delay: -1.6s;
}

.value-strip {
  border-block: 1px solid #e3eaf3;
  background: white;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.value-grid > div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 18px 38px;
  border-right: 1px solid #e3eaf3;
}

.value-grid > div:first-child { padding-left: 0; }
.value-grid > div:last-child { border-right: 0; padding-right: 0; }

.value-grid span {
  color: #b7c4d4;
  font-size: 12px;
  font-weight: 800;
}

.value-grid p {
  margin: 0;
  color: #78869a;
  font-size: 12px;
  line-height: 1.55;
}

.value-grid strong {
  display: block;
  margin-bottom: 2px;
  color: #223652;
  font-size: 13px;
}

.section {
  padding: 110px 0;
}

.section-header {
  max-width: 650px;
}

.section-header.centered {
  margin-inline: auto;
  text-align: center;
}

.section-header.centered .section-kicker {
  justify-content: center;
}

.section-kicker {
  margin-bottom: 17px;
}

.section-header h2 {
  margin: 0;
  color: var(--navy-950);
  margin: 0;
  font-size: clamp(35px, 4vw, 51px);
  font-weight: 750;
  letter-spacing: -0.048em;
  line-height: 1.12;
}

.section-intro {
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.83fr;
  align-items: center;
  gap: 95px;
}

.about-copy {
  max-width: 650px;
  margin: 18px 0 27px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 750;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(3px);
}

.text-link.large {
  font-size: 14px;
}

.about-panel {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 25px 50px rgba(9, 26, 51, 0.08);
}

.about-panel-head {
  display: flex;
  justify-content: space-between;
  padding: 8px 9px 17px;
  color: #617087;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-panel-head small {
  color: #9aa7b8;
  font-size: 9px;
}

.process-row {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 13px;
  padding: 20px;
  border-top: 1px solid #e2e9f2;
  color: #7d899a;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.process-row:first-of-type {
  border-top: 0;
}

.process-row.active,
.process-row:hover {
  position: relative;
  z-index: 2;
  border-color: transparent;
  border-radius: 12px;
  background: white;
  box-shadow: 0 14px 35px rgba(9, 26, 51, 0.09);
  transform: translateX(-8px);
}

.process-row > span {
  color: #aeb9c7;
  font-size: 11px;
  font-weight: 800;
}

.process-row.active > span {
  color: var(--blue-600);
}

.process-row strong {
  color: #263b57;
  font-size: 14px;
}

.process-row p {
  margin: 7px 0 0;
  color: #7a899c;
  font-size: 12px;
  line-height: 1.6;
}

.products-section {
  background: var(--surface);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 54px;
}

.category-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid #dfe7f1;
  border-radius: 15px;
  background: white;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.category-card:hover {
  border-color: #b8cef2;
  box-shadow: 0 20px 45px rgba(9, 26, 51, 0.09);
  transform: translateY(-5px);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-topline small {
  color: #c0cad7;
  font-size: 11px;
  font-weight: 800;
}

.card-icon,
.benefit-icon,
.service-icon,
.contact-methods > * > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 11px;
  background: #eaf2ff;
  color: var(--blue-600);
}

.card-icon svg,
.benefit-icon svg,
.service-icon svg,
.contact-methods svg {
  width: 21px;
  height: 21px;
}

.category-card h3 {
  margin: 27px 0 10px;
  color: #1a304d;
  font-size: 18px;
}

.category-card p {
  flex: 1;
  margin: 0 0 24px;
  color: #718096;
  font-size: 13px;
  line-height: 1.72;
}

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

.benefits-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 85px;
}

.benefits-section .section-header h2 {
  color: white;
}

.benefits-section .section-intro {
  color: #9badc3;
}

.benefits-section .button-secondary {
  margin-top: 28px;
  border-color: #314560;
  background: transparent;
  color: white;
}

.benefits-section .button-secondary:hover {
  border-color: #7fa9f7;
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 38px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 15px;
  padding: 24px 0;
  border-bottom: 1px solid #243751;
}

.benefit-icon {
  width: 43px;
  height: 43px;
  background: #132a4d;
  color: #76a8ff;
}

.benefit-item h3 {
  margin: 1px 0 7px;
  color: #f2f7ff;
  font-size: 14px;
}

.benefit-item p {
  margin: 0;
  color: #91a1b7;
  font-size: 12px;
  line-height: 1.6;
}

.featured-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.catalog-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  margin-bottom: 9px;
  padding: 8px 11px;
  border: 1px solid #dce5f1;
  border-radius: 99px;
  color: #68798f;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.catalog-notice i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f59e0b;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.product-card {
  overflow: hidden;
  border: 1px solid #dfe7f1;
  border-radius: 16px;
  background: white;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  box-shadow: 0 22px 50px rgba(9, 26, 51, 0.1);
  transform: translateY(-4px);
}

.product-visual {
  height: 250px;
  margin: 11px;
  overflow: hidden;
  border-radius: 11px;
  background: #dceaff;
}

.product-visual.violet { background: #ebe7ff; }
.product-visual.mint { background: #dcf3eb; }
.product-visual.amber { background: #f8ead1; }

.product-browser {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.78);
}

.product-browser span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(30, 57, 89, 0.25);
}

.visual-layout {
  display: grid;
  height: calc(100% - 36px);
  grid-template-columns: 36px 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
  padding: 23px 26px 30px 0;
}

.visual-sidebar {
  align-self: stretch;
  background: rgba(11, 35, 67, 0.85);
}

.visual-copy i {
  display: block;
  width: 85%;
  height: 7px;
  margin-bottom: 10px;
  border-radius: 99px;
  background: rgba(32, 62, 99, 0.22);
}

.visual-copy i:first-child {
  width: 32%;
  height: 5px;
}

.visual-copy i:nth-child(2) {
  width: 96%;
  height: 15px;
  background: rgba(25, 56, 94, 0.58);
}

.visual-copy i:nth-child(3) {
  width: 72%;
}

.visual-copy b {
  display: block;
  width: 64px;
  height: 22px;
  margin-top: 21px;
  border-radius: 5px;
  background: #2563eb;
}

.violet .visual-copy b { background: #7c3aed; }
.mint .visual-copy b { background: #0d8b67; }
.amber .visual-copy b { background: #d97706; }

.visual-art {
  position: relative;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.5);
}

.visual-art em {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.48);
}

.visual-art em:first-child { width: 68px; height: 68px; right: 16px; top: 15px; }
.visual-art em:nth-child(2) { width: 45px; height: 45px; left: 16px; bottom: 15px; }
.visual-art em:last-child { width: 27px; height: 27px; right: 40px; bottom: 11px; background: rgba(6, 19, 38, 0.5); }

.violet .visual-art em { background: rgba(124, 58, 237, 0.42); }
.mint .visual-art em { background: rgba(13, 139, 103, 0.38); }
.amber .visual-art em { background: rgba(217, 119, 6, 0.42); }

.product-info {
  padding: 13px 25px 25px;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8090a4;
}

.product-meta span {
  padding: 5px 7px;
  border-radius: 5px;
  background: #fff7e8;
  color: #a86800;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-meta small {
  font-size: 10px;
}

.product-info h3 {
  margin: 15px 0 8px;
  color: #1b314e;
  font-size: 19px;
}

.product-info > p {
  margin: 0;
  color: #718096;
  font-size: 12px;
  line-height: 1.65;
}

.product-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid #e6edf5;
}

.product-footer > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.product-footer small {
  color: #94a0b1;
  font-size: 9px;
}

.product-footer strong {
  color: var(--navy-900);
  font-size: 18px;
}

.product-footer a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 750;
}

.services-section {
  background: var(--surface);
}

.services-list {
  margin-top: 52px;
  border-top: 1px solid #dbe4ef;
}

.service-row {
  display: grid;
  grid-template-columns: 42px 52px minmax(240px, 1.2fr) minmax(210px, 0.8fr) 45px;
  align-items: center;
  gap: 22px;
  padding: 27px 10px;
  border-bottom: 1px solid #dbe4ef;
  transition: background 180ms ease, padding 180ms ease;
}

.service-row:hover {
  padding-inline: 22px;
  background: white;
}

.service-number {
  color: #aab6c5;
  font-size: 11px;
  font-weight: 800;
}

.service-icon {
  width: 46px;
  height: 46px;
  background: white;
}

.service-copy h3 {
  margin: 0 0 7px;
  color: #1d3450;
  font-size: 16px;
}

.service-copy p {
  max-width: 480px;
  margin: 0;
  color: #728197;
  font-size: 12px;
  line-height: 1.6;
}

.service-row ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #596a81;
  font-size: 11px;
  list-style: none;
}

.service-row li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.service-row li span {
  color: #148460;
}

.service-row > a {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid #d9e3ef;
  border-radius: 50%;
  color: var(--blue-600);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-row > a:hover {
  background: var(--blue-600);
  color: white;
  transform: translateX(3px);
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: var(--blue-600);
  color: white;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, transparent, #000 50%, transparent);
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-content > div {
  max-width: 780px;
}

.cta-content p {
  margin: 0 0 13px;
  color: #dbe9ff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cta-content h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 49px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.cta-content > div > span {
  display: block;
  margin-top: 16px;
  color: #dce9ff;
  font-size: 15px;
  line-height: 1.6;
}

.button-light {
  flex: 0 0 auto;
  border-color: white;
  background: white;
  color: var(--blue-600);
  box-shadow: 0 14px 30px rgba(7, 29, 66, 0.18);
}

.button-light:hover {
  border-color: white;
  background: #f2f7ff;
  color: #1d4ed8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.87fr 1.13fr;
  gap: 80px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 31px;
}

.contact-methods > * {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #e3eaf3;
}

.contact-methods > * > span {
  width: 43px;
  height: 43px;
}

.contact-methods > * > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-methods small {
  color: #8b98aa;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-methods strong {
  color: #233a56;
  font-size: 13px;
}

.contact-methods em {
  color: #9aa5b4;
  font-size: 9px;
  font-style: normal;
}

.contact-form {
  padding: 34px;
  border: 1px solid #dfe7f1;
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 25px 50px rgba(9, 26, 51, 0.07);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.form-heading span {
  color: #1b314e;
  font-size: 18px;
  font-weight: 750;
}

.form-heading small {
  color: #99a5b5;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  color: #40536d;
  font-size: 11px;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9e3ef;
  border-radius: 9px;
  outline: 0;
  background: white;
  color: #243a56;
  font-size: 13px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input {
  height: 47px;
  padding: 0 13px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 135px;
  padding: 13px;
  line-height: 1.6;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.13);
}

.contact-form .button {
  width: 100%;
}

.form-note {
  margin: 10px 0 0;
  color: #8997a9;
  font-size: 9px;
  text-align: center;
  line-height: 1.5;
}

.site-footer {
  background: var(--navy-950);
  color: white;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.75fr);
  gap: 60px;
  padding-block: 70px 58px;
}

.brand.inverse {
  color: white;
}

.footer-brand p {
  max-width: 330px;
  margin: 20px 0 0;
  color: #8fa1b8;
  font-size: 12px;
  line-height: 1.7;
}

.footer-main > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-main h3 {
  margin: 2px 0 10px;
  color: #e7eef8;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.footer-main > div:not(.footer-brand) a {
  color: #8fa1b8;
  font-size: 11px;
  transition: color 180ms ease;
}

.footer-main > div:not(.footer-brand) a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 20px;
  border-top: 1px solid #20324a;
  color: #71839b;
  font-size: 10px;
}

.footer-bottom a:hover {
  color: white;
}

.legal-page,
.not-found-page {
  min-height: 100vh;
  padding: 125px 0 80px;
  background: var(--surface);
}

.legal-shell,
.not-found-shell {
  width: min(760px, calc(100% - 40px));
  margin: auto;
}

.legal-shell {
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.legal-shell h1,
.not-found-shell h1 {
  margin: 20px 0;
  color: var(--navy-950);
  font-size: clamp(40px, 6vw, 66px);
  letter-spacing: -0.05em;
}

.legal-shell h2 {
  margin: 32px 0 10px;
  color: #213853;
  font-size: 20px;
}

.legal-shell p,
.legal-shell li,
.not-found-shell p {
  color: #63748a;
  font-size: 14px;
  line-height: 1.75;
}

.legal-shell .button,
.not-found-shell .button {
  margin-top: 24px;
}

.not-found-page {
  display: grid;
  place-items: center;
  text-align: center;
}

.error-code {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@keyframes enter-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (max-width: 1020px) {
  .nav-links {
    gap: 20px;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .workspace-visual {
    transform: scale(0.92);
    transform-origin: center right;
  }

  .floating-card {
    display: none;
  }

  .about-grid,
  .contact-grid {
    gap: 48px;
  }

  .benefits-layout {
    gap: 50px;
  }

  .service-row {
    grid-template-columns: 32px 48px minmax(210px, 1fr) minmax(180px, 0.8fr) 40px;
    gap: 16px;
  }

  .footer-main {
    gap: 34px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 36px, 680px);
  }

  .menu-button {
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid #d9e2ee;
    border-radius: 9px;
  }

  .menu-button span {
    width: 18px;
    height: 2px;
    background: var(--navy-900);
  }

  .nav-links {
    position: absolute;
    inset: 68px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    padding: 14px;
    border: 1px solid #dce5f0;
    border-radius: 14px;
    background: white;
    box-shadow: 0 24px 50px rgba(9, 26, 51, 0.16);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 11px 12px;
  }

  .nav-links .button {
    margin-top: 5px;
  }

  .hero {
    padding: 126px 0 58px;
  }

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

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .hero-notes {
    justify-content: center;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .workspace-visual {
    width: min(580px, 100%);
    min-height: 430px;
    margin-inline: auto;
    transform: none;
  }

  .value-grid {
    grid-template-columns: 1fr;
    padding-block: 12px;
  }

  .value-grid > div,
  .value-grid > div:first-child,
  .value-grid > div:last-child {
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid #e3eaf3;
  }

  .value-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 86px 0;
  }

  .about-grid,
  .benefits-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .contact-grid {
    gap: 48px;
  }

  .about-panel {
    width: min(100%, 600px);
  }

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

  .benefits-layout {
    gap: 40px;
  }

  .featured-heading,
  .cta-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-notice {
    margin: -8px 0 0;
  }

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

  .service-row {
    grid-template-columns: 32px 45px 1fr 40px;
  }

  .service-row ul {
    display: none;
  }

  .cta-content {
    align-items: flex-start;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 500px);
  }

  .site-header {
    height: 68px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    padding-top: 108px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .hero-copy > p {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-notes {
    gap: 10px 16px;
  }

  .workspace-visual {
    min-height: 320px;
    margin-top: 12px;
  }

  .workspace-window {
    top: 20px;
    width: 100%;
    transform: none;
  }

  .workspace-body {
    min-height: 250px;
    grid-template-columns: 40px 1fr;
  }

  .workspace-content {
    padding: 20px 14px;
  }

  .workspace-sidebar {
    gap: 14px;
  }

  .resource-grid {
    gap: 6px;
  }

  .resource-card {
    min-height: 90px;
    padding: 8px;
  }

  .resource-icon {
    margin-bottom: 10px;
  }

  .workspace-bottom {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .section-header h2 {
    font-size: 35px;
  }

  .category-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    margin-top: 38px;
  }

  .category-card {
    min-height: 265px;
  }

  .benefit-item {
    padding: 20px 0;
  }

  .product-visual {
    height: 210px;
  }

  .visual-layout {
    grid-template-columns: 28px 1fr 0.9fr;
    gap: 12px;
    padding-right: 16px;
  }

  .visual-art {
    height: 105px;
  }

  .product-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-row {
    grid-template-columns: 34px 1fr 38px;
    gap: 12px;
  }

  .service-number {
    display: none;
  }

  .service-copy h3 {
    font-size: 14px;
  }

  .service-copy p {
    font-size: 11px;
  }

  .cta-section {
    padding: 66px 0;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px 24px;
    padding-block: 55px 45px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-main > div:nth-child(4) {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .legal-shell {
    padding: 30px 22px;
  }
}

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