
/* ===== Aozhong Product Features ===== */
.az-pf-section {
  width: 100%;
  padding: 40px 20px;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}

.az-pf-container {
  max-width: 1180px;
  margin: 0 auto;
}

.az-pf-head {
  max-width: 820px;
  margin-bottom: 46px;
}

.az-pf-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #cf1f2e;
}

.az-pf-head h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  color: #101820;
}

.az-pf-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: #5f6b76;
}

.az-pf-layout {
  display: grid;
  grid-template-columns: 36% 64%;
  gap: 24px;
  align-items: stretch;
}

/* Left Main Card */
.az-pf-main-card {
  position: relative;
  overflow: hidden;
  padding: 38px 32px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(16, 24, 32, 0.97), rgba(31, 43, 54, 0.97)),
    radial-gradient(circle at top right, rgba(207, 31, 46, 0.30), transparent 40%);
  box-shadow: 0 24px 60px rgba(16, 24, 32, 0.22);
  color: #ffffff;
  box-sizing: border-box;
}

.az-pf-badge {
  width: 100px;
  height: 100px;
  margin-bottom: 28px;
  border-radius: 26px;
  background: linear-gradient(135deg, #cf1f2e, #8f111d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.3px;
  box-shadow: 0 18px 38px rgba(207, 31, 46, 0.35);
}

.az-pf-main-card h3 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 850;
}

.az-pf-main-card p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.78;
  color: rgba(255,255,255,0.82);
}

.az-pf-main-card strong {
  color: #ffffff;
  font-weight: 850;
}

.az-pf-metric-box {
  margin-bottom: 24px;
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.az-pf-metric-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.70);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  font-weight: 800;
}

.az-pf-metric-value {
  color: #ffffff;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 900;
}

.az-pf-metric-value small {
  font-size: 22px;
  font-weight: 800;
}

.az-pf-sequence-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.az-pf-sequence-mini span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

.az-pf-sequence-mini span.active {
  background: #cf1f2e;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(207,31,46,0.32);
}

.az-pf-sequence-mini i {
  flex: 1;
  min-width: 16px;
  height: 1px;
  background: rgba(255,255,255,0.22);
}

.az-pf-note {
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.82);
  font-size: 15.5px;
  line-height: 1.7;
}

.az-pf-note strong {
  color: #ffffff;
}

/* Right Grid */
.az-pf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.az-pf-card {
  min-height: 240px;
  padding: 30px 28px 28px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(16, 24, 32, 0.08);
  box-sizing: border-box;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.az-pf-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(207, 31, 46, 0.30);
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(16, 24, 32, 0.16);
  z-index: 5;
}

.az-pf-card-wide {
  grid-column: span 2;
  min-height: 210px;
}

.az-pf-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #cf1f2e;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 800;
}

.az-pf-card h3 {
  margin: 0 0 14px;
  color: #101820;
  font-size: 21px;
  line-height: 1.28;
  font-weight: 850;
}

.az-pf-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(207, 31, 46, 0.10);
  color: #cf1f2e;
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
}

.az-pf-card p,
.az-pf-card-text,
.az-pf-card-subtext {
  margin: 0;
  color: #5f6b76;
  font-size: 15.5px;
  line-height: 1.72;
}

.az-pf-card-text {
  margin-bottom: 14px;
}

.az-pf-card-subtext {
  margin-top: 14px;
}

.az-pf-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.az-pf-list li {
  position: relative;
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid rgba(16, 24, 32, 0.08);
  color: #5f6b76;
  font-size: 15px;
  line-height: 1.45;
}

.az-pf-list li:last-child {
  border-bottom: none;
}

.az-pf-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 8px;
  height: 8px;
  background: #cf1f2e;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(207, 31, 46, 0.10);
}

.az-pf-sequence {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.az-pf-sequence span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f3f5f8;
  color: #5f6b76;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

.az-pf-sequence span.active {
  background: #cf1f2e;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(207,31,46,0.24);
}

.az-pf-sequence i {
  flex: 1;
  min-width: 16px;
  height: 1px;
  background: rgba(16, 24, 32, 0.14);
}

.az-pf-tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.az-pf-tool-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f7f9fb;
  border: 1px solid rgba(16,24,32,0.08);
  color: #34414d;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  transition: all 0.25s ease;
}

.az-pf-card:hover .az-pf-tool-tags span {
  border-color: rgba(207,31,46,0.14);
}

/* Entrance */
.az-pf-main-card,
.az-pf-card {
  opacity: 0;
  transform: translateY(24px);
  animation: azPfFadeUp 0.75s ease forwards;
}

.az-pf-main-card { animation-delay: 0.05s; }
.az-pf-card:nth-child(1) { animation-delay: 0.12s; }
.az-pf-card:nth-child(2) { animation-delay: 0.20s; }
.az-pf-card:nth-child(3) { animation-delay: 0.28s; }
.az-pf-card:nth-child(4) { animation-delay: 0.36s; }
.az-pf-card:nth-child(5) { animation-delay: 0.44s; }

@keyframes azPfFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .az-pf-layout {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .az-pf-section {
    padding: 64px 16px;
  }

  .az-pf-head {
    margin-bottom: 32px;
  }

  .az-pf-head p {
    font-size: 15.5px;
  }

  .az-pf-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .az-pf-card-wide {
    grid-column: span 1;
  }

  .az-pf-main-card,
  .az-pf-card {
    border-radius: 20px;
    padding: 28px 22px;
    min-height: auto;
  }

  .az-pf-main-card h3 {
    font-size: 26px;
  }

  .az-pf-card h3 {
    font-size: 20px;
  }

  .az-pf-badge {
    width: 88px;
    height: 88px;
    font-size: 20px;
    border-radius: 22px;
  }

  .az-pf-metric-value {
    font-size: 32px;
  }

  .az-pf-metric-value small {
    font-size: 18px;
  }

  .az-pf-card:hover {
    transform: translateY(-5px) scale(1.015);
  }
}
