/*
Anxing Machinery global CSS
Purpose: one shared stylesheet for Bricks Code sections and reusable site components.
Update rule: append or merge new page styles here; do not create per-page CSS files.
*/

/* 1. Design tokens */
:root {
  --ax-brand-deep: #0E499D;
  --ax-brand-sky: #198CCB;
  --ax-brand-gray: #7B7B7B;
  --ax-brand-soft: #EAF3FB;
  --ax-navy: #0B1F33;
  --ax-ink: #111827;
  --ax-text: #374151;
  --ax-text-muted: #4B5563;
  --ax-border-color: #D7DEE8;
  --ax-surface: #FFFFFF;
  --ax-surface-alt: #F4F7FA;
  --ax-action: #0E499D;
  --ax-action-hover: #0B3B80;
  --ax-success: #16815D;
  --ax-warning: #A66012;
  --ax-danger: #B42318;

  --ax-font-heading: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif;
  --ax-font-body: Inter, "Helvetica Neue", Arial, sans-serif;

  --ax-fs-h1: clamp(42px, 4vw, 48px);
  --ax-fs-h2: clamp(30px, 3vw, 44px);
  --ax-fs-h3: clamp(22px, 2vw, 28px);
  --ax-fs-h4: 20px;
  --ax-fs-lead: clamp(17px, 1.2vw, 18px);
  --ax-fs-body: 16px;
  --ax-fs-card-title: 18px;
  --ax-fs-card-copy: 15px;
  --ax-fs-small: 14px;
  --ax-fs-caption: 13px;

  --ax-container: 1280px;
  --ax-gutter: clamp(20px, 4vw, 40px);
  --ax-section-space: clamp(64px, 7vw, 112px);
  --ax-section-space-sm: clamp(48px, 5vw, 72px);

  --ax-space-1: 4px;
  --ax-space-2: 8px;
  --ax-space-3: 12px;
  --ax-space-4: 16px;
  --ax-space-5: 20px;
  --ax-space-6: 24px;
  --ax-space-7: 28px;
  --ax-space-8: 32px;
  --ax-space-10: 40px;
  --ax-space-12: 48px;

  --ax-radius-xs: 4px;
  --ax-radius-sm: 6px;
  --ax-radius-md: 10px;
  --ax-radius-lg: 16px;
  --ax-shadow-sm: 0 4px 16px rgba(11, 31, 51, 0.08);
  --ax-shadow-md: 0 12px 32px rgba(11, 31, 51, 0.12);
  --ax-transition: 180ms ease;
}

/* 2. Shared layout and components */
.ax-container {
  width: min(100% - var(--ax-gutter) * 2, var(--ax-container));
  margin-inline: auto;
}

.ax-eyebrow {
  margin: 0;
  color: var(--ax-brand-deep);
  font-family: var(--ax-font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.ax-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--ax-radius-sm);
  cursor: pointer;
  font-family: var(--ax-font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  transition: background-color var(--ax-transition), border-color var(--ax-transition), color var(--ax-transition), transform var(--ax-transition);
}

.ax-btn:hover,
.ax-btn:focus-visible {
  text-decoration: none;
  transform: translateY(-1px);
}

.ax-btn--primary {
  background: var(--ax-action);
  color: #ffffff;
}

.ax-btn--primary:hover,
.ax-btn--primary:focus-visible {
  background: var(--ax-action-hover);
  color: #ffffff;
}

.ax-btn--secondary {
  border-color: var(--ax-action);
  background: var(--ax-surface);
  color: var(--ax-action);
}

.ax-btn--secondary:hover,
.ax-btn--secondary:focus-visible {
  background: var(--ax-brand-soft);
  color: var(--ax-action-hover);
}

.ax-text-link {
  color: var(--ax-action);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

button.ax-text-link {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.ax-text-link:hover,
.ax-text-link:focus-visible {
  color: var(--ax-action-hover);
}

/* 3. Bricks native form blocks */
.ax-form-block {
  width: 100%;
  padding: var(--ax-space-6);
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
  box-shadow: var(--ax-shadow-sm);
}

.ax-form {
  color: var(--ax-text);
  font-family: var(--ax-font-body);
}

.ax-form label,
.ax-form .label {
  color: var(--ax-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.ax-form input,
.ax-form select,
.ax-form textarea,
.ax-form .flatpickr,
.ax-form .choose-files {
  min-height: 48px;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-sm);
  background: var(--ax-surface);
  color: var(--ax-text);
  font-family: var(--ax-font-body);
  font-size: var(--ax-fs-body);
  line-height: 1.5;
}

.ax-form textarea {
  min-height: 136px;
}

.ax-form input:focus,
.ax-form select:focus,
.ax-form textarea:focus,
.ax-form .flatpickr:focus,
.ax-form .choose-files:focus {
  border-color: var(--ax-action);
  box-shadow: 0 0 0 3px rgba(25, 140, 203, 0.18);
  outline: none;
}

.ax-form .bricks-button {
  min-height: 48px;
  border-radius: var(--ax-radius-sm);
  background: var(--ax-action);
  font-family: var(--ax-font-body);
  font-size: 15px;
  font-weight: 700;
}

.ax-form .bricks-button:hover,
.ax-form .bricks-button:focus-visible {
  background: var(--ax-action-hover);
}

.ax-form .message.error,
.ax-form .form-group.error,
.ax-form .form-error {
  color: var(--ax-danger);
}

.ax-form-privacy-link {
  display: inline-flex;
  margin-top: var(--ax-space-3);
  font-size: var(--ax-fs-small);
}

@media (max-width: 767px) {
  .ax-form-block {
    padding: var(--ax-space-4);
  }

  .ax-form .form-group:not(.submit-button-wrapper):not(.message):not(.captcha),
  .ax-form .submit-button-wrapper {
    width: 100% !important;
  }

  .ax-form button[type="submit"].bricks-button {
    width: 100%;
  }
}

/* 4. Request a Quote page */
.ax-rfq-page {
  color: var(--ax-text);
  font-family: var(--ax-font-body);
  font-size: var(--ax-fs-body);
}

.ax-rfq-page h1,
.ax-rfq-page h2,
.ax-rfq-page h3 {
  color: var(--ax-ink);
  font-family: var(--ax-font-heading);
  line-height: 1.12;
}

.ax-rfq-page p {
  margin: 0;
}

.ax-rfq-hero {
  padding-block: var(--ax-section-space-sm);
  background: linear-gradient(180deg, var(--ax-surface) 0%, var(--ax-surface-alt) 100%);
}

.ax-rfq-hero__grid,
.ax-rfq-intake__grid,
.ax-rfq-info__layout,
.ax-rfq-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(352px, 0.82fr);
  gap: var(--ax-space-12);
  align-items: center;
}

.ax-rfq-hero__content,
.ax-rfq-intake__content,
.ax-rfq-info__intro,
.ax-rfq-faq__intro,
.ax-rfq-contact__content {
  display: grid;
  gap: var(--ax-space-4);
}

.ax-rfq-hero__content h1 {
  max-width: 18ch;
  margin: 0;
  font-size: var(--ax-fs-h1);
}

.ax-rfq-hero__lead {
  max-width: 44rem;
  font-size: var(--ax-fs-lead);
  line-height: 1.65;
}

.ax-rfq-hero__actions,
.ax-rfq-contact__cards {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ax-space-3);
  align-items: center;
}

.ax-rfq-hero__media {
  margin: 0;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-lg);
  overflow: hidden;
  background: var(--ax-surface);
  box-shadow: var(--ax-shadow-sm);
}

.ax-rfq-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 18 / 13;
  object-fit: cover;
}

.ax-rfq-hero__media figcaption {
  padding: var(--ax-space-4);
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-small);
  line-height: 1.5;
}

.ax-rfq-intake,
.ax-rfq-info,
.ax-rfq-faq {
  padding-block: var(--ax-section-space);
  background: var(--ax-surface);
}

.ax-rfq-next,
.ax-rfq-contact {
  padding-block: var(--ax-section-space);
  background: var(--ax-surface-alt);
}

.ax-rfq-checklist,
.ax-rfq-steps,
.ax-rfq-info__cards {
  display: grid;
  gap: var(--ax-space-4);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ax-rfq-checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--ax-space-3);
  padding: var(--ax-space-4);
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
}

.ax-rfq-checklist__mark {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--ax-brand-sky);
  box-shadow: 0 0 0 4px var(--ax-brand-soft);
}

.ax-rfq-checklist strong,
.ax-rfq-contact-card h3,
.ax-rfq-info-card h3 {
  display: block;
  margin: 0 0 var(--ax-space-2);
  color: var(--ax-ink);
  font-weight: 700;
}

.ax-rfq-checklist span,
.ax-rfq-info-card p,
.ax-rfq-contact-card p,
.ax-faq-item__body {
  color: var(--ax-text-muted);
  line-height: 1.65;
}

.ax-rfq-form-panel,
.ax-rfq-info-card,
.ax-rfq-contact-card,
.ax-faq-item {
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
  box-shadow: var(--ax-shadow-sm);
}

.ax-rfq-form-panel {
  display: grid;
  gap: var(--ax-space-6);
  padding: var(--ax-space-8);
}

.ax-rfq-form-panel__header {
  display: grid;
  gap: var(--ax-space-3);
}

.ax-rfq-form-panel__header h2,
.ax-section-heading h2,
.ax-rfq-info__intro h2,
.ax-rfq-contact__content h2,
.ax-rfq-faq__intro h2 {
  margin: 0;
  font-size: var(--ax-fs-h2);
}

.ax-rfq-form-panel__shortcode {
  min-height: 288px;
}

.ax-section-heading {
  display: grid;
  gap: var(--ax-space-3);
  max-width: 48rem;
  margin-bottom: var(--ax-space-8);
}

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

.ax-rfq-step {
  padding: var(--ax-space-6);
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
}

.ax-rfq-step__number {
  display: inline-flex;
  margin-bottom: var(--ax-space-4);
  color: var(--ax-brand-deep);
  font-family: var(--ax-font-heading);
  font-size: var(--ax-fs-h3);
  font-weight: 700;
}

.ax-rfq-step h3 {
  margin: 0 0 var(--ax-space-3);
  font-size: var(--ax-fs-h4);
}

.ax-rfq-step p {
  color: var(--ax-text-muted);
  line-height: 1.65;
}

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

.ax-rfq-info-card,
.ax-rfq-contact-card {
  padding: var(--ax-space-6);
}

.ax-rfq-contact__inner {
  display: grid;
  gap: var(--ax-space-8);
}

.ax-rfq-contact__cards {
  align-items: stretch;
}

.ax-rfq-contact-card {
  flex: 1 1 17rem;
}

.ax-rfq-contact-card__meta {
  display: block;
  color: var(--ax-text-muted);
  line-height: 1.55;
}

.ax-rfq-faq__grid {
  align-items: start;
}

.ax-rfq-faq__list {
  display: grid;
  gap: var(--ax-space-3);
}

.ax-faq-item {
  overflow: hidden;
  box-shadow: none;
}

.ax-faq-item summary {
  min-height: 48px;
  cursor: pointer;
  padding: var(--ax-space-4) var(--ax-space-6);
  color: var(--ax-ink);
  font-weight: 700;
  line-height: 1.4;
}

.ax-faq-item__body {
  padding: 0 var(--ax-space-6) var(--ax-space-5);
}

/* 4. Responsive rules */
@media (max-width: 991px) {
  .ax-rfq-hero__grid,
  .ax-rfq-intake__grid,
  .ax-rfq-info__layout,
  .ax-rfq-faq__grid {
    grid-template-columns: 1fr;
  }

  .ax-rfq-hero__content h1 {
    max-width: 16ch;
  }

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

@media (max-width: 767px) {
  .ax-rfq-hero__actions,
  .ax-rfq-contact__cards {
    align-items: stretch;
    flex-direction: column;
  }

  .ax-rfq-hero__actions .ax-btn,
  .ax-rfq-contact__cards .ax-text-link {
    width: 100%;
  }

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

  .ax-rfq-form-panel,
  .ax-rfq-step,
  .ax-rfq-info-card,
  .ax-rfq-contact-card {
    padding: var(--ax-space-5, 1.25rem);
  }
}

@media (max-width: 478px) {
  .ax-rfq-hero__content h1 {
    font-size: clamp(2rem, 12vw, 2.75rem);
  }

  .ax-faq-item summary {
    padding-inline: var(--ax-space-4);
  }

  .ax-faq-item__body {
    padding-inline: var(--ax-space-4);
  }
}

/* Homepage */
.ax-home-section {
  padding: var(--ax-section-space-sm) 0;
  background: var(--ax-surface);
  color: var(--ax-text);
  font-family: var(--ax-font-body);
}

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

.ax-home-section--navy {
  background: var(--ax-navy);
  color: #d7dee8;
}

.ax-home-section__heading {
  display: grid;
  align-items: end;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  margin-bottom: 32px;
}

.ax-home-section__heading > div:first-child {
  display: grid;
  gap: 10px;
}

.ax-home-section__heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ax-ink);
  font-family: var(--ax-font-heading);
  font-size: var(--ax-fs-h2);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.ax-home-section__intro {
  display: grid;
  gap: 8px;
  max-width: 66ch;
}

.ax-home-section__intro p,
.ax-home-section__heading > p {
  margin: 0;
  color: var(--ax-text);
  font-size: var(--ax-fs-body);
  line-height: 1.65;
}

.ax-home-section__footer {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.ax-home-section--navy .ax-eyebrow {
  color: #7dd3fc;
}

.ax-home-section--navy .ax-home-section__heading h2 {
  color: #ffffff;
}

.ax-home-section--navy .ax-home-section__intro p {
  color: #d7dee8;
}

.ax-home-hero {
  padding: clamp(48px, 5vw, 72px) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--ax-border-color);
  background:
    linear-gradient(rgba(14, 73, 157, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 73, 157, 0.045) 1px, transparent 1px),
    var(--ax-surface);
  background-size: 48px 48px;
  color: var(--ax-text);
  font-family: var(--ax-font-body);
}

.ax-home-hero__grid {
  display: grid;
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
}

.ax-home-hero__content {
  display: grid;
  gap: 20px;
}

.ax-home-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ax-ink);
  font-family: var(--ax-font-heading);
  font-size: clamp(42px, 4.6vw, 60px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.ax-home-hero__description {
  display: grid;
  gap: 10px;
  max-width: 64ch;
}

.ax-home-hero__description p {
  margin: 0;
  color: var(--ax-text);
  font-size: var(--ax-fs-lead);
  line-height: 1.58;
}

.ax-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ax-home-hero__support {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--ax-border-color);
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-small);
  line-height: 1.55;
}

.ax-home-hero__support::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--ax-brand-sky);
  content: "";
}

.ax-home-hero__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-lg);
  background: var(--ax-surface-alt);
  box-shadow: var(--ax-shadow-sm);
}

.ax-home-hero__media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32%;
  height: 5px;
  background: var(--ax-brand-sky);
  content: "";
}

.ax-home-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ax-home-trust {
  padding: 0;
  border-bottom: 1px solid var(--ax-border-color);
  background: var(--ax-navy);
  color: #ffffff;
  font-family: var(--ax-font-body);
}

.ax-home-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ax-home-trust__item {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-right: 1px solid rgba(215, 222, 232, 0.2);
}

.ax-home-trust__item:last-child {
  border-right: 0;
}

.ax-home-trust__item span {
  color: #7dd3fc;
  font-size: var(--ax-fs-caption);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ax-home-trust__item strong {
  font-size: 15px;
  line-height: 1.4;
}

.ax-home-category-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.ax-home-category-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
  grid-column: span 2;
  transition: border-color var(--ax-transition), box-shadow var(--ax-transition), transform var(--ax-transition);
}

.ax-home-category-card:nth-child(4),
.ax-home-category-card:nth-child(5) {
  grid-column: span 3;
}

.ax-home-category-card:hover {
  border-color: rgba(14, 73, 157, 0.45);
  box-shadow: var(--ax-shadow-sm);
  transform: translateY(-2px);
}

.ax-home-category-card__media,
.ax-home-product-card__media,
.ax-home-additional-card__media {
  display: block;
  overflow: hidden;
  background: var(--ax-surface-alt);
}

.ax-home-category-card__media img,
.ax-home-product-card__image,
.ax-home-additional-card__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  transition: transform var(--ax-transition);
}

.ax-home-category-card:hover .ax-home-category-card__media img {
  transform: scale(1.015);
}

.ax-home-category-card__body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.ax-home-category-card h3,
.ax-home-product-card h3,
.ax-home-application-card h3,
.ax-home-selection-grid h3,
.ax-home-buyer-grid h3,
.ax-home-why-grid h3,
.ax-home-process-grid h3,
.ax-home-evidence-grid h3,
.ax-home-additional-grid h3,
.ax-home-guide-grid h3 {
  margin: 0;
  color: var(--ax-ink);
  font-family: var(--ax-font-heading);
  font-size: var(--ax-fs-card-title);
  font-weight: 700;
  line-height: 1.25;
}

.ax-home-category-card p,
.ax-home-product-card p,
.ax-home-application-card p,
.ax-home-selection-grid p,
.ax-home-buyer-grid p,
.ax-home-why-grid p,
.ax-home-process-grid p,
.ax-home-evidence-grid p,
.ax-home-additional-grid p,
.ax-home-guide-grid p {
  margin: 0;
  color: var(--ax-text);
  font-size: var(--ax-fs-card-copy);
  line-height: 1.6;
}

.ax-home-category-card .ax-text-link {
  align-self: end;
  margin-top: 4px;
}

.ax-home-featured {
  background: var(--ax-surface-alt);
}

.ax-home-product-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ax-home-product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
}

.ax-home-product-card__placeholder {
  display: grid;
  min-height: 240px;
  place-items: center;
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-small);
}

.ax-home-product-card__body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.ax-home-product-card__model {
  color: var(--ax-brand-deep);
  font-size: var(--ax-fs-caption);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ax-home-product-card h3 a {
  color: var(--ax-ink);
  text-decoration: none;
}

.ax-home-product-card__specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-sm);
}

.ax-home-product-card__specs > div {
  min-width: 0;
  padding: 10px;
  border-right: 1px solid var(--ax-border-color);
}

.ax-home-product-card__specs > div:last-child {
  border-right: 0;
}

.ax-home-product-card__specs dt {
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-caption);
  line-height: 1.35;
}

.ax-home-product-card__specs dd {
  margin: 4px 0 0;
  color: var(--ax-ink);
  font-size: var(--ax-fs-small);
  font-weight: 700;
  line-height: 1.35;
}

.ax-home-product-card__application {
  display: grid;
  gap: 4px;
}

.ax-home-product-card__application strong {
  color: var(--ax-ink);
  font-size: var(--ax-fs-caption);
  text-transform: uppercase;
}

.ax-home-product-card__application span {
  color: var(--ax-text);
}

.ax-home-product-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

.ax-home-product-card__quote {
  color: var(--ax-action);
  font-size: var(--ax-fs-small);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.ax-home-application-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
  grid-template-columns: minmax(170px, 0.72fr) minmax(0, 1.28fr);
}

.ax-home-application-card > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.ax-home-application-card > div {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.ax-home-application-card .ax-text-link {
  margin-top: 4px;
}

.ax-home-selection-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.ax-home-selection-grid > li {
  display: grid;
  align-items: start;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--ax-border-color);
  border-top: 3px solid var(--ax-brand-sky);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
  grid-template-columns: 36px minmax(0, 1fr);
}

.ax-home-selection-card__number {
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ax-brand-soft);
  color: var(--ax-action);
  font-size: var(--ax-fs-small);
  font-weight: 700;
  place-items: center;
}

.ax-home-selection-grid > li > div {
  display: grid;
  gap: 8px;
}

.ax-home-selection-grid strong {
  color: var(--ax-ink);
  font-size: var(--ax-fs-small);
  line-height: 1.45;
}

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

.ax-home-buyer-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(215, 222, 232, 0.24);
  border-radius: var(--ax-radius-md);
  background: rgba(255, 255, 255, 0.045);
}

.ax-home-buyer-grid article > span {
  color: #7dd3fc;
  font-size: var(--ax-fs-caption);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ax-home-buyer-grid h3 {
  color: #ffffff;
}

.ax-home-buyer-grid p {
  color: #d7dee8;
}

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

.ax-home-why-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border-left: 3px solid var(--ax-brand-sky);
  background: var(--ax-surface-alt);
}

.ax-home-process .ax-home-section__heading,
.ax-home-faq .ax-home-section__heading {
  grid-template-columns: minmax(0, 760px);
}

.ax-home-process-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
  list-style: none;
}

.ax-home-process-grid li {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-right: 1px solid var(--ax-border-color);
  border-bottom: 1px solid var(--ax-border-color);
  grid-template-columns: 36px minmax(0, 1fr);
}

.ax-home-process-grid li:nth-child(3n) {
  border-right: 0;
}

.ax-home-process-grid li:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.ax-home-process-grid li > span,
.ax-home-guide-grid article > span {
  color: var(--ax-brand-sky);
  font-size: var(--ax-fs-caption);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ax-home-process-grid li > div {
  display: grid;
  gap: 10px;
}

.ax-home-evidence-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ax-home-evidence-grid article {
  overflow: hidden;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
}

.ax-home-evidence-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  background: var(--ax-surface-alt);
  object-fit: cover;
}

.ax-home-evidence-grid article > div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

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

.ax-home-additional-grid article {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
}

.ax-home-additional-grid article > div {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
}

.ax-home-guide-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ax-home-guide-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--ax-border-color);
  border-top: 4px solid var(--ax-action);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
}

.ax-home-guide-grid .ax-text-link {
  margin-top: 4px;
}

.ax-home-faq__grid {
  display: grid;
  align-items: start;
  gap: 12px 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ax-home-faq details {
  overflow: hidden;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-sm);
  background: var(--ax-surface);
}

.ax-home-faq summary {
  display: grid;
  min-height: 58px;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  color: var(--ax-ink);
  cursor: pointer;
  font-size: var(--ax-fs-card-title);
  font-weight: 700;
  grid-template-columns: minmax(0, 1fr) 24px;
  line-height: 1.35;
  list-style: none;
}

.ax-home-faq summary::-webkit-details-marker {
  display: none;
}

.ax-home-faq summary span {
  position: relative;
  width: 20px;
  height: 20px;
}

.ax-home-faq summary span::before,
.ax-home-faq summary span::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  background: var(--ax-action);
  content: "";
  transition: transform var(--ax-transition);
}

.ax-home-faq summary span::after {
  transform: rotate(90deg);
}

.ax-home-faq details[open] summary span::after {
  transform: rotate(0);
}

.ax-home-faq details > div {
  display: grid;
  gap: 10px;
  padding: 0 18px 18px;
  border-top: 1px solid var(--ax-border-color);
}

.ax-home-faq details > div p {
  margin: 14px 0 0;
  color: var(--ax-text);
  font-size: var(--ax-fs-card-copy);
  line-height: 1.65;
}

.ax-home-quote {
  padding: var(--ax-section-space-sm) 0;
  background: var(--ax-navy);
  color: #ffffff;
}

.ax-home-quote__grid {
  display: grid;
  align-items: start;
  gap: 48px;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
}

