:root{ --pe-green:#133225; --pe-orange:#df6a3e; --pe-beige:#f9eee2; --pe-white:#fff; }

.pe-usps{ position:relative; }
.pe-usps--white{ background:var(--pe-white); }
.pe-usps--beige{ background:var(--pe-beige); }

.pe-usps__wrap{ max-width:1200px; margin:0 auto; padding: clamp(40px,6vw,84px) 20px; }
.pe-usps__kicker{ color:var(--pe-orange); text-transform:uppercase; letter-spacing:.06em; font-weight:700; margin:0 0 6px; }
.pe-usps__title{ color:var(--pe-green); font-size: clamp(26px,3.4vw,40px); margin:.1rem 0 .6rem; line-height:1.1; }
.pe-usps__intro{ color:#2a3a31; max-width:65ch; margin:0 0 18px; line-height: 25px;}

.pe-usps__grid{
  display:grid; grid-template-columns:repeat(12,1fr); gap: clamp(14px,2vw,24px);
}
.pe-usp{
  grid-column: span 6;
  display:grid; grid-template-columns:44px 1fr; gap:12px;
  background:#fff; border:1px solid rgba(19,50,37,.10); border-radius:16px; padding:16px;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.pe-usp:hover{ transform: translateY(-2px); box-shadow:0 12px 28px rgba(0,0,0,.10); }

.pe-usp__icon{ width:44px; height:44px; border-radius:12px; display:grid; place-items:center; background:rgba(19,50,37,.06); }
.pe-usp__title{ color:var(--pe-green); font-size:1.08rem; margin:0 0 4px; }
.pe-usp__kpi{ margin:0 0 6px; color:#0f5132; background:rgba(19,50,37,.06); border:1px solid rgba(19,50,37,.10); border-radius:10px; padding:6px 8px; display:inline-block; font-weight:700; }
.pe-usp__desc{ margin:0; color:#34463c; line-height: 25px;}

.pe-usps__cta{ margin: clamp(16px,3vw,28px) 0 0; }
.pe-btn{
  display:inline-flex; align-items:center; justify-content:center; border-radius:999px;
  padding:10px 16px; font-weight:700; background:var(--pe-orange); color:#fff; text-decoration:none;
  box-shadow:0 8px 20px rgba(223,106,62,.20);
}
.pe-btn:hover{ transform: translateY(-1px); box-shadow:0 12px 24px rgba(223,106,62,.28); }

@media (max-width:980px){
  .pe-usp{ grid-column: span 12; }
}
