:root {
  --bg: #f7f6f2;
  --paper: #fbfaf7;
  --ink: #101211;
  --muted: #626865;
  --line: rgba(16, 18, 17, 0.14);
  --line-strong: rgba(16, 18, 17, 0.26);
  --accent: #087f8c;
  --accent-strong: #075d68;
  --warm: #b39452;
  --glass-x: 68%;
  --glass-y: 34%;
  --glass-tilt-x: 0deg;
  --glass-tilt-y: 0deg;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
.modal-shell::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 48px));
  padding: 10px 12px;
  border: 1px solid rgba(16, 18, 17, 0.08);
  border-radius: 999px;
  background:
    radial-gradient(circle at var(--glass-x) 0%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.18) 34%, transparent 62%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(251, 250, 247, 0.42));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(16, 18, 17, 0.06),
    0 18px 64px rgba(16, 18, 17, 0.08);
  backdrop-filter: blur(24px) saturate(1.24);
  transform: translateX(-50%);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    width 260ms ease,
    padding 260ms ease,
    left 260ms ease,
    right 260ms ease,
    transform 260ms ease;
}

.site-header.is-scrolled {
  background:
    radial-gradient(circle at var(--glass-x) 0%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.2) 34%, transparent 62%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(251, 250, 247, 0.64));
  border-color: rgba(16, 18, 17, 0.12);
  box-shadow: 0 12px 44px rgba(16, 18, 17, 0.1);
}

.brand,
.nav,
.header-action,
.button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  padding-left: 4px;
  font-weight: 760;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  font-size: 13px;
}

.nav {
  gap: 3px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.nav a {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
}

.header-action {
  justify-self: end;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.header-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.site-header.is-collapsed:not(.is-expanded) {
  left: auto;
  right: clamp(12px, 3vw, 28px);
  grid-template-columns: 1fr;
  width: 58px;
  padding: 6px;
  gap: 0;
  transform: translateX(0);
}

.site-header.is-collapsed:not(.is-expanded) .brand,
.site-header.is-collapsed:not(.is-expanded) .nav,
.site-header.is-collapsed:not(.is-expanded) .header-action {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.92);
}

.site-header.is-collapsed:not(.is-expanded) .header-toggle {
  display: inline-flex;
}

.site-header.is-collapsed.is-expanded {
  left: 50%;
  right: auto;
  width: min(1180px, calc(100% - 48px));
  padding: 10px 12px;
  transform: translateX(-50%);
}

.site-header.is-collapsed.is-expanded .header-toggle {
  display: none;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(120px, 15vh, 180px) clamp(24px, 8vw, 128px) clamp(56px, 8vh, 96px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 246, 242, 0.98) 0%, rgba(247, 246, 242, 0.92) 30%, rgba(247, 246, 242, 0.5) 58%, rgba(247, 246, 242, 0.08) 100%),
    url("assets/hero-ai-network.jpg") center / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at var(--glass-x) var(--glass-y), rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.16) 13%, transparent 32%),
    linear-gradient(115deg, transparent 8%, rgba(255, 255, 255, 0.26) 28%, transparent 46%),
    linear-gradient(290deg, transparent 52%, rgba(8, 127, 140, 0.08) 72%, transparent 86%);
  mix-blend-mode: screen;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 26vh;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(247, 246, 242, 0), var(--bg));
}

.liquid-signature {
  position: absolute;
  top: 16vh;
  right: clamp(24px, 7vw, 116px);
  z-index: 1;
  width: min(38vw, 560px);
  height: min(58vh, 560px);
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 42px;
  background:
    radial-gradient(circle at var(--glass-x) var(--glass-y), rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04) 48%, rgba(8, 127, 140, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    inset 0 -26px 46px rgba(255, 255, 255, 0.1),
    0 34px 90px rgba(16, 18, 17, 0.1);
  backdrop-filter: blur(5px) saturate(1.3) contrast(1.04);
  opacity: 0.38;
  transform:
    perspective(900px)
    rotateX(var(--glass-tilt-x))
    rotateY(var(--glass-tilt-y))
    skewX(-8deg);
}

.liquid-signature::before,
.liquid-signature::after,
.liquid-signature span {
  position: absolute;
  pointer-events: none;
  content: "";
}

.liquid-signature::before {
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 32px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.26), transparent 38%, rgba(255, 255, 255, 0.2) 72%, transparent);
}

.liquid-signature::after {
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(98deg, transparent 0%, rgba(255, 255, 255, 0.42) 12%, transparent 25%),
    linear-gradient(158deg, transparent 48%, rgba(255, 255, 255, 0.34) 58%, transparent 67%);
  opacity: 0.72;
}

.liquid-signature span {
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), transparent);
  filter: blur(0.2px);
}