.ax-home-quote__intro {
  display: grid;
  gap: 18px;
  padding-top: 8px;
  font-family: var(--ax-font-body);
}

.ax-home-quote__intro .ax-eyebrow {
  color: #7dd3fc;
}

.ax-home-quote__intro h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--ax-font-heading);
  font-size: var(--ax-fs-h2);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.ax-home-quote__intro > div {
  display: grid;
  gap: 10px;
}

.ax-home-quote__intro p {
  margin: 0;
  color: #d7dee8;
  font-size: var(--ax-fs-body);
  line-height: 1.65;
}

.ax-home-quote .ax-form-block {
  background: var(--ax-surface);
}

.ax-home-category-card a:focus-visible,
.ax-home-product-card a:focus-visible,
.ax-home-application-card a:focus-visible,
.ax-home-additional-grid a:focus-visible,
.ax-home-guide-grid a:focus-visible,
.ax-home-faq summary:focus-visible {
  outline: 3px solid rgba(25, 140, 203, 0.4);
  outline-offset: 3px;
}

@media (max-width: 991px) {
  .ax-home-section__heading,
  .ax-home-hero__grid,
  .ax-home-quote__grid {
    align-items: start;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr);
  }

  .ax-home-hero__media {
    max-width: 760px;
  }

  .ax-home-trust__grid,
  .ax-home-product-grid,
  .ax-home-selection-grid,
  .ax-home-buyer-grid,
  .ax-home-why-grid,
  .ax-home-evidence-grid,
  .ax-home-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ax-home-category-card,
  .ax-home-category-card:nth-child(4),
  .ax-home-category-card:nth-child(5) {
    grid-column: span 3;
  }

  .ax-home-trust__item:nth-child(2) {
    border-right: 0;
  }

  .ax-home-trust__item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(215, 222, 232, 0.2);
  }

  .ax-home-application-card,
  .ax-home-additional-grid article {
    grid-template-columns: minmax(0, 1fr);
  }

  .ax-home-application-card > img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

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

  .ax-home-process-grid li,
  .ax-home-process-grid li:nth-child(3n),
  .ax-home-process-grid li:nth-last-child(-n + 3) {
    border-right: 1px solid var(--ax-border-color);
    border-bottom: 1px solid var(--ax-border-color);
  }

  .ax-home-process-grid li:nth-child(2n) {
    border-right: 0;
  }

  .ax-home-process-grid li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 767px) {
  .ax-home-section {
    padding: 48px 0;
  }

  .ax-home-section__heading {
    margin-bottom: 24px;
  }

  .ax-home-hero {
    padding: 44px 0;
  }

  .ax-home-hero h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .ax-home-hero__actions .ax-btn {
    width: 100%;
  }

  .ax-home-trust__grid,
  .ax-home-category-grid,
  .ax-home-product-grid,
  .ax-home-application-grid,
  .ax-home-selection-grid,
  .ax-home-buyer-grid,
  .ax-home-why-grid,
  .ax-home-process-grid,
  .ax-home-evidence-grid,
  .ax-home-additional-grid,
  .ax-home-guide-grid,
  .ax-home-faq__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ax-home-category-card,
  .ax-home-category-card:nth-child(4),
  .ax-home-category-card:nth-child(5) {
    grid-column: auto;
  }

  .ax-home-trust__item,
  .ax-home-trust__item:nth-child(2) {
    min-height: 64px;
    border-right: 0;
    border-bottom: 1px solid rgba(215, 222, 232, 0.2);
  }

  .ax-home-trust__item:last-child {
    border-bottom: 0;
  }

  .ax-home-product-card__specs {
    grid-template-columns: minmax(0, 1fr);
  }

  .ax-home-product-card__specs > div {
    border-right: 0;
    border-bottom: 1px solid var(--ax-border-color);
  }

  .ax-home-product-card__specs > div:last-child {
    border-bottom: 0;
  }

  .ax-home-process-grid li,
  .ax-home-process-grid li:nth-child(2n),
  .ax-home-process-grid li:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--ax-border-color);
  }

  .ax-home-process-grid li:last-child {
    border-bottom: 0;
  }

  .ax-home-section__footer .ax-btn {
    width: 100%;
  }
}

@media (max-width: 478px) {
  .ax-home-category-card__body,
  .ax-home-product-card__body,
  .ax-home-application-card > div,
  .ax-home-additional-grid article > div,
  .ax-home-guide-grid article {
    padding: 20px;
  }

  .ax-home-selection-grid > li,
  .ax-home-process-grid li {
    padding: 18px;
  }

  .ax-home-buyer-grid article,
  .ax-home-why-grid article {
    padding: 20px;
  }

  .ax-home-quote__grid {
    gap: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ax-home-category-card,
  .ax-home-category-card__media img,
  .ax-home-faq summary span::before,
  .ax-home-faq summary span::after {
    transition: none;
  }
}

/* 5. Thank You page */
.ax-thank-you-page {
  color: var(--ax-text);
  font-family: var(--ax-font-body);
  font-size: var(--ax-fs-body);
}

.ax-thank-you-page h1,
.ax-thank-you-page h2,
.ax-thank-you-page h3 {
  margin: 0;
  color: var(--ax-ink);
  font-family: var(--ax-font-heading);
  line-height: 1.12;
}

.ax-thank-you-page p {
  margin: 0;
}

.ax-thank-you-hero {
  padding-block: var(--ax-section-space-sm);
  background: var(--ax-surface-alt);
}

.ax-thank-you-hero__inner {
  display: grid;
  justify-items: center;
  gap: var(--ax-space-4);
  max-width: 860px;
  text-align: center;
}

.ax-thank-you-status {
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(22, 129, 93, 0.28);
  border-radius: 50%;
  background: rgba(22, 129, 93, 0.1);
  color: var(--ax-success);
}

.ax-thank-you-status svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.ax-thank-you-hero h1 {
  max-width: 15ch;
  font-size: var(--ax-fs-h1);
}

.ax-thank-you-hero__lead {
  max-width: 720px;
  font-size: var(--ax-fs-lead);
  line-height: 1.65;
}

.ax-thank-you-next,
.ax-thank-you-browse {
  padding-block: var(--ax-section-space);
  background: var(--ax-surface);
}

.ax-thank-you-reminder,
.ax-thank-you-privacy {
  padding-block: var(--ax-section-space-sm);
  background: var(--ax-surface-alt);
}

.ax-thank-you-heading {
  display: grid;
  gap: var(--ax-space-3);
  max-width: 720px;
  margin-bottom: var(--ax-space-8);
}

.ax-thank-you-heading h2 {
  font-size: var(--ax-fs-h2);
}

.ax-thank-you-heading p,
.ax-thank-you-step p,
.ax-thank-you-reminder__copy,
.ax-thank-you-card p,
.ax-thank-you-privacy__panel p,
.ax-thank-you-privacy__list {
  color: var(--ax-text-muted);
  line-height: 1.65;
}

.ax-thank-you-steps,
.ax-thank-you-cards,
.ax-thank-you-privacy__list {
  margin: 0;
  padding: 0;
}

.ax-thank-you-steps,
.ax-thank-you-cards {
  display: grid;
  gap: var(--ax-space-4);
  list-style: none;
}

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

.ax-thank-you-step,
.ax-thank-you-card,
.ax-thank-you-reminder__panel,
.ax-thank-you-privacy__panel {
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
  box-shadow: var(--ax-shadow-sm);
}

.ax-thank-you-step,
.ax-thank-you-card {
  display: grid;
  gap: var(--ax-space-3);
  padding: var(--ax-space-6);
}

.ax-thank-you-step__number {
  color: var(--ax-brand-deep);
  font-family: var(--ax-font-heading);
  font-size: var(--ax-fs-h3);
  font-weight: 700;
}

.ax-thank-you-step h3,
.ax-thank-you-card h3,
.ax-thank-you-privacy__panel h2 {
  font-size: var(--ax-fs-h4);
}

.ax-thank-you-reminder__panel,
.ax-thank-you-privacy__panel {
  display: grid;
  gap: var(--ax-space-4);
  padding: var(--ax-space-8);
}

.ax-thank-you-reminder__panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.ax-thank-you-reminder__actions,
.ax-thank-you-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ax-space-3);
  align-items: center;
}

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

.ax-thank-you-card {
  min-height: 100%;
  color: var(--ax-text);
  text-decoration: none;
  transition: border-color var(--ax-transition), box-shadow var(--ax-transition), transform var(--ax-transition);
}

.ax-thank-you-card:hover,
.ax-thank-you-card:focus-visible {
  border-color: rgba(14, 73, 157, 0.32);
  box-shadow: var(--ax-shadow-md);
  color: var(--ax-text);
  text-decoration: none;
  transform: translateY(-2px);
}

.ax-thank-you-card__link {
  color: var(--ax-brand-deep);
  font-weight: 700;
}

.ax-thank-you-privacy__list {
  display: grid;
  gap: var(--ax-space-2);
  padding-left: 1.1rem;
}

.ax-thank-you-page a:focus-visible {
  outline: 3px solid rgba(25, 140, 203, 0.35);
  outline-offset: 3px;
}

@media (max-width: 991px) {
  .ax-thank-you-steps,
  .ax-thank-you-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ax-thank-you-reminder__panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .ax-thank-you-hero__actions,
  .ax-thank-you-reminder__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ax-thank-you-hero__actions .ax-btn,
  .ax-thank-you-reminder__actions .ax-btn {
    width: 100%;
  }

  .ax-thank-you-steps,
  .ax-thank-you-cards {
    grid-template-columns: 1fr;
  }

  .ax-thank-you-reminder__panel,
  .ax-thank-you-privacy__panel,
  .ax-thank-you-step,
  .ax-thank-you-card {
    padding: var(--ax-space-5);
  }
}

@media (max-width: 478px) {
  .ax-thank-you-status {
    width: 64px;
    height: 64px;
  }

  .ax-thank-you-hero h1 {
    font-size: clamp(2rem, 12vw, 2.75rem);
  }
}

/* 6. Contact Us page */
.ax-contact-page {
  color: var(--ax-text);
  font-family: var(--ax-font-body);
  font-size: var(--ax-fs-body);
}

.ax-contact-page h1,
.ax-contact-page h2,
.ax-contact-page h3 {
  margin: 0;
  color: var(--ax-ink);
  font-family: var(--ax-font-heading);
  line-height: 1.12;
}

.ax-contact-page p {
  margin: 0;
}

.ax-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ax-space-2);
  align-items: center;
  margin-bottom: var(--ax-space-8);
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-small);
  line-height: 1.4;
}

.ax-breadcrumb a {
  color: var(--ax-brand-deep);
  font-weight: 700;
  text-decoration: none;
}

.ax-breadcrumb a:hover,
.ax-breadcrumb a:focus-visible {
  color: var(--ax-action-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ax-contact-hero,
.ax-contact-details,
.ax-contact-form-section,
.ax-contact-topics,
.ax-contact-map,
.ax-contact-faq {
  padding-block: var(--ax-section-space);
}

.ax-contact-hero,
.ax-contact-form-section,
.ax-contact-map {
  background: var(--ax-surface-alt);
}

.ax-contact-details,
.ax-contact-topics,
.ax-contact-faq {
  background: var(--ax-surface);
}

.ax-contact-hero__grid,
.ax-contact-form__grid,
.ax-contact-map__grid,
.ax-contact-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(352px, 0.82fr);
  gap: var(--ax-space-12);
  align-items: center;
}

.ax-contact-hero__content,
.ax-contact-form__content,
.ax-contact-section-heading,
.ax-contact-map__content,
.ax-contact-form__panel-heading {
  display: grid;
  gap: var(--ax-space-4);
}

.ax-contact-hero__content h1 {
  max-width: 16ch;
  font-size: var(--ax-fs-h1);
}

.ax-contact-hero__lead {
  max-width: 46rem;
  font-size: var(--ax-fs-lead);
  line-height: 1.65;
}

.ax-contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ax-space-3);
  align-items: center;
}

.ax-contact-hero__media,
.ax-contact-map__placeholder {
  overflow: hidden;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-lg);
  background: var(--ax-surface);
  box-shadow: var(--ax-shadow-sm);
}

.ax-contact-hero__media {
  margin: 0;
}

.ax-contact-hero__media img,
.ax-contact-map__placeholder img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.ax-contact-hero__media img {
  aspect-ratio: 18 / 13;
}

.ax-contact-section-heading {
  max-width: 760px;
  margin-bottom: var(--ax-space-8);
}

.ax-contact-section-heading h2,
.ax-contact-form__content h2,
.ax-contact-map__content h2,
.ax-contact-privacy h2 {
  font-size: var(--ax-fs-h2);
}

.ax-contact-section-heading p,
.ax-contact-form__content p,
.ax-contact-map__content p,
.ax-contact-card p,
.ax-contact-card address,
.ax-contact-topic-card p,
.ax-contact-faq-item__body,
.ax-contact-privacy p {
  color: var(--ax-text-muted);
  line-height: 1.65;
}

.ax-contact-cards,
.ax-contact-topic-grid {
  display: grid;
  gap: var(--ax-space-4);
}

.ax-contact-cards {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ax-contact-card,
.ax-contact-topic-card,
.ax-contact-form__panel,
.ax-contact-faq-item,
.ax-contact-privacy {
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
  box-shadow: var(--ax-shadow-sm);
}

.ax-contact-card,
.ax-contact-topic-card,
.ax-contact-form__panel,
.ax-contact-privacy {
  padding: var(--ax-space-6);
}

.ax-contact-card {
  display: grid;
  gap: var(--ax-space-3);
  min-width: 0;
}

.ax-contact-card__label {
  color: var(--ax-brand-deep);
  font-size: var(--ax-fs-small);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.ax-contact-card h3,
.ax-contact-topic-card h3,
.ax-contact-form__panel h3 {
  font-size: var(--ax-fs-h4);
}

.ax-contact-card a {
  color: var(--ax-brand-deep);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ax-contact-card address {
  font-style: normal;
}

.ax-contact-form__grid {
  align-items: start;
}

.ax-contact-form__list {
  display: grid;
  gap: var(--ax-space-3);
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ax-text-muted);
  line-height: 1.6;
}

.ax-contact-form__panel {
  display: grid;
  gap: var(--ax-space-6);
}

.ax-contact-form__shortcode {
  min-height: 360px;
}

.ax-contact-topic-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ax-contact-topic-card {
  display: grid;
  gap: var(--ax-space-3);
  align-content: start;
}

.ax-contact-map__grid {
  align-items: stretch;
}

.ax-contact-location-list {
  display: grid;
  gap: var(--ax-space-3);
  margin: var(--ax-space-2) 0 0;
}

.ax-contact-location-list div {
  display: grid;
  gap: var(--ax-space-1);
  padding: var(--ax-space-4);
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-sm);
  background: var(--ax-surface);
}

.ax-contact-location-list dt {
  color: var(--ax-ink);
  font-weight: 700;
}

.ax-contact-location-list dd {
  margin: 0;
  color: var(--ax-text-muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.ax-contact-map__placeholder {
  position: relative;
  display: block;
  min-height: 100%;
  color: var(--ax-ink);
  text-decoration: none;
}

.ax-contact-map__placeholder:hover,
.ax-contact-map__placeholder:focus-visible {
  border-color: rgba(14, 73, 157, 0.32);
  color: var(--ax-brand-deep);
  text-decoration: none;
}

.ax-contact-map__placeholder img {
  aspect-ratio: 16 / 9;
  background: var(--ax-surface);
}

.ax-contact-map__label {
  position: absolute;
  inset-inline: var(--ax-space-4);
  bottom: var(--ax-space-4);
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--ax-radius-sm);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ax-brand-deep);
  font-weight: 700;
  padding: var(--ax-space-3) var(--ax-space-4);
  text-align: center;
}

.ax-contact-faq__grid {
  align-items: start;
}

.ax-contact-faq__list {
  display: grid;
  gap: var(--ax-space-3);
}

.ax-contact-faq-item {
  overflow: hidden;
  box-shadow: none;
}

.ax-contact-faq-item summary {
  min-height: 48px;
  cursor: pointer;
  padding: var(--ax-space-4) var(--ax-space-6);
  color: var(--ax-ink);
  font-weight: 700;
  line-height: 1.4;
}

.ax-contact-faq-item__body {
  padding: 0 var(--ax-space-6) var(--ax-space-5);
}

.ax-contact-privacy {
  display: grid;
  gap: var(--ax-space-3);
  margin-top: var(--ax-space-8);
}

.ax-contact-page a:focus-visible,
.ax-contact-page summary:focus-visible {
  outline: 3px solid rgba(25, 140, 203, 0.35);
  outline-offset: 3px;
}

@media (max-width: 991px) {
  .ax-contact-hero__grid,
  .ax-contact-form__grid,
  .ax-contact-map__grid,
  .ax-contact-faq__grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  .ax-contact-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ax-contact-hero__actions .ax-btn {
    width: 100%;
  }

  .ax-contact-cards,
  .ax-contact-topic-grid {
    grid-template-columns: 1fr;
  }

  .ax-contact-card,
  .ax-contact-topic-card,
  .ax-contact-form__panel,
  .ax-contact-privacy {
    padding: var(--ax-space-5);
  }
}

@media (max-width: 478px) {
  .ax-contact-hero__content h1 {
    font-size: clamp(2rem, 12vw, 2.75rem);
  }

  .ax-breadcrumb {
    margin-bottom: var(--ax-space-6);
  }

  .ax-contact-faq-item summary,
  .ax-contact-faq-item__body {
    padding-inline: var(--ax-space-4);
  }

  .ax-contact-map__label {
    inset-inline: var(--ax-space-3);
    bottom: var(--ax-space-3);
  }
}

/* 7. About Us page */
.ax-about-page,
.ax-oem-page {
  color: var(--ax-text);
  font-family: var(--ax-font-body);
  font-size: var(--ax-fs-body);
}

.ax-about-page h1,
.ax-about-page h2,
.ax-about-page h3,
.ax-oem-page h1,
.ax-oem-page h2,
.ax-oem-page h3 {
  margin: 0;
  color: var(--ax-ink);
  font-family: var(--ax-font-heading);
  line-height: 1.12;
}

.ax-about-page p,
.ax-oem-page p {
  margin: 0;
}

.ax-about-hero,
.ax-about-details,
.ax-about-fit,
.ax-about-products,
.ax-about-process-section,
.ax-about-evidence,
.ax-about-support,
.ax-about-faq {
  padding-block: var(--ax-section-space);
}

.ax-about-hero,
.ax-about-products,
.ax-about-support {
  background: var(--ax-surface-alt);
}

.ax-about-details,
.ax-about-fit,
.ax-about-process-section,
.ax-about-evidence,
.ax-about-faq {
  background: var(--ax-surface);
}

.ax-about-hero__grid,
.ax-about-details__grid,
.ax-about-detail-grid,
.ax-about-fit__grid,
.ax-about-evidence__grid,
.ax-about-final-cta {
  display: grid;
  gap: var(--ax-space-10);
  align-items: center;
}

.ax-about-hero__grid,
.ax-about-details__grid,
.ax-about-detail-grid,
.ax-about-fit__grid,
.ax-about-evidence__grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
}

.ax-about-hero__content,
.ax-about-section-heading,
.ax-about-details__content,
.ax-about-details__panel,
.ax-about-detail-panel,
.ax-about-fit__content,
.ax-about-fit-card,
.ax-about-mini-card,
.ax-about-product-card,
.ax-about-product-card__body,
.ax-about-process-card,
.ax-about-evidence__content,
.ax-about-support-card,
.ax-about-final-cta__content {
  display: grid;
  gap: var(--ax-space-4);
}

.ax-about-hero__content h1 {
  max-width: 17ch;
  font-size: var(--ax-fs-h1);
}

.ax-about-hero__lead,
.ax-oem-hero__lead {
  max-width: 48rem;
  color: var(--ax-text);
  font-size: var(--ax-fs-lead);
  line-height: 1.62;
}

.ax-about-hero__text,
.ax-about-section-heading p,
.ax-about-details__content p,
.ax-about-details__list dd,
.ax-about-details__panel p,
.ax-about-detail-list dd,
.ax-about-detail-panel p,
.ax-about-fit__content p,
.ax-about-fit-card p,
.ax-about-mini-card p,
.ax-about-product-card p,
.ax-about-process-card p,
.ax-about-evidence__content p,
.ax-about-media-card figcaption,
.ax-about-support-card p,
.ax-about-faq-item__body p,
.ax-about-final-cta__content p {
  color: var(--ax-text-muted);
  line-height: 1.65;
}

.ax-about-section-heading {
  max-width: 820px;
  margin-bottom: var(--ax-space-8);
}

.ax-about-section-heading h2,
.ax-about-details__content h2,
.ax-about-fit__content h2,
.ax-about-evidence__content h2,
.ax-about-final-cta__content h2,
.ax-about-final-cta > div:first-child h2 {
  font-size: var(--ax-fs-h2);
}

.ax-about-hero__actions,
.ax-about-support-card__links,
.ax-about-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ax-space-3);
  align-items: center;
}

.ax-about-hero__media,
.ax-about-details__panel,
.ax-about-detail-panel,
.ax-about-fit-card,
.ax-about-mini-card,
.ax-about-product-card,
.ax-about-process-card,
.ax-about-evidence__gallery,
.ax-about-media-card,
.ax-about-support-card,
.ax-about-faq-item,
.ax-about-final-cta {
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
  box-shadow: var(--ax-shadow-sm);
}

.ax-about-hero__media,
.ax-about-media-card {
  overflow: hidden;
  margin: 0;
}

.ax-about-hero__media {
  border-radius: var(--ax-radius-lg);
}

.ax-about-hero__media img,
.ax-about-media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 18 / 13;
  object-fit: cover;
}

.ax-about-hero__media figcaption,
.ax-about-media-card figcaption {
  padding: var(--ax-space-4) var(--ax-space-5);
  font-size: var(--ax-fs-small);
}

.ax-about-details__list,
.ax-about-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
  box-shadow: var(--ax-shadow-sm);
}

.ax-about-details__item,
.ax-about-detail-list__item {
  display: grid;
  gap: var(--ax-space-2);
  padding: var(--ax-space-6);
  border-right: 1px solid var(--ax-border-color);
  border-bottom: 1px solid var(--ax-border-color);
}

.ax-about-details__item:nth-child(2n),
.ax-about-detail-list__item:nth-child(2n) {
  border-right: 0;
}

.ax-about-details__item:nth-last-child(-n + 2),
.ax-about-detail-list__item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.ax-about-details__list dt,
.ax-about-detail-list dt {
  color: var(--ax-brand-deep);
  font-size: var(--ax-fs-small);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ax-about-details__list dd,
.ax-about-detail-list dd {
  margin: 0;
  color: var(--ax-ink);
  font-weight: 700;
}

.ax-about-detail-list a {
  color: var(--ax-brand-deep);
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.ax-about-details__panel,
.ax-about-detail-panel,
.ax-about-fit-card,
.ax-about-mini-card,
.ax-about-process-card,
.ax-about-support-card,
.ax-about-final-cta {
  padding: var(--ax-space-6);
}

.ax-about-details__panel ul,
.ax-about-detail-panel ul,
.ax-about-evidence-list,
.ax-about-check-list,
.ax-about-final-cta__list {
  display: grid;
  gap: var(--ax-space-3);
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ax-text-muted);
  line-height: 1.65;
}

.ax-about-fit-grid,
.ax-about-fit__cards,
.ax-about-support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--ax-space-4);
}

