:root {
  --bg: #f8f8fb;
  --paper: #ffffff;
  --ink: #070914;
  --text: #151724;
  --muted: #4f5263;
  --soft: #8a8d9b;
  --purple: #5f2df3;
  --purple-dark: #481ac5;
  --purple-soft: #efe9ff;
  --line: rgba(7, 9, 20, 0.12);
  --shadow: 0 22px 70px rgba(45, 35, 90, 0.11);
  --radius: 8px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 36px rgba(25, 25, 50, 0.08);
}

.nav {
  width: min(calc(100% - 96px), 1460px);
  min-height: 82px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 36px;
  margin-inline: auto;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 22px;
}

.menu-mark {
  display: none;
  gap: 4px;
  width: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--purple);
  cursor: pointer;
}

.menu-mark span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-mark.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-mark.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-mark.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 1.5rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.brand img {
  display: block;
  width: 182px;
  height: auto;
}

.brand span {
  display: none;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.1vw, 16px);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 650;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(95, 45, 243, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #f7f3ff);
  box-shadow: 0 10px 28px rgba(45, 35, 90, 0.06);
  padding: 0 14px;
  white-space: nowrap;
  transition: color 160ms ease;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--purple);
  border-color: rgba(95, 45, 243, 0.34);
  box-shadow: 0 14px 36px rgba(95, 45, 243, 0.12);
}

.nav-select:hover,
.nav-select.is-active {
  color: var(--purple);
  border-color: rgba(95, 45, 243, 0.34);
  box-shadow: 0 14px 36px rgba(95, 45, 243, 0.12);
}

.nav-select {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: auto;
  min-width: 118px;
  min-height: 38px;
  border: 1px solid rgba(95, 45, 243, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #f7f3ff);
  box-shadow: 0 10px 28px rgba(45, 35, 90, 0.06);
  color: var(--ink);
  padding: 0 34px 0 16px;
}

.nav-select span {
  display: inline-flex;
  pointer-events: none;
}

.nav-select::after {
  content: "⌄";
  position: absolute;
  right: 14px;
  margin-left: 8px;
  color: var(--purple);
  font-size: 0.8rem;
  pointer-events: none;
}

.nav-select select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  appearance: none;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 650;
  opacity: 0;
  cursor: pointer;
  outline: 0;
}

