:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #172026;
  background: #f6f7f9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f6f7f9;
}

.hero {
  display: grid;
  min-height: 56vh;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(75, 12, 44, 0.92), rgba(20, 108, 95, 0.7)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.content,
.steps,
.tools {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.content {
  padding: 46px 0 54px;
}

.logo-panel {
  display: flex;
  width: min(100%, 980px);
  margin-bottom: 32px;
  padding: 18px 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.logo-panel img {
  display: block;
  width: 100%;
  max-height: 78px;
  object-fit: contain;
  object-position: left center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #f2b544;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

.intro {
  max-width: 640px;
  margin: 18px 0 26px;
  color: #eef3f6;
  font-size: 18px;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.primary {
  background: #f2b544;
  color: #13212c;
}

.secondary {
  background: #ffffff;
  color: #0d554b;
}

.small {
  margin: 14px 0 0;
  color: #dfe9ee;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

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

article,
.tools {
  border: 1px solid #dce3e7;
  border-radius: 8px;
  background: #ffffff;
}

article {
  min-height: 168px;
  padding: 22px;
}

article span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #0d7769;
  color: #ffffff;
  font-weight: 800;
}

h2 {
  margin: 18px 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

article p,
.tools li {
  color: #51606d;
  font-size: 15px;
  line-height: 1.55;
}

.tools {
  margin-bottom: 40px;
  padding: 24px;
}

.tools h2 {
  margin-top: 0;
  color: #841349;
}

@media (max-width: 780px) {
  .hero {
    min-height: 62vh;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
