@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

:root {
  --ax-primary: #000080;
  --ax-primary-soft: #eeeeff;
  --ax-dark: #101625;
  --ax-text: #5f6b80;
  --ax-border: #dce2ec;
  --ax-surface: #f4f6fa;
  --ax-white: #ffffff;
  --ax-accent: #2457c5;
  --ax-accent-soft: #edf3ff;
  --ax-container: 1270px;
  --ax-shadow: 0 22px 60px rgba(16, 22, 37, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ax-white);
  color: var(--ax-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

img {
  max-width: 100%;
}

.ax-page {
  --ax-accent: #2457c5;
  --ax-accent-soft: #edf3ff;
}

.ax-page--cyber {
  --ax-accent: #4f8f16;
  --ax-accent-soft: #f1f8e9;
}

.ax-page--managed {
  --ax-accent: #2457c5;
  --ax-accent-soft: #edf3ff;
}

.ax-page--web {
  --ax-accent: #6237b8;
  --ax-accent-soft: #f2edff;
}

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

.ax-section {
  padding: 78px 0;
}

.ax-section--soft {
  background: var(--ax-surface);
}

.ax-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--ax-primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ax-kicker::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.ax-section-title {
  max-width: 780px;
  margin: 0;
  color: var(--ax-dark);
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -1.3px;
  line-height: 1.18;
}

.ax-section-copy {
  max-width: 500px;
  margin: 0;
  color: var(--ax-text);
  font-size: 14px;
  line-height: 1.75;
}

.ax-heading-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: 44px;
  margin-bottom: 36px;
}

/* Header */
.ax-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--ax-border);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
}

.ax-nav {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.ax-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ax-dark);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.ax-brand-mark {
  display: inline-flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  background: var(--ax-primary);
  color: var(--ax-white);
  font-size: 14px;
  font-weight: 600;
}

.ax-nav-links {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
}

.ax-nav-link,
.ax-nav-dropdown-button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 0;
  background: transparent;
  color: var(--ax-dark);
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
}

.ax-nav-link:hover,
.ax-nav-link.is-active,
.ax-nav-dropdown-button:hover,
.ax-nav-dropdown-button[aria-expanded="true"] {
  background: var(--ax-surface);
  color: var(--ax-primary);
}

.ax-nav-dropdown-button svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.ax-nav-cta,
.ax-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 19px;
  border: 1px solid var(--ax-primary);
  background: var(--ax-primary);
  color: var(--ax-white);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.ax-nav-cta:hover,
.ax-button:hover {
  background: var(--ax-white);
  color: #000000;
  transform: translateY(-2px);
}

.ax-button--secondary {
  border-color: var(--ax-border);
  background: var(--ax-white);
  color: #000000;
}

.ax-button--secondary:hover {
  border-color: var(--ax-primary);
  background: var(--ax-primary);
  color: var(--ax-white);
}

.ax-mobile-toggle {
  display: none;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ax-border);
  background: var(--ax-white);
  color: var(--ax-dark);
  cursor: pointer;
}

.ax-mobile-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* Hidden by default; displayed only when the mobile toggle opens it. */
.ax-mobile-menu {
  display: none;
}

.ax-mega {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--ax-border);
  background: var(--ax-white);
  box-shadow: 0 22px 45px rgba(16, 22, 37, 0.09);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.ax-mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ax-mega-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  padding: 34px 0 38px;
}

.ax-mega-group h3 {
  margin: 0 0 13px;
  color: #66738a;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.ax-mega-group a {
  display: block;
  padding: 5px 0;
  color: var(--ax-dark);
  font-size: 13px;
  text-decoration: none;
}

.ax-mega-group a:hover {
  color: var(--ax-primary);
}

.ax-mega-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  background: #eef1f7;
}

.ax-mega-cta strong {
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: 500;
}

.ax-mega-cta p {
  margin: 0 0 18px;
  color: var(--ax-text);
  font-size: 13px;
}