.ax-about-fit-card h3,
.ax-about-mini-card h3,
.ax-about-product-card h3,
.ax-about-process-card h3,
.ax-about-media-card h3,
.ax-about-support-card h3 {
  font-size: var(--ax-fs-h4);
}

.ax-about-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--ax-space-4);
}

.ax-about-product-card {
  align-content: start;
  padding: var(--ax-space-4);
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ax-about-product-card:hover,
.ax-about-product-card:focus-visible {
  border-color: rgba(25, 140, 203, 0.55);
  box-shadow: var(--ax-shadow-md);
  transform: translateY(-2px);
}

.ax-about-product-card__media {
  display: grid;
  place-items: center;
  min-height: 150px;
  border-radius: var(--ax-radius-sm);
  background: var(--ax-surface-alt);
}

.ax-about-product-card__media img {
  display: block;
  width: auto;
  max-width: 92%;
  max-height: 128px;
  object-fit: contain;
}

.ax-about-product-card__type {
  color: var(--ax-brand-deep);
  font-size: var(--ax-fs-small);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ax-about-product-card__body {
  align-content: start;
  gap: var(--ax-space-2);
}

.ax-about-product-card__title {
  color: var(--ax-ink);
  font-family: var(--ax-font-heading);
  font-size: var(--ax-fs-h4);
  font-weight: 700;
  line-height: 1.25;
}

.ax-about-process-list,
.ax-about-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--ax-space-4);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ax-about-process-card__number {
  color: var(--ax-brand-deep);
  font-family: var(--ax-font-heading);
  font-size: var(--ax-fs-h3);
  font-weight: 700;
  line-height: 1;
}

.ax-about-evidence__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--ax-space-4);
  padding: var(--ax-space-4);
}

.ax-about-media-card:first-child {
  grid-column: 1 / -1;
}

.ax-about-support-card__links a,
.ax-about-support-card > span {
  color: var(--ax-brand-deep);
  font-weight: 700;
  text-decoration: none;
}

.ax-about-support-card__links a:hover,
.ax-about-support-card__links a:focus-visible,
.ax-about-support-card:hover > span,
.ax-about-support-card:focus-visible > span {
  text-decoration: underline;
}

.ax-about-support-card {
  color: inherit;
  text-decoration: none;
  transition: border-color var(--ax-transition), box-shadow var(--ax-transition), transform var(--ax-transition);
}

.ax-about-support-card:hover,
.ax-about-support-card:focus-visible {
  border-color: rgba(25, 140, 203, 0.55);
  box-shadow: var(--ax-shadow-md);
  transform: translateY(-2px);
}

.ax-about-faq-list {
  display: grid;
  gap: var(--ax-space-3);
  max-width: 900px;
}

.ax-about-faq-item {
  overflow: hidden;
}

.ax-about-faq-item__button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.25rem;
  gap: var(--ax-space-4);
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: var(--ax-space-4) var(--ax-space-5);
  border: 0;
  background: transparent;
  color: var(--ax-ink);
  font-family: var(--ax-font-heading);
  font-size: var(--ax-fs-h4);
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}

.ax-about-faq-item__button:focus-visible,
.ax-about-page a:focus-visible,
.ax-oem-page a:focus-visible {
  outline: 3px solid rgba(25, 140, 203, 0.35);
  outline-offset: 3px;
}

.ax-about-faq-item__button:focus-visible {
  outline-offset: -3px;
}

.ax-about-faq-item__icon {
  position: relative;
  width: 1.1rem;
  height: 1.1rem;
}

.ax-about-faq-item__icon::before,
.ax-about-faq-item__icon::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ax-brand-deep);
  content: "";
  transform: translateY(-50%);
}

.ax-about-faq-item__icon::after {
  transform: translateY(-50%) rotate(90deg);
  transition: opacity 160ms ease;
}

.ax-about-faq-item__button[aria-expanded="true"] .ax-about-faq-item__icon::after {
  opacity: 0;
}

.ax-about-faq-item__body {
  padding: 0 var(--ax-space-5) var(--ax-space-5);
}

.ax-about-final-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: var(--ax-space-8);
  background: var(--ax-navy);
}

.ax-about-final-cta .ax-eyebrow,
.ax-about-final-cta h2 {
  color: #ffffff;
}

.ax-about-final-cta p,
.ax-about-final-cta li {
  color: #d7dee8;
}

.ax-about-final-cta .ax-btn--secondary {
  border-color: #d7dee8;
  background: transparent;
  color: #ffffff;
}

.ax-about-final-cta .ax-btn--secondary:hover,
.ax-about-final-cta .ax-btn--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

@media (max-width: 991px) {
  .ax-about-hero__grid,
  .ax-about-details__grid,
  .ax-about-detail-grid,
  .ax-about-fit__grid,
  .ax-about-evidence__grid,
  .ax-about-final-cta {
    grid-template-columns: 1fr;
  }

  .ax-about-fit-grid,
  .ax-about-fit__cards,
  .ax-about-product-grid,
  .ax-about-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 767px) {
  .ax-about-hero__actions,
  .ax-about-final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ax-about-hero__actions .ax-btn,
  .ax-about-final-cta__actions .ax-btn {
    width: 100%;
  }

  .ax-about-details__list,
  .ax-about-detail-list,
  .ax-about-fit-grid,
  .ax-about-fit__cards,
  .ax-about-product-grid,
  .ax-about-process-list,
  .ax-about-process,
  .ax-about-evidence__gallery,
  .ax-about-support-grid {
    grid-template-columns: 1fr;
  }

  .ax-about-details__item,
  .ax-about-detail-list__item,
  .ax-about-details__item:nth-child(2n),
  .ax-about-detail-list__item:nth-child(2n),
  .ax-about-details__item:nth-last-child(-n + 2),
  .ax-about-detail-list__item:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--ax-border-color);
  }

  .ax-about-details__item:last-child,
  .ax-about-detail-list__item:last-child {
    border-bottom: 0;
  }

  .ax-about-product-card__media {
    min-height: 140px;
  }
}

@media (max-width: 478px) {
  .ax-about-hero__content h1 {
    font-size: clamp(2rem, 12vw, 2.75rem);
  }

  .ax-about-details__item,
  .ax-about-details__panel,
  .ax-about-detail-list__item,
  .ax-about-detail-panel,
  .ax-about-fit-card,
  .ax-about-mini-card,
  .ax-about-product-card,
  .ax-about-process-card,
  .ax-about-support-card,
  .ax-about-final-cta {
    padding: var(--ax-space-5);
  }
}

/* 9. Certifications page */
.ax-cert-page {
  color: var(--ax-text);
  font-family: var(--ax-font-body);
}

.ax-cert-intro {
  padding: clamp(40px, 5vw, 72px) 0 clamp(24px, 3vw, 40px);
  background: var(--ax-surface);
}

.ax-cert-intro__content {
  max-width: 820px;
}

.ax-cert-intro h1 {
  margin: var(--ax-space-3) 0 0;
  color: var(--ax-ink);
  font-family: var(--ax-font-heading);
  font-size: var(--ax-fs-h1);
  font-weight: 700;
  line-height: 1.05;
}

.ax-cert-intro__lead {
  max-width: 680px;
  margin: var(--ax-space-5) 0 0;
  color: var(--ax-ink);
  font-size: var(--ax-fs-lead);
  font-weight: 600;
  line-height: 1.6;
}

.ax-cert-intro__body {
  max-width: 760px;
  margin: var(--ax-space-4) 0 0;
  color: var(--ax-text);
  font-size: var(--ax-fs-body);
  line-height: 1.75;
}

.ax-cert-wall-section {
  padding: clamp(36px, 5vw, 72px) 0 var(--ax-section-space-sm);
  background: var(--ax-surface-alt);
}

.ax-cert-wall__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--ax-space-5);
  margin-bottom: var(--ax-space-6);
  padding-bottom: var(--ax-space-4);
  border-bottom: 1px solid var(--ax-border-color);
}

.ax-cert-wall__heading h2 {
  margin: 0;
  color: var(--ax-ink);
  font-family: var(--ax-font-heading);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
}

.ax-cert-wall__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 var(--ax-space-7);
}

.ax-cert-wall__filter {
  min-height: 44px;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-sm);
  background: var(--ax-surface);
  color: var(--ax-text);
  cursor: pointer;
  font-family: var(--ax-font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  padding: 10px 14px;
  transition: background-color var(--ax-transition), border-color var(--ax-transition), color var(--ax-transition);
}

.ax-cert-wall__filter:hover,
.ax-cert-wall__filter:focus-visible,
.ax-cert-wall__filter.is-active {
  border-color: var(--ax-action);
  background: var(--ax-action);
  color: #ffffff;
}

.ax-cert-wall__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.ax-cert-wall-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: var(--ax-space-4);
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
  color: var(--ax-text);
  padding: var(--ax-space-4);
  text-decoration: none;
  transition: border-color var(--ax-transition), box-shadow var(--ax-transition), transform var(--ax-transition);
}

.ax-cert-wall-card:hover,
.ax-cert-wall-card:focus-visible {
  border-color: var(--ax-action);
  box-shadow: var(--ax-shadow-sm);
  color: var(--ax-text);
  text-decoration: none;
  transform: translateY(-2px);
}

.ax-cert-wall-card[hidden] {
  display: none;
}

.ax-cert-wall-card__media {
  display: flex;
  aspect-ratio: 210 / 297;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 51, 0.12);
  border-radius: var(--ax-radius-sm);
  background: #f8fafc;
  padding: var(--ax-space-3);
}

.ax-cert-wall-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.ax-cert-wall-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.ax-cert-wall-card__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ax-cert-wall-card__category,
.ax-cert-wall-card__status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  padding: 4px 8px;
}

.ax-cert-wall-card__category {
  background: var(--ax-brand-soft);
  color: var(--ax-action);
}

.ax-cert-wall-card__status {
  background: #fff7ed;
  color: var(--ax-warning);
}

.ax-cert-wall-card__title {
  display: block;
  margin-top: var(--ax-space-3);
  color: var(--ax-ink);
  font-family: var(--ax-font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.ax-cert-wall-card__action {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: var(--ax-space-4);
  color: var(--ax-action);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ax-cert-wall-lightbox[hidden] {
  display: none;
}

.ax-cert-wall-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: var(--ax-space-6);
}

.ax-cert-wall-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 51, 0.72);
}

.ax-cert-wall-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
  max-height: calc(100dvh - 48px);
  margin: 0;
  overflow: auto;
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
  box-shadow: var(--ax-shadow-md);
  padding: var(--ax-space-5);
}

.ax-cert-wall-lightbox__close {
  position: sticky;
  top: 0;
  z-index: 2;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  float: right;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-sm);
  background: var(--ax-surface);
  color: var(--ax-ink);
  cursor: pointer;
  font-family: var(--ax-font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 9px 14px;
}

.ax-cert-wall-lightbox__close:hover,
.ax-cert-wall-lightbox__close:focus-visible {
  border-color: var(--ax-action);
  color: var(--ax-action);
}

.ax-cert-wall-lightbox__image {
  display: block;
  width: 100%;
  max-height: calc(100dvh - 150px);
  clear: both;
  object-fit: contain;
  object-position: center;
  background: #f8fafc;
}

.ax-cert-wall-lightbox__caption {
  margin-top: var(--ax-space-3);
  color: var(--ax-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

body.ax-cert-lightbox-open {
  overflow: hidden;
}

@media (max-width: 1279px) {
  .ax-cert-wall__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .ax-cert-wall__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .ax-cert-intro,
  .ax-cert-wall-section {
    padding-block: clamp(36px, 9vw, 52px);
  }

  .ax-cert-wall__heading {
    align-items: start;
    flex-direction: column;
  }

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

  .ax-cert-wall-lightbox {
    padding: var(--ax-space-4);
  }

  .ax-cert-wall-lightbox__dialog {
    max-height: calc(100dvh - 32px);
    padding: var(--ax-space-4);
  }
}

@media (max-width: 478px) {
  .ax-cert-intro h1 {
    font-size: clamp(36px, 11vw, 42px);
  }

  .ax-cert-wall__filters {
    gap: 8px;
  }

  .ax-cert-wall__filter {
    width: 100%;
    justify-content: center;
  }

  .ax-cert-wall-card {
    padding: var(--ax-space-3);
  }
}

/* 10. Scissor Lifts Category Page */
.ax-scissor-page {
  color: var(--ax-text);
}

.ax-scissor-hero {
  padding-block: var(--ax-section-space-sm);
  background: var(--ax-surface-alt);
}

.ax-scissor-hero__grid,
.ax-scissor-applications__grid,
.ax-scissor-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: var(--ax-space-8);
  align-items: center;
}

.ax-scissor-hero__content,
.ax-scissor-section-heading,
.ax-scissor-applications__content,
.ax-scissor-cta {
  display: grid;
  gap: var(--ax-space-4);
}

.ax-scissor-hero__content h1,
.ax-scissor-section-heading h2,
.ax-scissor-applications__content h2,
.ax-scissor-cta h2 {
  margin: 0;
  color: var(--ax-ink);
}

.ax-scissor-hero__content h1 {
  max-width: 12ch;
  font-size: var(--ax-fs-h1);
}

.ax-scissor-hero__lead,
.ax-scissor-section-heading p,
.ax-scissor-applications__content p,
.ax-scissor-cta p {
  max-width: 68ch;
  margin: 0;
  font-size: var(--ax-fs-lead);
  line-height: 1.65;
}

.ax-scissor-hero__actions,
.ax-scissor-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ax-space-3);
  align-items: center;
}

.ax-scissor-hero__media,
.ax-scissor-applications__media,
.ax-scissor-model-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
}

.ax-scissor-hero__media img,
.ax-scissor-applications__media img,
.ax-scissor-model-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ax-scissor-spec-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--ax-space-3);
  margin: var(--ax-space-8) 0 0;
}

.ax-scissor-spec-strip div,
.ax-scissor-info-card,
.ax-scissor-model-card,
.ax-scissor-cta,
.ax-scissor-faq__items details {
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
}

.ax-scissor-spec-strip div {
  padding: var(--ax-space-4);
}

.ax-scissor-spec-strip dt,
.ax-scissor-model-card dt {
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-small);
  font-weight: 700;
  line-height: 1.35;
}

.ax-scissor-spec-strip dd,
.ax-scissor-model-card dd {
  margin: var(--ax-space-1) 0 0;
  color: var(--ax-ink);
  font-weight: 700;
}

.ax-scissor-card-grid {
  display: grid;
  gap: var(--ax-space-4);
}

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

.ax-scissor-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ax-scissor-info-card,
.ax-scissor-cta {
  padding: var(--ax-space-6);
}

.ax-scissor-info-card h3,
.ax-scissor-model-card h3 {
  margin: 0 0 var(--ax-space-2);
  color: var(--ax-ink);
  font-size: var(--ax-fs-h4);
}

.ax-scissor-info-card p {
  margin: 0;
  font-size: var(--ax-fs-body);
  line-height: 1.65;
}

.ax-scissor-model-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--ax-space-6);
}

.ax-scissor-model-card {
  overflow: hidden;
}

.ax-scissor-model-card__media {
  min-height: 260px;
  border-width: 0 0 1px;
  border-radius: 0;
  background: var(--ax-surface-alt);
}

.ax-scissor-model-card__body {
  display: grid;
  gap: var(--ax-space-4);
  padding: var(--ax-space-6);
}

.ax-scissor-model-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--ax-space-3);
  margin: 0;
}

.ax-scissor-check-list {
  display: grid;
  gap: var(--ax-space-2);
  margin: 0;
  padding-left: 1.2rem;
  font-size: var(--ax-fs-body);
  line-height: 1.65;
}

.ax-scissor-faq__grid {
  align-items: start;
}

.ax-scissor-faq__items {
  display: grid;
  gap: var(--ax-space-3);
}

.ax-scissor-faq__items details {
  padding: var(--ax-space-4) var(--ax-space-5);
}

.ax-scissor-faq__items summary {
  min-height: 44px;
  color: var(--ax-ink);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.45;
}

.ax-scissor-faq__items p {
  margin: var(--ax-space-2) 0 0;
  line-height: 1.65;
}

.ax-scissor-cta {
  background: var(--ax-navy);
}

.ax-scissor-cta h2,
.ax-scissor-cta p {
  color: #ffffff;
}

.ax-scissor-cta .ax-btn--secondary {
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #ffffff;
}

@media (max-width: 991px) {
  .ax-scissor-hero__grid,
  .ax-scissor-applications__grid,
  .ax-scissor-faq__grid {
    grid-template-columns: 1fr;
  }

  .ax-scissor-spec-strip,
  .ax-scissor-card-grid--six,
  .ax-scissor-card-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .ax-scissor-hero__actions,
  .ax-scissor-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ax-scissor-hero__actions .ax-btn,
  .ax-scissor-cta__actions .ax-btn {
    width: 100%;
  }

  .ax-scissor-spec-strip,
  .ax-scissor-card-grid--six,
  .ax-scissor-card-grid--four,
  .ax-scissor-model-grid,
  .ax-scissor-model-card dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 478px) {
  .ax-scissor-hero__content h1 {
    font-size: clamp(2rem, 12vw, 2.75rem);
  }

  .ax-scissor-info-card,
  .ax-scissor-model-card__body,
  .ax-scissor-cta {
    padding: var(--ax-space-5);
  }
}

/* 11. OEM & ODM page */
.ax-oem-hero,
.ax-oem-fit,
.ax-oem-scope,
.ax-oem-products,
.ax-oem-workflow,
.ax-oem-brief,
.ax-oem-control,
.ax-oem-inquiry {
  padding-block: var(--ax-section-space);
}

.ax-oem-hero,
.ax-oem-products,
.ax-oem-control {
  background: var(--ax-surface-alt);
}

.ax-oem-fit,
.ax-oem-scope,
.ax-oem-workflow,
.ax-oem-brief,
.ax-oem-inquiry {
  background: var(--ax-surface);
}

.ax-oem-hero__grid,
.ax-oem-workflow__grid,
.ax-oem-brief__grid,
.ax-oem-inquiry__grid {
  display: grid;
  gap: var(--ax-space-10);
  align-items: start;
}

.ax-oem-hero__grid,
.ax-oem-brief__grid,
.ax-oem-inquiry__grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
}

.ax-oem-workflow__grid {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.ax-oem-hero__content,
.ax-oem-section-heading,
.ax-oem-fit-card,
.ax-oem-scope-card,
.ax-oem-product-card,
.ax-oem-step,
.ax-oem-brief__content,
.ax-oem-info-group,
.ax-oem-control-card,
.ax-oem-inquiry__content,
.ax-oem-form-panel {
  display: grid;
  gap: var(--ax-space-4);
}

.ax-oem-hero__content h1 {
  max-width: 18ch;
  font-size: var(--ax-fs-h1);
}

.ax-oem-hero__text,
.ax-oem-section-heading p,
.ax-oem-fit-card p,
.ax-oem-scope-card p,
.ax-oem-product-card p,
.ax-oem-step p,
.ax-oem-brief__content p,
.ax-oem-info-group p,
.ax-oem-control-card p,
.ax-oem-inquiry__content p,
.ax-oem-form-note {
  color: var(--ax-text-muted);
  line-height: 1.65;
}

.ax-oem-section-heading {
  max-width: 820px;
  margin-bottom: var(--ax-space-8);
}

.ax-oem-section-heading h2,
.ax-oem-brief__content h2,
.ax-oem-inquiry__content h2 {
  font-size: var(--ax-fs-h2);
}

.ax-oem-hero__actions,
.ax-oem-brief__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ax-space-3);
  align-items: center;
}

.ax-oem-hero__media,
.ax-oem-fit-card,
.ax-oem-scope-card,
.ax-oem-product-card,
.ax-oem-step,
.ax-oem-info-group,
.ax-oem-control-card,
.ax-oem-form-panel {
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
  box-shadow: var(--ax-shadow-sm);
}

.ax-oem-hero__media {
  overflow: hidden;
  margin: 0;
  border-radius: var(--ax-radius-lg);
}

.ax-oem-hero__media img {
  display: block;
  width: 100%;
  aspect-ratio: 18 / 13;
  object-fit: cover;
}

.ax-oem-hero__media figcaption {
  padding: var(--ax-space-4) var(--ax-space-5);
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-small);
  line-height: 1.55;
}

.ax-oem-fit-grid,
.ax-oem-control-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--ax-space-4);
}

.ax-oem-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--ax-space-5);
}

.ax-oem-fit-card,
.ax-oem-scope-card,
.ax-oem-product-card,
.ax-oem-step,
.ax-oem-info-group,
.ax-oem-control-card,
.ax-oem-form-panel {
  padding: var(--ax-space-6);
}

.ax-oem-fit-card h3,
.ax-oem-scope-card h3,
.ax-oem-product-card h3,
.ax-oem-step h3,
.ax-oem-info-group h3,
.ax-oem-control-card h3 {
  font-size: var(--ax-fs-h4);
}

.ax-oem-scope-card__media {
  display: grid;
  place-items: center;
  min-height: 160px;
  border-radius: var(--ax-radius-sm);
  background: var(--ax-surface-alt);
}

.ax-oem-scope-card__media img {
  display: block;
  width: auto;
  max-width: 92%;
  max-height: 136px;
  object-fit: contain;
}

.ax-oem-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--ax-space-4);
}

.ax-oem-product-card {
  align-content: start;
  padding: var(--ax-space-4);
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ax-oem-product-card:hover,
.ax-oem-product-card:focus-visible {
  border-color: rgba(25, 140, 203, 0.55);
  box-shadow: var(--ax-shadow-md);
  transform: translateY(-2px);
}

.ax-oem-product-card__media {
  display: grid;
  place-items: center;
  min-height: 150px;
  border-radius: var(--ax-radius-sm);
  background: var(--ax-surface-alt);
}

.ax-oem-product-card__media img {
  display: block;
  width: auto;
  max-width: 92%;
  max-height: 128px;
  object-fit: contain;
}

.ax-oem-product-card__type {
  color: var(--ax-brand-deep);
  font-size: var(--ax-fs-small);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ax-oem-step-list {
  display: grid;
  gap: var(--ax-space-4);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ax-oem-step {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
}

.ax-oem-step__number {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(20, 85, 165, 0.12);
  color: var(--ax-brand-deep);
  font-family: var(--ax-font-heading);
  font-weight: 700;
}

.ax-oem-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--ax-space-4);
}

.ax-oem-info-group ul,
.ax-oem-control-card ul,
.ax-oem-inquiry__content ul {
  display: grid;
  gap: var(--ax-space-3);
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ax-text-muted);
  line-height: 1.65;
}

.ax-oem-form-panel .ax-form-block,
.ax-oem-form-panel :where(.brxe-shortcode, .brxe-code) {
  min-width: 0;
}

.ax-oem-form-note {
  font-size: var(--ax-fs-small);
}

