:root {
  --bg: #f7f8fc;
  --surface: #ffffff;
  --surface-soft: #f0f2f8;
  --ink: #15182a;
  --muted: #646a7b;
  --line: #e4e7ef;
  --purple: #312783;
  --purple-2: #4a3bb8;
  --blue: #009fe3;
  --purple-soft: #eceafa;
  --shadow: 0 24px 70px rgba(25, 27, 55, 0.12);
  --font-brand: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-brand);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 10px 14px 10px 16px;
  border: 1px solid rgba(224, 226, 237, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 28px rgba(20, 24, 47, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 88px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: #505668;
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}

.nav a:hover,
.footer-links a:hover,
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.header-cta {
  justify-self: end;
  padding: 10px 16px;
  border-radius: 11px;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 72px;
  min-height: 760px;
  padding-top: 74px;
  padding-bottom: 94px;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #aeb9ff;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 25px;
  font-size: clamp(48px, 5.9vw, 76px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 760;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.042em;
  font-weight: 740;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 720;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 12px 24px rgba(49, 39, 131, 0.2);
}

.button-primary:hover {
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 31px;
  color: #676d7d;
  font-size: 13px;
  font-weight: 650;
}

.hero-meta span::before {
  content: "•";
  margin-right: 8px;
  color: var(--blue);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -70px -55px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 159, 227, 0.14), rgba(49, 39, 131, 0.09) 46%, transparent 72%);
}

.tt-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(210, 214, 228, 0.95);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-5deg) rotateX(1.5deg);
}

.tt-browserbar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  padding: 13px 15px;
  border-bottom: 1px solid #eceef4;
  background: rgba(251, 251, 253, 0.95);
}

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

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d3d6df;
}

.browser-address {
  justify-self: center;
  width: min(240px, 100%);
  padding: 5px 14px;
  border-radius: 8px;
  color: #9ca1af;
  background: #f0f2f6;
  text-align: center;
  font-size: 10px;
  font-weight: 650;
}

.tt-preview-content {
  position: relative;
  filter: blur(1.35px);
  opacity: 0.94;
  transform: scale(1.012);
  transform-origin: center;
}

.tt-appbar {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  padding: 0 22px;
  border-bottom: 1px solid #eceef4;
  background: #fff;
}

.tt-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
  color: #2b2e40;
  font-size: 11px;
  font-weight: 760;
}

.tt-brand img {
  width: 23px;
  height: 25px;
  object-fit: contain;
}

.tt-nav-pills {
  display: flex;
  gap: 7px;
}

.tt-nav-pills span {
  padding: 7px 9px;
  border-radius: 8px;
  color: #7b8091;
  font-size: 9px;
  font-weight: 700;
}

.tt-nav-pills .active {
  color: var(--purple);
  background: var(--purple-soft);
}

.tt-user-chip {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #24263b;
  font-size: 9px;
  font-weight: 800;
}

.tt-main {
  padding: 24px 24px 25px;
  background: #f8f9fc;
}

.tt-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 19px;
}

.tt-company {
  margin: 0 0 3px;
  color: var(--purple);
  font-size: 9px;
  font-weight: 760;
}

.tt-heading-row h3 {
  margin: 0;
  font-size: 19px;
  color: #202336;
}

.tt-range {
  margin: 2px 0 0;
  color: #9297a8;
  font-size: 9px;
}

.tt-week-switch {
  display: flex;
  gap: 6px;
}

.tt-week-switch button {
  width: 29px;
  height: 29px;
  border: 1px solid #e0e3eb;
  border-radius: 8px;
  color: #666c7d;
  background: #fff;
}

.tt-summary-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 12px;
}

.tt-summary-strip > div {
  padding: 11px 12px;
  border: 1px solid #e6e8ef;
  border-radius: 10px;
  background: #fff;
}

.tt-summary-strip span,
.tt-summary-strip strong {
  display: block;
}