.liquid-signature span:nth-child(1) {
  top: 22%;
  left: 8%;
  width: 58%;
  transform: rotate(-14deg);
}

.liquid-signature span:nth-child(2) {
  top: 52%;
  right: 7%;
  width: 70%;
  transform: rotate(10deg);
}

.liquid-signature span:nth-child(3) {
  bottom: 18%;
  left: 20%;
  width: 46%;
  transform: rotate(-7deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 26px;
  font-size: clamp(52px, 7.2vw, 108px);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 0.94;
}

h2 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(38px, 6.2vw, 92px);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 0.96;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1;
}

.hero-lead {
  max-width: 780px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 100%;
}

.button {
  position: relative;
  overflow: hidden;
  justify-content: center;
  min-width: 178px;
  max-width: 100%;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 720;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button::before {
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: inherit;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.36), transparent 46%, rgba(255, 255, 255, 0.16));
  opacity: 0.72;
}

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

.button-primary {
  background: var(--ink);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 34px rgba(16, 18, 17, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #252827;
}

.button-secondary {
  border-color: var(--line);
  background:
    radial-gradient(circle at var(--glass-x) 0%, rgba(255, 255, 255, 0.86), transparent 42%),
    rgba(255, 255, 255, 0.46);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 12px 28px rgba(16, 18, 17, 0.06);
  backdrop-filter: blur(14px) saturate(1.18);
}

.section {
  width: 100%;
  padding: clamp(88px, 13vw, 180px) clamp(24px, 8vw, 128px);
}

.intro {
  min-height: 90svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  gap: clamp(40px, 8vw, 128px);
  align-items: center;
}

.intro-stack {
  display: grid;
  gap: 34px;
}

.intro-stack > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.55;
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  border-top: 1px solid var(--line-strong);
}

.hero-metrics div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.hero-metrics dt {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 760;
}