@media (max-width: 991px) {
  .ax-oem-hero__grid,
  .ax-oem-workflow__grid,
  .ax-oem-brief__grid,
  .ax-oem-inquiry__grid {
    grid-template-columns: 1fr;
  }

  .ax-oem-fit-grid,
  .ax-oem-product-grid,
  .ax-oem-control-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .ax-oem-hero__actions,
  .ax-oem-brief__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ax-oem-hero__actions .ax-btn,
  .ax-oem-brief__actions .ax-btn {
    width: 100%;
  }

  .ax-oem-fit-grid,
  .ax-oem-scope-grid,
  .ax-oem-product-grid,
  .ax-oem-info-grid,
  .ax-oem-control-grid {
    grid-template-columns: 1fr;
  }

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

  .ax-oem-scope-card__media,
  .ax-oem-product-card__media {
    min-height: 140px;
  }
}

@media (max-width: 478px) {
  .ax-oem-hero__content h1 {
    font-size: clamp(2rem, 12vw, 2.75rem);
  }

  .ax-oem-fit-card,
  .ax-oem-scope-card,
  .ax-oem-product-card,
  .ax-oem-step,
  .ax-oem-info-group,
  .ax-oem-control-card,
  .ax-oem-form-panel {
    padding: var(--ax-space-5);
  }
}

/* 12. Service pages */
.ax-service-page {
  color: var(--ax-text);
  font-family: var(--ax-font-body);
  font-size: var(--ax-fs-body);
}

.ax-service-page h1,
.ax-service-page h2,
.ax-service-page h3 {
  margin: 0;
  color: var(--ax-ink);
  font-family: var(--ax-font-heading);
  line-height: 1.12;
}

.ax-service-page p {
  margin: 0;
}

.ax-service-hero,
.ax-service-routes,
.ax-service-prepare,
.ax-service-process,
.ax-service-scope,
.ax-service-evidence,
.ax-service-faq,
.ax-service-cta {
  padding-block: var(--ax-section-space);
}

.ax-service-hero,
.ax-service-prepare,
.ax-service-evidence,
.ax-service-faq--alt {
  background: var(--ax-surface-alt);
}

.ax-service-routes,
.ax-service-process,
.ax-service-scope,
.ax-service-faq,
.ax-service-cta {
  background: var(--ax-surface);
}

.ax-service-hero__grid,
.ax-service-detail-grid,
.ax-service-compact-cta {
  display: grid;
  gap: var(--ax-space-10);
  align-items: start;
}

.ax-service-hero__grid,
.ax-service-detail-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
}

.ax-service-compact-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.ax-service-hero__content,
.ax-service-section-heading,
.ax-service-card,
.ax-service-link-card,
.ax-service-step,
.ax-service-inline-cta,
.ax-service-compact-cta > div {
  display: grid;
  gap: var(--ax-space-4);
}

.ax-service-hero__content h1 {
  max-width: 18ch;
  font-size: var(--ax-fs-h1);
}

.ax-service-hero__lead {
  max-width: 52rem;
  color: var(--ax-text);
  font-size: var(--ax-fs-lead);
  line-height: 1.62;
}

.ax-service-hero__content > p:not(.ax-eyebrow),
.ax-service-section-heading p,
.ax-service-card p,
.ax-service-link-card p,
.ax-service-step p,
.ax-service-faq-item p,
.ax-service-inline-cta p,
.ax-service-compact-cta p,
.ax-service-media-card figcaption {
  color: var(--ax-text-muted);
  line-height: 1.65;
}

.ax-service-section-heading {
  max-width: 820px;
  margin-bottom: var(--ax-space-8);
}

.ax-service-section-heading--sticky {
  position: sticky;
  top: calc(var(--ax-current-header-main-height, 76px) + var(--ax-space-6));
  align-self: start;
  margin-bottom: 0;
}

.ax-service-section-heading h2,
.ax-service-compact-cta h2 {
  font-size: var(--ax-fs-h2);
}

.ax-service-hero__actions,
.ax-service-compact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ax-space-3);
  align-items: center;
}

.ax-service-hero__media,
.ax-service-card,
.ax-service-link-card,
.ax-service-step,
.ax-service-faq-item,
.ax-service-inline-cta,
.ax-service-compact-cta,
.ax-service-media-card {
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
  box-shadow: var(--ax-shadow-sm);
}

.ax-service-hero__media,
.ax-service-media-card {
  overflow: hidden;
  margin: 0;
}

.ax-service-hero__media {
  border-radius: var(--ax-radius-lg);
}

.ax-service-hero__media img,
.ax-service-media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 18 / 13;
  object-fit: cover;
}

.ax-service-card-grid,
.ax-service-check-grid,
.ax-service-media-grid {
  display: grid;
  gap: var(--ax-space-4);
}

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

.ax-service-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.ax-service-card,
.ax-service-link-card,
.ax-service-step,
.ax-service-inline-cta,
.ax-service-compact-cta {
  padding: var(--ax-space-6);
}

.ax-service-link-card {
  color: inherit;
  text-decoration: none;
  transition: border-color var(--ax-transition), box-shadow var(--ax-transition), transform var(--ax-transition);
}

.ax-service-link-card:hover,
.ax-service-link-card:focus-visible {
  border-color: rgba(25, 140, 203, 0.55);
  box-shadow: var(--ax-shadow-md);
  transform: translateY(-2px);
}

.ax-service-card__label {
  color: var(--ax-brand-deep);
  font-family: var(--ax-font-heading);
  font-size: var(--ax-fs-h3);
  font-weight: 700;
  line-height: 1;
}

.ax-service-card h3,
.ax-service-link-card h3,
.ax-service-step h3,
.ax-service-inline-cta h3 {
  font-size: var(--ax-fs-h4);
}

.ax-service-checklist {
  display: grid;
  gap: var(--ax-space-3);
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ax-text-muted);
  line-height: 1.65;
}

.ax-service-step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--ax-space-4);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ax-service-step-list--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ax-service-step__number {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(20, 85, 165, 0.12);
  color: var(--ax-brand-deep);
  font-family: var(--ax-font-heading);
  font-weight: 700;
}

.ax-service-faq-list {
  display: grid;
  gap: var(--ax-space-3);
}

.ax-service-faq-item {
  overflow: hidden;
}

.ax-service-faq-item summary {
  display: flex;
  min-height: 56px;
  align-items: center;
  padding: var(--ax-space-4) var(--ax-space-5);
  color: var(--ax-ink);
  cursor: pointer;
  font-family: var(--ax-font-heading);
  font-size: var(--ax-fs-h4);
  font-weight: 700;
  line-height: 1.25;
}

.ax-service-faq-item summary:focus-visible,
.ax-service-page a:focus-visible,
.ax-service-page button:focus-visible {
  outline: 3px solid rgba(25, 140, 203, 0.35);
  outline-offset: 3px;
}

.ax-service-faq-item p {
  padding: 0 var(--ax-space-5) var(--ax-space-5);
}

.ax-service-inline-cta {
  margin-top: var(--ax-space-4);
  background: var(--ax-surface-alt);
}

.ax-service-media-card figcaption {
  padding: var(--ax-space-4) var(--ax-space-5);
  font-size: var(--ax-fs-small);
}

@media (max-width: 991px) {
  .ax-service-hero__grid,
  .ax-service-detail-grid,
  .ax-service-compact-cta {
    grid-template-columns: 1fr;
  }

  .ax-service-section-heading--sticky {
    position: static;
    margin-bottom: var(--ax-space-6);
  }

  .ax-service-card-grid--three,
  .ax-service-card-grid--four,
  .ax-service-step-list,
  .ax-service-step-list--four,
  .ax-service-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .ax-service-hero__actions,
  .ax-service-compact-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ax-service-hero__actions .ax-btn,
  .ax-service-compact-cta__actions .ax-btn {
    width: 100%;
  }

  .ax-service-card-grid--three,
  .ax-service-card-grid--four,
  .ax-service-step-list,
  .ax-service-step-list--four,
  .ax-service-media-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 478px) {
  .ax-service-hero__content h1 {
    font-size: clamp(2rem, 12vw, 2.75rem);
  }

  .ax-service-card,
  .ax-service-link-card,
  .ax-service-step,
  .ax-service-inline-cta,
  .ax-service-compact-cta {
    padding: var(--ax-space-5);
  }

  .ax-service-faq-item summary {
    padding-inline: var(--ax-space-4);
  }

  .ax-service-faq-item p {
    padding-inline: var(--ax-space-4);
  }
}

/* 8. Global Header */
:root {
  --ax-container-wide: 1440px;
  --ax-admin-bar-height: 0px;
  --ax-current-header-main-height: var(--ax-header-main-height);
  --ax-header-utility-height: 38px;
  --ax-header-main-height: 88px;
  --ax-header-main-sticky-height: 72px;
  --ax-header-mobile-height: 68px;
}

body.admin-bar {
  --ax-admin-bar-height: 32px;
}

@media (max-width: 782px) {
  body.admin-bar {
    --ax-admin-bar-height: 46px;
  }
}

body.ax-menu-open,
body.ax-modal-open {
  overflow: hidden;
}

.ax-site-header {
  position: relative;
  z-index: 1000;
  background: var(--ax-surface);
  color: var(--ax-ink);
  font-family: var(--ax-font-body);
  overflow: visible;
}

.ax-site-header-host {
  position: relative;
  z-index: 1000;
  overflow: visible;
  filter: none;
  transform: none;
  contain: none;
}

.ax-site-header-host .ax-site-header {
  position: relative;
  top: auto;
  z-index: auto;
}

:where(.brxe-section, .brxe-container, .brxe-block, .brxe-div, .brxe-code):has(.ax-site-header) {
  overflow: visible;
  filter: none;
  transform: none;
  contain: none;
}

.ax-header-sticky-sentinel {
  display: block;
  width: 100%;
  height: 1px;
  pointer-events: none;
}

.ax-header-sticky-placeholder {
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.ax-header-utility {
  height: auto;
  min-height: var(--ax-header-utility-height);
  border-bottom: 1px solid var(--ax-border-color);
  background: var(--ax-surface-alt);
  font-size: 13px;
  overflow: visible;
  transition: border-color var(--ax-transition);
}

.ax-header-utility__inner,
.ax-header-main__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ax-header-utility__inner {
  min-height: var(--ax-header-utility-height);
  gap: var(--ax-space-4);
  padding-block: 2px;
}

.ax-header-utility__group,
.ax-header-utility__group--right {
  display: flex;
  align-items: center;
  gap: var(--ax-space-4);
}

.ax-header-utility__link,
.ax-header-nav__link,
.ax-header-nav__button,
.ax-header-nav__toggle,
.ax-header-dropdown a,
.ax-mobile-menu__nav a,
.ax-mobile-menu__accordion,
.ax-mobile-menu__tools a {
  color: var(--ax-ink);
  font-family: var(--ax-font-body);
  text-decoration: none;
}

.ax-header-utility__link {
  display: inline-flex;
  align-items: center;
  gap: var(--ax-space-2);
  color: var(--ax-text-muted);
  font-size: 13px;
  font-weight: 600;
}

.ax-header-utility__link:hover,
.ax-header-utility__link:focus-visible,
.ax-header-nav__link:hover,
.ax-header-nav__link:focus-visible,
.ax-header-nav__button:hover,
.ax-header-nav__button:focus-visible,
.ax-header-nav__toggle:hover,
.ax-header-nav__toggle:focus-visible,
.ax-header-dropdown a:hover,
.ax-header-dropdown a:focus-visible,
.ax-mobile-menu__nav a:hover,
.ax-mobile-menu__nav a:focus-visible,
.ax-mobile-menu__accordion:hover,
.ax-mobile-menu__accordion:focus-visible,
.ax-mobile-menu__tools a:hover,
.ax-mobile-menu__tools a:focus-visible {
  color: var(--ax-brand-deep);
}

.ax-header-icon,
.ax-header-chevron {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.ax-header-chevron {
  width: 16px;
  height: 16px;
  transition: transform var(--ax-transition);
}

.ax-header-main {
  position: relative;
  z-index: 1002;
  overflow: visible;
  border-bottom: 1px solid transparent;
  background: var(--ax-surface);
  transition: box-shadow var(--ax-transition), border-color var(--ax-transition);
}

.ax-header-main.is-sticky {
  position: fixed;
  top: var(--ax-admin-bar-height);
  left: 0;
  right: 0;
  width: 100%;
  border-bottom-color: var(--ax-border-color);
  box-shadow: 0 4px 16px rgba(11, 31, 51, 0.06);
}

.ax-header-main__inner {
  min-height: var(--ax-header-main-height);
  gap: var(--ax-space-5);
  transition: min-height var(--ax-transition);
}

.ax-header-main.is-sticky .ax-header-main__inner {
  min-height: var(--ax-header-main-sticky-height);
}

.ax-header-logo,
.ax-mobile-menu__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.ax-header-logo img {
  display: block;
  width: clamp(220px, 18vw, 280px);
  height: auto;
  object-fit: contain;
  transition: width var(--ax-transition);
}

.ax-header-main.is-sticky .ax-header-logo img {
  width: clamp(190px, 15vw, 230px);
}

.ax-header-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
}

.ax-header-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.4vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ax-header-nav__item {
  position: relative;
}

.ax-header-nav__combo {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 2px;
}

.ax-header-nav__link,
.ax-header-nav__button,
.ax-header-nav__toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: var(--ax-space-1);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  padding: 0;
  white-space: nowrap;
}

.ax-header-nav__toggle {
  width: 30px;
  justify-content: center;
}

.ax-header-nav__toggle[aria-expanded="true"] {
  color: var(--ax-brand-deep);
}

.ax-header-nav__toggle[aria-expanded="true"] .ax-header-chevron,
.ax-mobile-menu__accordion[aria-expanded="true"] .ax-header-chevron {
  transform: rotate(180deg);
}

.ax-header-cta {
  white-space: nowrap;
}

.ax-header-actions {
  flex: 0 0 auto;
}

.ax-header-mobile-actions {
  display: none;
  align-items: center;
  gap: var(--ax-space-2);
}

.ax-header-icon-button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-sm);
  background: var(--ax-surface);
  color: var(--ax-ink);
  cursor: pointer;
}

.ax-header-icon-button:hover,
.ax-header-icon-button:focus-visible {
  border-color: var(--ax-brand-deep);
  color: var(--ax-brand-deep);
}

.ax-header-shortcode-slot {
  display: flex;
  min-height: 0;
  min-width: 120px;
  align-items: center;
  justify-content: flex-end;
  color: var(--ax-text-muted);
  font-size: 13px;
  line-height: 1;
}

.ax-header-utility .ax-header-shortcode-slot {
  min-height: 30px;
}

.ax-header-shortcode-slot :where(select, button, a) {
  font-family: var(--ax-font-body);
}

.ax-header-utility .ax-header-shortcode-slot :where(select, button, a) {
  min-height: 28px;
  font-size: 13px;
  line-height: 1.2;
}

.ax-header-utility .ax-header-shortcode-slot :where(.trp-language-switcher, .trp_language_switcher_shortcode) {
  width: auto;
  min-height: 30px;
}

.ax-header-utility .ax-header-shortcode-slot :where(.trp-ls-shortcode-current-language, .trp-ls-shortcode-language) {
  width: auto !important;
  min-width: 110px;
}

.ax-header-utility .ax-header-shortcode-slot :where(.trp-ls-shortcode-current-language) {
  display: flex !important;
  min-height: 30px !important;
  align-items: center;
  padding-block: 0 !important;
}

.ax-header-utility .ax-header-shortcode-slot :where(.trp-ls-shortcode-current-language a, .trp-ls-shortcode-language a) {
  display: flex;
  min-height: 28px;
  align-items: center;
  gap: 6px;
  padding-block: 0 !important;
}

.ax-header-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1005;
  width: min(280px, calc(100vw - 2rem));
  padding: var(--ax-space-3);
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-sm);
  background: var(--ax-surface);
  box-shadow: 0 12px 28px rgba(11, 31, 51, 0.1);
  transform: translateX(-50%);
}

.ax-header-dropdown[hidden],
.ax-products-mega[hidden],
.ax-mobile-menu[hidden],
.ax-mobile-menu__panel[hidden] {
  display: none;
}

.ax-header-dropdown a {
  display: flex;
  min-height: 44px;
  align-items: center;
  border-radius: var(--ax-radius-xs);
  color: var(--ax-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  padding: var(--ax-space-3);
  text-decoration: none;
}

.ax-header-dropdown a:hover,
.ax-header-dropdown a:focus-visible {
  background: var(--ax-surface-alt);
  text-decoration: none;
}

.ax-products-mega {
  position: absolute;
  inset-inline: 0;
  top: 100%;
  z-index: 1001;
  box-sizing: border-box;
  border-top: 1px solid var(--ax-border-color);
  border-bottom: 1px solid var(--ax-border-color);
  background: var(--ax-surface);
  box-shadow: var(--ax-shadow-sm);
  max-height: calc(100dvh - var(--ax-header-main-height) - 16px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.ax-header-main.is-sticky ~ .ax-products-mega {
  position: fixed;
  top: calc(var(--ax-admin-bar-height) + var(--ax-current-header-main-height));
  max-height: calc(100dvh - var(--ax-admin-bar-height) - var(--ax-current-header-main-height) - 16px);
}

.ax-mega-menu__inner {
  width: min(100% - var(--ax-gutter) * 2, var(--ax-container-wide));
  display: grid;
  gap: var(--ax-space-4);
  padding-block: var(--ax-space-4);
}

.ax-mega-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ax-space-4);
  border-bottom: 1px solid var(--ax-border-color);
  padding-bottom: var(--ax-space-3);
}

.ax-mega-menu__header h2 {
  margin: 0;
  color: var(--ax-ink);
  font-family: var(--ax-font-heading);
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.1;
}

.ax-mega-menu__all-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ax-ink);
  font-family: var(--ax-font-body);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: color var(--ax-transition), text-decoration-color var(--ax-transition);
}

.ax-mega-menu__all-link:hover,
.ax-mega-menu__all-link:focus-visible {
  color: var(--ax-brand-deep);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.ax-mega-card-grid {
  display: grid;
  gap: clamp(12px, 1vw, 18px);
}

.ax-mega-card-grid--products {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.ax-mega-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--ax-radius-sm);
  background: transparent;
  color: var(--ax-ink);
  padding: 12px 10px;
  text-align: center;
  text-decoration: none;
  transition: box-shadow var(--ax-transition), color var(--ax-transition), outline-color var(--ax-transition), transform var(--ax-transition);
}

.ax-mega-card:hover,
.ax-mega-card:focus-visible {
  color: var(--ax-brand-deep);
  outline: 2px solid rgba(25, 140, 203, 0.28);
  outline-offset: 0;
  box-shadow: inset 0 -2px 0 var(--ax-brand-deep);
  text-decoration: none;
  transform: translateY(-2px);
}

.ax-mega-card__media {
  display: flex;
  height: clamp(88px, 7vw, 108px);
  max-height: 112px;
  align-items: center;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.ax-mega-card__media img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform var(--ax-transition);
}

.ax-mega-card:hover .ax-mega-card__media img,
.ax-mega-card:focus-visible .ax-mega-card__media img {
  transform: scale(1.02);
}

.ax-mega-card__body {
  display: grid;
  align-content: center;
  gap: 0;
  padding: var(--ax-space-2) 0 0;
}

.ax-mega-card__title {
  color: currentColor;
  font-family: var(--ax-font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.ax-mobile-menu {
  position: fixed;
  display: none;
  inset: 0;
  z-index: 1100;
}

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

.ax-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 51, 0.42);
}

.ax-mobile-menu__drawer {
  position: absolute;
  inset-block: 0;
  right: 0;
  width: min(100%, 420px);
  overflow-y: auto;
  background: var(--ax-surface);
  box-shadow: -12px 0 32px rgba(11, 31, 51, 0.16);
}

.ax-mobile-menu__header {
  display: flex;
  min-height: var(--ax-header-mobile-height);
  align-items: center;
  justify-content: space-between;
  gap: var(--ax-space-4);
  border-bottom: 1px solid var(--ax-border-color);
  padding: var(--ax-space-3) var(--ax-space-4);
}

.ax-mobile-menu__logo img {
  display: block;
  width: clamp(180px, 58vw, 220px);
  height: auto;
}

.ax-mobile-menu__nav,
.ax-mobile-menu__tools {
  display: grid;
  gap: 0;
  padding: var(--ax-space-4);
}

.ax-mobile-menu__nav > a,
.ax-mobile-menu__combo > a,
.ax-mobile-menu__accordion,
.ax-mobile-menu__tools a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid var(--ax-border-color);
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  padding: var(--ax-space-3) 0;
  text-align: left;
}

.ax-mobile-menu__combo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  align-items: center;
  border-bottom: 1px solid var(--ax-border-color);
}

.ax-mobile-menu__combo > a {
  border-bottom: 0;
}

.ax-mobile-menu__combo .ax-mobile-menu__accordion {
  width: 48px;
  justify-content: center;
  border-bottom: 0;
  padding-inline: 0;
}

.ax-mobile-menu__panel {
  display: none;
  gap: var(--ax-space-2);
  border-bottom: 1px solid var(--ax-border-color);
  padding: var(--ax-space-3) 0 var(--ax-space-4);
}

.ax-mobile-menu__panel.is-open {
  display: grid;
}

.ax-mobile-menu__panel h3 {
  margin: var(--ax-space-3) 0 var(--ax-space-1);
  color: var(--ax-text-muted);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ax-mobile-menu__panel a {
  min-height: 40px;
  color: var(--ax-text);
  font-size: 15px;
  font-weight: 600;
  padding-left: var(--ax-space-3);
  text-decoration: none;
}

.ax-mobile-menu__cta {
  margin-top: var(--ax-space-4);
  width: 100%;
}

.ax-mobile-menu__tools {
  border-top: 1px solid var(--ax-border-color);
}

.ax-site-header a:focus-visible,
.ax-site-header button:focus-visible {
  outline: 3px solid rgba(25, 140, 203, 0.35);
  outline-offset: 3px;
}

.ax-quick-quote-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: var(--ax-gutter);
}

.ax-quick-quote-modal[hidden] {
  display: none;
}

.ax-quick-quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 51, 0.38);
  backdrop-filter: blur(7px);
}

.ax-quick-quote-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(86dvh, 760px);
  overflow-y: auto;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-lg);
  background: var(--ax-surface);
  box-shadow: 0 24px 70px rgba(11, 31, 51, 0.24);
  padding: clamp(24px, 4vw, 40px);
}

.ax-quick-quote-modal__close {
  position: absolute;
  top: var(--ax-space-4);
  right: var(--ax-space-4);
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-sm);
  background: var(--ax-surface);
  color: var(--ax-ink);
  cursor: pointer;
}

.ax-quick-quote-modal__close:hover,
.ax-quick-quote-modal__close:focus-visible {
  border-color: var(--ax-brand-deep);
  color: var(--ax-brand-deep);
}

.ax-quick-quote-modal__intro {
  display: grid;
  gap: var(--ax-space-3);
  padding-right: 3.5rem;
}

