:root {
  --bg: #edf2f7;
  --surface: #ffffff;
  --surface-soft: #f4f8fb;
  --surface-warm: #fff7ed;
  --ink: #172126;
  --muted: #607076;
  --line: #dde8e5;
  --brand: #009cb1;
  --brand-strong: #007989;
  --brand-soft: #d7f2f0;
  --card-bg: #ffffff;
  --shadow: 0 18px 54px rgba(25, 46, 52, 0.10);
  --shadow-hover: 0 22px 60px rgba(25, 46, 52, 0.14);
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  --text-body: clamp(17px, 1.1vw, 19px);
  --text-small: 15px;
  --text-eyebrow: 12px;
  --text-title: clamp(40px, 3.45vw, 64px);
  --text-section: clamp(28px, 2.1vw, 36px);
  --text-subtitle: clamp(21px, 1.45vw, 25px);
  --button-radius: 6px;
  --nav-button-inset: 8px;
  --nav-radius: calc(var(--button-radius) + var(--nav-button-inset));
  --header-inset: 8px;
  --header-radius: calc(var(--nav-radius) + var(--header-inset));
  --header-radius-mobile: calc(var(--nav-radius) + 12px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  isolation: isolate;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #f8fbfd 0%, var(--bg) 48%, #f8fbfd 100%);
  color: var(--ink);
  font-family: var(--font-main);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, rgba(0, 156, 177, 0.07), rgba(255, 255, 255, 0) 30%),
    linear-gradient(240deg, rgba(213, 199, 255, 0.18), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(248, 251, 253, 0), rgba(237, 242, 247, 0.94));
  background-size: 140% 140%, 140% 140%, 100% 100%;
  content: "";
  pointer-events: none;
  animation: ambient-shift 18s ease-in-out infinite alternate;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 156, 177, 0.064) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(0, 156, 177, 0.054) 0 1px, transparent 1px 100%),
    linear-gradient(90deg, rgba(0, 156, 177, 0.028) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(0, 156, 177, 0.026) 0 1px, transparent 1px 100%);
  background-position: 0 0, 0 0, 0 0, 0 0;
  background-size: 84px 84px, 84px 84px, 21px 21px, 21px 21px;
  content: "";
  mask-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.56) 42%, rgba(0, 0, 0, 0.68)),
    linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.90) 9%, rgba(0, 0, 0, 0.82) 91%, transparent);
  mask-composite: intersect;
  opacity: 0.72;
  pointer-events: none;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

section[id] {
  scroll-margin-top: 138px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  width: min(1180px, calc(100vw - 40px));
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 36px);
  margin: 18px auto 0;
  padding: var(--header-inset);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--header-radius);
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(24px) saturate(1.2);
  box-shadow:
    0 18px 42px rgba(52, 74, 92, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.74) inset;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  padding: var(--nav-button-inset);
  border-radius: var(--nav-radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.76) inset,
    0 8px 18px rgba(31, 42, 46, 0.04);
  text-decoration: none;
}

.brand-link img {
  display: block;
  width: auto;
  max-width: min(228px, 45vw);
  height: 54px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: var(--nav-button-inset);
  border: 0;
  outline: 0;
  border-radius: var(--nav-radius);
  background: rgba(255, 255, 255, 0.62);
  color: #334247;
  font-size: 18px;
  font-weight: 400;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.76) inset,
    0 8px 18px rgba(31, 42, 46, 0.04);
}

.site-nav a {
  position: relative;
  z-index: 0;
  appearance: none;
  display: inline-flex;
  height: auto;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  overflow: visible;
  padding: 0.58em 1.45em;
  border: 1px solid rgba(210, 221, 224, 0.70);
  border-radius: var(--button-radius);
  background: rgba(255, 255, 255, 0.68);
  color: #090909;
  cursor: pointer;
  fill: currentcolor;
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  touch-action: manipulation;
  user-select: none;
  box-shadow: 0 1px 2px rgba(31, 42, 46, 0.03);
  transition:
    background-color 300ms ease,
    border-color 450ms ease,
    color 450ms ease,
    box-shadow 300ms ease;
  -webkit-user-select: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #ffffff;
  border-color: rgba(0, 156, 177, 0.24);
  color: #090909;
  box-shadow:
    0 10px 24px rgba(31, 42, 46, 0.10),
    0 5px 16px rgba(0, 156, 177, 0.10);
}

