  /* ===== Hero ===== */
  .axm-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #050810;
  }

  .axm-hero__bg { position: absolute; inset: 0; z-index: 0; }

  .axm-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.5;
  }

  .axm-hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      rgba(5, 8, 16, 0.97) 0%,
      rgba(5, 8, 16, 0.88) 35%,
      rgba(5, 8, 16, 0.55) 60%,
      rgba(5, 8, 16, 0.15) 100%
    );
  }

  .axm-hero__content {
    position: relative;
    z-index: 1;
    text-align: left !important;
    padding: 7rem 4rem 10rem 6rem;
    max-width: 620px;
    animation: pi-fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .axm-hero__content .pi-hero__badge { display: inline-block; }
  .axm-hero__content .pi-hero__cta { justify-content: flex-start; }

  .axm-hero__stats {
    position: absolute;
    bottom: 3rem;
    right: 5%;
    z-index: 2;
    display: flex;
    align-items: center;
    background: rgba(10, 10, 20, 0.72);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 2rem;
  }

  .axm-hero__stat { text-align: center; padding: 0 1.2rem; }

  .axm-hero__stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .axm-hero__stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.4rem;
    letter-spacing: 0.03em;
  }

  .axm-hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
  }

  /* ===== Advantages Grid ===== */
  .axm-advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .axm-adv-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.3s, transform 0.3s;
  }
  .axm-adv-card:hover {
    border-color: rgba(175,23,57,0.3);
    transform: translateY(-2px);
  }
  .axm-adv-card h3 {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 0.5rem;
  }
  .axm-adv-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
  }

  /* ===== Product Duo Layout ===== */
  .axm-product-duo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .axm-product {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    overflow: hidden;
  }

  .axm-product__header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .axm-product__badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    background: rgba(94, 196, 160, 0.12);
    border: 1px solid rgba(94, 196, 160, 0.3);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #5ec4a0;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
  }
  .axm-product__badge--abs {
    background: rgba(126, 180, 240, 0.12);
    border-color: rgba(126, 180, 240, 0.3);
    color: #7eb4f0;
  }
  .axm-product__header h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.2rem;
  }
  .axm-product__en {
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
    font-style: italic;
    margin: 0;
  }

  .axm-product__body {
    padding: 1.5rem;
  }
  .axm-product__desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0 0 1.25rem;
  }

  /* Spec Grid */
  .axm-product__specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  .axm-spec {
    display: flex;
    flex-direction: column;
    padding: 0.6rem 0.75rem;
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.05);
  }
  .axm-spec__label {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.03em;
    margin-bottom: 0.2rem;
  }
  .axm-spec__value {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
  }

  /* Single/Double Head Configs */
  .axm-configs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
  }
  .axm-config {
    display: flex;
    gap: 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s;
  }
  .axm-config:hover {
    border-color: rgba(175,23,57,0.25);
  }
  .axm-config__img {
    width: 180px;
    min-height: 120px;
    flex-shrink: 0;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
  }
  .axm-config__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .axm-config__info {
    padding: 0.75rem 1rem 0.75rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .axm-config__info h4 {
    color: #fff;
    font-size: 0.88rem;
    margin: 0 0 0.3rem;
  }
  .axm-config__info p {
    color: rgba(255,255,255,0.55);
    font-size: 0.78rem;
    line-height: 1.55;
    margin: 0;
  }

  .axm-product__link {
    color: #AF1739;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
  }
  .axm-product__link:hover { color: #d4264e; }

  /* ===== Comparison Table ===== */
  .axm-compare {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
  }
  .axm-compare-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; background: transparent !important; }
  .axm-compare-table th {
    background: rgba(175,0,54,0.12) !important;
    color: rgba(255,255,255,0.7) !important;
    font-weight: 600;
    padding: 0.875rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
  }
  .axm-compare-table td {
    padding: 0.875rem 1.25rem;
    color: rgba(255,255,255,0.7) !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: transparent !important;
  }
  .axm-compare-table tbody tr:last-child td { border-bottom: none; }
  .axm-compare-table tbody tr:hover { background: rgba(255,255,255,0.08) !important; }
  .axm-compare-table tbody tr:hover td { background: inherit !important; }
  .axm-compare-table thead tr:hover { background: rgba(175,0,54,0.12) !important; }
  .axm-compare-table thead tr:hover th { background: inherit !important; }

  /* ===== Accuracy Section ===== */
  .axm-accuracy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
  }
  .axm-accuracy-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.5rem;
  }
  .axm-accuracy-card h3 {
    color: #fff;
    font-size: 0.95rem;
    margin: 0 0 0.5rem;
  }
  .axm-accuracy-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0 0 0.75rem;
  }
  .axm-accuracy-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .axm-accuracy-card li {
    position: relative;
    padding-left: 1em;
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 0.3rem;
  }
  .axm-accuracy-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #AF1739;
  }
  .axm-accuracy-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(126, 180, 240, 0.06);
    border: 1px solid rgba(126, 180, 240, 0.15);
    border-radius: 10px;
  }
  .axm-accuracy-note p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
  }

  /* ===== Docs Grid ===== */
  .axm-docs-grid--3col {
    grid-template-columns: repeat(3, 1fr);
  }
  .axm-docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .axm-doc-card__tag {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(175,23,57,0.8);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
  }
  .axm-doc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s;
  }
  .axm-doc-card:hover {
    background: rgba(175,23,57,0.06);
    border-color: rgba(175,23,57,0.2);
    transform: translateY(-2px);
  }
  .axm-doc-card h3 {
    color: #fff;
    font-size: 0.9rem;
    margin: 0 0 0.2rem;
  }
  .axm-doc-card p {
    color: rgba(255,255,255,0.45);
    font-size: 0.78rem;
    margin: 0;
  }
  .axm-doc-arrow {
    color: #AF1739;
    font-size: 1.1rem;
    font-weight: 700;
    position: absolute;
    top: 1rem;
    right: 1.25rem;
  }

  /* ===== Responsive ===== */
  @media (max-width: 900px) {
    .axm-hero__content { padding: 5rem 2rem 8rem; }
    .axm-hero__stats {
      position: relative;
      bottom: auto;
      right: auto;
      margin: -3rem 2rem 0;
      flex-wrap: wrap;
      justify-content: center;
    }
    .axm-advantages { grid-template-columns: 1fr; }
    .axm-product-duo { grid-template-columns: 1fr; }
    .axm-config { flex-direction: column; }
    .axm-config__img { width: 100%; min-height: 150px; }
    .axm-config__info { padding: 0.75rem 1rem; }
    .axm-accuracy-grid { grid-template-columns: 1fr; }
    .axm-docs-grid, .axm-docs-grid--3col { grid-template-columns: 1fr; }
    .axm-compare-table { font-size: 0.78rem; }
    .axm-compare-table th,
    .axm-compare-table td { padding: 0.6rem 0.75rem; }
    .axm-product__specs { grid-template-columns: 1fr; }
  }