.tt-summary-strip span {
  margin-bottom: 2px;
  color: #a0a4b1;
  font-size: 8px;
}

.tt-summary-strip strong {
  color: #313548;
  font-size: 10px;
}

.tt-days {
  display: grid;
  gap: 7px;
}

.tt-day-row {
  display: grid;
  grid-template-columns: 1.25fr .82fr .82fr .9fr .45fr;
  align-items: center;
  gap: 8px;
  padding: 10px 11px;
  border: 1px solid #e5e8f0;
  border-radius: 10px;
  background: #fff;
}

.tt-day strong,
.tt-day span,
.tt-time small,
.tt-time b {
  display: block;
}

.tt-day strong {
  color: #323648;
  font-size: 9px;
}

.tt-day span,
.tt-time small {
  color: #a0a4b2;
  font-size: 7px;
}

.tt-time {
  padding: 5px 7px;
  border: 1px solid #e4e6ed;
  border-radius: 7px;
  background: #fbfcfe;
}

.tt-time b {
  color: #4c5060;
  font-size: 8px;
}

.tt-lunch {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #6e7383;
  font-size: 8px;
}

.tt-lunch i {
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  background: var(--purple);
  font-size: 8px;
  font-style: normal;
}

.tt-hours {
  color: #262a3d;
  text-align: right;
  font-size: 9px;
  font-weight: 760;
}

.muted-row {
  opacity: 0.78;
}

.tt-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  color: #8d92a2;
  font-size: 8px;
}

.tt-footer-row button {
  padding: 8px 13px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--purple);
  font-size: 8px;
  font-weight: 700;
}

.preview-haze {
  position: absolute;
  inset: 44px 0 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(240,242,248,0.13));
  backdrop-filter: blur(0.25px);
}

.philosophy-section {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 96px;
  padding-top: 118px;
  padding-bottom: 124px;
  border-top: 1px solid var(--line);
}

.philosophy-intro h2 {
  max-width: 690px;
}

.philosophy-copy {
  padding-top: 34px;
  color: var(--muted);
  font-size: 18px;
}

.philosophy-copy p + p {
  margin-top: 20px;
}

.philosophy-statement {
  padding-top: 8px;
  color: var(--ink);
  font-weight: 720;
}

.solutions-section {
  padding: 118px 0 126px;
  color: #fff;
  background: #15172a;
}

.solutions-head {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 30px 90px;
  align-items: end;
  margin-bottom: 46px;
}

.solutions-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.solutions-head h2 {
  margin: 0;
  max-width: 760px;
}

.solutions-head > p:last-child {
  margin: 0 0 4px;
  color: #b7bbc8;
  font-size: 17px;
}

.solution-stack {
  display: grid;
  gap: 24px;
}

.solution-card {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 72px;
  padding: 54px;
  border-radius: 26px;
}

.solution-card-dark {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #1d1f34;
}

.solution-card-web {
  color: var(--ink);
  background: #f7f8fc;
}

.solution-label {
  display: inline-block;
  margin-bottom: 18px;
  color: #858ddb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.solution-card-web .solution-label {
  color: var(--purple);
}

.solution-card h3 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.solution-lead {
  max-width: 600px;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 640;
}

.solution-card-dark .solution-lead {
  color: #f2f3f8;
}

.solution-card-dark .solution-copy > p:not(.solution-lead) {
  color: #b8bdca;
}

.solution-card-web .solution-copy > p:not(.solution-lead) {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  color: #d7dae4;
}

.feature-list li::before {
  content: "✓";
  display: inline-block;
  width: 24px;
  color: #5ac8fa;
  font-weight: 800;
}

.web-feature-list li {
  color: #4e5466;
}

.web-feature-list li::before {
  color: var(--purple);
}

.text-link {
  font-weight: 750;
  text-decoration: none;
}

.light-link {
  color: #fff;
}

.solution-metrics {
  display: grid;
  gap: 12px;
  align-content: center;
}