.ax-quick-quote-modal__intro h2 {
  margin: 0;
  color: var(--ax-ink);
  font-family: var(--ax-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.ax-quick-quote-modal__intro p {
  margin: 0;
  color: var(--ax-text-muted);
  line-height: 1.65;
}

.ax-quick-quote-modal__form {
  margin-top: var(--ax-space-6);
}

/* 9. Global Footer */
.ax-site-footer {
  background: var(--ax-navy);
  color: #D7DEE8;
  font-family: var(--ax-font-body);
  font-size: var(--ax-fs-small);
}

.ax-site-footer__main {
  border-top: 1px solid rgba(215, 222, 232, 0.18);
  padding-block: clamp(48px, 5vw, 72px) var(--ax-space-8);
}

.ax-footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.25fr) repeat(5, minmax(130px, 1fr));
  gap: clamp(20px, 2.4vw, 34px);
  align-items: start;
}

.ax-footer-brand,
.ax-footer-contact {
  display: grid;
  gap: var(--ax-space-4);
}

.ax-footer-logo {
  display: inline-flex;
  width: fit-content;
}

.ax-footer-logo img {
  display: block;
  width: clamp(200px, 18vw, 260px);
  height: auto;
}

.ax-footer-brand__title,
.ax-footer-nav__title {
  margin: 0;
  color: #ffffff;
  font-family: var(--ax-font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.ax-footer-brand__text,
.ax-footer-company-name,
.ax-footer-address,
.ax-footer-copyright {
  margin: 0;
  color: #D7DEE8;
  line-height: 1.65;
}

.ax-footer-brand__text {
  max-width: 28rem;
}

.ax-footer-company-name {
  font-weight: 700;
}

.ax-footer-address {
  font-style: normal;
}

.ax-footer-nav,
.ax-footer-contact {
  min-width: 0;
}

.ax-footer-nav__list,
.ax-footer-contact__list {
  display: grid;
  gap: var(--ax-space-1);
  margin: var(--ax-space-3) 0 0;
  padding: 0;
  list-style: none;
}

.ax-footer-nav__list a,
.ax-footer-contact__list a,
.ax-footer-legal a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: #D7DEE8;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
  text-underline-offset: 4px;
}

.ax-footer-nav__list a:hover,
.ax-footer-nav__list a:focus-visible,
.ax-footer-contact__list a:hover,
.ax-footer-contact__list a:focus-visible,
.ax-footer-legal a:hover,
.ax-footer-legal a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.ax-footer-contact__list a {
  gap: var(--ax-space-2);
}

.ax-footer-contact__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.ax-footer-quote {
  box-sizing: border-box;
  width: fit-content;
  margin-top: var(--ax-space-2);
  cursor: pointer;
}

.ax-site-footer__bottom {
  border-top: 1px solid rgba(215, 222, 232, 0.16);
  padding-block: var(--ax-space-4);
}

.ax-footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ax-space-4);
}

.ax-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ax-space-4);
  align-items: center;
  justify-content: flex-end;
}

.ax-footer-legal a {
  min-height: 40px;
  font-size: 14px;
}

.ax-site-footer a:focus-visible,
.ax-site-footer .ax-btn:focus-visible {
  outline: 3px solid rgba(25, 140, 203, 0.48);
  outline-offset: 3px;
}

@media (min-width: 1200px) and (max-width: 1279px) {
  .ax-mega-card-grid--products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ax-mega-card__media {
    height: clamp(76px, 7vw, 92px);
  }
}

@media (max-width: 1199px) {
  .ax-header-nav,
  .ax-header-actions,
  .ax-header-dropdown,
  .ax-products-mega {
    display: none;
  }

  .ax-header-main__inner,
  .ax-header-main.is-sticky .ax-header-main__inner {
    min-height: var(--ax-header-mobile-height);
  }

  .ax-header-logo img,
  .ax-header-main.is-sticky .ax-header-logo img {
    width: clamp(180px, 42vw, 220px);
  }

  .ax-header-mobile-actions {
    display: flex;
  }
}

@media (max-width: 991px) {
  .ax-header-utility,
  .ax-header-nav,
  .ax-header-actions,
  .ax-header-dropdown,
  .ax-products-mega {
    display: none;
  }

  .ax-header-main__inner,
  .ax-header-main.is-sticky .ax-header-main__inner {
    min-height: var(--ax-header-mobile-height);
  }

  .ax-header-logo img,
  .ax-header-main.is-sticky .ax-header-logo img {
    width: clamp(180px, 42vw, 220px);
  }

  .ax-header-mobile-actions {
    display: flex;
  }

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

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

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

  .ax-footer-legal {
    justify-content: flex-start;
  }

  .ax-footer-nav__list a,
  .ax-footer-contact__list a,
  .ax-footer-legal a {
    min-height: 44px;
  }
}

@media (max-width: 767px) {
  .ax-site-footer__main {
    padding-block: var(--ax-space-8);
  }

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

  .ax-footer-quote {
    width: 100%;
  }
}

@media (max-width: 478px) {
  .ax-header-main__inner {
    gap: var(--ax-space-3);
  }

  .ax-header-icon-button {
    width: 44px;
    height: 44px;
  }

  .ax-site-footer {
    font-size: 14px;
  }

  .ax-footer-grid {
    gap: var(--ax-space-6);
  }

  .ax-footer-logo img {
    width: min(220px, 74vw);
  }

  .ax-footer-legal {
    gap: var(--ax-space-2) var(--ax-space-4);
  }
}

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

/* 20. Dynamic single-product template */
.ax-product-hero,
.ax-product-nav,
.ax-product-section,
.ax-product-quote {
  color: var(--ax-text);
  font-family: var(--ax-font-body);
  font-size: var(--ax-fs-body);
}

.ax-product-hero *,
.ax-product-nav *,
.ax-product-section *,
.ax-product-quote * {
  box-sizing: border-box;
}

.ax-product-hero h1,
.ax-product-section h2,
.ax-product-section h3,
.ax-product-quote h2 {
  color: var(--ax-ink);
  font-family: var(--ax-font-heading);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.ax-product-hero h1 {
  margin: var(--ax-space-3) 0 0;
  font-size: var(--ax-fs-h1);
  line-height: 1.06;
}

.ax-product-section h2,
.ax-product-quote h2 {
  margin: var(--ax-space-2) 0 0;
  font-size: var(--ax-fs-h2);
  line-height: 1.1;
}

.ax-product-section h3 {
  margin: 0;
  font-size: var(--ax-fs-h3);
  line-height: 1.2;
}

.ax-product-hero p,
.ax-product-section p,
.ax-product-quote p {
  line-height: 1.65;
}

.ax-product-hero {
  padding-block: var(--ax-space-6) var(--ax-section-space-sm);
  overflow: clip;
  background:
    linear-gradient(90deg, rgba(14, 73, 157, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(14, 73, 157, 0.05) 1px, transparent 1px),
    var(--ax-surface);
  background-size: 48px 48px;
}

.ax-product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--ax-space-2);
  margin-bottom: var(--ax-space-8);
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-small);
  line-height: 1.45;
}

.ax-product-breadcrumb a {
  color: var(--ax-action);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color var(--ax-transition), text-decoration-color var(--ax-transition);
}

.ax-product-breadcrumb a:hover,
.ax-product-breadcrumb a:focus-visible {
  color: var(--ax-action-hover);
  text-decoration-color: currentColor;
}

.ax-product-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.ax-product-hero--no-media .ax-product-hero__grid {
  grid-template-columns: minmax(0, 48rem);
}

.ax-product-hero__content {
  min-width: 0;
}

.ax-product-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ax-space-2);
  margin: var(--ax-space-5) 0 0;
  padding: 0;
  list-style: none;
}

.ax-product-hero__meta li {
  display: grid;
  gap: 2px;
  min-width: 8.5rem;
  padding: var(--ax-space-2) var(--ax-space-3);
  border-left: 3px solid var(--ax-brand-sky);
  background: rgba(255, 255, 255, 0.88);
}

.ax-product-hero__meta span {
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-caption);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.ax-product-hero__meta strong {
  color: var(--ax-ink);
  font-size: var(--ax-fs-card-copy);
  line-height: 1.35;
}

.ax-product-hero__summary {
  max-width: 42rem;
  margin: var(--ax-space-6) 0 0;
  color: var(--ax-text);
  font-size: var(--ax-fs-lead);
}

.ax-product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ax-space-3);
  margin-top: var(--ax-space-6);
}

.ax-product-hero__assist {
  max-width: 38rem;
  margin: var(--ax-space-3) 0 0;
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-small);
}

.ax-product-gallery {
  min-width: 0;
}

.ax-product-gallery__stage {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  margin: 0;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-lg);
  overflow: visible;
  background: var(--ax-surface);
  box-shadow: var(--ax-shadow-sm);
}

.ax-product-gallery__main {
  display: block;
  width: 100%;
  height: auto !important;
  max-width: 100%;
  max-height: none !important;
  object-fit: contain;
  object-position: center;
  padding: 0;
  border-radius: calc(var(--ax-radius-lg) - 1px);
}

.ax-product-gallery__main[hidden],
.ax-product-gallery__video-stage[hidden] {
  display: none !important;
}

.ax-product-gallery__video-stage {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  border-radius: calc(var(--ax-radius-lg) - 1px);
  background: var(--ax-navy);
}

.ax-product-gallery__video-stage iframe,
.ax-product-gallery__video-stage video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.ax-product-gallery__video-link {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--ax-radius-sm);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.ax-product-gallery__video-link:hover,
.ax-product-gallery__video-link:focus-visible {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.ax-product-gallery__thumbs {
  display: flex;
  gap: var(--ax-space-2);
  margin-top: var(--ax-space-3);
  padding: 3px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.ax-product-gallery__thumb {
  display: grid;
  width: 5rem;
  height: 4rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-sm);
  padding: 0.25rem;
  cursor: pointer;
  background: var(--ax-surface);
  transition: border-color var(--ax-transition), box-shadow var(--ax-transition);
}

.ax-product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ax-product-gallery__thumb--video {
  position: relative;
  color: #ffffff;
  background: var(--ax-navy);
}

.ax-product-gallery__play-icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--ax-action);
  box-shadow: 0 0.25rem 0.75rem rgba(11, 31, 51, 0.24);
}

.ax-product-gallery__play-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 0.1875rem;
  border-top: 0.4375rem solid transparent;
  border-bottom: 0.4375rem solid transparent;
  border-left: 0.6875rem solid #ffffff;
}

.ax-product-gallery__thumb--video:hover,
.ax-product-gallery__thumb--video:focus-visible,
.ax-product-gallery__thumb--video.is-active {
  background: var(--ax-navy);
}

.ax-product-gallery__thumb:hover,
.ax-product-gallery__thumb:focus-visible,
.ax-product-gallery__thumb.is-active {
  border-color: var(--ax-action);
  box-shadow: 0 0 0 2px rgba(25, 140, 203, 0.2);
}

.ax-product-key-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(2rem, 5vw, 4rem) 0 0;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  overflow: hidden;
  background: var(--ax-surface);
  box-shadow: var(--ax-shadow-sm);
}

.ax-product-key-specs__item {
  min-width: 0;
  padding: var(--ax-space-5);
  border-right: 1px solid var(--ax-border-color);
}

.ax-product-key-specs__item:last-child {
  border-right: 0;
}

.ax-product-key-specs dt {
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-caption);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
}

.ax-product-key-specs dd {
  margin: var(--ax-space-2) 0 0;
  color: var(--ax-action);
  font-family: var(--ax-font-heading);
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 700;
  line-height: 1.1;
}

.ax-product-key-specs dd span {
  font-family: var(--ax-font-body);
  font-size: var(--ax-fs-small);
  font-weight: 600;
}

.ax-product-hero__content .ax-product-key-specs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: var(--ax-space-6);
  box-shadow: none;
}

.ax-product-hero__content .ax-product-key-specs__item {
  padding: var(--ax-space-4);
}

.ax-product-hero__content .ax-product-key-specs__item:nth-child(2) {
  border-right: 0;
}

.ax-product-hero__content .ax-product-key-specs__item:nth-child(-n + 2) {
  border-bottom: 1px solid var(--ax-border-color);
}

.ax-product-hero__content .ax-product-key-specs dd {
  font-size: clamp(18px, 1.7vw, 24px);
}

.ax-product-nav {
  position: sticky;
  z-index: 30;
  top: calc(var(--ax-current-header-main-height, 72px) + var(--ax-admin-bar-height, 0px));
  border-block: 1px solid var(--ax-border-color);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0.25rem 0.75rem rgba(11, 31, 51, 0.06);
  backdrop-filter: blur(10px);
}

.ax-product-nav__inner {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.ax-product-nav__list {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  gap: var(--ax-space-6);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ax-product-nav__list a {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  border-bottom: 3px solid transparent;
  color: var(--ax-text);
  font-size: var(--ax-fs-small);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color var(--ax-transition), color var(--ax-transition);
}

.ax-product-nav__list a:hover,
.ax-product-nav__list a:focus-visible,
.ax-product-nav__list a.is-active {
  border-bottom-color: var(--ax-brand-sky);
  color: var(--ax-action);
}

.ax-product-section {
  padding-block: var(--ax-section-space-sm);
  scroll-margin-top: calc(var(--ax-current-header-main-height, 72px) + 4.5rem);
  background: var(--ax-surface);
}

.ax-product-specifications,
.ax-product-applications,
.ax-product-resources,
.ax-product-related {
  background: var(--ax-surface-alt);
}

.ax-product-section__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.65fr);
  align-items: end;
  gap: var(--ax-space-8);
  margin-bottom: var(--ax-space-8);
}

.ax-product-section__heading > p {
  max-width: 38rem;
  margin: 0;
  color: var(--ax-text-muted);
}

.ax-product-section__heading--single {
  grid-template-columns: 1fr;
}

.ax-product-decision {
  background: var(--ax-surface-alt);
}

.ax-product-decision__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--ax-space-5);
}

.ax-product-decision-card {
  min-width: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--ax-border-color);
  border-top: 4px solid var(--ax-action);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
  box-shadow: var(--ax-shadow-sm);
}

.ax-product-decision-card--confirm {
  border-top-color: var(--ax-brand-sky);
}

.ax-product-decision-card:only-child {
  grid-column: 1 / -1;
}

.ax-product-decision-card__label {
  margin: 0 0 var(--ax-space-5);
  color: var(--ax-action);
  font-size: var(--ax-fs-caption);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ax-product-decision-list {
  display: grid;
  gap: var(--ax-space-5);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ax-product-decision-list li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  align-items: start;
  gap: var(--ax-space-3);
}

.ax-product-decision-list__mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--ax-action);
  font-weight: 800;
}

.ax-product-decision-card--confirm .ax-product-decision-list__mark {
  background: var(--ax-brand-sky);
}

.ax-product-decision-list h3,
.ax-product-decision__options-heading h3 {
  font-size: var(--ax-fs-card-title);
}

.ax-product-decision-list p {
  margin: var(--ax-space-1) 0 0;
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-card-copy);
}

.ax-product-decision__options {
  margin-top: var(--ax-space-8);
  padding-top: var(--ax-space-8);
  border-top: 1px solid var(--ax-border-color);
}

.ax-product-decision__options-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.7fr);
  align-items: end;
  gap: var(--ax-space-8);
  margin-bottom: var(--ax-space-6);
}

.ax-product-decision__options-heading > p {
  margin: 0;
  color: var(--ax-text-muted);
}

.ax-product-specifications .ax-product-section__heading {
  grid-template-columns: 1fr;
}

.ax-product-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 0.7fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.ax-product-section__content {
  min-width: 0;
}

.ax-product-overview__application {
  margin: var(--ax-space-6) 0 0;
  padding: var(--ax-space-4);
  border-left: 4px solid var(--ax-brand-sky);
  background: var(--ax-brand-soft);
  color: var(--ax-ink);
}

.ax-product-richtext {
  max-width: 75ch;
  margin-top: var(--ax-space-5);
  color: var(--ax-text);
}

.ax-product-richtext > :first-child {
  margin-top: 0;
}

.ax-product-richtext > :last-child {
  margin-bottom: 0;
}

.ax-product-richtext ul,
.ax-product-richtext ol {
  padding-left: 1.25rem;
}

.ax-product-specifications__content {
  max-width: none;
  overflow-x: auto;
}

.ax-product-specifications__content table {
  width: 100%;
  min-width: 40rem;
  margin: var(--ax-space-6) 0;
  border: 1px solid var(--ax-border-color);
  border-collapse: collapse;
  background: var(--ax-surface);
}

.ax-product-specifications__content th,
.ax-product-specifications__content td {
  padding: 0.875rem 1rem;
  border: 1px solid var(--ax-border-color);
  text-align: left;
  vertical-align: top;
}

.ax-product-specifications__content th {
  background: var(--ax-brand-soft);
  color: var(--ax-ink);
  font-weight: 700;
}

.ax-product-specifications__content tbody tr:nth-child(even) {
  background: var(--ax-surface-alt);
}

.ax-product-custom-content__body {
  min-width: 0;
}

.ax-product-custom-content__body > :first-child {
  margin-top: 0;
}

.ax-product-custom-content__body > :last-child {
  margin-bottom: 0;
}

.ax-product-custom-content__body img {
  max-width: 100%;
  height: auto;
}

.ax-product-buyer-check {
  padding: var(--ax-space-6);
  border: 1px solid var(--ax-border-color);
  border-top: 4px solid var(--ax-action);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface-alt);
}

.ax-product-buyer-check h3 {
  font-size: var(--ax-fs-h4);
}

.ax-product-buyer-check ul {
  display: grid;
  gap: var(--ax-space-3);
  margin: var(--ax-space-5) 0;
  padding-left: 1.25rem;
}

.ax-product-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 var(--ax-space-8);
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  overflow: hidden;
  background: var(--ax-border-color);
}

.ax-product-spec-grid__item {
  min-width: 0;
  padding: var(--ax-space-5);
  background: var(--ax-surface);
}

.ax-product-spec-grid dt {
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-caption);
  font-weight: 700;
  line-height: 1.4;
}

.ax-product-spec-grid dd {
  margin: var(--ax-space-2) 0 0;
  color: var(--ax-ink);
  font-size: var(--ax-fs-card-title);
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.ax-product-spec-grid dd span {
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-small);
  font-weight: 600;
}

.ax-product-spec-table-wrap {
  width: 100%;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  overflow-x: auto;
  background: var(--ax-surface);
  box-shadow: var(--ax-shadow-sm);
}

.ax-product-spec-table-wrap:focus-visible {
  outline: 3px solid rgba(25, 140, 203, 0.35);
  outline-offset: 3px;
}

.ax-product-spec-table {
  width: 100%;
  min-width: 40rem;
  border-collapse: collapse;
  color: var(--ax-text);
  font-size: var(--ax-fs-card-copy);
}

.ax-product-spec-table caption {
  padding: var(--ax-space-4) var(--ax-space-5);
  color: var(--ax-ink);
  font-weight: 700;
  text-align: left;
}

.ax-product-spec-table thead {
  background: var(--ax-navy);
  color: #ffffff;
}

.ax-product-spec-table th,
.ax-product-spec-table td {
  min-height: 3rem;
  padding: 0.875rem var(--ax-space-5);
  border-bottom: 1px solid var(--ax-border-color);
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
}

.ax-product-spec-table tbody tr:nth-child(even) {
  background: var(--ax-surface-alt);
}

.ax-product-spec-table tbody tr:last-child th,
.ax-product-spec-table tbody tr:last-child td {
  border-bottom: 0;
}

.ax-product-section__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ax-space-6);
  margin-top: var(--ax-space-8);
  padding: var(--ax-space-5) var(--ax-space-6);
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
}

.ax-product-section__action p {
  margin: 0;
  color: var(--ax-ink);
  font-weight: 600;
}

.ax-product-feature-grid,
.ax-product-application-grid,
.ax-product-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--ax-space-6);
}

.ax-product-feature-card,
.ax-product-application-card,
.ax-product-related-card {
  min-width: 0;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  overflow: hidden;
  background: var(--ax-surface);
}

.ax-product-card-media {
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  margin: 0;
  overflow: hidden;
  background: var(--ax-surface-alt);
}

.ax-product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ax-product-feature-card__content,
.ax-product-application-card__content {
  padding: var(--ax-space-5);
}

.ax-product-feature-card__number {
  display: inline-block;
  margin-bottom: var(--ax-space-3);
  color: var(--ax-action);
  font-family: var(--ax-font-heading);
  font-size: var(--ax-fs-body);
  font-weight: 700;
}

.ax-product-feature-card h3,
.ax-product-application-card h3,
.ax-product-related-card h3 {
  font-size: var(--ax-fs-h4);
}

.ax-product-feature-card p,
.ax-product-application-card p {
  margin: var(--ax-space-3) 0 0;
  color: var(--ax-text-muted);
}

.ax-product-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--ax-space-4);
}

.ax-product-option-card {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  align-items: center;
  gap: var(--ax-space-5);
  min-width: 0;
  padding: var(--ax-space-4);
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
}

.ax-product-option-card__media {
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  margin: 0;
  border-radius: var(--ax-radius-sm);
  overflow: hidden;
  background: var(--ax-surface-alt);
}

.ax-product-option-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--ax-space-2);
}

.ax-product-option-card h3 {
  font-size: var(--ax-fs-card-title);
}

.ax-product-option-card p {
  margin: var(--ax-space-2) 0 0;
  color: var(--ax-text-muted);
}

.ax-product-assurance {
  background: var(--ax-navy);
  color: #d7dee8;
}

.ax-product-assurance .ax-eyebrow {
  color: #8ed3f7;
}

.ax-product-section__heading--light h2,
.ax-product-assurance-card h3 {
  color: #ffffff;
}

.ax-product-section__heading--light > p {
  color: #d7dee8;
}

.ax-product-assurance__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--ax-space-5);
}

.ax-product-assurance-card {
  min-width: 0;
  padding: var(--ax-space-6);
  border: 1px solid rgba(215, 222, 232, 0.22);
  border-radius: var(--ax-radius-md);
  background: rgba(255, 255, 255, 0.05);
}

.ax-product-assurance-card h3 {
  font-size: var(--ax-fs-h4);
}

.ax-product-assurance-card .ax-product-richtext,
.ax-product-assurance-card .ax-product-richtext p {
  color: #d7dee8;
}

.ax-product-assurance-downloads {
  display: grid;
  gap: var(--ax-space-3);
  margin: var(--ax-space-5) 0 0;
  padding: 0;
  list-style: none;
}

.ax-product-assurance-downloads a {
  display: grid;
  gap: var(--ax-space-1);
  padding: var(--ax-space-3) var(--ax-space-4);
  border: 1px solid rgba(215, 222, 232, 0.24);
  border-radius: var(--ax-radius-sm);
  color: #ffffff;
  text-decoration: none;
  transition: border-color var(--ax-transition), background-color var(--ax-transition);
}

.ax-product-assurance-downloads a:hover,
.ax-product-assurance-downloads a:focus-visible {
  border-color: #8ed3f7;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.ax-product-assurance-downloads span {
  font-weight: 700;
}

.ax-product-assurance-downloads small {
  color: #b9c8d8;
}

.ax-product-check-list {
  display: grid;
  gap: var(--ax-space-4);
  margin: var(--ax-space-5) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: ax-product-check;
}

.ax-product-check-list li {
  position: relative;
  padding-left: 2.25rem;
  counter-increment: ax-product-check;
}