.ax-mega-cta a + a {
  margin-top: 8px;
}

/* Hero */
.ax-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 62px;
  border-bottom: 1px solid var(--ax-border);
  background-color: var(--ax-white);
  background-image:
    linear-gradient(rgba(0, 0, 128, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 128, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
}

.ax-hero::before {
  position: absolute;
  top: -170px;
  right: -120px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(0, 0, 128, 0.1);
  border-radius: 50%;
  content: "";
}

.ax-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.17fr) minmax(400px, 0.83fr);
  align-items: center;
  gap: 62px;
}

.ax-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--ax-primary);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ax-breadcrumb span {
  color: #8a94a7;
}

.ax-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ax-dark);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 1.13;
}

.ax-hero h1 em {
  display: block;
  color: var(--ax-primary);
  font-style: normal;
}

.ax-hero-copy {
  max-width: 690px;
  margin: 25px 0 0;
  color: var(--ax-text);
  font-size: 16px;
  line-height: 1.8;
}

.ax-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 31px;
}

.ax-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 43px;
  border-top: 1px solid var(--ax-border);
  border-left: 1px solid var(--ax-border);
}

.ax-hero-meta-item {
  min-height: 90px;
  padding: 17px;
  border-right: 1px solid var(--ax-border);
  border-bottom: 1px solid var(--ax-border);
  background: rgba(255, 255, 255, 0.88);
}

.ax-hero-meta-item span {
  display: block;
  margin-bottom: 16px;
  color: var(--ax-accent);
  font-size: 13px;
}

.ax-hero-meta-item p {
  margin: 0;
  color: var(--ax-dark);
  font-size: 13px;
  line-height: 1.45;
}

.ax-hero-visual {
  position: relative;
  min-height: 500px;
}

.ax-hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 86%;
  height: 380px;
  overflow: hidden;
  border: 1px solid var(--ax-border);
  background: var(--ax-surface);
  box-shadow: var(--ax-shadow);
}

.ax-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ax-hero-image::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 50, 0.08);
  content: "";
}

.ax-hero-image-label {
  position: absolute;
  right: 17px;
  bottom: 17px;
  left: 17px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 15px;
  background: var(--ax-white);
}

.ax-hero-image-label span {
  color: var(--ax-dark);
  font-size: 12px;
}

.ax-hero-image-label strong {
  color: var(--ax-accent);
  font-size: 13px;
  font-weight: 500;
  margin-left: 25px;
}

.ax-hero-float {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 72%;
  padding: 24px;
  border: 1px solid var(--ax-accent);
  background: var(--ax-white);
  box-shadow: -13px 13px 0 var(--ax-accent-soft);
}

.ax-hero-float-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.ax-hero-icon {
  display: inline-flex;
  width: 49px;
  height: 49px;
  align-items: center;
  justify-content: center;
  background: var(--ax-accent);
  color: var(--ax-white);
}

.ax-hero-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ax-hero-float small {
  color: var(--ax-text);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ax-hero-float h2 {
  margin: 0 0 9px;
  color: var(--ax-dark);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.ax-hero-float p {
  margin: 0;
  color: var(--ax-text);
  font-size: 12px;
  line-height: 1.65;
}

/* Services */
.ax-service-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.75fr) minmax(0, 1.65fr);
  gap: 18px;
}

.ax-service-intro {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 28px;
  border: 1px solid var(--ax-primary);
  background: var(--ax-primary);
  color: var(--ax-white);
}