.metric-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 18px;
  padding: 23px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}

.metric-card strong {
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.metric-card span {
  color: #abb0c0;
  font-size: 14px;
}

.product-name-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.product-name-row h3 {
  margin-bottom: 16px;
}

.new-badge {
  margin-top: -12px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--purple);
  background: var(--purple-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.web-preview {
  align-self: center;
  overflow: hidden;
  border: 1px solid #dde0e9;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(29, 31, 61, 0.12);
  transform: rotate(1.2deg);
}

.web-preview-bar {
  display: flex;
  gap: 5px;
  padding: 13px 15px;
  border-bottom: 1px solid #eceef3;
  background: #fafbfc;
}

.web-preview-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d5d8df;
}

.web-preview-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid #edf0f4;
}

.web-preview-nav b {
  margin-right: auto;
  color: #232638;
  font-size: 10px;
  letter-spacing: .08em;
}

.web-preview-nav i {
  width: 31px;
  height: 5px;
  border-radius: 10px;
  background: #dfe2e8;
}

.web-preview-nav button {
  padding: 7px 9px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: #22263a;
  font-size: 7px;
}

.web-preview-hero {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 20px;
  padding: 35px 24px;
}

.web-preview-hero > div {
  align-self: center;
}

.web-preview-hero span,
.web-preview-hero strong,
.web-preview-hero p,
.web-preview-hero button {
  display: block;
  border: 0;
  border-radius: 10px;
}

.web-preview-hero span {
  width: 72px;
  height: 7px;
  margin-bottom: 12px;
  background: #d8d4f0;
}

.web-preview-hero strong {
  width: 100%;
  height: 16px;
  margin-bottom: 8px;
  background: #24273a;
}

.web-preview-hero strong.short {
  width: 72%;
}

.web-preview-hero p {
  width: 88%;
  height: 6px;
  margin: 15px 0 6px;
  background: #e2e4e9;
  box-shadow: 0 10px 0 #e2e4e9;
}

.web-preview-hero button {
  width: 66px;
  height: 22px;
  margin-top: 28px;
  background: var(--purple);
}

.web-preview-hero aside {
  min-height: 150px;
  border-radius: 15px;
  background: linear-gradient(145deg, #e6e3f8, #d8eff8);
}

.web-preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  padding: 0 24px 25px;
}

.web-preview-cards i {
  height: 52px;
  border: 1px solid #e5e7ed;
  border-radius: 10px;
  background: #fafbfc;
}

.process-section {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px;
  padding-top: 120px;
  padding-bottom: 125px;
}

.process-intro > p:not(.eyebrow) {
  max-width: 470px;
  color: var(--muted);
  font-size: 17px;
}

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

.process-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.process-grid article > span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--purple);
  font-size: 11px;
  font-weight: 800;
}

.process-grid article p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.interest-section {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 90px;
  padding-top: 120px;
  padding-bottom: 125px;
  border-top: 1px solid var(--line);
}

.interest-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
}

.contact-inline {
  display: grid;
  gap: 3px;
  margin-top: 28px;
}

.contact-inline span {
  color: #8a8f9e;
  font-size: 12px;
}

.contact-inline a {
  color: var(--purple);
  font-size: 18px;
  font-weight: 750;
  text-decoration: none;
}

.interest-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 18px 45px rgba(24, 28, 55, 0.06);
}

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

.interest-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 17px;
  color: #393e4e;
  font-size: 13px;
  font-weight: 750;
}

.interest-form label small {
  color: #858a99;
  font-weight: 500;
}

.interest-form input,
.interest-form textarea {
  width: 100%;
  border: 1px solid #dfe2ea;
  border-radius: 11px;
  outline: none;
  background: #fbfcfe;
  color: var(--ink);
}

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

.interest-form textarea {
  resize: vertical;
  min-height: 120px;
  padding: 12px 13px;
}

.interest-form input:focus,
.interest-form textarea:focus {
  border-color: #8179bf;
  box-shadow: 0 0 0 3px rgba(49, 39, 131, 0.08);
}