.nav-select select:focus-visible {
  border-radius: 4px;
  box-shadow: 0 0 0 3px rgba(95, 45, 243, 0.16);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn::after,
.text-link::after {
  content: "→";
  margin-left: 16px;
  transition: transform 180ms ease;
}

.btn:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.btn:hover::after,
.text-link:hover::after {
  transform: translateX(4px);
}

.btn:focus-visible,
.text-link:focus-visible,
.nav-menu a:focus-visible {
  outline: 3px solid rgba(95, 45, 243, 0.22);
  outline-offset: 4px;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 14px 34px rgba(95, 45, 243, 0.28);
}

.btn-secondary {
  border-color: rgba(7, 9, 20, 0.34);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.hero {
  min-height: 760px;
  display: grid;
  align-items: end;
  padding-top: 82px;
  background:
    linear-gradient(90deg, rgba(248, 248, 251, 0.98) 0%, rgba(248, 248, 251, 0.86) 34%, rgba(248, 248, 251, 0.22) 66%, rgba(248, 248, 251, 0.02) 100%),
    linear-gradient(180deg, rgba(248, 248, 251, 0) 62%, rgba(248, 248, 251, 0.95) 100%),
    url("assets/hero-workcode.png") right center / cover no-repeat;
}

.hero-inner,
.section-shell,
.cta-band,
.site-footer {
  width: min(calc(100% - 96px), 1460px);
  margin-inline: auto;
}

.hero-inner {
  padding: 58px 0 46px;
}

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

.eyebrow {
  margin: 0 0 22px;
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(2.85rem, 5.35vw, 4.95rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

h1 span,
h2 span {
  color: var(--purple);
}

h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.1rem, 3.6vw, 3.35rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.04rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 28px;
  color: var(--text);
  font-size: 1.02rem;
}

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

.hero-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 78px;
}

.hero-capabilities article {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  gap: 18px;
  min-height: 72px;
  padding: 0 34px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.hero-capabilities article:first-child {
  border-left: 0;
  padding-left: 0;
}

.hero-capabilities strong {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.3;
}

.cap-icon,
.line-icon {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  color: var(--purple);
}

.cap-icon::before,
.cap-icon::after,
.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
}

.cap-automation::before,
.line-icon::before {
  inset: 5px;
  border: 2px solid currentColor;
  transform: rotate(45deg);
}

.cap-systems::before {
  left: 7px;
  top: 7px;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 2px;
  box-shadow: 13px 0 0 -2px #fff, 13px 0 0 0 currentColor, 0 13px 0 -2px #fff, 0 13px 0 0 currentColor, 13px 13px 0 -2px #fff, 13px 13px 0 0 currentColor;
}

.cap-infra::before {
  left: 5px;
  right: 5px;
  top: 5px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 2px;
  box-shadow: 0 10px 0 -2px #fff, 0 10px 0 0 currentColor, 0 20px 0 -2px #fff, 0 20px 0 0 currentColor;
}

.cap-infra::after {
  left: 10px;
  top: 9px;
  width: 4px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 10px 0 currentColor, 0 20px 0 currentColor;
}

.cap-integration::before {
  width: 21px;
  height: 10px;
  left: 1px;
  top: 12px;
  border: 2px solid currentColor;
  border-radius: 999px;
  transform: rotate(-45deg);
}

.cap-integration::after {
  width: 21px;
  height: 10px;
  right: 1px;
  top: 12px;
  border: 2px solid currentColor;
  border-radius: 999px;
  transform: rotate(-45deg);
}

.cap-consulting::before {
  left: 8px;
  top: 6px;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 40% 40% 50% 50%;
}

.cap-consulting::after {
  left: 13px;
  top: 13px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.cap-data::before {
  inset: 6px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.cap-data::after {
  inset: 13px;
  background: currentColor;
  border-radius: 50%;
}

.section-shell {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.section-grid,
.why-grid,
.case-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 64px;
  align-items: start;
}

.section-heading p:not(.eyebrow) {
  max-width: 430px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--purple);
  font-weight: 850;
}

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

.stat-card,
.capability,
.case-card {
  min-height: 230px;
  padding: 0 42px;
  border-left: 1px solid var(--line);
}

.stat-card {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 280px;
}

.stat-card strong {
  display: block;
  margin-bottom: 26px;
  color: var(--purple);
  font-size: 2rem;
  line-height: 1;
}

.line-icon {
  margin-bottom: 28px;
}

.icon-stack::before {
  left: 5px;
  top: 7px;
  width: 24px;
  height: 12px;
  border: 2px solid currentColor;
  transform: skewY(-25deg);
  box-shadow: 0 9px 0 -2px #fff, 0 9px 0 0 currentColor;
}

.icon-growth::before {
  left: 3px;
  bottom: 4px;
  width: 26px;
  height: 24px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.icon-growth::after {
  right: 3px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.stat-card p,
.capability p,
.case-card p {
  color: var(--muted);
}

.case-highlight {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 20px 70px rgba(45, 35, 90, 0.06);
}

.case-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  min-height: 430px;
  padding: clamp(54px, 5vw, 86px) clamp(48px, 5.6vw, 96px);
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin: 34px 0 24px;
}

.case-metrics article {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.case-metrics article:first-child {
  border-left: 0;
  padding-left: 0;
}

.case-metrics strong {
  display: block;
  color: var(--purple);
  font-size: 2.1rem;
}

.case-metrics span {
  color: var(--muted);
  font-size: 0.86rem;
}

.testimonial-slider {
  position: relative;
  min-height: 300px;
  border-left: 1px solid var(--line);
  padding: 42px 0 42px 70px;
}

.testimonial {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-content: center;
  gap: 22px 28px;
  min-height: 230px;
  margin: 0;
}

.testimonial-slide {
  display: none;
  opacity: 0;
}

.testimonial-slide.is-active {
  display: grid;
  animation: testimonialFade 520ms ease both;
}

.testimonial > span {
  color: var(--purple);
  font-size: 6rem;
  line-height: 0.8;
}

.testimonial p {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 1.18rem;
  line-height: 1.55;
}

.testimonial footer {
  display: flex;
  grid-column: 2;
  gap: 16px;
  align-items: center;
}

.testimonial i {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.testimonial strong {
  display: block;
  color: var(--purple);
}

.testimonial small {
  display: block;
  color: var(--muted);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  margin-left: 100px;
}

.testimonial-dots button {
  width: 24px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(95, 45, 243, 0.22);
  cursor: pointer;
}

.testimonial-dots button.is-active {
  width: 42px;
  background: var(--purple);
}

@keyframes testimonialFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.capabilities .section-grid {
  grid-template-columns: 1fr;
  align-items: start;
}

.architecture-section {
  background: #ffffff;
}

.architecture-intro {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  border-radius: 10px;
  padding: clamp(34px, 4vw, 64px);
  background: #ffffff;
}

.architecture-visual {
  position: relative;
  border: 1px solid rgba(95, 45, 243, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(95, 45, 243, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 45, 243, 0.045) 1px, transparent 1px),
    #ffffff;
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: var(--shadow);
  padding: 34px;
  overflow: hidden;
}

.architecture-visual::before,
.architecture-visual::after {
  display: none;
}

.architecture-visual::before {
  width: 260px;
  height: 260px;
  right: -90px;
  top: -110px;
  background: rgba(95, 45, 243, 0.14);
  filter: blur(40px);
}

.architecture-visual::after {
  width: 160px;
  height: 160px;
  left: -70px;
  bottom: -80px;
  background: rgba(34, 199, 216, 0.12);
  filter: blur(34px);
}

.architecture-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
}

.architecture-flow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(95, 45, 243, 0), rgba(95, 45, 243, 0.34), rgba(95, 45, 243, 0));
  z-index: -1;
}

.arch-node {
  display: grid;
  align-content: center;
  min-height: 132px;
  border: 1px solid rgba(7, 9, 20, 0.11);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(45, 35, 90, 0.08);
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.arch-node:hover {
  transform: translateY(-4px);
  border-color: rgba(95, 45, 243, 0.34);
  box-shadow: 0 24px 58px rgba(95, 45, 243, 0.13);
}

.arch-node strong,
.arch-node span {
  display: block;
}

.arch-node strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1rem;
}

.arch-node span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.arch-core {
  border-color: rgba(95, 45, 243, 0.28);
  background: linear-gradient(135deg, #ffffff, #f2ebff);
}

.arch-link {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(95, 45, 243, 0.22);
}

.arch-link b {
  position: absolute;
  inset: 0 auto 0 -28px;
  width: 28px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  animation: architecturePulse 2.4s ease-in-out infinite;
}

.sync-events {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.sync-events span {
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #087f5b;
  font-size: 0.8rem;
  font-weight: 850;
  padding: 8px 12px;
}

@keyframes architecturePulse {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  18%,
  72% {
    opacity: 1;
  }

  100% {
    transform: translateX(88px);
    opacity: 0;
  }
}

.top-link {
  display: none;
}

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

.capability {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 22px;
  min-height: 140px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(45, 35, 90, 0.06);
  padding: 30px;
}

.capability .cap-icon {
  align-self: center;
}

.technical-section {
  background: linear-gradient(180deg, #ffffff, #f8f8fb);
}

.technical-section .section-grid {
  border-radius: 10px;
  padding: clamp(34px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.8);
}

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

.technical-grid span {
  display: flex;
  align-items: center;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(45, 35, 90, 0.06);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
  padding: 14px 16px;
}

.technical-grid span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 6px rgba(95, 45, 243, 0.1);
}

.tech-stack-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  padding-inline: clamp(24px, 3vw, 48px);
  text-align: center;
}

.tech-stack-strip span {
  display: grid;
  place-items: center;
  min-height: 46px;
  border: 1px solid rgba(95, 45, 243, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  padding: 10px 14px;
}

.why-grid {
  grid-template-columns: 0.8fr 1.06fr 0.72fr;
  align-items: stretch;
  gap: 42px;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-content: center;
}

.why-list span {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 72px;
  border-left: 1px solid var(--line);
  padding: 10px 18px;
  color: var(--text);
}

.why-list span strong {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--purple);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 900;
}

.why-panel {
  display: grid;
  align-content: center;
}

.why-media {
  display: grid;
  align-items: center;
}

.why-image {
  width: 100%;
  height: 100%;
  min-height: 250px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 72% center;
  box-shadow: var(--shadow);
}

.page-main {
  padding-top: 82px;
}

.page-main.page-depth {
  background: linear-gradient(180deg, #ffffff 0%, #f8f8fb 52%, #ffffff 100%);
}

.page-hero,
.page-section {
  width: min(calc(100% - 96px), 1460px);
  margin-inline: auto;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 72px;
  align-items: end;
  min-height: 520px;
  padding: 86px 0 64px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 840px;
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.page-aside {
  align-self: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #f2ecff);
  box-shadow: var(--shadow);
  padding: 34px;
}

.page-aside strong {
  display: block;
  margin-bottom: 16px;
  color: var(--purple);
  font-size: 2.1rem;
}

.service-hero {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 86px;
  margin-top: 54px;
  border: 1px solid rgba(95, 45, 243, 0.12);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 26px 78px rgba(45, 35, 90, 0.08);
  padding: clamp(56px, 6vw, 92px) clamp(34px, 5vw, 80px);
}

.service-hero h1 {
  max-width: 920px;
}

.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.service-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  padding: 9px 13px;
  font-size: 0.84rem;
  font-weight: 850;
}

.service-hero-cta {
  margin-top: 30px;
}

.service-dashboard {
  border: 1px solid rgba(95, 45, 243, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(242, 236, 255, 0.96)),
    radial-gradient(circle at 90% 0%, rgba(95, 45, 243, 0.16), transparent 34%);
  box-shadow: var(--shadow);
  padding: 30px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-dashboard:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 45, 243, 0.32);
  box-shadow: 0 30px 84px rgba(95, 45, 243, 0.14);
}

.service-dashboard-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.service-dashboard-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.12);
}

.service-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}

.service-flow span {
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 850;
}

.service-flow i {
  height: 2px;
  min-width: 24px;
  background: linear-gradient(90deg, var(--purple), transparent);
}

.service-kpis {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.service-kpis article {
  border-left: 3px solid var(--purple);
  background: rgba(255, 255, 255, 0.72);
  padding: 14px 16px;
}

.service-kpis strong,
.service-kpis small {
  display: block;
}

.service-kpis small {
  color: var(--muted);
}

.service-problem {
  background: #ffffff;
}

.problem-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.problem-item,
.benefit-grid span {
  display: flex;
  align-items: center;
  min-height: 68px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 42px rgba(45, 35, 90, 0.06);
  color: var(--ink);
  font-weight: 850;
  padding: 16px 18px;
}

.problem-item::before,
.benefit-grid span::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 6px rgba(95, 45, 243, 0.1);
}

.service-split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.72fr);
  gap: 76px;
  align-items: start;
  padding-inline: clamp(34px, 4vw, 64px);
}

