:root {
  --black: #050505;
  --ink: #111111;
  --graphite: #1B1B1B;
  --red: #d22727;
  --red-dark: #ad1f1f;
  --paper: #FFFFFF;
  --soft: #F6F6F6;
  --panel: #FAFAFA;
  --text: #171717;
  --muted: #686868;
  --border: #E2E2E2;
  --radius: 8px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes statReveal {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

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

@keyframes statBackground {
  0%,
  100% {
    background-position: 0 0, 82% 20%, 0 0;
  }

  50% {
    background-position: 0 0, 78% 24%, 0 0;
  }
}

body {
  margin: 0;
  font-family: "Mont", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--panel);
  line-height: 1.6;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--black);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar a:hover {
  color: var(--paper);
}

.header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
}

.nav {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-width: 160px;
}

.logo img {
  display: block;
  width: 164px;
  max-width: 42vw;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 750;
}

.nav-links a {
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-links a.active {
  color: var(--red);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
  transform: scaleX(1);
}

.nav-links .btn.active {
  background: var(--black);
  color: var(--paper);
  box-shadow: none;
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--black);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-weight: 850;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 850;
  border: 1px solid transparent;
  line-height: 1.1;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.btn-primary {
  background: var(--red);
  color: var(--paper);
  box-shadow: 0 12px 24px rgba(210, 39, 39, 0.24);
}

.btn-primary:hover {
  background: var(--red-dark);
  color: var(--paper);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--paper);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--paper);
}

.hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 76px),
    linear-gradient(0deg, rgba(210, 39, 39, 0.14), rgba(210, 39, 39, 0) 46%),
    linear-gradient(135deg, #050505 0%, #151515 62%, #060606 100%);
  color: var(--paper);
  padding: 108px 0 96px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero h1,
.hero .lead,
.hero-actions {
  opacity: 0;
  animation: heroFadeUp 700ms ease forwards;
}

.hero h1 {
  animation-delay: 80ms;
}

.hero .lead {
  animation-delay: 220ms;
}

.hero-actions {
  animation-delay: 360ms;
}

.badge {
  display: inline-flex;
  color: var(--paper);
  background: rgba(210, 39, 39, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 12px;
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 20px;
}

h1, h2, h3 {
  color: var(--black);
  line-height: 1.08;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 76px);
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
  letter-spacing: 0;
}

.hero h1,
.hero h2,
.cta h2,
.page-title h1 {
  color: var(--paper);
}

.lead {
  color: var(--muted);
  font-size: 18px;
  margin: 22px 0 0;
  max-width: 650px;
}

.hero .lead,
.page-title p {
  color: rgba(255, 255, 255, 0.72);
}

.hero .lead {
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: center;
}

.proof-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
  justify-content: center;
}

.proof-row span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 11px;
}

.section {
  padding: 88px 0;
  background: var(--paper);
}

.section-tight {
  padding: 42px 0;
}

.section-alt {
  background: var(--panel);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.kicker {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 10px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
  margin: 15px 0 0;
}

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

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

.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.card:hover {
  border-color: rgba(210, 39, 39, 0.45);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

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

.card ul {
  padding-left: 20px;
  margin: 12px 0 0;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--red);
  font-weight: 850;
}

.card-link:hover {
  color: var(--red-dark);
}

.service-catalog-head {
  max-width: 820px;
}

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

.service-group {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(210, 39, 39, 0.035), rgba(255, 255, 255, 0) 42%),
    var(--paper);
  padding: 18px;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.045);
}

.service-group-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding: 4px 4px 10px;
}