.site-nav a:active {
  color: #666;
  outline: none;
  box-shadow:
    0 4px 12px rgba(31, 42, 46, 0.08),
    0 2px 8px rgba(0, 156, 177, 0.08);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(clamp(18px, 4vw, 54px), 1fr)
    minmax(360px, 560px)
    minmax(440px, 620px)
    minmax(clamp(18px, 4vw, 54px), 1fr);
  gap: clamp(38px, 5vw, 76px);
  align-items: center;
  min-height: clamp(540px, 70vh, 740px);
  max-width: none;
  margin: 0 auto;
  padding: clamp(70px, 6vw, 96px) 0 clamp(38px, 4.5vw, 66px);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 18px 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(238, 247, 245, 0.18));
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 68%);
  opacity: 0.64;
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 14%, rgba(0, 156, 177, 0.16) 14% calc(14% + 1px), transparent calc(14% + 1px) 100%),
    linear-gradient(180deg, transparent 0 34%, rgba(0, 156, 177, 0.14) 34% calc(34% + 1px), transparent calc(34% + 1px) 100%),
    linear-gradient(90deg, transparent 0 82%, rgba(0, 156, 177, 0.14) 82% calc(82% + 1px), transparent calc(82% + 1px) 100%),
    linear-gradient(180deg, transparent 0 62%, rgba(0, 156, 177, 0.12) 62% calc(62% + 1px), transparent calc(62% + 1px) 100%);
  content: "";
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 44%, transparent 61%, rgba(0, 0, 0, 0.34));
  opacity: 0.56;
  pointer-events: none;
}

.hero-media {
  position: relative;
  z-index: 1;
  grid-column: 3 / 5;
  grid-row: 1;
  justify-self: stretch;
  width: 100%;
  max-height: none;
  overflow: hidden;
  border: 1px solid rgba(221, 232, 229, 0.62);
  border-right: 0;
  border-radius: 34px 0 0 34px;
  background: var(--surface-soft);
  box-shadow:
    0 24px 70px rgba(25, 46, 52, 0.12),
    0 18px 46px rgba(66, 133, 244, 0.08);
  transform: translate3d(0, var(--hero-lift, 0px), 0);
  transition:
    box-shadow 220ms ease,
    transform 280ms ease;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.58), rgba(247, 250, 248, 0.08) 32%, rgba(247, 250, 248, 0) 62%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 36%);
  content: "";
}

.hero-media img {
  display: block;
  width: 100%;
  height: clamp(430px, 48vw, 610px);
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 560ms ease;
}

.hero-inner {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  display: flex;
  min-height: 500px;
  max-width: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4vw, 56px) 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-strong);
  font-size: var(--text-eyebrow);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: none;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: var(--text-title);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #3d4d52;
  font-size: clamp(20px, 1.65vw, 24px);
  line-height: 1.5;
}

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

.button {
  position: relative;
  display: inline-flex;
  z-index: 1;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  min-width: 9em;
  min-height: 3.05em;
  padding: 0.72em 1.72em;
  border: 1px solid rgba(221, 232, 229, 0.72);
  border-radius: var(--button-radius);
  background: #f8fbfd;
  color: #090909;
  cursor: pointer;
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  box-shadow:
    6px 6px 12px #c5c5c5,
    -6px -6px 12px #ffffff;
  transition:
    border-color 200ms ease-in,
    color 200ms ease-in;
}

.button::before,
.button::after {
  position: absolute;
  display: block;
  border-radius: 50%;
  content: "";
  z-index: -1;
}

.button::before {
  top: 100%;
  left: 50%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  transition: all 500ms 100ms cubic-bezier(0.55, 0, 0.1, 1);
}

.button::after {
  top: 180%;
  left: 55%;
  width: 160%;
  height: 190%;
  background-color: var(--brand);
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  transition: all 500ms 100ms cubic-bezier(0.55, 0, 0.1, 1);
}

.button:hover,
.button:focus-visible {
  border-color: var(--brand);
  color: #ffffff;
}