.hero-metrics dd {
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.section-heading {
  max-width: 1100px;
  margin-bottom: clamp(42px, 7vw, 88px);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.solution-card {
  min-height: 48svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.solution-card:last-child {
  border-right: 0;
}

.card-index {
  margin-bottom: auto;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 800;
}

.solution-card p,
.case-row p,
.steps p,
.partners-copy p,
.partner-panel li {
  color: var(--muted);
  line-height: 1.58;
}

.solution-card p {
  max-width: 460px;
  margin-bottom: 0;
  font-size: 16px;
}

.cases {
  min-height: 100svh;
  background: #101211;
  color: #ffffff;
}

.cases .eyebrow {
  color: #8ed7df;
}

.cases .section-heading {
  margin-bottom: clamp(36px, 6vw, 76px);
}

.case-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.case-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  min-height: 190px;
  padding: clamp(26px, 4vw, 46px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.case-row h3,
.case-row p {
  margin-bottom: 0;
}

.case-row p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(17px, 1.6vw, 22px);
}

.case-label {
  margin-bottom: 12px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process {
  min-height: 92svh;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.steps li {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.steps li:last-child {
  border-right: 0;
}

.steps span {
  display: block;
  margin-bottom: auto;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 820;
}

.steps p {
  margin-bottom: 0;
}

.seo-faq {
  min-height: 90svh;
  background: var(--paper);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.faq-list article {
  min-height: 250px;
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq-list article:nth-child(2n) {
  border-right: 0;
}

.faq-list article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.faq-list h3 {
  max-width: 540px;
}

.faq-list p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.partners {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(36px, 8vw, 128px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(16, 18, 17, 0.97), rgba(16, 18, 17, 0.84)),
    url("assets/hero-ai-network.jpg") right center / cover no-repeat;
  color: #ffffff;
}

.partners .eyebrow {
  color: #8ed7df;
}

.partners-copy p {
  max-width: 760px;
  margin-top: 28px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(18px, 1.8vw, 24px);
}

.partner-panel {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.partner-panel p {
  margin-bottom: 20px;
  font-weight: 740;
}

.partner-panel ul {
  display: grid;
  gap: 14px;
  padding-left: 18px;
  margin: 0 0 30px;
}

.partner-panel li {
  color: rgba(255, 255, 255, 0.72);
}

.partner-panel .button-primary {
  width: 100%;
  background: #ffffff;
  color: var(--ink);
  box-shadow: none;
}

.contact {
  min-height: 82svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(36px, 8vw, 120px);
  align-items: center;
}

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

.contact-copy p:last-child {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.55;
}

.contact-trigger {
  min-width: 230px;
}

.request-modal {
  width: min(960px, calc(100% - 32px));
  max-height: min(860px, calc(100svh - 32px));
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.request-modal:focus-visible {
  outline: 0;
}

.request-modal::backdrop {
  background: rgba(16, 18, 17, 0.38);
  backdrop-filter: blur(14px);
}

.modal-shell {
  position: relative;
  display: grid;
  gap: 24px;
  max-height: min(860px, calc(100svh - 32px));
  overflow: auto;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 32px;
  background:
    radial-gradient(circle at var(--glass-x) 0%, rgba(255, 255, 255, 0.94), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(247, 246, 242, 0.74));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 34px 100px rgba(16, 18, 17, 0.22);
  backdrop-filter: blur(24px) saturate(1.2);
}

.modal-heading {
  max-width: 760px;
  padding-right: 48px;
}

.modal-heading h2 {
  font-size: clamp(34px, 4.5vw, 58px);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 18, 17, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 28px;
  line-height: 1;
  backdrop-filter: blur(12px);
}

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

.request-form input[name="_honey"] {
  position: absolute;
  left: -9999px;
}

.request-form label {
  display: grid;
  gap: 8px;
}

.request-form span {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.request-form input,
.request-form textarea,
.request-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16, 18, 17, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  line-height: 1.35;
  padding: 13px 14px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.request-form textarea {
  resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus,
.request-form select:focus {
  border-color: rgba(8, 127, 140, 0.52);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 0 4px rgba(8, 127, 140, 0.09);
}

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

.request-form .button {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.thanks-page {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(80px, 12vw, 140px) clamp(24px, 8vw, 128px);
  background:
    linear-gradient(90deg, rgba(247, 246, 242, 0.98), rgba(247, 246, 242, 0.68)),
    url("assets/hero-ai-network.jpg") right center / cover no-repeat;
}

.thanks-panel {
  max-width: 820px;
}

.thanks-panel h1 {
  font-size: clamp(48px, 7vw, 96px);
}

.thanks-panel p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.55;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(24px, 8vw, 128px) 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(247, 246, 242, 0.99) 0%, rgba(247, 246, 242, 0.95) 46%, rgba(247, 246, 242, 0.42) 100%),
      url("assets/hero-ai-network.jpg") 72% 50% / cover no-repeat;
  }

  .liquid-signature {
    top: auto;
    right: -18vw;
    bottom: 8vh;
    width: 72vw;
    height: 34vh;
    opacity: 0.2;
  }

  .intro,
  .partners,
  .contact {
    grid-template-columns: 1fr;
  }

  .solution-grid,
  .steps,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-card:nth-child(2),
  .steps li:nth-child(2) {
    border-right: 0;
  }

  .solution-card:nth-child(3),
  .steps li:nth-child(3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 8px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-action {
    padding-inline: 14px;
    font-size: 13px;
  }

  .hero {
    min-height: 100svh;
    padding: 114px 20px 42px;
    background:
      linear-gradient(180deg, rgba(247, 246, 242, 0.99) 0%, rgba(247, 246, 242, 0.97) 48%, rgba(247, 246, 242, 0.58) 100%),
      url("assets/hero-ai-network.jpg") 74% 100% / auto 50% no-repeat;
  }

  .liquid-signature {
    right: -28vw;
    bottom: 12vh;
    width: 104vw;
    height: 28vh;
    border-radius: 30px;
    opacity: 0.16;
    transform: skewX(-8deg);
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(39px, 11.6vw, 52px);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .hero-lead {
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.5;
  }

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

  .button,
  .contact .button {
    width: 100%;
  }

  .section {
    padding: 82px 20px;
  }

  .intro {
    min-height: auto;
    gap: 42px;
  }

  .hero-metrics div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .solution-grid,
  .steps,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .solution-card,
  .solution-card:nth-child(2),
  .solution-card:nth-child(3),
  .steps li,
  .steps li:nth-child(2),
  .steps li:nth-child(3),
  .faq-list article,
  .faq-list article:nth-child(2n),
  .faq-list article:nth-last-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-top: 1px solid var(--line);
    border-bottom: 0;
  }

  .solution-card:first-child,
  .steps li:first-child,
  .faq-list article:first-child {
    border-top: 0;
  }

  .solution-card,
  .faq-list article {
    padding: 30px 0;
  }

  .card-index,
  .steps span {
    margin-bottom: 56px;
  }

  .case-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .steps li {
    min-height: 250px;
    padding: 24px 0;
  }

  .partners {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 96px;
  }

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

  .request-modal {
    width: calc(100% - 20px);
    max-height: calc(100svh - 20px);
  }

  .modal-shell {
    max-height: calc(100svh - 20px);
    padding: 20px;
    border-radius: 24px;
  }

  .modal-heading {
    padding-right: 42px;
  }

  .footer {
    padding-inline: 20px;
  }
}

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

  .liquid-signature {
    transform: skewX(-8deg) !important;
  }
}
