:root {
  --text: #0f172a;
  --muted: #475569;
  --bg: #f8fafc;
  --card: #ffffff;
  --accent: #2563eb;
  --accent-strong: #1d4ed8;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

h1, h2 {
  margin: 0 0 12px;
  line-height: 1.2;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero {
  padding: 32px 0 48px;
}

.hero__content {
  display: grid;
  gap: 16px;
  max-width: 720px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

.subhead {
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
}

.section {
  padding: 40px 0;
}

.section__header {
  margin-bottom: 20px;
}

.section__tagline {
  margin-top: 6px;
}

.grid {
  display: grid;
  gap: 14px;
}

.services {
  grid-template-columns: 1fr;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.service {
  font-weight: 600;
}

.muted {
  background: #eef2ff;
  border-radius: var(--radius);
  padding: 32px 18px;
}

.list {
  list-style: disc;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  margin: 0;
  color: var(--text);
}

.project {
  display: grid;
  gap: 14px;
}

.project__visual {
  background: repeating-linear-gradient(
      135deg,
      #e2e8f0,
      #e2e8f0 12px,
      #cbd5e1 12px,
      #cbd5e1 24px
  );
  border-radius: var(--radius);
  min-height: 160px;
  border: 1px solid var(--border);
}

.project__title {
  font-weight: 700;
  color: var(--text);
}

.project__label {
  color: var(--muted);
}

.cta {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  text-align: center;
}

.cta__headline {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 12px;
}

@media (min-width: 640px) {
  .page {
    padding: 48px 32px 100px;
  }

  .hero {
    padding-top: 48px;
  }

  .services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .project {
    grid-template-columns: 1.6fr 1fr;
    align-items: center;
  }
}