.consent-row {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px !important;
  color: #626879 !important;
  font-weight: 500 !important;
  line-height: 1.45;
}

.consent-row input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.consent-row a {
  color: var(--purple);
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: #53596b;
  font-size: 14px;
}

.form-status.success {
  color: #15724a;
}

.form-status.error {
  color: #b42318;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 90px;
  padding-top: 95px;
  padding-bottom: 105px;
  border-top: 1px solid var(--line);
}

.contact-lead {
  max-width: 610px;
  color: var(--muted);
  font-size: 17px;
}

.contact-card {
  align-self: center;
  padding: 27px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.contact-card > span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-card a {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 760;
  text-decoration: none;
}

.contact-card p {
  margin: 9px 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 50px;
  border-top: 1px solid var(--line);
}

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

.footer-brand img {
  width: 84px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand span {
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: #737889;
  font-size: 13px;
}

.footer-links a {
  text-decoration: none;
}

.privacy-page {
  width: min(800px, calc(100% - 40px));
  margin: 0 auto;
  padding: 50px 0 80px;
}

.privacy-page .brand {
  margin-bottom: 72px;
}

.privacy-page .brand-logo {
  width: 102px;
  height: 58px;
}

.privacy-page h1 {
  max-width: 700px;
  font-size: clamp(42px, 7vw, 68px);
}

.privacy-page h2 {
  margin-top: 42px;
  font-size: 28px;
}

.privacy-page p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.privacy-page a {
  color: var(--purple);
}

.privacy-back {
  display: inline-block;
  margin-top: 42px;
  font-weight: 700;
  text-decoration: none;
}

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

  .nav {
    display: none;
  }

  .hero,
  .philosophy-section,
  .solutions-head,
  .solution-card,
  .process-section,
  .interest-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 50px;
    min-height: auto;
    padding-top: 72px;
  }

  .hero-visual {
    max-width: 720px;
  }

  .philosophy-section,
  .process-section,
  .interest-section,
  .contact-section {
    gap: 44px;
  }

  .philosophy-copy {
    padding-top: 0;
  }

  .solutions-head {
    gap: 18px;
  }

  .solutions-head .eyebrow {
    margin-bottom: 0;
  }

  .solution-card {
    gap: 46px;
  }

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

  .metric-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    width: min(100% - 24px, 1180px);
    margin-top: 10px;
    padding: 8px 10px 8px 12px;
    border-radius: 14px;
  }

  .brand-logo {
    width: 72px;
    height: 42px;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 12px;
  }

  .section-shell {
    width: min(100% - 28px, 1160px);
  }

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

  h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero {
    padding-top: 58px;
    padding-bottom: 74px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .tt-window {
    transform: none;
  }

  .tt-main {
    padding: 18px 16px 20px;
  }

  .tt-nav-pills {
    display: none;
  }

  .tt-summary-strip {
    grid-template-columns: 1fr 1fr;
  }

  .tt-summary-strip > div:last-child {
    display: none;
  }

  .tt-day-row {
    grid-template-columns: 1.2fr .9fr .9fr .45fr;
  }

  .tt-lunch {
    display: none;
  }

  .philosophy-section,
  .process-section,
  .interest-section {
    padding-top: 84px;
    padding-bottom: 88px;
  }

  .solutions-section {
    padding: 84px 0 90px;
  }

  .solution-card {
    padding: 30px 24px;
    border-radius: 21px;
  }

  .solution-metrics,
  .process-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .web-preview {
    transform: none;
  }

  .web-preview-nav i:nth-of-type(2),
  .web-preview-nav i:nth-of-type(3) {
    display: none;
  }

  .interest-form {
    padding: 22px;
  }

  .contact-section {
    padding-top: 78px;
    padding-bottom: 82px;
  }

  .site-footer {
    width: min(100% - 28px, 1160px);
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 34px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
