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

* {
  box-sizing: border-box;
}

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

main {
  min-height: 100vh;
}

.hero {
  display: grid;
  min-height: 56vh;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 31, 60, 0.9), rgba(20, 108, 95, 0.72)),
    url("https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

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

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

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

.brand-logo {
  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(28px, 3.1vw, 38px);
  line-height: 1.12;
  letter-spacing: 0;
}

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

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

.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;
  line-height: 1.45;
  font-weight: 650;
}

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

article {
  min-height: 186px;
  padding: 22px;
  border: 1px solid #dce3e7;
  border-radius: 8px;
  background: #ffffff;
}

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

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

article p,
.note p,
.use p {
  margin: 0;
  color: #51606d;
  font-size: 15px;
  line-height: 1.55;
}

.use {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 24px;
  border-radius: 8px;
  background: #ffffff;
}

.use h2 {
  margin-top: 0;
}

.text-link {
  flex: 0 0 auto;
  color: #0d554b;
  font-weight: 800;
}

.note {
  margin-bottom: 40px;
  padding: 24px;
  border-left: 5px solid #f2b544;
  background: #ffffff;
}

.warning {
  margin-bottom: 18px;
  border-left-color: #9b124d;
}

.note h2 {
  margin-top: 0;
}

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

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

  .use {
    display: grid;
  }

  .actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .logo-panel {
    padding: 14px;
  }

  .brand-logo {
    max-height: 70px;
  }
}