.service-group-head span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(210, 39, 39, 0.22);
  border-radius: 50%;
  background: rgba(210, 39, 39, 0.08);
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.service-group-head h3 {
  margin: 0;
  font-size: 20px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  margin-top: 10px;
  padding: 18px 20px;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.service-row:hover {
  border-color: rgba(210, 39, 39, 0.28);
  background: #fff;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.06);
  transform: translateY(-1px);
}

.service-row h4 {
  margin: 0 0 7px;
  color: var(--black);
  font-size: 17px;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.service-row-link {
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  opacity: 0.88;
}

.service-row-link::after {
  content: " →";
  display: inline-block;
  transition: transform 160ms ease;
}

.service-row:hover .service-row-link::after {
  transform: translateX(3px);
}

.capability-card {
  background:
    linear-gradient(145deg, rgba(210, 39, 39, 0.045), rgba(255, 255, 255, 0)),
    var(--paper);
  border-color: rgba(17, 17, 17, 0.11);
}

.capability-label {
  display: inline-flex;
  border: 1px solid rgba(210, 39, 39, 0.18);
  border-radius: 999px;
  background: rgba(210, 39, 39, 0.08);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 16px;
  padding: 6px 10px;
  text-transform: uppercase;
}

.capability-card h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.capability-grid span {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(246, 246, 246, 0.82);
  color: var(--black);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  padding: 12px;
}

.grc-accent,
.grc-link {
  color: #972589;
}

.grc-link:hover {
  color: #76186d;
}

.grc-link span {
  margin-left: 2px;
  transition: transform 160ms ease;
}

.grc-link:hover span {
  transform: translateX(3px);
}

.grc-referral {
  align-items: center;
}

.grc-card {
  padding: 28px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.grc-card p {
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 20px;
}

.btn-grc {
  background: #972589;
  color: var(--paper);
  box-shadow: 0 12px 24px rgba(151, 37, 137, 0.22);
}

.btn-grc:hover {
  background: #76186d;
  color: var(--paper);
}

.btn-grc span {
  margin-left: 8px;
  transition: transform 160ms ease;
}

.btn-grc:hover span {
  transform: translateX(3px);
}

.avinex-logo {
  display: inline-flex;
  align-items: center;
  max-width: 300px;
  margin-bottom: 22px;
}

.avinex-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.partner-logo {
  grid-column: span 2;
}

.lenovo-logo {
  grid-column: 4 / span 2;
}

.partner-logo {
  min-height: 128px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.partner-logo:hover {
  box-shadow: none;
  transform: translateY(-2px);
}

.partner-logo img {
  display: block;
  width: 100%;
  max-width: 230px;
  max-height: 76px;
  object-fit: contain;
}

.microsoft-logo img {
  max-height: 104px;
}

.netgate-logo img {
  max-width: 260px;
  max-height: 64px;
}

.fortinet-logo img {
  max-width: 260px;
  max-height: 46px;
}

.hpe-logo img {
  max-width: 220px;
  max-height: 72px;
}

.hp-logo img {
  max-width: 220px;
  max-height: 76px;
}

.ubiquiti-logo img {
  max-width: 220px;
  max-height: 70px;
}

.lenovo-logo img {
  max-width: 220px;
  max-height: 70px;
}

.cx-logo img {
  max-width: 164px;
  max-height: 68px;
}

.review-band {
  border: 1px solid rgba(210, 39, 39, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(210, 39, 39, 0.08), rgba(210, 39, 39, 0)),
    var(--paper);
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.06);
}

.review-band h2 {
  margin-bottom: 8px;
}

.review-band p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
}

.why-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.why-intro {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(210, 39, 39, 0.06), rgba(255, 255, 255, 0) 46%),
    var(--paper);
  padding: 34px;
}

.why-intro .lead {
  max-width: 720px;
}

.why-stat {
  display: flex;
  min-height: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(210, 39, 39, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(210, 39, 39, 0.08), rgba(255, 255, 255, 0) 48%),
    var(--paper);
  background-size: auto, 150% 150%, auto;
  padding: 32px;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.06);
  animation: statBackground 5.5s ease-in-out infinite;
}

.why-stat::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(210, 39, 39, 0.1);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}

.why-stat::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
}

.why-stat > * {
  z-index: 1;
}

.why-stat {
  isolation: isolate;
}

.why-stat strong {
  position: relative;
  color: var(--black);
  flex: 0 0 auto;
  font-size: clamp(64px, 8vw, 104px);
  font-weight: 950;
  line-height: 0.9;
  margin: 0;
  text-shadow: none;
  opacity: 0;
  animation: statReveal 700ms ease 180ms forwards;
}

.why-stat strong::first-letter {
  color: var(--red);
}