.ax-product-check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--ax-brand-sky);
  color: #ffffff;
  content: counter(ax-product-check);
  font-size: var(--ax-fs-caption);
  font-weight: 700;
}

.ax-product-check-list strong,
.ax-product-check-list span {
  display: block;
}

.ax-product-check-list strong {
  color: #ffffff;
}

.ax-product-check-list span {
  margin-top: var(--ax-space-1);
  color: #d7dee8;
  line-height: 1.55;
}

.ax-product-logistics-list {
  display: grid;
  gap: var(--ax-space-3);
  margin: var(--ax-space-5) 0 0;
}

.ax-product-logistics-list div {
  padding-top: var(--ax-space-3);
  border-top: 1px solid rgba(215, 222, 232, 0.22);
}

.ax-product-logistics-list dt {
  color: #b9c8d8;
  font-size: var(--ax-fs-caption);
  font-weight: 700;
}

.ax-product-logistics-list dd {
  margin: var(--ax-space-1) 0 0;
  color: #ffffff;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.ax-product-resources__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
  gap: var(--ax-space-6);
  align-items: start;
}

.ax-product-video,
.ax-product-downloads {
  min-width: 0;
  padding: var(--ax-space-5);
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
}

.ax-product-video h3,
.ax-product-downloads h3 {
  margin-bottom: var(--ax-space-4);
  font-size: var(--ax-fs-h4);
}

.ax-product-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--ax-radius-sm);
  background: var(--ax-navy);
}

.ax-product-video__frame iframe,
.ax-product-video__frame video {
  width: 100%;
  height: 100%;
  border: 0;
}

.ax-product-downloads ul {
  display: grid;
  gap: var(--ax-space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ax-product-downloads a {
  display: grid;
  gap: var(--ax-space-1);
  min-height: 3.5rem;
  padding: var(--ax-space-3) var(--ax-space-4);
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-sm);
  color: var(--ax-ink);
  text-decoration: none;
  transition: border-color var(--ax-transition), background-color var(--ax-transition);
}

.ax-product-downloads a:hover,
.ax-product-downloads a:focus-visible {
  border-color: var(--ax-action);
  background: var(--ax-brand-soft);
}

.ax-product-downloads span {
  font-weight: 700;
}

.ax-product-downloads small {
  color: var(--ax-text-muted);
}

.ax-product-faq__grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.ax-product-faq__intro {
  position: sticky;
  top: calc(var(--ax-current-header-main-height, 72px) + var(--ax-admin-bar-height, 0px) + 5rem);
}

.ax-product-faq__intro > p:not(.ax-eyebrow) {
  margin: var(--ax-space-4) 0 var(--ax-space-5);
  color: var(--ax-text-muted);
}

.ax-product-faq__items {
  display: grid;
  gap: var(--ax-space-3);
}

.ax-product-faq-item {
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-sm);
  overflow: clip;
  background: var(--ax-surface);
}

.ax-product-faq-item summary {
  position: relative;
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--ax-space-4);
  padding: var(--ax-space-4) var(--ax-space-5);
  cursor: pointer;
  color: var(--ax-ink);
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

.ax-product-faq-item summary::-webkit-details-marker {
  display: none;
}

.ax-product-faq-item summary span {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

.ax-product-faq-item summary span::before,
.ax-product-faq-item summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.875rem;
  height: 2px;
  background: var(--ax-action);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform var(--ax-transition);
}

.ax-product-faq-item summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.ax-product-faq-item[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.ax-product-faq-item__answer {
  padding: 0 var(--ax-space-5) var(--ax-space-5);
  color: var(--ax-text-muted);
}

.ax-product-faq-item__answer > :first-child {
  margin-top: 0;
}

.ax-product-faq-item__answer > :last-child {
  margin-bottom: 0;
}

.ax-product-related-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.ax-product-related-card__link:hover,
.ax-product-related-card__link:focus-visible {
  color: inherit;
}

.ax-product-related-card .ax-product-card-media img {
  object-fit: contain;
  padding: var(--ax-space-4);
}

.ax-product-related-card__content {
  padding: var(--ax-space-5);
}

.ax-product-related-card__model {
  margin: 0 0 var(--ax-space-2);
  color: var(--ax-action);
  font-size: var(--ax-fs-caption);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ax-product-related-card dl {
  display: grid;
  gap: var(--ax-space-2);
  margin: var(--ax-space-4) 0;
}

.ax-product-related-card dl div {
  display: flex;
  justify-content: space-between;
  gap: var(--ax-space-3);
  padding-bottom: var(--ax-space-2);
  border-bottom: 1px solid var(--ax-border-color);
}

.ax-product-related-card dt {
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-caption);
}

.ax-product-related-card dd {
  margin: 0;
  color: var(--ax-ink);
  font-size: var(--ax-fs-small);
  font-weight: 700;
  text-align: right;
}

.ax-product-related-card__content > p:not(.ax-product-related-card__model) {
  color: var(--ax-text-muted);
}

.ax-product-quote {
  padding-block: var(--ax-section-space-sm);
  scroll-margin-top: calc(var(--ax-current-header-main-height, 72px) + 4.5rem);
  background: var(--ax-navy);
}

.ax-product-quote__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(24rem, 1.2fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.ax-product-quote__intro {
  color: #d7dee8;
}

.ax-product-quote__intro .ax-eyebrow {
  color: #8ed3f7;
  letter-spacing: 0.04em;
  text-transform: none;
}

.ax-product-quote__intro h2 {
  color: #ffffff;
}

.ax-product-quote__intro > p:not(.ax-eyebrow) {
  margin: var(--ax-space-5) 0 0;
}

.ax-product-quote__intro ul {
  display: grid;
  gap: var(--ax-space-3);
  margin: var(--ax-space-5) 0 0;
  padding-left: 1.25rem;
}

.ax-product-quote__context {
  padding-top: var(--ax-space-4);
  border-top: 1px solid rgba(215, 222, 232, 0.22);
  font-size: var(--ax-fs-small);
}

.ax-product-quote .ax-form-block {
  margin: 0;
}

.ax-product-hero a:focus-visible,
.ax-product-nav a:focus-visible,
.ax-product-section a:focus-visible,
.ax-product-section button:focus-visible,
.ax-product-section summary:focus-visible,
.ax-product-quote a:focus-visible {
  outline: 3px solid rgba(25, 140, 203, 0.42);
  outline-offset: 3px;
}

@media (max-width: 991px) {
  .ax-product-hero__grid,
  .ax-product-overview__grid,
  .ax-product-resources__grid,
  .ax-product-faq__grid,
  .ax-product-quote__grid {
    grid-template-columns: 1fr;
  }

  .ax-product-gallery {
    max-width: 48rem;
  }

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

  .ax-product-key-specs__item:nth-child(2) {
    border-right: 0;
  }

  .ax-product-key-specs__item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ax-border-color);
  }

  .ax-product-section__heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: var(--ax-space-4);
  }

  .ax-product-decision__options-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: var(--ax-space-3);
  }

  .ax-product-spec-grid,
  .ax-product-feature-grid,
  .ax-product-application-grid,
  .ax-product-related__grid,
  .ax-product-assurance__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ax-product-faq__intro {
    position: static;
  }

  .ax-product-quote__grid {
    gap: var(--ax-space-8);
  }
}

@media (max-width: 767px) {
  .ax-product-hero {
    padding-top: var(--ax-space-4);
  }

  .ax-product-breadcrumb {
    margin-bottom: var(--ax-space-6);
  }

  .ax-product-hero__grid {
    gap: var(--ax-space-8);
  }

  .ax-product-hero__actions,
  .ax-product-section__action {
    align-items: stretch;
    flex-direction: column;
  }

  .ax-product-hero__actions .ax-btn,
  .ax-product-section__action .ax-btn {
    width: 100%;
  }

  .ax-product-nav__list {
    gap: var(--ax-space-5);
  }

  .ax-product-spec-grid,
  .ax-product-feature-grid,
  .ax-product-application-grid,
  .ax-product-option-grid,
  .ax-product-decision__grid,
  .ax-product-related__grid,
  .ax-product-assurance__grid {
    grid-template-columns: 1fr;
  }

  .ax-product-option-card {
    grid-template-columns: 7rem minmax(0, 1fr);
  }

  .ax-product-section__action {
    align-items: flex-start;
  }
}

@media (max-width: 478px) {

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

  .ax-product-hero__meta li {
    min-width: 0;
  }

  .ax-product-key-specs {
    grid-template-columns: 1fr;
  }

  .ax-product-key-specs__item,
  .ax-product-key-specs__item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--ax-border-color);
  }

  .ax-product-key-specs__item:last-child {
    border-bottom: 0;
  }

  .ax-product-hero__content .ax-product-key-specs {
    grid-template-columns: 1fr;
  }

  .ax-product-hero__content .ax-product-key-specs__item,
  .ax-product-hero__content .ax-product-key-specs__item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--ax-border-color);
  }

  .ax-product-hero__content .ax-product-key-specs__item:last-child {
    border-bottom: 0;
  }

  .ax-product-section__heading,
  .ax-product-feature-grid,
  .ax-product-application-grid,
  .ax-product-related__grid {
    gap: var(--ax-space-4);
  }

  .ax-product-option-card {
    grid-template-columns: 1fr;
  }

  .ax-product-option-card__media {
    max-width: 11rem;
  }

  .ax-product-faq-item summary,
  .ax-product-faq-item__answer,
  .ax-product-assurance-card,
  .ax-product-video,
  .ax-product-downloads {
    padding-inline: var(--ax-space-4);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ax-product-hero *,
  .ax-product-nav *,
  .ax-product-section *,
  .ax-product-quote * {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
  }
}

/* 21. Product-category archive template */
.ax-template-diagnostic {
  width: min(100% - var(--ax-gutter) * 2, var(--ax-container));
  margin: var(--ax-space-4) auto;
  padding: var(--ax-space-4);
  border: 1px solid var(--ax-warning);
  border-radius: var(--ax-radius-sm);
  background: #FFF8E8;
  color: var(--ax-ink);
  font-family: var(--ax-font-body);
  font-size: var(--ax-fs-small);
  line-height: 1.55;
}

.ax-category-hero,
.ax-category-section,
.ax-category-quote {
  color: var(--ax-text);
  font-family: var(--ax-font-body);
  font-size: var(--ax-fs-body);
  line-height: 1.65;
}

.ax-category-hero *,
.ax-category-section *,
.ax-category-quote * {
  box-sizing: border-box;
}

.ax-category-hero h1,
.ax-category-section h2,
.ax-category-section h3,
.ax-category-quote h2 {
  margin-top: 0;
  color: var(--ax-ink);
  font-family: var(--ax-font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ax-category-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px) 0;
  background-color: var(--ax-surface);
  background-image:
    linear-gradient(rgba(14, 73, 157, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 73, 157, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
}

.ax-category-breadcrumb {
  margin-bottom: var(--ax-space-6);
  font-size: var(--ax-fs-small);
}

.ax-category-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ax-category-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ax-category-breadcrumb li:not(:last-child)::after {
  color: #8190A3;
  content: "/";
}

.ax-category-breadcrumb a {
  color: var(--ax-action);
  text-decoration: none;
}

.ax-category-breadcrumb a:hover,
.ax-category-breadcrumb a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ax-category-hero__grid {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) minmax(0, 7fr);
  align-items: stretch;
  gap: clamp(32px, 5vw, 64px);
}

.ax-category-hero__title {
  min-width: 0;
  align-self: center;
}

.ax-category-hero h1 {
  max-width: 820px;
  margin-bottom: var(--ax-space-4);
  font-size: var(--ax-fs-h1);
  line-height: 1.04;
}

.ax-category-hero .ax-eyebrow {
  margin-bottom: var(--ax-space-3);
}

.ax-category-hero__lead {
  max-width: 520px;
  margin: 0;
  color: var(--ax-text);
  font-size: 18px;
  line-height: 1.55;
}

.ax-category-hero__card {
  min-width: 0;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--ax-border-color);
  border-top: 4px solid var(--ax-brand-deep);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface-alt);
}

.ax-category-hero__card-copy {
  max-width: 680px;
  margin: 0 0 var(--ax-space-4);
  color: var(--ax-text);
  font-size: var(--ax-fs-body);
  line-height: 1.6;
}

.ax-category-hero__choice-label {
  margin: 0 0 var(--ax-space-2);
  color: var(--ax-ink);
  font-size: var(--ax-fs-body);
  font-weight: 700;
}

.ax-category-hero__choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px var(--ax-space-6);
  margin: 0;
  padding-left: 20px;
  color: var(--ax-text);
  font-size: var(--ax-fs-card-copy);
  line-height: 1.5;
}

.ax-category-hero__choices li::marker {
  color: var(--ax-brand-deep);
}

.ax-category-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ax-space-3);
  margin-top: var(--ax-space-6);
}

.ax-category-hero__assist {
  max-width: 680px;
  margin: var(--ax-space-4) 0 0;
  padding-top: var(--ax-space-4);
  border-top: 1px solid var(--ax-border-color);
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-small);
  line-height: 1.6;
}

.ax-category-hero__media {
  display: grid;
  min-width: 0;
  aspect-ratio: 4 / 3;
  place-items: center;
  margin: 0;
  padding: clamp(20px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-lg);
  background: var(--ax-surface);
  box-shadow: var(--ax-shadow-sm);
}

.ax-category-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.ax-category-section {
  padding: var(--ax-section-space) 0;
  background: var(--ax-surface);
}

.ax-category-section__heading {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 4fr);
  align-items: end;
  gap: var(--ax-space-10);
  margin-bottom: clamp(32px, 5vw, 56px);
}

.ax-category-section__heading .ax-eyebrow,
.ax-category-faq__intro .ax-eyebrow,
.ax-category-quote__intro .ax-eyebrow {
  margin-bottom: var(--ax-space-3);
}

.ax-category-section__heading h2,
.ax-category-faq__intro h2,
.ax-category-quote__intro h2 {
  margin-bottom: 0;
  font-size: var(--ax-fs-h2);
  line-height: 1.08;
}

.ax-category-section__heading > p,
.ax-category-faq__intro > p {
  max-width: 520px;
  margin: 0;
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-body);
}

.ax-category-models {
  overflow: visible;
  padding-block: var(--ax-section-space-sm);
}

body #brx-content .brxe-section:has(.ax-category-models),
body #brx-content :is(.brxe-container, .brxe-block, .brxe-code):has(.ax-category-models) {
  overflow: visible;
}

.ax-category-models__layout {
  display: grid;
  grid-template-columns: minmax(220px, 250px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(24px, 3vw, 40px);
  overflow: visible;
}

.ax-category-models__sidebar,
.ax-category-models__content {
  min-width: 0;
}

.ax-category-models__sidebar {
  position: sticky;
  z-index: 2;
  top: calc(var(--ax-current-header-main-height, 72px) + var(--ax-admin-bar-height, 0px) + var(--ax-space-6));
  align-self: start;
  height: max-content;
}

.ax-category-directory {
  position: relative;
  max-height: calc(100vh - var(--ax-current-header-main-height, 72px) - var(--ax-admin-bar-height, 0px) - var(--ax-space-12));
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid var(--ax-border-color);
  border-top: 4px solid var(--ax-brand-deep);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
}

.ax-category-directory__title {
  margin: 0;
  padding: 16px 18px;
  color: var(--ax-ink);
  font-family: var(--ax-font-heading);
  font-size: var(--ax-fs-card-title);
  font-weight: 700;
  line-height: 1.25;
}

.ax-category-directory__list,
.ax-category-directory__children {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ax-category-directory__children {
  background: var(--ax-surface-alt);
}

.ax-category-directory__item > a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: var(--ax-space-3);
  padding: 12px 16px;
  border-top: 1px solid var(--ax-border-color);
  color: var(--ax-ink);
  font-size: var(--ax-fs-small);
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  transition: color var(--ax-transition), background-color var(--ax-transition);
}

.ax-category-directory__item--depth-1 > a {
  padding-left: 28px;
}

.ax-category-directory__item--depth-2 > a,
.ax-category-directory__item--depth-3 > a {
  padding-left: 40px;
}

.ax-category-directory__item > a:hover,
.ax-category-directory__item > a:focus-visible {
  background: var(--ax-brand-soft);
  color: var(--ax-action);
}

.ax-category-directory__item.is-ancestor > a {
  background: var(--ax-brand-soft);
  color: var(--ax-action);
}

.ax-category-directory__item > a[aria-current="page"] {
  background: var(--ax-brand-deep);
  color: #FFFFFF;
}

.ax-category-directory__arrow {
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 1;
}

.ax-category-models__content .ax-category-section__heading {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: var(--ax-space-4);
  margin-bottom: var(--ax-space-8);
}

.ax-category-models__content .ax-category-section__heading > p {
  max-width: 760px;
}

.ax-category-models__content .ax-category-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--ax-space-4);
}

.ax-category-subcategories,
.ax-category-product-grid,
.ax-category-application-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--ax-space-6);
}

.ax-category-subcategories + .ax-category-product-grid {
  margin-top: var(--ax-space-12);
  padding-top: var(--ax-space-12);
  border-top: 1px solid var(--ax-border-color);
}

.ax-category-subcategory-card,
.ax-category-product-card,
.ax-category-application-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
  box-shadow: 0 3px 14px rgba(11, 31, 51, 0.05);
  transition: border-color var(--ax-transition), box-shadow var(--ax-transition), transform var(--ax-transition);
}

.ax-category-subcategory-card:hover,
.ax-category-product-card:hover,
.ax-category-application-card:hover {
  border-color: rgba(14, 73, 157, 0.45);
  box-shadow: var(--ax-shadow-md);
  transform: translateY(-3px);
}

.ax-category-subcategory-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.ax-category-subcategory-card__media,
.ax-category-product-card__media,
.ax-category-application-card__media {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  place-items: center;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #FFFFFF 0%, #EEF4F9 100%);
}

.ax-category-subcategory-card__image,
.ax-category-product-card__image,
.ax-category-application-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.ax-category-application-card__image {
  object-fit: cover;
}

.ax-category-subcategory-card__body,
.ax-category-product-card__body,
.ax-category-application-card__body {
  padding: var(--ax-space-6);
}

.ax-category-subcategory-card h3,
.ax-category-product-card h3,
.ax-category-application-card h3,
.ax-category-selection-card h3,
.ax-category-procurement-card h3 {
  margin-bottom: var(--ax-space-3);
  font-size: var(--ax-fs-card-title);
  line-height: 1.25;
}

.ax-category-subcategory-card h3,
.ax-category-subcategory-card p {
  color: var(--ax-ink);
}

.ax-category-subcategory-card p,
.ax-category-application-card p {
  margin: 0 0 var(--ax-space-4);
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-card-copy);
}

.ax-category-product-card {
  display: flex;
  flex-direction: column;
}

.ax-category-product-card__media {
  color: var(--ax-text-muted);
  text-decoration: none;
}

.ax-category-product-card__image {
  padding: var(--ax-space-4);
}

.ax-category-product-card__image-missing {
  padding: var(--ax-space-5);
  font-size: var(--ax-fs-small);
  text-align: center;
}

.ax-category-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.ax-category-product-card__model {
  margin: 0 0 var(--ax-space-2);
  color: var(--ax-brand-deep);
  font-size: var(--ax-fs-caption);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.ax-category-product-card h3 a {
  color: var(--ax-ink);
  text-decoration: none;
}

.ax-category-product-card h3 a:hover,
.ax-category-product-card h3 a:focus-visible {
  color: var(--ax-action);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ax-category-product-card__context {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 var(--ax-space-4);
  padding: 0;
  list-style: none;
}

.ax-category-product-card__context li {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--ax-brand-soft);
  color: var(--ax-brand-deep);
  font-size: var(--ax-fs-caption);
  font-weight: 600;
  line-height: 1.3;
}

.ax-category-product-card__specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 var(--ax-space-4);
  overflow: hidden;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-sm);
}

.ax-category-product-card__specs > div {
  min-width: 0;
  padding: 10px;
  border-right: 1px solid var(--ax-border-color);
}

.ax-category-product-card__specs > div:last-child {
  border-right: 0;
}

.ax-category-product-card__specs dt {
  overflow: hidden;
  margin-bottom: 3px;
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-caption);
  font-weight: 600;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ax-category-product-card__specs dd {
  margin: 0;
  color: var(--ax-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.ax-category-product-card__summary {
  margin: 0 0 var(--ax-space-5);
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-card-copy);
}

.ax-category-product-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--ax-space-3);
  margin-top: auto;
}

.ax-category-product-card__quote {
  color: var(--ax-action);
  font-size: var(--ax-fs-small);
  font-weight: 700;
  text-decoration: none;
}

.ax-category-product-card__quote:hover,
.ax-category-product-card__quote:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ax-category-product-card--compact .ax-category-product-card__image {
  padding: var(--ax-space-3);
}

.ax-category-product-card--compact .ax-category-product-card__body {
  padding: var(--ax-space-4);
}

.ax-category-product-card--compact h3 {
  display: -webkit-box;
  min-height: 45px;
  margin-bottom: var(--ax-space-4);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ax-category-product-card--compact .ax-category-product-card__specs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: var(--ax-space-4);
}

.ax-category-product-card--compact .ax-category-product-card__specs > div {
  padding: 9px;
}

.ax-category-product-card--compact .ax-category-product-card__actions {
  align-items: flex-start;
  flex-direction: column;
  gap: var(--ax-space-2);
}

.ax-category-selection {
  background: var(--ax-surface-alt);
}

.ax-category-selection__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--ax-space-4);
}

.ax-category-selection-card {
  padding: var(--ax-space-6);
  border-top: 3px solid var(--ax-brand-sky);
  border-radius: var(--ax-radius-sm);
  background: var(--ax-surface);
  box-shadow: var(--ax-shadow-sm);
}

.ax-category-selection-card__number,
.ax-category-procurement-card__number {
  display: inline-block;
  margin-bottom: var(--ax-space-5);
  color: var(--ax-brand-deep);
  font-size: var(--ax-fs-caption);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ax-category-selection-card p,
.ax-category-procurement-card p {
  margin: 0;
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-card-copy);
}

.ax-category-selection__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--ax-space-6);
  margin-top: var(--ax-space-8);
}

.ax-category-richtext {
  min-width: 0;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
}

.ax-category-richtext h3 {
  margin-bottom: var(--ax-space-4);
  font-size: var(--ax-fs-h4);
  line-height: 1.3;
}

.ax-category-richtext h4 {
  margin: var(--ax-space-6) 0 var(--ax-space-3);
  color: var(--ax-ink);
  font-family: var(--ax-font-heading);
  font-size: var(--ax-fs-card-title);
  line-height: 1.3;
}

.ax-category-richtext > :first-child {
  margin-top: 0;
}

.ax-category-richtext > :last-child {
  margin-bottom: 0;
}

.ax-category-richtext p,
.ax-category-richtext li,
.ax-category-richtext td,
.ax-category-richtext th {
  font-size: var(--ax-fs-body);
  line-height: 1.65;
}

.ax-category-richtext ul,
.ax-category-richtext ol {
  padding-left: 22px;
}

