.scurri-engine-section {
  --scurri-green: #25D366;
  --scurri-green-pale: #E4F2F0;
  --scurri-green-soft: #D6F4E2;
  --scurri-green-dark: #149E48;
  --scurri-blue: #1F2A4E;
  --scurri-blue-pale: #E8EDF6;
  --scurri-grey-dark: #2A2A2A;
  --scurri-grey-mid: #A8A8A8;
  --scurri-grey-pale: #F2F3F7;
  --scurri-grey-paler: #F8F8F8;
  --color-border: #E3E5EC;
  --color-border-strong: #CFD2DC;
  --color-fg-muted: #5B5F6B;
  --shadow-sm: 0 1px 2px rgba(31, 42, 78, 0.06);
  --shadow-lg: 0 12px 36px rgba(31, 42, 78, 0.12);

  font-family: "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 104px 0;
  background: var(--scurri-grey-paler);
  color: var(--scurri-grey-dark);
}

.scurri-engine-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.scurri-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.scurri-feat-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.scurri-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--scurri-green);
}

.scurri-feat-card h3 {
  font-size: 19px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--scurri-grey-dark);
  margin: 0 0 8px;
}

.scurri-feat-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-fg-muted);
  margin: 0;
}

.scurri-feat-illo {
  position: relative;
  border-radius: 12px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scurri-feat-illo img {
	width: 100%;
	object-fit: cover;
}

@media (max-width: 920px) {
  .scurri-engine-section {
	padding: 72px 0;
  }
}

@media (max-width: 620px) {
  .scurri-engine-container {
	padding: 0 20px;
  }
}