.why-stat span {
  position: relative;
  display: block;
  max-width: 230px;
  color: var(--black);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
  margin-top: 0;
  opacity: 0;
  animation: statReveal 700ms ease 320ms forwards;
}

.why-stat p {
  position: relative;
  max-width: 260px;
  color: var(--muted);
  margin: 10px 0 0;
  opacity: 0;
  animation: statReveal 700ms ease 440ms forwards;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  grid-column: 1 / -1;
}

.why-grid article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 24px;
}

.why-grid h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.why-grid p {
  color: var(--muted);
  margin: 0;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111111;
  color: var(--paper);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.service-icon {
  width: 64px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.service-icon img {
  display: block;
  width: 64px;
  height: 52px;
  object-fit: contain;
}

.page-title {
  background:
    linear-gradient(135deg, rgba(210, 39, 39, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 82px),
    linear-gradient(180deg, #070707, #181818);
  position: relative;
  overflow: hidden;
  padding: 92px 0 84px;
}

.page-title::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 39, 39, 0.7), transparent);
}

.page-title::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -86px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(210, 39, 39, 0.32);
  border-radius: 50%;
  opacity: 0.55;
}

.page-title .container {
  position: relative;
  z-index: 1;
}

.page-title h1 {
  max-width: 850px;
  letter-spacing: 0;
  opacity: 0;
  animation: heroFadeUp 700ms ease 80ms forwards;
}

.page-title p {
  max-width: 760px;
  font-size: 18px;
  margin: 18px 0 0;
  opacity: 0;
  animation: heroFadeUp 700ms ease 220ms forwards;
}

.check-list {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.check {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
  margin-top: 2px;
}

.cta {
  background:
    linear-gradient(135deg, rgba(210, 39, 39, 0.2), transparent 38%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 82px),
    #090909;
  color: var(--paper);
  padding: 72px 0;
  border-top: 1px solid rgba(210, 39, 39, 0.48);
}

.cta p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  max-width: 720px;
}

.cta-row {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  padding: 34px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.24);
}

.cta-row h2 {
  margin-bottom: 10px;
}

.cta-row .btn {
  flex: 0 0 auto;
}

.form {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.temporary-hidden {
  display: none;
}

.contact-details-only {
  max-width: 820px;
}

.form label {
  display: block;
  color: var(--black);
  font-weight: 800;
  margin-bottom: 7px;
}

input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font: inherit;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(210, 39, 39, 0.12);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.field {
  margin-bottom: 15px;
}

.footer {
  background: #0A0A0A;
  color: rgba(255, 255, 255, 0.72);
  padding: 40px 0;
}

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

.footer h3 {
  color: var(--paper);
  font-size: 18px;
}

.footer a {
  display: block;
  margin: 7px 0;
}

.footer-grid span {
  display: block;
  margin: 7px 0;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

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

  .hero h1,
  .hero .lead,
  .hero-actions,
  .page-title h1,
  .page-title p,
  .why-stat strong,
  .why-stat span,
  .why-stat p {
    opacity: 1;
    transform: none;
  }

  .why-stat {
    animation: none;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .why-intro {
    grid-column: 1 / -1;
  }

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

  .partner-logo,
  .lenovo-logo {
    grid-column: auto;
  }

  .review-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    padding: 18px 20px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links .btn {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .topbar {
    display: none;
  }

  .logo img {
    width: 146px;
  }

  .hero,
  .page-title {
    padding: 56px 0;
  }

  .page-title::after {
    right: -90px;
    width: 190px;
    height: 190px;
  }

  .section {
    padding: 56px 0;
  }

  .cta {
    padding: 54px 0;
  }

  .cta-row {
    padding: 24px;
  }

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

  .service-group-head,
  .service-row {
    padding: 20px;
  }

  .service-group {
    padding: 14px;
  }

  .service-group-head {
    padding: 4px 4px 10px;
  }

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

  .service-row-link {
    width: max-content;
  }

  .why-panel,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-intro,
  .why-stat,
  .why-grid article {
    padding: 24px;
  }

  .why-stat {
    flex-direction: column;
    align-items: flex-start;
  }

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

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