.s01-section {
  padding: 60px 24px;
  background: var(--bg-alt);
}

.s01-container {
  max-width: 1000px;
  margin: 0 auto;
}

.s01-header {
  text-align: center;
  margin-bottom: 32px;
}

.s01-sub {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.75rem;
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.s01-header h2 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
  margin: 0;
}

.s01-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 32px;
  padding: 16px 24px;
  background: var(--primary);
  border-radius: 12px;
}

.s01-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.s01-num {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-text);
  line-height: 1;
}

.s01-lbl {
  font-size: 0.7rem;
  color: var(--primary-text);
  margin-top: 2px;
  opacity: 0.85;
}

.s01-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  border-radius: 16px;
  padding: 24px;
  align-items: center;
  margin-bottom: 20px;
}

.s01-primary {
  background: var(--primary);
  color: var(--primary-text);
}

.s01-alt {
  background: var(--background);
  border: 1px solid var(--border);
}

.s01-client {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.7;
  display: block;
  margin-bottom: 12px;
  color: inherit;
}

.s01-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.5;
  display: block;
  margin-bottom: 4px;
  color: inherit;
}

.s01-text p {
  line-height: 1.6;
  margin: 0 0 12px 0;
  color: inherit;
  opacity: 0.9;
  font-size: 0.85rem;
}

.s01-result {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(0,0,0,0.07);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 4px;
}

.s01-primary .s01-result {
  background: rgba(255,255,255,0.12);
}

.s01-rlbl {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-bottom: 2px;
}

.s01-img {
  overflow: hidden;
  border-radius: 12px;
  line-height: 0;
}

.s01-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

@media (min-width: 992px) {
  .s01-card {
    grid-template-columns: 1fr 1fr;
    padding: 28px 32px;
  }
  .s01-primary {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .s01-alt {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .s01-img img {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .s01-section { padding: 40px 16px; }
  .s01-header h2 { font-size: 1.4rem; }
  .s01-metrics { gap: 32px; padding: 14px 20px; }
  .s01-num { font-size: 1.3rem; }
  .s01-card { padding: 18px; gap: 16px; }
  .s01-img img { height: 160px; }
}
