.objectif {
  padding: 64px 0;
}

.objectif-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
  margin-bottom: 40px;
}

.objectif-header .section-title { margin-bottom: 0; }

.objectif-header-right {
  display: flex; flex-direction: column; gap: 20px; align-items: flex-start;
}

.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-default);
}

.features-grid-steps {
  grid-template-columns: repeat(3, 1fr);
}

.feat {
  display: flex; flex-direction: column;
  padding: 32px 32px 32px 0;
  border-right: 1px solid var(--border-subtle);
  position: relative;
}

.feat:first-child { padding-left: 0; }
.feat:not(:first-child) { padding-left: 32px; }
.feat:last-child { border-right: none; }

.feat::before {
  content: ''; position: absolute;
  top: -1px; left: 0;
  width: 36px; height: 3px;
  background: var(--c-teal-500);
}

.feat-title {
  font-weight: 700; font-size: var(--fs-lg); color: var(--text-primary);
  line-height: 1.25; margin-bottom: 10px;
}

.feat-desc {
  font-size: var(--fs-sm); color: var(--text-secondary); line-height: 1.65;
}

.feat-step .feat-desc + .feat-desc { margin-top: 12px; }
.feat-step .feat-desc { flex: none; }

.feat-step-head {
  display: flex; align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.feat-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; flex-shrink: 0;
  background: var(--c-teal-500);
  color: var(--c-white);
  font-family: var(--font-family-display);
  font-weight: 700; font-size: var(--fs-base);
  letter-spacing: -0.02em;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(20, 130, 136, 0.18);
}

.feat-line {
  flex: 1; height: 1px;
  background: rgba(20, 130, 136, 0.3);
  margin-right: -32px;
}

.feat:last-child .feat-line { display: none; }