.service-chips {
  display: grid;
  gap: 12px;
}

.service-chips span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(95, 45, 243, 0.08), rgba(255, 255, 255, 0.9)),
    #ffffff;
  color: var(--ink);
  font-weight: 850;
  padding: 18px 20px;
}

.page-section {
  padding: 78px clamp(28px, 3vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  margin-top: 34px;
}

.page-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.page-card,
.article-card {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(45, 35, 90, 0.08);
  padding: 28px;
}

.page-card:hover,
.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(95, 45, 243, 0.32);
  box-shadow: 0 26px 66px rgba(45, 35, 90, 0.12);
}

.automation-section {
  border-bottom: 0;
}

.automation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.automation-card {
  min-height: 300px;
  border-left: 1px solid var(--line);
  padding: 30px;
  transition: background 180ms ease, transform 180ms ease;
}

.automation-card:first-child {
  border-left: 0;
}

.automation-card:hover {
  background: linear-gradient(180deg, #ffffff, #f5f0ff);
  transform: translateY(-3px);
}

.automation-card strong,
.automation-card span {
  display: inline-flex;
  color: var(--purple);
  font-weight: 950;
}

.automation-card h3 {
  margin-top: 34px;
}

.automation-card p {
  color: var(--muted);
}

.automation-card span {
  margin-top: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.automation-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f4efff, #ffffff);
  box-shadow: 0 18px 46px rgba(45, 35, 90, 0.08);
  padding: 20px 24px;
  font-weight: 850;
}

.automation-strip strong {
  color: var(--purple);
  font-size: 1.8rem;
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.service-matrix article {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(45, 35, 90, 0.07);
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-matrix article:hover {
  transform: translateY(-4px);
  border-color: rgba(95, 45, 243, 0.3);
}

.service-matrix h3 {
  margin-bottom: 14px;
}

.service-matrix p {
  color: var(--muted);
}

.service-benefits {
  background: linear-gradient(180deg, #ffffff, #f8f8fb);
}

.service-stack {
  background:
    radial-gradient(circle at 50% 0%, rgba(95, 45, 243, 0.09), transparent 30%),
    #ffffff;
}

.stack-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.stack-line span {
  border: 1px solid rgba(95, 45, 243, 0.2);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(45, 35, 90, 0.06);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
  padding: 12px 16px;
}

.stack-line i {
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), rgba(95, 45, 243, 0));
}

.mini-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mini-process article {
  min-height: 220px;
  border-left: 1px solid var(--line);
  padding: 28px;
}

.mini-process article:first-child {
  border-left: 0;
}

.mini-process strong {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: var(--purple);
  color: #ffffff;
  font-size: 0.86rem;
}

.mini-process p {
  color: var(--muted);
}

.process-board {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 28px;
  align-items: stretch;
}

.process-nav {
  display: grid;
  gap: 12px;
}

.process-step-button {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 16px;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.process-step-button strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: var(--purple-soft);
  color: var(--purple);
}

.process-step-button.is-active,
.process-step-button:hover {
  transform: translateX(4px);
  border-color: rgba(95, 45, 243, 0.34);
  box-shadow: 0 18px 46px rgba(45, 35, 90, 0.1);
}

.process-panel {
  display: none;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #f5f0ff);
  box-shadow: var(--shadow);
  padding: 38px;
}

.process-panel.is-active {
  display: grid;
  align-content: start;
  animation: testimonialFade 420ms ease both;
}

.process-panel h2 {
  max-width: 760px;
}

.deliverable-grid,
.about-timeline,
.blog-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.deliverable {
  border-left: 3px solid var(--purple);
  background: rgba(255, 255, 255, 0.72);
  padding: 18px;
}

.about-story {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-story-copy {
  position: sticky;
  top: 112px;
  align-self: center;
}

.about-hero h1 {
  font-size: clamp(2.75rem, 4.2vw, 4.25rem);
}

.about-timeline {
  grid-template-columns: 1fr;
}

.about-timeline article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(45, 35, 90, 0.08);
  padding: 28px;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.principle {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 24px;
}

.blog-hero {
  grid-template-columns: minmax(0, 1fr);
}

.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.blog-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  padding: 9px 14px;
  font-weight: 800;
}

.article-grid {
  align-items: stretch;
}

.article-card {
  display: grid;
  grid-template-rows: auto minmax(132px, auto) minmax(72px, auto) auto;
}

.article-card p {
  color: var(--muted);
}

.blog-article {
  width: min(calc(100% - 96px), 920px);
  margin-inline: auto;
  padding: 86px 0;
}

.blog-article h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.blog-article p,
.blog-article li {
  color: var(--muted);
  font-size: 1.08rem;
}

.blog-article section {
  margin-top: 38px;
}

.blog-article ul {
  padding-left: 20px;
}

.service-cta {
  margin-top: 20px;
  margin-bottom: 92px;
}

.page-card strong,
.article-card strong {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--purple);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.article-card {
  min-height: 260px;
}

.article-card h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

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

.page-list li {
  border-left: 3px solid var(--purple);
  background: rgba(95, 45, 243, 0.06);
  padding: 14px 18px;
  color: var(--text);
}

.contact-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  align-items: center;
}

.contact-card {
  border: 1px solid rgba(95, 45, 243, 0.14);
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff, #f6f1ff);
  box-shadow: var(--shadow);
  padding: 34px;
}

.contact-card h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  font-weight: 850;
  padding: 14px 16px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 44px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbff;
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(95, 45, 243, 0.16);
  border-color: rgba(95, 45, 243, 0.4);
}

