/* =====================================================
   OMSAG Systeme Block — Frontend Styles
   BEM: .omsag-sys__*
   ===================================================== */

/* ===== CONTAINER ===== */
.omsag-sys {
  max-width: 1390px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* ===== EYEBROW ===== */
.omsag-sys__eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4BAF47;
}

/* ===== CARDS ROW ===== */
.omsag-sys__cards {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  margin-bottom: 24px;
}

/* ── Text Card (left, white) ── */
.omsag-sys__card--text {
  background: #fff;
  border-radius: 16px;
  padding: clamp(32px, 4vw, 56px);
}

.omsag-sys__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(75,175,71,0.1);
  border-radius: 12px;
  color: #4BAF47;
  margin-bottom: 20px;
}

.omsag-sys__card-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: #232730;
  line-height: 1.3;
  margin: 0 0 24px;
}

.omsag-sys__card-body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #555b63;
}

.omsag-sys__card-body p {
  margin: 0;
}

.omsag-sys__card-body p + p {
  margin-top: 16px;
}

/* Green badge pills */
.omsag-sys__badge {
  display: inline-block;
  background: #4BAF47;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 4px 14px;
  border-radius: 6px;
  margin: 2px 2px;
  white-space: nowrap;
}

/* ── Impact Card (right, dark) ── */
.omsag-sys__card--impact {
  background: #232730;
  border-radius: 16px;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.omsag-sys__impact-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.omsag-sys__impact-arrow {
  position: absolute;
  top: clamp(20px, 2.5vw, 32px);
  right: clamp(20px, 2.5vw, 32px);
  color: #fff;
}

.omsag-sys__impact-logo {
  display: block;
  width: auto;
  object-fit: contain;
  object-position: left;
  margin-bottom: 20px;
  margin-right: auto;
  opacity: 0.7;
}

.omsag-sys__impact-footnote {
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  margin: 16px 0 0;
  line-height: 1.4;
}

.omsag-sys__stat {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.omsag-sys__stat:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.omsag-sys__stat-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.omsag-sys__stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.omsag-sys__stat-unit {
  font-size: 0.55em;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  margin-left: 6px;
}


/* ===== FEATURES WRAP (Glass Container) ===== */
.omsag-sys__features-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: clamp(28px, 3.5vw, 40px);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Subtle glow behind */
.omsag-sys__features-wrap::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(75,175,71,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.omsag-sys__features-header {
  margin-bottom: 20px;
}

/* ===== FEATURE CARDS (Glass) ===== */
.omsag-sys__features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.omsag-sys__feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: clamp(16px, 1.8vw, 22px);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease, border-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 16px;
}

.omsag-sys__feature:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
}

.omsag-sys__feature-number {
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, rgba(75,175,71,0.55) 0%, rgba(75,175,71,0.15) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.omsag-sys__feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
  margin: 0;
}

/* ===== RESULT LINE ===== */
.omsag-sys__result {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.omsag-sys__result-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #4BAF47;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.omsag-sys__result-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
  margin: 0;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  .omsag-sys__cards {
    grid-template-columns: 1fr;
  }

}

/* Mobile */
@media (max-width: 768px) {
  .omsag-sys__cards {
    gap: 16px;
    margin-bottom: 16px;
  }

  .omsag-sys__card--impact {
    flex-direction: column;
    gap: 0;
  }

  .omsag-sys__features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .omsag-sys__feature-number {
    font-size: 48px;
  }

  .omsag-sys__result {
    margin-top: 24px;
    padding-top: 20px;
  }
}