.ax-service-intro span {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ax-service-intro h3 {
  margin: 0 0 13px;
  color: var(--ax-white);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
}

.ax-service-intro p {
  margin: 0 0 23px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.ax-service-intro a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ax-white);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

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

.ax-service-card {
  position: relative;
  min-height: 205px;
  padding: 24px;
  border: 1px solid var(--ax-border);
  background: var(--ax-white);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.ax-service-card:hover {
  border-color: var(--ax-accent);
  box-shadow: 0 16px 34px rgba(16, 22, 37, 0.08);
  transform: translateY(-4px);
}

.ax-service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.ax-service-card-icon {
  display: inline-flex;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  background: var(--ax-accent-soft);
  color: var(--ax-accent);
}

.ax-service-card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ax-service-card-number {
  color: var(--ax-accent);
  font-size: 11px;
}

.ax-service-card h3 {
  margin: 25px 0 9px;
  color: var(--ax-dark);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
}

.ax-service-card p {
  margin: 0;
  color: var(--ax-text);
  font-size: 13px;
  line-height: 1.65;
}

/* Outcome band */
.ax-outcome-band {
  padding: 42px 0;
  background: var(--ax-dark);
  color: var(--ax-white);
}

.ax-outcome-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr));
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.ax-outcome-intro,
.ax-outcome-item {
  min-height: 124px;
  padding: 23px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.ax-outcome-intro span {
  display: block;
  margin-bottom: 8px;
  color: #a9b4c8;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ax-outcome-intro h2 {
  margin: 0;
  color: var(--ax-white);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.35;
}

.ax-outcome-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ax-outcome-item span {
  color: var(--ax-accent);
  font-size: 11px;
}

.ax-outcome-item p {
  margin: 20px 0 0;
  color: #d3d9e4;
  font-size: 13px;
  line-height: 1.55;
}

/* Process */
.ax-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ax-process-card {
  min-height: 215px;
  padding: 24px;
  border: 1px solid var(--ax-border);
  background: var(--ax-white);
}

.ax-process-card span {
  color: var(--ax-accent);
  font-size: 12px;
}

.ax-process-card h3 {
  margin: 42px 0 10px;
  color: var(--ax-dark);
  font-size: 21px;
  font-weight: 500;
}

.ax-process-card p {
  margin: 0;
  color: var(--ax-text);
  font-size: 13px;
  line-height: 1.65;
}

.ax-process-card.is-featured {
  border-color: var(--ax-primary);
  background: var(--ax-primary);
}

.ax-process-card.is-featured span,
.ax-process-card.is-featured h3,
.ax-process-card.is-featured p {
  color: var(--ax-white);
}

.ax-process-card.is-featured p {
  opacity: 0.75;
}

/* Use cases */
.ax-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ax-case-card {
  overflow: hidden;
  border: 1px solid var(--ax-border);
  background: var(--ax-white);
}

.ax-case-image {
  height: 190px;
  overflow: hidden;
  background: var(--ax-surface);
}

.ax-case-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ax-case-card:hover .ax-case-image img {
  transform: scale(1.04);
}

.ax-case-content {
  padding: 21px;
}

.ax-case-content span {
  color: var(--ax-accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.ax-case-content h3 {
  margin: 10px 0 8px;
  color: var(--ax-dark);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.35;
}

.ax-case-content p {
  margin: 0;
  color: var(--ax-text);
  font-size: 13px;
  line-height: 1.65;
}

/* Why */
.ax-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ax-why-card {
  min-height: 175px;
  padding: 24px;
  border: 1px solid var(--ax-border);
  background: var(--ax-white);
}

.ax-why-card-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--ax-accent-soft);
  color: var(--ax-accent);
}

.ax-why-card-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.ax-why-card h3 {
  margin: 21px 0 8px;
  font-size: 20px;
  font-weight: 500;
}

.ax-why-card p {
  margin: 0;
  color: var(--ax-text);
  font-size: 13px;
}

/* FAQ */
.ax-faq-wrap {
  max-width: 960px;
  margin: 0 auto;
}

.ax-faq-item {
  border-bottom: 1px solid var(--ax-border);
}

.ax-faq-button {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border: 0;
  background: transparent;
  color: var(--ax-dark);
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}

.ax-faq-button span:last-child {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ax-border);
  color: var(--ax-primary);
  transition: transform 0.2s ease;
}