.cta-band {
  display: grid;
  grid-template-columns: 88px 1fr 330px auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 58px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f4efff, #ffffff);
  box-shadow: var(--shadow);
  padding: 24px 34px;
}

.cta-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #ffffff;
  font-size: 2rem;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
}

.cta-band p {
  margin: 0;
  color: var(--text);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 38px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 68px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 950;
  font-size: 1.1rem;
}

.footer-brand img {
  width: 34px;
  height: 26px;
  object-fit: contain;
}

.footer-brand span {
  width: 13px;
  height: 13px;
  border-top: 3px solid var(--purple);
  border-bottom: 3px solid var(--purple);
}

.site-footer h3 {
  margin-top: 0;
  color: var(--ink);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span,
.site-footer p {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer a {
  margin-bottom: 7px;
}

.site-footer a:hover {
  color: var(--purple);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.footer-bottom a {
  display: inline;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (max-width: 1280px) {
  .nav,
  .hero-inner,
  .section-shell,
  .cta-band,
  .site-footer,
  .page-hero,
  .page-section {
    width: min(calc(100% - 64px), 1180px);
  }

  .nav {
    grid-template-columns: 210px 1fr auto;
    gap: 22px;
  }

  .brand img {
    width: 160px;
  }

  .nav-menu {
    gap: clamp(16px, 2.1vw, 30px);
    font-size: 0.88rem;
  }

  .hero {
    min-height: 700px;
  }

  .hero-copy {
    max-width: 640px;
  }

  .hero-capabilities article {
    padding: 0 24px;
  }

  .section-grid,
  .case-grid {
    gap: 42px;
  }

  .architecture-flow {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .service-hero,
  .page-hero {
    gap: 52px;
  }

  .automation-grid,
  .service-matrix,
  .mini-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .automation-card,
  .mini-process article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(45, 35, 90, 0.07);
  }

  .automation-card:first-child,
  .mini-process article:first-child {
    border: 1px solid var(--line);
  }

  .mini-process article {
    min-height: 200px;
  }

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

@media (max-width: 1100px) {
  .menu-mark {
    display: grid;
  }

  .nav {
    width: min(calc(100% - 40px), 1460px);
    grid-template-columns: 1fr auto;
  }

  .nav-menu {
    position: fixed;
    inset: 82px 20px auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 12px;
  }

  .nav-select {
    padding: 12px;
    width: 100%;
  }

  .nav-select select {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .nav-select::after {
    right: 12px;
  }

  .nav-select span {
    width: 100%;
  }

  .hero-inner,
  .section-shell,
  .cta-band,
  .site-footer {
    width: min(calc(100% - 40px), 1460px);
  }

  .hero-capabilities,
  .authority-stats,
  .capability-grid,
  .tech-stack-strip,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-grid,
  .case-grid,
  .why-grid,
  .architecture-intro,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .case-grid {
    padding: 46px 32px;
  }

  .hero {
    min-height: auto;
    background-position: 68% center;
  }

  .hero-copy {
    max-width: 620px;
  }

  .testimonial-slider {
    border-left: 0;
    padding: 30px 0 0;
  }

  .page-hero,
  .page-section {
    width: min(calc(100% - 40px), 1460px);
  }

  .page-hero,
  .page-grid,
  .article-grid,
  .process-board,
  .contact-layout,
  .deliverable-grid,
  .about-story,
  .about-principles,
  .blog-feature-grid,
  .service-hero,
  .contact-hero,
  .architecture-flow,
  .automation-grid,
  .service-split,
  .service-matrix,
  .mini-process {
    grid-template-columns: 1fr;
  }

  .architecture-flow .arch-link:nth-of-type(n+3),
  .architecture-flow .arch-node:nth-of-type(n+4) {
    display: block;
  }

  .architecture-flow::before {
    display: none;
  }

  .automation-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    min-height: auto;
  }

  .automation-card:first-child {
    border: 1px solid var(--line);
  }

  .mini-process article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .mini-process article:first-child {
    border: 1px solid var(--line);
  }

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

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

  .service-flow {
    grid-template-columns: 1fr;
  }

  .service-flow i {
    width: 2px;
    height: 18px;
    min-width: auto;
    justify-self: center;
    background: linear-gradient(180deg, var(--purple), transparent);
  }

  .about-story-copy {
    position: static;
  }

  .why-image {
    max-width: 520px;
    height: auto;
  }
}

@keyframes architecturePulseVertical {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  18%,
  72% {
    opacity: 1;
  }

  100% {
    transform: translateY(58px);
    opacity: 0;
  }
}

@media (max-width: 700px) {
  .nav {
    min-height: 68px;
  }

  .nav > .btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 68px;
    background:
      linear-gradient(180deg, rgba(248, 248, 251, 0.98) 0%, rgba(248, 248, 251, 0.88) 58%, rgba(248, 248, 251, 0.98) 100%),
      url("assets/hero-workcode.png") 62% top / cover no-repeat;
  }

  .hero-inner {
    padding: 44px 20px 34px;
  }

  h1 {
    font-size: 2.7rem;
    line-height: 0.98;
  }

  h2 {
    font-size: 2.05rem;
    line-height: 1.04;
  }

  .btn {
    width: 100%;
    min-height: 50px;
  }

  .hero-copy p:not(.eyebrow),
  .page-hero p:not(.eyebrow) {
    font-size: 0.98rem;
  }

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

  .hero-capabilities,
  .authority-stats,
  .capability-grid,
  .technical-grid,
  .case-metrics,
  .problem-grid,
  .benefit-grid,
  .why-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-capabilities article,
  .case-card {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 20px 0;
  }

  .stat-card {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 20px 0;
  }

  .capability {
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
    padding: 24px;
  }

  .testimonial {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .testimonial-dots {
    margin: 18px 0 0;
  }

  .testimonial footer {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .case-grid {
    padding: 34px 20px;
  }

  .section-shell,
  .page-section {
    padding-block: 52px;
  }

  .page-main {
    padding-top: 68px;
  }

  .page-hero {
    min-height: auto;
    padding: 56px 0 42px;
  }

  .page-aside {
    padding: 24px;
  }

  .page-aside strong {
    font-size: 1.55rem;
  }

  .service-dashboard {
    padding: 22px;
  }

  .architecture-visual {
    padding: 22px;
  }

  .arch-node {
    min-height: auto;
  }

  .service-matrix article,
  .mini-process article {
    min-height: auto;
  }

  .stack-line {
    display: grid;
  }

  .stack-line i {
    width: 2px;
    height: 18px;
    margin-left: 18px;
    background: linear-gradient(180deg, var(--purple), rgba(95, 45, 243, 0));
  }

  .brand img {
    width: 146px;
  }

  .article-card {
    grid-template-rows: auto;
  }

  .cta-band {
    gap: 18px;
    padding: 24px 20px;
  }

  .cta-icon {
    width: 58px;
    height: 58px;
    font-size: 1.55rem;
  }

  .footer-grid {
    gap: 26px;
  }
}

@media (max-width: 480px) {
  .nav,
  .hero-inner,
  .section-shell,
  .cta-band,
  .site-footer,
  .page-hero,
  .page-section,
  .blog-article {
    width: min(calc(100% - 28px), 1460px);
  }

  .brand img {
    width: 132px;
  }

  h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .hero-inner {
    padding-inline: 0;
  }

  .hero-capabilities {
    margin-top: 46px;
  }

  .hero-capabilities article,
  .capability {
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }

  .cap-icon,
  .line-icon {
    width: 30px;
    height: 30px;
  }

  .problem-item,
  .benefit-grid span,
  .service-chips span {
    min-height: auto;
    padding: 14px 16px;
  }

  .automation-card,
  .service-matrix article,
  .mini-process article,
  .page-card,
  .article-card {
    padding: 22px;
  }

  .testimonial {
    gap: 14px;
  }

  .testimonial > span {
    font-size: 4rem;
  }

  .case-metrics {
    gap: 12px;
  }

  .blog-article {
    padding: 54px 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.contact-form select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--purple) 50%) calc(100% - 22px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, var(--purple) 50%, transparent 50%) calc(100% - 17px) 50% / 7px 7px no-repeat,
    #fbfbff;
  box-shadow: 0 10px 26px rgba(45, 35, 90, 0.05);
  cursor: pointer;
  padding-right: 44px;
}

.contact-form select:hover {
  border-color: rgba(95, 45, 243, 0.34);
  background-color: #ffffff;
}