.button:hover::before,
.button:focus-visible::before {
  top: -35%;
  background-color: var(--brand);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button:hover::after,
.button:focus-visible::after {
  top: -45%;
  background-color: var(--brand);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button:active {
  color: #666;
  box-shadow:
    inset 4px 4px 12px #c5c5c5,
    inset -4px -4px 12px #ffffff;
}

.site-nav a:focus-visible,
.contact-list a:focus-visible {
  outline: 3px solid rgba(0, 156, 177, 0.28);
  outline-offset: 3px;
}

.button:focus-visible {
  outline: 3px solid rgba(0, 156, 177, 0.28);
  outline-offset: 4px;
}

.summary-band,
.section,
.section-contrast,
.contact-section {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(44px, 5vw, 64px) clamp(18px, 4vw, 28px);
}

.summary-band {
  padding-top: 0;
}

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

.summary-grid div,
.capability,
.process li {
  border: 0;
  border-radius: 11px;
  background: var(--card-bg);
  box-shadow:
    10px 10px 28px #e3e3e3,
    -10px -10px 28px #ffffff;
  transition:
    box-shadow 300ms ease;
}

.summary-grid div {
  min-height: 108px;
  padding: 22px;
}

.summary-grid p {
  margin: 0;
  color: #344449;
  font-size: var(--text-body);
  line-height: 1.5;
}

.section-heading {
  max-width: 680px;
  margin-bottom: clamp(22px, 3vw, 32px);
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: var(--text-section);
  line-height: 1.14;
  font-weight: 500;
}

.task-list {
  display: grid;
}

.task-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.task-list article:first-child {
  border-top: 1px solid var(--line);
}

.task-list span {
  color: var(--ink);
  font-size: var(--text-subtitle);
  font-weight: 500;
  line-height: 1.18;
}

.task-list p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.55;
}

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

.capability {
  min-height: 154px;
  padding: clamp(22px, 3vw, 28px);
}

.capability:nth-child(5) {
  grid-column: 1 / -1;
  min-height: 126px;
}

.capability h3 {
  margin-bottom: 12px;
  font-size: var(--text-subtitle);
  line-height: 1.18;
  font-weight: 500;
}

.capability p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.section-contrast {
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(237, 247, 245, 0.94), rgba(247, 250, 248, 0.94));
}

.section-contrast .section-heading,
.section-contrast .process {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  list-style: none;
}

.process li {
  min-height: 148px;
  padding: 22px;
}

.process span {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.18;
}

.process p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(300px, 0.42fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
  overflow: hidden;
}

.contact-section::before {
  position: absolute;
  top: 50%;
  left: clamp(-220px, -10vw, -90px);
  width: clamp(600px, 62vw, 1000px);
  aspect-ratio: 1;
  background: url("assets/kb-automation-logo.svg") center / contain no-repeat;
  content: "";
  opacity: 0.075;
  pointer-events: none;
  transform: translateY(-50%);
}

.contact-section > * {
  position: relative;
  z-index: 1;
}

.contact-copy {
  max-width: 720px;
}

.contact-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.55;
}

.contact-button {
  margin-top: 30px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 18px;
  border: 0;
  border-radius: 11px;
  background: var(--card-bg);
  box-shadow:
    10px 10px 28px #e3e3e3,
    -10px -10px 28px #ffffff;
  font-style: normal;
  transition: box-shadow 300ms ease;
}

.contact-list a,
.contact-list div {
  display: grid;
  position: relative;
  gap: 6px;
  padding: 16px;
  border-radius: 16px;
  background: #f7faf8;
  text-decoration: none;
  transition: background-color 160ms ease;
}

.contact-list a[data-copy-value] {
  cursor: copy;
}

.contact-list a[data-copy-value]::before {
  position: absolute;
  top: 16px;
  right: 14px;
  max-width: calc(100% - 28px);
  color: rgba(96, 112, 118, 0.42);
  content: "Нажмите, чтобы скопировать";
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 160ms ease,
    color 160ms ease;
}

.contact-list a[data-copy-value]:hover::before,
.contact-list a[data-copy-value]:focus-visible::before {
  color: rgba(96, 112, 118, 0.58);
  opacity: 0.72;
}

.contact-list a[data-copy-status]::before {
  opacity: 0;
}

