
    /* ===== Reset & Base ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      color: #1a1a2e;
      line-height: 1.7;
      background: #fff;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: #FF6B00; text-decoration: none; transition: color 0.2s; }
    a:hover { color: #e05e00; }

    /* ===== Layout ===== */
    .dax-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .dax-section {
      padding: 70px 0;
    }
    .dax-section--alt {
      background: #f8f9fa;
    }
    .dax-section__title {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #1a1a2e;
    }
    .dax-section__subtitle {
      font-size: 17px;
      color: #666;
      margin-bottom: 40px;
      max-width: 760px;
    }

    /* ===== Hero Banner ===== */
    .dax-hero {
      background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
      color: #fff;
      padding: 80px 0 60px;
      text-align: center;
    }
    .dax-hero h1 {
      font-size: 38px;
      font-weight: 800;
      margin-bottom: 16px;
      line-height: 1.3;
    }
    .dax-hero h1 span { color: #FF6B00; }
    .dax-hero p {
      font-size: 18px;
      opacity: 0.85;
      max-width: 700px;
      margin: 0 auto;
    }

    /* ===== Stats Bar ===== */
    .dax-stats {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      margin-top: 40px;
    }
    .dax-stats__item {
      text-align: center;
    }
    .dax-stats__num {
      font-size: 42px;
      font-weight: 800;
      color: #FFC107;
      line-height: 1.1;
    }
    .dax-stats__label {
      font-size: 14px;
      opacity: 0.8;
      margin-top: 4px;
    }

    /* ===== Image Block ===== */
    .dax-img-block {
      margin: 30px 0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    .dax-img-block img {
      width: 100%;
      display: block;
    }
    .dax-img-caption {
      background: #f8f9fa;
      padding: 10px 16px;
      font-size: 13px;
      color: #888;
      text-align: center;
    }

    /* ===== Product Grid ===== */
    .dax-products {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }
    .dax-product-card {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 28px;
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .dax-product-card:hover {
      box-shadow: 0 8px 30px rgba(255,107,0,0.12);
      transform: translateY(-3px);
    }
    .dax-product-card h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .dax-product-card h3 a {
      color: #1a1a2e;
    }
    .dax-product-card h3 a:hover {
      color: #FF6B00;
    }
    .dax-product-card p {
      font-size: 14px;
      color: #666;
      line-height: 1.6;
    }

    /* ===== Manufacturing List ===== */
    .dax-mfg-list {
      list-style: none;
      padding: 0;
    }
    .dax-mfg-list li {
      padding: 14px 0 14px 32px;
      position: relative;
      font-size: 15px;
      border-bottom: 1px solid #f0f0f0;
    }
    .dax-mfg-list li:last-child { border-bottom: none; }
    .dax-mfg-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #FF6B00;
      font-weight: 700;
      font-size: 16px;
    }
    .dax-mfg-list li strong {
      color: #1a1a2e;
    }

    /* ===== Certification Table ===== */
    .dax-cert-table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
    }
    .dax-cert-table th {
      background: #FF6B00;
      color: #fff;
      padding: 14px 20px;
      text-align: left;
      font-size: 15px;
    }
    .dax-cert-table td {
      padding: 14px 20px;
      border-bottom: 1px solid #eee;
      font-size: 14px;
    }
    .dax-cert-table tr:hover td {
      background: #fff8f0;
    }
    .dax-cert-badges {
      display: flex;
      gap: 24px;
      margin-top: 20px;
      flex-wrap: wrap;
    }
    .dax-cert-badge {
      background: #fff;
      border: 2px solid #FFC107;
      border-radius: 50%;
      width: 90px;
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 16px;
      color: #1a1a2e;
      text-align: center;
      line-height: 1.2;
    }

    /* ===== Why Choose Cards ===== */
    .dax-why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .dax-why-card {
      background: #fff;
      border-radius: 10px;
      padding: 32px 24px;
      text-align: center;
      border: 1px solid #f0f0f0;
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .dax-why-card:hover {
      box-shadow: 0 10px 35px rgba(255,107,0,0.13);
      transform: translateY(-4px);
    }
    .dax-why-card__icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 16px;
      background: linear-gradient(135deg, #FF6B00, #FFC107);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      color: #fff;
    }
    .dax-why-card h3 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #1a1a2e;
    }
    .dax-why-card p {
      font-size: 14px;
      color: #666;
      line-height: 1.6;
    }

    /* ===== CTA Section ===== */
    .dax-cta {
      background: linear-gradient(135deg, #FF6B00 0%, #FFC107 100%);
      color: #fff;
      text-align: center;
      padding: 70px 0;
    }
    .dax-cta h2 {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 16px;
    }
    .dax-cta p {
      font-size: 17px;
      max-width: 650px;
      margin: 0 auto 32px;
      opacity: 0.95;
    }
    .dax-cta-buttons {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .dax-btn {
      display: inline-block;
      padding: 14px 36px;
      border-radius: 6px;
      font-size: 16px;
      font-weight: 700;
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: pointer;
    }
    .dax-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }
    .dax-btn--white {
      background: #fff;
      color: #FF6B00;
    }
    .dax-btn--dark {
      background: #1a1a2e;
      color: #fff;
    }
    .dax-btn--dark:hover {
      background: #2d2d44;
    }

    /* ===== Global Features ===== */
    .dax-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .dax-feature-item {
      padding: 20px;
      border-radius: 8px;
      background: #fff;
      border-left: 4px solid #FF6B00;
    }
    .dax-feature-item h4 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 6px;
      color: #1a1a2e;
    }
    .dax-feature-item p {
      font-size: 14px;
      color: #666;
    }

    /* ===== Responsive ===== */
    @media (max-width: 768px) {
      .dax-hero { padding: 50px 0 40px; }
      .dax-hero h1 { font-size: 26px; }
      .dax-hero p { font-size: 15px; }
      .dax-stats { gap: 20px; }
      .dax-stats__num { font-size: 32px; }
      .dax-section { padding: 50px 0; }
      .dax-section__title { font-size: 24px; }
      .dax-products { grid-template-columns: 1fr; gap: 16px; }
      .dax-why-grid { grid-template-columns: 1fr; gap: 16px; }
      .dax-features { grid-template-columns: 1fr; }
      .dax-cta h2 { font-size: 24px; }
      .dax-btn { padding: 12px 28px; font-size: 15px; }
      .dax-cert-badges { justify-content: center; }
    }
  