

.quality-intro,
.quality-policies,
.quality-standards,
.quality-process,
.quality-editorContent,
.quality-cta{
  position:relative;
  padding:84px 0;
}

.quality-policies,
.quality-process{
  background:var(--frey-surface);
}

.quality-sectionHead{
  max-width:760px;
  margin:0 auto 34px;
  text-align:center;
}

.quality-section__title{
  margin-bottom:14px;
}

.quality-section__desc,
.quality-section__text{
  color:var(--frey-muted);
}

.quality-section__text p:last-child,
.quality-section__desc:last-child{
  margin-bottom:0;
}

.quality-intro__grid{
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(320px, .85fr);
  gap:28px;
  align-items:stretch;
}

.quality-intro__content{
  background:#fff;
  border:1px solid var(--frey-border);
  border-radius:var(--frey-radius-lg);
  padding:34px;
  box-shadow:var(--frey-shadow-sm);
}

.quality-highlightCard{
  height:100%;
  border-radius:var(--frey-radius-lg);
  padding:34px;
  background:linear-gradient(135deg, #131922 0%, #1b2430 100%);
  color:#fff;
  box-shadow:var(--frey-shadow-md);
}

.quality-highlightCard__label{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 14px;
  margin-bottom:16px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  font-size:.88rem;
  font-weight:600;
  color:rgba(255,255,255,.92);
}

.quality-highlightCard h3{
  color:#fff;
  margin-bottom:14px;
  font-size:clamp(1.35rem, 2vw, 2rem);
}

.quality-highlightCard p{
  color:rgba(255,255,255,.82);
  margin-bottom:0;
}

.quality-policyGrid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:22px;
}

.quality-policyCard{
  background:#fff;
  border:1px solid var(--frey-border);
  border-radius:var(--frey-radius-md);
  padding:28px 24px;
  box-shadow:var(--frey-shadow-sm);
  transition:var(--frey-transition);
}

.quality-policyCard:hover{
  transform:translateY(-6px);
  box-shadow:var(--frey-shadow-md);
}

.quality-policyCard__icon{
  width:58px;
  height:58px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  margin-bottom:18px;
  background:linear-gradient(135deg, rgba(193,18,31,.12), rgba(193,18,31,.04));
  color:var(--frey-primary);
  font-size:1.25rem;
}

.quality-policyCard h3{
  margin-bottom:12px;
  font-size:1.15rem;
}

.quality-policyCard p{
  margin-bottom:0;
  color:var(--frey-muted);
}

.quality-standards__grid{
  display:grid;
  grid-template-columns:minmax(0, .95fr) minmax(0, 1.05fr);
  gap:30px;
  align-items:center;
}

.quality-standards__list{
  background:#fff;
  border:1px solid var(--frey-border);
  border-radius:var(--frey-radius-lg);
  padding:30px;
  box-shadow:var(--frey-shadow-sm);
}

.quality-standards__list ul{
  display:grid;
  gap:14px;
}

.quality-standards__list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:var(--frey-text);
  font-weight:500;
}

.quality-standards__list li i{
  color:var(--frey-primary);
  margin-top:4px;
}

.quality-process__grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}

.quality-stepCard{
  position:relative;
  background:#fff;
  border:1px solid var(--frey-border);
  border-radius:var(--frey-radius-md);
  padding:28px 24px;
  box-shadow:var(--frey-shadow-sm);
}

.quality-stepCard__number{
  width:52px;
  height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--frey-primary), var(--frey-primary-dark));
  color:#fff;
  font-weight:700;
  box-shadow:0 10px 24px rgba(193,18,31,.22);
}

.quality-stepCard h3{
  margin-bottom:12px;
}

.quality-stepCard p{
  margin-bottom:0;
  color:var(--frey-muted);
}

.quality-editorContent__inner{
  background:#fff;
  border:1px solid var(--frey-border);
  border-radius:var(--frey-radius-lg);
  padding:34px;
  box-shadow:var(--frey-shadow-sm);
}

.quality-editorContent__inner > *:last-child{
  margin-bottom:0;
}

.quality-cta{
  padding-top:0;
}

.quality-cta__box{
  position:relative;
  overflow:hidden;
  text-align:center;
  border-radius:var(--frey-radius-lg);
  padding:48px 28px;
  background:linear-gradient(135deg, #151c26 0%, #1c2431 55%, #11161d 100%);
  color:#fff;
  box-shadow:var(--frey-shadow-md);
}

.quality-cta__box::before{
  content:"";
  position:absolute;
  inset:auto -60px -60px auto;
  width:180px;
  height:180px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(193,18,31,.45), rgba(193,18,31,0));
  pointer-events:none;
}

.quality-cta__box h2{
  color:#fff;
  margin-bottom:12px;
}

.quality-cta__box p{
  max-width:760px;
  margin:0 auto 22px;
  color:rgba(255,255,255,.82);
}

.quality-highlightCard__list{
  margin:18px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.quality-highlightCard__list li{
  position:relative;
  padding-left:20px;
  color:rgba(255,255,255,.84);
  line-height:1.65;
}

.quality-highlightCard__list li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--frey-primary);
}

@media (max-width: 1199px){
  .quality-policyGrid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px){
  .quality-intro,
  .quality-policies,
  .quality-standards,
  .quality-process,
  .quality-editorContent,
  .quality-cta{
    padding:68px 0;
  }

  .quality-intro__grid,
  .quality-standards__grid,
  .quality-process__grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .quality-policyGrid{
    grid-template-columns:1fr;
  }

  .quality-intro__content,
  .quality-highlightCard,
  .quality-standards__list,
  .quality-stepCard,
  .quality-editorContent__inner,
  .quality-cta__box{
    padding:24px 20px;
  }
}