.ax-faq-button[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}

.ax-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.ax-faq-panel p {
  max-width: 820px;
  margin: 0 0 19px;
  color: var(--ax-text);
  font-size: 13px;
}

/* CTA */
.ax-final-cta {
  padding: 56px 0;
  background: var(--ax-surface);
}

.ax-final-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto;
  align-items: center;
  gap: 38px;
  padding: 38px;
  border: 1px solid var(--ax-border);
  background: var(--ax-white);
}

.ax-final-cta-box span {
  display: block;
  margin-bottom: 8px;
  color: var(--ax-accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ax-final-cta-box h2 {
  max-width: 760px;
  margin: 0;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
}

.ax-final-cta-actions {
  display: flex;
  gap: 9px;
}

/* Footer */
.ax-footer {
  padding: 54px 0 24px;
  background: #0b1120;
  color: var(--ax-white);
}

.ax-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, minmax(0, 0.75fr));
  gap: 32px;
}

.ax-footer-brand p {
  max-width: 360px;
  margin: 17px 0 0;
  color: #a9b4c8;
  font-size: 12px;
}

.ax-footer h3 {
  margin: 0 0 14px;
  color: #dfe5f0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ax-footer a {
  display: block;
  padding: 4px 0;
  color: #a9b4c8;
  font-size: 12px;
  text-decoration: none;
}

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

.ax-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8490a6;
  font-size: 11px;
}

.ax-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* Responsive */
@media (max-width: 1100px) {
  .ax-nav-links,
  .ax-nav-cta {
    display: none;
  }

  .ax-mobile-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .ax-mobile-menu {
    display: none;
    padding: 12px 0 20px;
    border-top: 1px solid var(--ax-border);
  }

  .ax-mobile-menu.is-open {
    display: block;
  }

  .ax-mobile-menu a,
  .ax-mobile-menu button {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    padding: 9px 0;
    border: 0;
    background: transparent;
    color: var(--ax-dark);
    font-size: 13px;
    text-decoration: none;
  }

  .ax-mobile-services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 0 16px;
  }

  .ax-mobile-services a {
    min-height: auto;
    padding: 10px;
    border: 1px solid var(--ax-border);
    background: var(--ax-surface);
  }

  .ax-mega {
    display: none;
  }

  .ax-hero-grid {
    grid-template-columns: 1fr;
  }

  .ax-hero-visual {
    max-width: 720px;
    min-height: 480px;
  }

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

  .ax-outcome-intro {
    grid-column: 1 / -1;
  }

  .ax-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ax-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 850px) {
  .ax-section {
    padding: 62px 0;
  }

  .ax-heading-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .ax-service-intro {
    position: static;
  }

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

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

  .ax-final-cta-box {
    grid-template-columns: 1fr;
  }

  .ax-final-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

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

  .ax-nav {
    min-height: 70px;
  }

  .ax-hero {
    padding-top: 58px;
  }

  .ax-hero h1 {
    font-size: clamp(38px, 12vw, 53px);
    letter-spacing: -2px;
  }

  .ax-hero-copy {
    font-size: 15px;
  }

  .ax-hero-actions {
    flex-direction: column;
  }

  .ax-button {
    width: 100%;
  }

  .ax-hero-meta {
    grid-template-columns: 1fr;
  }

  .ax-hero-visual {
    min-height: 420px;
  }

  .ax-hero-image {
    width: 100%;
    height: 300px;
  }

  .ax-hero-float {
    width: 92%;
    padding: 20px;
  }

  .ax-service-grid,
  .ax-process-grid,
  .ax-outcome-grid {
    grid-template-columns: 1fr;
  }

  .ax-service-card {
    min-height: 180px;
  }

  .ax-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ax-footer-brand {
    grid-column: 1 / -1;
  }

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

  .ax-mobile-services {
    grid-template-columns: 1fr;
  }
}

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