.ax-category-richtext table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.ax-category-richtext th,
.ax-category-richtext td {
  padding: 14px 16px;
  border: 1px solid var(--ax-border-color);
  text-align: left;
  vertical-align: top;
}

.ax-category-richtext th {
  background: var(--ax-brand-soft);
  color: var(--ax-ink);
  font-weight: 700;
}

.ax-category-parameters__content {
  overflow-x: auto;
}

.ax-category-application-card__body {
  min-height: 154px;
}

.ax-category-applications {
  background: var(--ax-surface-alt);
}

.ax-category-procurement {
  background: var(--ax-navy) !important;
}

.ax-category-section__heading--light h2,
.ax-category-section__heading--light > p,
.ax-category-procurement .ax-eyebrow {
  color: #FFFFFF;
}

.ax-category-section__heading--light > p {
  color: #D6E1EC;
}

.ax-category-procurement__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--ax-space-5);
}

.ax-category-procurement-card {
  padding: var(--ax-space-7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--ax-radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.ax-category-procurement-card__number {
  color: #63C6F0;
}

.ax-category-procurement-card h3 {
  color: #FFFFFF;
}

.ax-category-procurement-card p {
  margin-bottom: var(--ax-space-5);
  color: #D6E1EC;
}

.ax-category-procurement-card a {
  color: #8DDAFA;
  font-size: var(--ax-fs-small);
  font-weight: 700;
  text-underline-offset: 3px;
}

.ax-category-procurement-card__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--ax-space-2);
}

.ax-category-faq {
  background: var(--ax-surface-alt);
}

.ax-category-faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 4fr) minmax(0, 7fr);
  align-items: start;
  gap: clamp(40px, 7vw, 88px);
}

.ax-category-faq__intro {
  position: sticky;
  top: 100px;
}

.ax-category-faq__intro h2 {
  margin-bottom: var(--ax-space-5);
}

.ax-category-faq__intro .ax-btn {
  margin-top: var(--ax-space-5);
}

.ax-category-faq__items {
  border-top: 1px solid var(--ax-border-color);
}

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

.ax-category-faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  align-items: center;
  gap: var(--ax-space-4);
  padding: var(--ax-space-6) 0;
  color: var(--ax-ink);
  cursor: pointer;
  font-size: var(--ax-fs-card-title);
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

.ax-category-faq-item summary::-webkit-details-marker {
  display: none;
}

.ax-category-faq-item summary span {
  position: relative;
  width: 20px;
  height: 20px;
}

.ax-category-faq-item summary span::before,
.ax-category-faq-item summary span::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  background: var(--ax-action);
  content: "";
}

.ax-category-faq-item summary span::after {
  transform: rotate(90deg);
  transition: transform var(--ax-transition);
}

.ax-category-faq-item[open] summary span::after {
  transform: rotate(0);
}

.ax-category-faq-item__answer {
  max-width: 760px;
  padding: 0 44px var(--ax-space-6) 0;
  color: var(--ax-text-muted);
}

.ax-category-faq-item__answer > :first-child {
  margin-top: 0;
}

.ax-category-faq-item__answer > :last-child {
  margin-bottom: 0;
}

.ax-category-quote {
  padding: var(--ax-section-space) 0;
  background: var(--ax-navy);
}

/*
 * Bricks structure guard for the category quotation block.
 * The PHP renderer owns only the intro content; the navy Section and two-column
 * Container are native Bricks elements. If their custom classes are omitted,
 * use the unique intro hook to recover the intended local layout without
 * affecting other Sections or forms.
 */
body #brx-content .brxe-section:has(.ax-category-quote__intro) {
  padding: var(--ax-section-space) 0;
  background-color: var(--ax-navy);
}

body #brx-content :is(.brxe-container, .brxe-block):has(> .brxe-code .ax-category-quote__intro) {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) minmax(0, 7fr);
  align-items: start;
  gap: clamp(36px, 6vw, 76px);
}

.ax-category-quote__grid {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) minmax(0, 7fr);
  align-items: start;
  gap: clamp(36px, 6vw, 76px);
}

.ax-category-quote__intro {
  padding-top: var(--ax-space-4);
}

.ax-category-quote__intro .ax-eyebrow {
  color: var(--ax-brand-sky);
}

.ax-category-quote__intro h2 {
  margin-bottom: var(--ax-space-5);
  color: var(--ax-ink);
}

.ax-category-quote__intro > p,
.ax-category-quote__intro li {
  color: var(--ax-text);
  font-size: var(--ax-fs-body);
}

.ax-category-quote__intro ul {
  margin: var(--ax-space-6) 0;
  padding-left: 22px;
}

.ax-category-quote__intro li + li {
  margin-top: var(--ax-space-3);
}

.ax-category-quote__context {
  padding-top: var(--ax-space-5);
  border-top: 1px solid var(--ax-border-color);
  font-size: var(--ax-fs-small) !important;
}

.ax-category-quote .ax-category-quote__intro .ax-eyebrow,
body #brx-content .brxe-section:has(.ax-category-quote__intro) .ax-category-quote__intro .ax-eyebrow {
  color: #63C6F0;
}

.ax-category-quote .ax-category-quote__intro h2,
body #brx-content .brxe-section:has(.ax-category-quote__intro) .ax-category-quote__intro h2 {
  color: #FFFFFF;
}

.ax-category-quote .ax-category-quote__intro > p,
.ax-category-quote .ax-category-quote__intro li,
body #brx-content .brxe-section:has(.ax-category-quote__intro) .ax-category-quote__intro > p,
body #brx-content .brxe-section:has(.ax-category-quote__intro) .ax-category-quote__intro li {
  color: #D6E1EC;
}

.ax-category-quote .ax-category-quote__context,
body #brx-content .brxe-section:has(.ax-category-quote__intro) .ax-category-quote__context {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.ax-category-quote .ax-form-block,
body #brx-content .brxe-section:has(.ax-category-quote__intro) .ax-form-block {
  border: 0;
  box-shadow: var(--ax-shadow-md);
}

.ax-category-hero :focus-visible,
.ax-category-section :focus-visible,
.ax-category-quote :focus-visible {
  outline: 3px solid rgba(25, 140, 203, 0.42);
  outline-offset: 3px;
}

@media (max-width: 1199px) {
  .ax-category-models__content .ax-category-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .ax-category-hero__grid,
  .ax-category-models__layout,
  .ax-category-quote__grid,
  body #brx-content :is(.brxe-container, .brxe-block):has(> .brxe-code .ax-category-quote__intro) {
    grid-template-columns: 1fr;
  }

  .ax-category-hero__title,
  .ax-category-hero__card {
    max-width: 760px;
  }

  .ax-category-hero__media {
    max-width: 760px;
  }

  .ax-category-models__sidebar {
    position: static;
  }

  .ax-category-directory {
    max-height: none;
    overflow: visible;
  }

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

  .ax-category-directory__item--depth-0:nth-child(even) > a {
    border-left: 1px solid var(--ax-border-color);
  }

  .ax-category-section__heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: var(--ax-space-4);
  }

  .ax-category-subcategories,
  .ax-category-product-grid,
  .ax-category-application-grid,
  .ax-category-selection__grid,
  .ax-category-procurement__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ax-category-faq__intro {
    position: static;
  }
}

@media (max-width: 767px) {
  .ax-category-hero {
    padding-top: var(--ax-space-4);
  }

  .ax-category-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ax-category-hero__actions .ax-btn {
    width: 100%;
  }

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

  .ax-category-subcategories,
  .ax-category-product-grid,
  .ax-category-models__content .ax-category-product-grid,
  .ax-category-application-grid,
  .ax-category-selection__grid,
  .ax-category-selection__content,
  .ax-category-procurement__grid,
  .ax-category-faq__grid {
    grid-template-columns: 1fr;
  }

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

  .ax-category-directory__item--depth-0:nth-child(even) > a {
    border-left: 0;
  }

  .ax-category-hero__media {
    padding: var(--ax-space-4);
  }

  .ax-category-product-card__specs {
    grid-template-columns: repeat(3, minmax(96px, 1fr));
    overflow-x: auto;
  }

  .ax-category-faq-item summary {
    padding-block: var(--ax-space-5);
  }
}

@media (max-width: 478px) {
  .ax-category-subcategory-card__body,
  .ax-category-product-card__body,
  .ax-category-application-card__body,
  .ax-category-selection-card,
  .ax-category-procurement-card,
  .ax-category-richtext {
    padding: var(--ax-space-5);
  }

  .ax-category-product-card__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .ax-category-faq-item__answer {
    padding-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ax-category-hero *,
  .ax-category-section *,
  .ax-category-quote * {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
  }
}

/* 17. Blog article and article collection templates */
.ax-article-hero,
.ax-article-section,
.ax-blog-hero,
.ax-blog-section,
.ax-article-quote {
  color: var(--ax-text);
  font-family: var(--ax-font-body);
  font-size: var(--ax-fs-body);
  line-height: 1.7;
}

.ax-article-hero *,
.ax-article-section *,
.ax-blog-hero *,
.ax-blog-section *,
.ax-article-quote * {
  box-sizing: border-box;
}

.ax-article-hero a,
.ax-article-section a,
.ax-blog-hero a,
.ax-blog-section a,
.ax-article-quote a {
  text-underline-offset: 3px;
}

.ax-article-hero h1,
.ax-article-hero h2,
.ax-article-hero h3,
.ax-article-section h2,
.ax-article-section h3,
.ax-article-section h4,
.ax-blog-hero h1,
.ax-blog-section h2,
.ax-blog-section h3,
.ax-article-quote h2 {
  margin-top: 0;
  color: var(--ax-ink);
  font-family: var(--ax-font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.ax-blog-breadcrumb {
  padding-block: 24px;
  font-size: 14px;
  line-height: 1.5;
}

.ax-blog-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ax-blog-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ax-text-muted);
}

.ax-blog-breadcrumb li:not(:last-child)::after {
  content: "/";
  color: #9CA3AF;
}

.ax-blog-breadcrumb a {
  color: var(--ax-action);
  text-decoration: none;
}

.ax-blog-breadcrumb a:hover,
.ax-blog-breadcrumb a:focus-visible {
  text-decoration: underline;
}

.ax-article-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--ax-border-color);
  background:
    linear-gradient(rgba(14, 73, 157, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 73, 157, 0.055) 1px, transparent 1px),
    #FFFFFF;
  background-size: 48px 48px;
}

.ax-article-hero__content {
  width: min(100%, 900px);
  padding-block: 48px 56px;
}

.ax-article-hero__content h1 {
  max-width: 1050px;
  margin: 12px 0 20px;
  font-size: clamp(42px, 5vw, 64px);
}

.ax-article-hero__summary {
  max-width: 820px;
  margin: 0;
  color: var(--ax-text);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.65;
}

.ax-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--ax-text-muted);
  font-size: 14px;
  list-style: none;
}

.ax-article-meta li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin-left: 22px;
  border-radius: 50%;
  background: #9CA3AF;
  vertical-align: middle;
}

.ax-article-meta a {
  color: var(--ax-action);
  font-weight: 600;
}

.ax-article-hero__media {
  position: relative;
  width: 100%;
  margin: 0 0 -1px;
  overflow: hidden;
  border: 1px solid var(--ax-border-color);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  background: var(--ax-surface-alt);
  aspect-ratio: 16 / 5;
}

.ax-article-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ax-article-section,
.ax-blog-section {
  padding-block: var(--ax-section-space-sm);
}

.ax-article-section__heading,
.ax-blog-section__heading {
  margin-bottom: 32px;
}

.ax-article-section__heading h2,
.ax-blog-section__heading h2 {
  margin: 8px 0 0;
  font-size: clamp(32px, 3.4vw, 44px);
}

.ax-article-section__heading--split,
.ax-blog-section__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: end;
}

.ax-article-section__heading--split > p,
.ax-blog-section__heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--ax-text-muted);
}

.ax-article-content {
  background: var(--ax-surface);
}

.ax-article-quick-answer {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 48px;
  margin-bottom: 56px;
  padding: 32px;
  border: 1px solid #BCD8EE;
  border-left: 4px solid var(--ax-brand-sky);
  border-radius: var(--ax-radius-md);
  background: #F3F9FE;
}

.ax-article-quick-answer h2 {
  margin: 8px 0 0;
  font-size: 30px;
}

.ax-article-quick-answer ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ax-article-quick-answer li {
  position: relative;
  margin: 0;
  padding-left: 30px;
  color: var(--ax-ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.ax-article-quick-answer li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: var(--ax-brand-deep);
  color: #FFFFFF;
  font-size: 13px;
  line-height: 1;
}

.ax-article-reading-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(250px, 310px);
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
  justify-content: space-between;
}

.ax-article-prose {
  grid-column: 1;
  min-width: 0;
  color: #25364A;
  font-size: 17px;
  line-height: 1.82;
}

.ax-article-prose > :first-child {
  margin-top: 0;
}

.ax-article-prose > :last-child {
  margin-bottom: 0;
}

.ax-article-prose h2,
.ax-article-prose h3,
.ax-article-prose h4 {
  scroll-margin-top: 112px;
}

.ax-article-prose h2 {
  margin: 56px 0 18px;
  padding-top: 8px;
  font-size: clamp(30px, 3vw, 38px);
}

.ax-article-prose h3 {
  margin: 38px 0 14px;
  font-size: clamp(23px, 2vw, 28px);
}

.ax-article-prose h4 {
  margin: 30px 0 12px;
  font-size: 20px;
}

.ax-article-prose p,
.ax-article-prose ul,
.ax-article-prose ol,
.ax-article-prose blockquote,
.ax-article-prose figure,
.ax-article-prose table,
.ax-article-prose .wp-block-table {
  margin-top: 0;
  margin-bottom: 24px;
}

.ax-article-prose ul,
.ax-article-prose ol {
  padding-left: 26px;
}

.ax-article-prose li + li {
  margin-top: 9px;
}

.ax-article-prose a {
  color: var(--ax-action);
  font-weight: 600;
  text-decoration: underline;
}

.ax-article-prose strong {
  color: var(--ax-ink);
}

.ax-article-prose blockquote {
  padding: 24px 28px;
  border: 0;
  border-left: 4px solid var(--ax-brand-sky);
  background: var(--ax-surface-alt);
  color: var(--ax-ink);
  font-size: 18px;
}

.ax-article-prose blockquote > :last-child {
  margin-bottom: 0;
}

.ax-article-prose img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: var(--ax-radius-md);
}

.ax-article-prose figcaption {
  margin-top: 9px;
  color: var(--ax-text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.ax-article-prose .wp-block-table,
.ax-article-prose .table-responsive {
  overflow-x: auto;
}

.ax-article-prose table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 15px;
}

.ax-article-prose th,
.ax-article-prose td {
  padding: 13px 15px;
  border: 1px solid var(--ax-border-color);
  text-align: left;
  vertical-align: top;
}

.ax-article-prose th {
  background: var(--ax-navy);
  color: #FFFFFF;
}

.ax-article-toc {
  position: sticky;
  top: 112px;
  grid-column: 2;
  grid-row: 1 / span 2;
  max-height: calc(100vh - 136px);
  overflow: auto;
  border: 1px solid var(--ax-border-color);
  border-top: 3px solid var(--ax-brand-deep);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
  box-shadow: var(--ax-shadow-sm);
}

.ax-article-toc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  color: var(--ax-ink);
  cursor: default;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
}

.ax-article-toc summary::-webkit-details-marker {
  display: none;
}

.ax-article-toc__body {
  padding: 0 22px 22px;
}

.ax-article-toc ol {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.ax-article-toc a {
  display: block;
  color: var(--ax-text);
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
}

.ax-article-toc a:hover,
.ax-article-toc a:focus-visible {
  color: var(--ax-action);
  text-decoration: underline;
}

.ax-article-toc li.is-h3 a {
  padding-left: 15px;
  color: var(--ax-text-muted);
  font-size: 13px;
}

.ax-article-inline-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-column: 1;
  gap: 28px;
  align-items: center;
  margin: 40px 0;
  padding: 28px;
  border: 1px solid #BCD8EE;
  border-radius: var(--ax-radius-md);
  background: linear-gradient(135deg, #EFF7FE 0%, #FFFFFF 100%);
}

.ax-article-prose > .ax-article-inline-cta {
  width: 100%;
}

.ax-article-inline-cta h2 {
  margin: 6px 0 8px;
  font-size: 26px;
}

.ax-article-inline-cta p:last-child {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.ax-article-notes {
  border-block: 1px solid var(--ax-border-color);
  background: var(--ax-surface-alt);
}

.ax-article-notes__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  gap: 40px;
  align-items: start;
}

.ax-article-richtext {
  max-width: 820px;
  color: var(--ax-text);
  font-size: 16px;
}

.ax-article-richtext > :first-child,
.ax-article-review-note > :first-child {
  margin-top: 0;
}

.ax-article-richtext > :last-child,
.ax-article-review-note > :last-child {
  margin-bottom: 0;
}

.ax-article-richtext h3 {
  margin: 30px 0 12px;
  font-size: 25px;
}

.ax-article-review-note {
  display: grid;
  gap: 6px;
  padding: 24px;
  border: 1px solid var(--ax-border-color);
  border-top: 3px solid var(--ax-success);
  border-radius: var(--ax-radius-md);
  background: #FFFFFF;
  font-size: 14px;
}

.ax-article-review-note strong {
  color: var(--ax-ink);
  font-size: 16px;
}

.ax-article-review-note time {
  color: var(--ax-text-muted);
}

.ax-article-evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.ax-article-evidence-grid figure {
  margin: 0;
}

.ax-article-evidence-grid__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--ax-radius-md);
  object-fit: cover;
}

.ax-article-evidence-grid figcaption {
  margin-top: 9px;
  color: var(--ax-text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.ax-article-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.ax-article-product-card,
.ax-blog-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
  box-shadow: 0 3px 12px rgba(11, 31, 51, 0.05);
  transition: border-color var(--ax-transition), box-shadow var(--ax-transition), transform var(--ax-transition);
}

.ax-article-product-card:hover,
.ax-blog-card:hover {
  border-color: #A8C6E3;
  box-shadow: var(--ax-shadow-md);
  transform: translateY(-3px);
}

.ax-article-product-card__media,
.ax-blog-card__media {
  display: block;
  overflow: hidden;
  background: #F7F9FC;
  aspect-ratio: 4 / 3;
}

.ax-article-product-card__image,
.ax-blog-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--ax-transition);
}

.ax-blog-card__image {
  object-fit: cover;
}

.ax-article-product-card:hover .ax-article-product-card__image,
.ax-blog-card:hover .ax-blog-card__image {
  transform: scale(1.025);
}

.ax-blog-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background: linear-gradient(145deg, #EAF3FB, #F8FAFC);
  color: var(--ax-brand-deep);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ax-article-product-card__body,
.ax-blog-card__body {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 22px;
}

.ax-article-product-card h3,
.ax-blog-card h3 {
  margin: 7px 0 12px;
  font-size: 22px;
}

.ax-article-product-card h3 a,
.ax-blog-card h3 a {
  color: var(--ax-ink);
  text-decoration: none;
}

.ax-article-product-card__body > p,
.ax-blog-card__body > p {
  margin: 0 0 18px;
  color: var(--ax-text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.ax-article-product-card__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-sm);
  background: var(--ax-border-color);
}

.ax-article-product-card__specs div {
  min-width: 0;
  padding: 10px;
  background: #FFFFFF;
}

.ax-article-product-card__specs dt {
  color: var(--ax-text-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
}

.ax-article-product-card__specs dd {
  margin: 3px 0 0;
  color: var(--ax-ink);
  font-size: 14px;
  font-weight: 700;
}

.ax-article-product-card__actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
  font-size: 14px;
}

.ax-article-faq {
  background: var(--ax-surface-alt);
}

.ax-article-faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 96px);
}

.ax-article-faq__items {
  border-top: 1px solid var(--ax-border-color);
}

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

.ax-article-faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  color: var(--ax-ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
}

.ax-article-faq-item summary::-webkit-details-marker {
  display: none;
}

.ax-article-faq-item summary span {
  position: relative;
  width: 20px;
  height: 20px;
}

.ax-article-faq-item summary span::before,
.ax-article-faq-item summary span::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  background: var(--ax-action);
  transition: transform var(--ax-transition);
}

.ax-article-faq-item summary span::after {
  transform: rotate(90deg);
}

.ax-article-faq-item[open] summary span::after {
  transform: rotate(0deg);
}

.ax-article-faq-item > div {
  padding: 0 44px 22px 0;
}

.ax-article-faq-item p {
  margin: 0;
}

.ax-article-quote {
  padding-block: var(--ax-section-space-sm);
  background: var(--ax-navy);
  color: #DCE7F2;
}

.ax-article-quote__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.ax-article-quote__intro .ax-eyebrow {
  color: #63B7EA;
}

.ax-article-quote__intro h2 {
  max-width: 620px;
  margin: 10px 0 20px;
  color: #FFFFFF;
  font-size: clamp(34px, 4vw, 48px);
}

.ax-article-quote__intro > p,
.ax-article-quote__intro li {
  font-size: 16px;
}

.ax-article-quote__intro ul {
  display: grid;
  gap: 11px;
  margin: 24px 0;
  padding-left: 22px;
}

.ax-article-quote__note {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #B7C7D8;
  font-size: 14px !important;
}

.ax-article-quote .ax-form-block,
.ax-article-quote .ax-form--article-quote {
  background: #FFFFFF;
  color: var(--ax-text);
}

.ax-article-related {
  background: #FFFFFF;
}

.ax-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

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

.ax-blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 4px;
  color: var(--ax-text-muted);
  font-size: 13px;
}

.ax-blog-card__meta a {
  color: var(--ax-action);
  font-weight: 700;
  text-decoration: none;
}

.ax-blog-card__body > .ax-text-link {
  margin-top: auto;
  font-size: 14px;
}

.ax-blog-hero {
  border-bottom: 1px solid var(--ax-border-color);
  background:
    radial-gradient(circle at 82% 18%, rgba(25, 140, 203, 0.18), transparent 30%),
    var(--ax-navy);
  color: #D9E5F0;
}

.ax-blog-hero .ax-blog-breadcrumb li,
.ax-blog-hero .ax-blog-breadcrumb a {
  color: #C7D6E5;
}

.ax-blog-hero .ax-blog-breadcrumb li:not(:last-child)::after {
  color: #70869B;
}

.ax-blog-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr);
  gap: 64px;
  align-items: end;
  padding: 42px 0 52px;
}

.ax-blog-hero__content .ax-eyebrow {
  color: #63B7EA;
}

.ax-blog-hero__content h1 {
  max-width: 850px;
  margin: 10px 0 0;
  color: #FFFFFF;
  font-size: clamp(42px, 5vw, 62px);
}

.ax-blog-hero__content > p {
  max-width: 520px;
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
}

.ax-blog-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding-bottom: 32px;
}

.ax-blog-category-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #E6EEF6;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.ax-blog-category-nav a:hover,
.ax-blog-category-nav a:focus-visible,
.ax-blog-category-nav a[aria-current="page"] {
  border-color: #63B7EA;
  background: #FFFFFF;
  color: var(--ax-brand-deep);
}

.ax-blog-featured {
  background: var(--ax-surface-alt);
}

