/* ---------- Base ---------- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  color: #111827; /* near-black */
  background-color: #ffffff;
  line-height: 1.6;
}

/* ---------- Layout ---------- */
header {
  max-width: 720px;
  margin: 0 auto;
  padding: 96px 24px;
  text-align: center;
}

/* ---------- Brand ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.brand img {
  height: 44px;
  width: auto;
  display: block;
}

.brand h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}

/* ---------- Headline ---------- */
h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

/* ---------- Body text ---------- */
p {
  font-size: 1.1rem;
  color: #374151; /* muted gray */
  margin: 0 0 40px;
}

/* ---------- CTA ---------- */
.cta-button {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #111827;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.cta-button:hover {
  background-color: #1f2937;
  transform: translateY(-1px);
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  h2 {
    font-size: 1.6rem;
  }

  p {
    font-size: 1rem;
  }
}

.why-skemra {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
  text-align: center;
}

.why-skemra h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.features {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature {
  flex: 1 1 220px;
  text-align: left;
}

.feature h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature p {
  color: #4b5563; /* muted gray */
  font-size: 1rem;
  line-height: 1.5;
}
