* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.6;
}

.container {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
}

/* HEADER */

.header {
  background: #4d795b;
  padding: 20px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
}

.logo img {
  height: 40px;
}

.nav a {
  margin-left: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

/* HERO */

.hero {
  padding: 100px 0;
}

.hero h1 {
  font-size: 36px;
  max-width: 800px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.btn-primary {
  padding: 14px 28px;
  background: #4d795b;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
}

.btn-outline {
  padding: 14px 28px;
  border: 1px solid #4d795b;
  color: #4d795b;
  text-decoration: none;
  border-radius: 30px;
}

/* METRICS */

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.metric h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #082640;
}

.metric p {
  font-size: 14px;
}

/* APPROACH */

.approach {
  padding: 100px 0;
  background: #f5f7f9;
}

.approach h2 {
  margin-bottom: 20px;
}

.approach-lead {
  margin-bottom: 30px;
}

.approach-list {
  list-style: none;
}

.approach-list li {
  margin-bottom: 15px;
}

/* CASES */

.cases {
  padding: 100px 0;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.case-card img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 15px;
}

.case-card a {
  text-decoration: none;
  color: #082640;
  font-weight: 600;
}

/* STEPS */

.steps {
  padding: 100px 0;
  background: #f5f7f9;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
}

.step span {
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  color: #4d795b;
}

/* CONTACTS */

.contacts {
  padding: 80px 0;
  background: #082640;
  color: #fff;
  text-align: center;
}

.contacts p {
  margin-bottom: 10px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .metrics,
  .cases-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 28px;
  }
}