.contact-list a[data-copy-value]::after {
  position: absolute;
  top: 14px;
  right: 14px;
  max-width: calc(100% - 28px);
  padding: 5px 9px;
  border-radius: 6px;
  background: rgba(0, 156, 177, 0.13);
  color: var(--brand-strong);
  content: attr(data-copy-status);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.contact-list a[data-copy-status]::after {
  opacity: 1;
  transform: translateY(0);
}

.contact-list a.is-copy-failed::after {
  background: rgba(145, 60, 45, 0.12);
  color: #8d3e2d;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  background: var(--brand-soft);
}

.contact-list span {
  color: var(--muted);
  font-size: var(--text-small);
  font-weight: 500;
}

.contact-list strong {
  color: var(--ink);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.12;
  font-weight: 500;
}

.contact-list a strong {
  color: var(--brand-strong);
}

.copy-live {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-footer {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  background: rgba(248, 251, 253, 0.38);
  backdrop-filter: blur(14px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 560ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes ambient-shift {
  from {
    background-position: 0% 0%, 100% 0%, 0 0;
  }

  to {
    background-position: 28% 16%, 72% 28%, 0 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  .summary-grid div:hover,
  .capability:hover,
  .process li:hover,
  .contact-list:hover {
    box-shadow:
      8px 8px 22px #dddddd,
      -8px -8px 22px #ffffff;
  }

  .hero-media:hover {
    box-shadow: 0 28px 70px rgba(25, 46, 52, 0.16);
  }

  .hero-media:hover img {
    transform: scale(1.035);
  }
}

@media (max-width: 1060px) {
  .hero {
    display: block;
    min-height: auto;
    padding-right: clamp(18px, 4vw, 28px);
    padding-left: clamp(18px, 4vw, 28px);
  }

  .hero-media {
    position: absolute;
    grid-column: auto;
    grid-row: auto;
    right: clamp(18px, 4vw, 28px);
    bottom: clamp(42px, 5vw, 76px);
    width: min(44vw, 610px);
    border-right: 1px solid rgba(221, 232, 229, 0.62);
    border-radius: var(--header-radius-mobile);
    opacity: 0.34;
    transform: none;
  }

  .hero-inner {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-media::after {
    background: rgba(247, 250, 248, 0.26);
  }

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

@media (max-width: 820px) {
  section[id] {
    scroll-margin-top: 18px;
  }

  body::after {
    background-size: 72px 72px, 72px 72px, 18px 18px, 18px 18px;
    opacity: 0.46;
  }

  .site-header {
    position: relative;
    top: auto;
    width: calc(100vw - 36px);
    margin-top: 16px;
    padding: 12px;
    border-radius: var(--header-radius-mobile);
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    padding: var(--nav-button-inset);
    border-radius: var(--nav-radius);
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    inset: auto 18px 24px 18px;
    width: auto;
    max-height: none;
    border-radius: 28px;
    opacity: 0.16;
    transform: none;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(247, 250, 248, 0.82), rgba(247, 250, 248, 0.28) 54%, rgba(247, 250, 248, 0.46)),
      linear-gradient(90deg, rgba(247, 250, 248, 0.34), rgba(247, 250, 248, 0));
  }

  .hero-media img {
    height: 420px;
  }

  .hero-inner {
    min-height: auto;
    padding: 48px 0 80px;
  }

  .summary-grid,
  .section-heading,
  .task-list article,
  .capability-list,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .summary-grid {
    gap: 10px;
  }

  .section-heading {
    max-width: 100%;
  }

  .capability:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .brand-link img {
    max-width: min(252px, 82vw);
    height: 56px;
  }

  .site-nav {
    font-size: 13px;
  }

  .site-nav a {
    min-height: 34px;
    padding: 7px 10px;
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  h1 {
    font-size: clamp(34px, 9.4vw, 48px);
    line-height: 1.04;
    font-weight: 500;
    white-space: normal;
  }

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

  .summary-band,
  .section,
  .section-contrast,
  .contact-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 27px;
    line-height: 1.16;
  }

  .summary-grid div,
  .capability,
  .process li {
    border-radius: 11px;
  }

  .summary-grid div,
  .capability {
    min-height: auto;
    padding: 20px;
  }

  .task-list article {
    gap: 8px;
    padding: 16px 0;
  }

  .process li {
    min-height: auto;
    padding: 20px;
  }

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

  .contact-list {
    padding: 12px;
  }

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

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