.ax-blog-featured__card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  overflow: hidden;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-lg);
  background: #FFFFFF;
  box-shadow: var(--ax-shadow-sm);
}

.ax-blog-featured__media {
  display: block;
  min-height: 430px;
  overflow: hidden;
  background: #EAF3FB;
}

.ax-blog-featured__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ax-transition);
}

.ax-blog-featured__media:hover .ax-blog-featured__image {
  transform: scale(1.02);
}

.ax-blog-featured__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 64px);
}

.ax-blog-featured__category {
  display: inline-block;
  margin-top: 14px;
  color: var(--ax-action);
  font-size: 14px;
  font-weight: 700;
}

.ax-blog-featured__content h2 {
  margin: 12px 0 18px;
  font-size: clamp(32px, 3.5vw, 44px);
}

.ax-blog-featured__content h2 a {
  color: var(--ax-ink);
  text-decoration: none;
}

.ax-blog-featured__content > p {
  margin: 0;
}

.ax-blog-featured__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  color: var(--ax-text-muted);
  font-size: 14px;
}

.ax-blog-library {
  background: #FFFFFF;
}

.ax-blog-pagination {
  margin-top: 40px;
}

.ax-blog-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ax-blog-pagination a,
.ax-blog-pagination span {
  display: grid;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  padding: 8px 12px;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-sm);
  background: #FFFFFF;
  color: var(--ax-action);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.ax-blog-pagination .current,
.ax-blog-pagination a:hover,
.ax-blog-pagination a:focus-visible {
  border-color: var(--ax-action);
  background: var(--ax-action);
  color: #FFFFFF;
}

.ax-blog-quote {
  padding-block: 56px;
  background: var(--ax-brand-soft);
}

.ax-blog-quote__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.ax-blog-quote h2 {
  max-width: 780px;
  margin: 8px 0 14px;
  font-size: clamp(32px, 3.5vw, 44px);
}

.ax-blog-quote p:last-child {
  max-width: 800px;
  margin-bottom: 0;
}

.ax-blog-quote__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ax-article-hero :focus-visible,
.ax-article-section :focus-visible,
.ax-blog-hero :focus-visible,
.ax-blog-section :focus-visible,
.ax-article-quote :focus-visible {
  outline: 3px solid rgba(25, 140, 203, 0.42);
  outline-offset: 3px;
}

@media (max-width: 1199px) {
  .ax-article-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .ax-article-hero__media {
    aspect-ratio: 16 / 7;
  }

  .ax-article-reading-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .ax-article-toc,
  .ax-article-prose,
  .ax-article-inline-cta {
    grid-column: 1;
    grid-row: auto;
  }

  .ax-article-toc {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .ax-article-toc summary {
    cursor: pointer;
  }

  .ax-article-toc summary span::before {
    content: "+";
    color: var(--ax-action);
    font-size: 22px;
    line-height: 1;
  }

  .ax-article-toc[open] summary span::before {
    content: "−";
  }

  .ax-article-notes__grid,
  .ax-article-faq__grid,
  .ax-blog-hero__content,
  .ax-blog-featured__card,
  .ax-article-quote__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ax-blog-hero__content {
    gap: 24px;
  }

  .ax-blog-featured__media {
    min-height: 0;
    aspect-ratio: 16 / 8;
  }

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

  .ax-blog-quote__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
}

@media (max-width: 767px) {
  .ax-blog-breadcrumb {
    padding-block: 18px;
    font-size: 13px;
  }

  .ax-blog-breadcrumb li:last-child {
    max-width: 100%;
  }

  .ax-article-hero__content {
    padding-block: 32px 40px;
  }

  .ax-article-hero__content h1,
  .ax-blog-hero__content h1 {
    font-size: 38px;
  }

  .ax-article-hero__summary,
  .ax-blog-hero__content > p {
    font-size: 17px;
  }

  .ax-article-meta {
    display: grid;
    gap: 7px;
  }

  .ax-article-meta li::after {
    display: none !important;
  }

  .ax-article-hero__media {
    aspect-ratio: 4 / 3;
  }

  .ax-article-section__heading--split,
  .ax-blog-section__heading,
  .ax-article-quick-answer,
  .ax-article-inline-cta {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .ax-article-quick-answer,
  .ax-article-inline-cta {
    padding: 22px;
  }

  .ax-article-prose {
    font-size: 16px;
    line-height: 1.78;
  }

  .ax-article-prose h2 {
    margin-top: 44px;
    font-size: 30px;
  }

  .ax-article-prose h3 {
    font-size: 23px;
  }

  .ax-article-inline-cta .ax-btn {
    width: 100%;
  }

  .ax-article-evidence-grid,
  .ax-article-product-grid,
  .ax-blog-grid,
  .ax-blog-grid--three {
    grid-template-columns: minmax(0, 1fr);
  }

  .ax-article-quote__grid {
    gap: 32px;
  }

  .ax-blog-featured__content {
    padding: 28px 22px;
  }

  .ax-blog-featured__footer,
  .ax-blog-quote__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ax-blog-featured__footer .ax-btn,
  .ax-blog-quote__actions .ax-btn {
    width: 100%;
  }

  .ax-blog-category-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 24px;
    scrollbar-width: thin;
  }

  .ax-blog-category-nav a {
    flex: 0 0 auto;
  }
}

@media (max-width: 478px) {
  .ax-article-product-card__body,
  .ax-blog-card__body {
    padding: 20px;
  }

  .ax-article-quick-answer {
    margin-bottom: 40px;
  }

  .ax-article-faq-item summary {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ax-article-hero *,
  .ax-article-section *,
  .ax-blog-hero *,
  .ax-blog-section *,
  .ax-article-quote * {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
  }
}

/* 26. Solutions single and archive templates */
.ax-solution-hero,
.ax-solutions-hero,
.ax-solution-section,
.ax-solution-quote {
  color: var(--ax-text);
  font-family: var(--ax-font-body);
  font-size: var(--ax-fs-body);
}

.ax-solution-hero *,
.ax-solutions-hero *,
.ax-solution-section *,
.ax-solution-quote * {
  box-sizing: border-box;
}

.ax-solution-hero h1,
.ax-solution-hero h2,
.ax-solution-hero h3,
.ax-solutions-hero h1,
.ax-solutions-hero h2,
.ax-solution-section h2,
.ax-solution-section h3,
.ax-solution-section h4,
.ax-solution-quote h2 {
  color: var(--ax-ink);
  font-family: var(--ax-font-heading);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.ax-solution-hero p,
.ax-solutions-hero p,
.ax-solution-section p,
.ax-solution-quote p {
  margin: 0;
}

.ax-solution-breadcrumb {
  margin-bottom: 32px;
}

.ax-solution-breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-small);
  list-style: none;
}

.ax-solution-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ax-solution-breadcrumb li:not(:last-child)::after {
  color: var(--ax-border-color);
  content: "/";
}

.ax-solution-breadcrumb a {
  color: var(--ax-action);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ax-solution-hero,
.ax-solutions-hero {
  padding: 32px 0 72px;
  border-bottom: 1px solid var(--ax-border-color);
  background-color: var(--ax-surface);
  background-image:
    linear-gradient(rgba(215, 222, 232, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 222, 232, 0.32) 1px, transparent 1px);
  background-size: 48px 48px;
}

.ax-solution-hero__grid,
.ax-solutions-hero__grid {
  display: grid;
  align-items: center;
  gap: 48px;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.ax-solution-hero__content {
  display: grid;
  align-content: center;
  gap: 20px;
}

.ax-solution-hero h1,
.ax-solutions-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: var(--ax-fs-h1);
}

.ax-solution-hero__lead,
.ax-solutions-hero__lead {
  max-width: 68ch;
  color: var(--ax-text);
  font-size: var(--ax-fs-lead);
  line-height: 1.65;
}

.ax-solution-hero__highlights {
  display: grid;
  gap: 0;
  margin: 4px 0 0;
  padding: 0;
  border-top: 1px solid var(--ax-border-color);
  list-style: none;
}

.ax-solution-hero__highlights li {
  display: grid;
  gap: 4px;
  padding: 13px 0 13px 22px;
  border-bottom: 1px solid var(--ax-border-color);
  position: relative;
}

.ax-solution-hero__highlights li::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ax-brand-sky);
  content: "";
  left: 0;
  position: absolute;
  top: 19px;
}

.ax-solution-hero__highlights strong {
  color: var(--ax-ink);
  font-size: 15px;
  line-height: 1.4;
}

.ax-solution-hero__highlights span {
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-small);
  line-height: 1.55;
}

.ax-solution-hero__actions,
.ax-solutions-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ax-solution-hero__note,
.ax-solutions-hero__card > p {
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-small);
  line-height: 1.6;
}

.ax-solution-hero__media {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-lg);
  background: var(--ax-surface);
  box-shadow: var(--ax-shadow-sm);
}

.ax-solution-hero__image,
.ax-solution-hero__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.ax-solution-hero__image {
  height: auto;
  object-fit: cover;
}

.ax-solution-hero__placeholder {
  display: grid;
  place-items: center;
  padding: 32px;
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-small);
  text-align: center;
}

.ax-solutions-hero__card {
  display: grid;
  gap: 20px;
  padding: 32px;
  border: 1px solid var(--ax-border-color);
  border-top: 4px solid var(--ax-action);
  border-radius: var(--ax-radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--ax-shadow-sm);
}

.ax-solutions-hero__card h2 {
  margin: 0;
  font-size: var(--ax-fs-h3);
}

.ax-solutions-hero__card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ax-solutions-hero__card li {
  padding-left: 24px;
  color: var(--ax-ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
}

.ax-solutions-hero__card li::before {
  color: var(--ax-brand-sky);
  content: "✓";
  font-weight: 700;
  left: 0;
  position: absolute;
}

.ax-solution-section {
  padding: var(--ax-section-space-sm) 0;
  background: var(--ax-surface);
}

.ax-solution-section:nth-of-type(even),
.ax-solution-factors,
.ax-solution-review,
.ax-solutions-selection {
  background: var(--ax-surface-alt);
}

.ax-solution-section__heading {
  display: grid;
  align-items: end;
  gap: 40px;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  margin-bottom: 40px;
}

.ax-solution-section__heading > div {
  display: grid;
  gap: 10px;
}

.ax-solution-section__heading h2 {
  max-width: 800px;
  margin: 0;
  font-size: var(--ax-fs-h2);
}

.ax-solution-section__heading > p {
  max-width: 54ch;
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-body);
  line-height: 1.65;
}

.ax-solution-richtext {
  max-width: 900px;
  color: var(--ax-text);
  font-size: var(--ax-fs-body);
  line-height: 1.72;
}

.ax-solution-richtext > :first-child {
  margin-top: 0;
}

.ax-solution-richtext > :last-child {
  margin-bottom: 0;
}

.ax-solution-richtext h2,
.ax-solution-richtext h3,
.ax-solution-richtext h4 {
  margin: 32px 0 12px;
}

.ax-solution-richtext h2 {
  font-size: 30px;
}

.ax-solution-richtext h3 {
  font-size: 24px;
}

.ax-solution-richtext p,
.ax-solution-richtext ul,
.ax-solution-richtext ol,
.ax-solution-richtext table,
.ax-solution-richtext figure {
  margin: 0 0 18px;
}

.ax-solution-richtext a {
  color: var(--ax-action);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ax-solution-richtext img {
  max-width: 100%;
  height: auto;
}

.ax-solution-richtext table {
  width: 100%;
  border-collapse: collapse;
}

.ax-solution-richtext th,
.ax-solution-richtext td {
  padding: 13px 14px;
  border: 1px solid var(--ax-border-color);
  font-size: 15px;
  text-align: left;
  vertical-align: top;
}

.ax-solution-richtext th {
  background: var(--ax-brand-soft);
  color: var(--ax-ink);
}

.ax-solution-challenge-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 40px;
}

.ax-solution-challenge {
  padding: 24px;
  border: 1px solid var(--ax-border-color);
  border-top: 3px solid var(--ax-brand-sky);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
}

.ax-solution-challenge h3 {
  margin: 0 0 12px;
  font-size: var(--ax-fs-card-title);
}

.ax-solution-challenge p {
  font-size: var(--ax-fs-card-copy);
  line-height: 1.65;
}

.ax-solution-challenge__confirm {
  margin-top: 16px !important;
  padding-top: 14px;
  border-top: 1px solid var(--ax-border-color);
  color: var(--ax-text-muted);
}

.ax-solution-factor-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
  list-style: none;
  overflow: hidden;
}

.ax-solution-factor-list > li {
  display: grid;
  gap: 24px;
  grid-template-columns: 52px minmax(0, 1fr);
  padding: 24px;
  border-bottom: 1px solid var(--ax-border-color);
}

.ax-solution-factor-list > li:last-child {
  border-bottom: 0;
}

.ax-solution-factor-list__number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--ax-brand-soft);
  color: var(--ax-action);
  font-family: var(--ax-font-heading);
  font-size: 18px;
  font-weight: 700;
}

.ax-solution-factor-list h3 {
  margin: 0 0 8px;
  font-size: var(--ax-fs-card-title);
}

.ax-solution-factor-list p {
  font-size: var(--ax-fs-card-copy);
  line-height: 1.65;
}

.ax-solution-factor-list__example {
  margin-top: 10px !important;
  color: var(--ax-text-muted);
}

.ax-solution-direction-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ax-solution-direction {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--ax-border-color);
  border-top: 4px solid var(--ax-action);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
}

.ax-solution-direction--not_recommended {
  border-top-color: var(--ax-warning);
}

.ax-solution-direction--more_information {
  border-top-color: var(--ax-brand-gray);
}

.ax-solution-direction__status {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--ax-brand-soft);
  color: var(--ax-action) !important;
  font-size: var(--ax-fs-caption) !important;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.ax-solution-direction h3 {
  margin: 0;
  font-size: var(--ax-fs-h3);
}

.ax-solution-direction h4 {
  margin: 0 0 6px;
  font-family: var(--ax-font-body);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ax-solution-direction p {
  font-size: var(--ax-fs-card-copy);
  line-height: 1.65;
}

.ax-solution-direction__confirm {
  padding: 16px;
  border-radius: var(--ax-radius-sm);
  background: var(--ax-surface-alt);
}

.ax-solution-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.ax-solution-category-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-sm);
  background: var(--ax-surface);
  color: var(--ax-ink);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.ax-solution-category-links a:hover,
.ax-solution-category-links a:focus-visible {
  border-color: var(--ax-action);
  background: var(--ax-brand-soft);
  color: var(--ax-action);
}

.ax-solution-review__grid {
  display: grid;
  align-items: start;
  gap: 32px;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
}

.ax-solution-inquiry-card {
  padding: 26px;
  border: 1px solid var(--ax-border-color);
  border-top: 4px solid var(--ax-action);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
}

.ax-solution-inquiry-card h3 {
  margin: 0 0 18px;
  font-size: var(--ax-fs-h3);
}

.ax-solution-inquiry-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ax-solution-inquiry-card li {
  display: grid;
  gap: 4px;
  padding: 13px 0;
  border-bottom: 1px solid var(--ax-border-color);
}

.ax-solution-inquiry-card li strong {
  color: var(--ax-ink);
  font-size: 15px;
}

.ax-solution-inquiry-card li span,
.ax-solution-inquiry-card > p {
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-small);
  line-height: 1.55;
}

.ax-solution-inquiry-card > p {
  margin-top: 16px;
}

.ax-solution-evidence-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 32px;
}

.ax-solution-evidence-grid figure {
  margin: 0;
}

.ax-solution-evidence-grid__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: var(--ax-radius-md);
  object-fit: cover;
}

.ax-solution-evidence-grid figcaption {
  margin-top: 10px;
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-small);
  line-height: 1.55;
}

.ax-solution-faq__items {
  display: grid;
  max-width: 980px;
  gap: 12px;
}

.ax-solution-faq-item {
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-sm);
  background: var(--ax-surface);
}

.ax-solution-faq-item summary {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 18px;
  color: var(--ax-ink);
  cursor: pointer;
  font-size: var(--ax-fs-card-title);
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

.ax-solution-faq-item summary::-webkit-details-marker {
  display: none;
}

.ax-solution-faq-item summary span {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  position: relative;
}

.ax-solution-faq-item summary span::before,
.ax-solution-faq-item summary span::after {
  width: 14px;
  height: 2px;
  background: var(--ax-action);
  content: "";
  left: 3px;
  position: absolute;
  top: 9px;
}

.ax-solution-faq-item summary span::after {
  transform: rotate(90deg);
}

.ax-solution-faq-item[open] summary span::after {
  transform: rotate(0deg);
}

.ax-solution-faq-item > div {
  padding: 0 18px 18px;
}

.ax-solution-faq-item p {
  max-width: 78ch;
  font-size: var(--ax-fs-body);
  line-height: 1.7;
}

.ax-solution-quote {
  padding: var(--ax-section-space-sm) 0;
  background: var(--ax-navy);
}

.ax-solution-quote__grid {
  display: grid;
  align-items: start;
  gap: 48px;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.ax-solution-quote__intro {
  color: #d7dee8;
}

.ax-solution-quote__intro .ax-eyebrow {
  color: #58b8ee;
}

.ax-solution-quote__intro h2 {
  margin: 12px 0 20px;
  color: #ffffff;
  font-size: var(--ax-fs-h2);
}

.ax-solution-quote__intro > p,
.ax-solution-quote__intro li {
  font-size: var(--ax-fs-body);
  line-height: 1.68;
}

.ax-solution-quote__intro ul {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding-left: 20px;
}

.ax-solution-quote__note {
  padding-top: 18px;
  border-top: 1px solid rgba(215, 222, 232, 0.28);
  color: #d7dee8;
  font-size: var(--ax-fs-small) !important;
}

.ax-solution-quote .ax-form-block,
.ax-solution-quote .ax-form--solution-quote {
  background: var(--ax-surface);
  color: var(--ax-text);
}

.ax-solution-card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ax-solution-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-surface);
  transition: border-color var(--ax-transition), box-shadow var(--ax-transition), transform var(--ax-transition);
}

.ax-solution-card:hover {
  border-color: rgba(14, 73, 157, 0.5);
  box-shadow: var(--ax-shadow-sm);
  transform: translateY(-3px);
}

.ax-solution-card__media {
  display: block;
  overflow: hidden;
  background: var(--ax-surface-alt);
}

.ax-solution-card__image,
.ax-solution-card__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.ax-solution-card__image {
  height: auto;
  object-fit: cover;
  transition: transform var(--ax-transition);
}

.ax-solution-card:hover .ax-solution-card__image {
  transform: scale(1.02);
}

.ax-solution-card__placeholder {
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-small);
  text-align: center;
}

.ax-solution-card__body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.ax-solution-card h2 {
  margin: 0;
  font-size: var(--ax-fs-h3);
}

.ax-solution-card h2 a {
  color: var(--ax-ink);
  text-decoration: none;
}

.ax-solution-card__body > p:not(.ax-eyebrow) {
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-card-copy);
  line-height: 1.65;
}

.ax-solution-card__highlights {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ax-solution-card__highlights li {
  padding-left: 18px;
  color: var(--ax-text);
  font-size: var(--ax-fs-small);
  line-height: 1.45;
  position: relative;
}

.ax-solution-card__highlights li::before {
  color: var(--ax-brand-sky);
  content: "•";
  left: 3px;
  position: absolute;
}

.ax-solutions-step-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 1px;
  border: 1px solid var(--ax-border-color);
  border-radius: var(--ax-radius-md);
  background: var(--ax-border-color);
  list-style: none;
  overflow: hidden;
}

.ax-solutions-step-grid li {
  min-width: 0;
  padding: 24px 20px;
  background: var(--ax-surface);
}

.ax-solutions-step-grid li > span {
  display: block;
  margin-bottom: 22px;
  color: var(--ax-action);
  font-family: var(--ax-font-heading);
  font-size: 28px;
  font-weight: 700;
}

.ax-solutions-step-grid h3 {
  margin: 0 0 10px;
  font-size: var(--ax-fs-card-title);
}

.ax-solutions-step-grid p {
  color: var(--ax-text-muted);
  font-size: var(--ax-fs-small);
  line-height: 1.62;
}

.ax-solution-hero :focus-visible,
.ax-solutions-hero :focus-visible,
.ax-solution-section :focus-visible,
.ax-solution-quote :focus-visible {
  outline: 3px solid rgba(25, 140, 203, 0.35);
  outline-offset: 3px;
}

@media (max-width: 1200px) {
  .ax-solution-direction-grid,
  .ax-solution-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 991px) {
  .ax-solution-hero,
  .ax-solutions-hero {
    padding-bottom: 56px;
  }

  .ax-solution-hero__grid,
  .ax-solutions-hero__grid,
  .ax-solution-section__heading,
  .ax-solution-review__grid,
  .ax-solution-quote__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ax-solution-section__heading {
    align-items: start;
    gap: 18px;
  }

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

  .ax-solution-hero__media {
    max-width: 760px;
  }

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

@media (max-width: 767px) {
  .ax-solution-hero,
  .ax-solutions-hero {
    padding: 24px 0 48px;
    background-size: 40px 40px;
  }

  .ax-solution-breadcrumb {
    margin-bottom: 24px;
  }

  .ax-solution-breadcrumb li:last-child {
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ax-solution-hero__grid,
  .ax-solutions-hero__grid {
    gap: 32px;
  }

  .ax-solution-hero h1,
  .ax-solutions-hero h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .ax-solution-hero__lead,
  .ax-solutions-hero__lead {
    font-size: 17px;
  }

  .ax-solution-hero__actions,
  .ax-solutions-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ax-solution-hero__actions .ax-btn,
  .ax-solutions-hero__actions .ax-btn {
    width: 100%;
  }

  .ax-solutions-hero__card,
  .ax-solution-challenge,
  .ax-solution-direction,
  .ax-solution-inquiry-card {
    padding: 22px;
  }

  .ax-solution-section__heading h2,
  .ax-solution-quote__intro h2 {
    font-size: 30px;
  }

  .ax-solution-challenge-grid,
  .ax-solution-direction-grid,
  .ax-solution-card-grid,
  .ax-solution-evidence-grid,
  .ax-solutions-step-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ax-solution-factor-list > li {
    gap: 16px;
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 20px 16px;
  }

  .ax-solution-factor-list__number {
    width: 40px;
    height: 40px;
  }

  .ax-solution-category-links {
    align-items: stretch;
    flex-direction: column;
  }

  .ax-solution-category-links a {
    width: 100%;
  }

  .ax-solution-card__body {
    padding: 22px;
  }

  .ax-solution-faq-item summary {
    gap: 16px;
    font-size: 17px;
  }
}

@media (max-width: 478px) {
  .ax-solution-hero__content {
    gap: 18px;
  }

  .ax-solutions-hero__card,
  .ax-solution-challenge,
  .ax-solution-direction,
  .ax-solution-inquiry-card,
  .ax-solution-card__body {
    padding: 20px;
  }

  .ax-solution-factor-list > li {
    grid-template-columns: minmax(0, 1fr);
  }

  .ax-solution-factor-list__number {
    border-radius: var(--ax-radius-sm);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ax-solution-hero *,
  .ax-solutions-hero *,
  .ax-solution-section *,
  .ax-solution-quote * {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
  }
}
