* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.7;
  color: #344334;
  background:
  linear-gradient(rgba(255, 250, 232, 0), rgba(255, 250, 232, 0)),
    url("../img/backimg.png") center top / cover fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 14px 14px 40px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 4px 18px;
}

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

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(80, 90, 50, 0.18);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-title {
  font-weight: 800;
  font-size: 18px;
}

.domain {
  font-size: 14px;
  color: #6b7a58;
}

.top-link {
  background: #ffffffcc;
  border: 2px solid #dbe7bf;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  background: #fffaf0e8;
  border: 2px solid #e8ddb8;
  border-radius: 28px;
  padding: 24px 20px;
  box-shadow: 0 10px 24px rgba(83, 92, 46, 0.14);
  text-align: center;
}

.kicker {
  display: inline-block;
  margin: 0 0 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #e6f3c8;
  color: #4c6a2f;
  font-weight: 800;
  font-size: 14px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.35;
  color: #314b2e;
}

.lead {
  margin: 16px 0 20px;
  line-height: 1.9;
  font-size: 16px;
}

.hero-image img {
  width: min(72%, 260px);
  margin-top: 18px;
}

.main-button,
.sub-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
}

.main-button {
  background: #f6b94c;
  color: #3f2d0b;
  box-shadow: 0 5px 0 #d89323;
}

.sub-button {
  background: #ffffff;
  border: 2px solid #dbe7bf;
  color: #45613a;
}

.card,
.last-card {
  margin-top: 18px;
  padding: 22px 18px;
  background: #ffffffed;
  border: 2px solid #e5eecf;
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(83, 92, 46, 0.1);
}

.card h2,
.last-card h2 {
  margin: 0 0 12px;
  font-size: 25px;
  color: #31552f;
}

.card p,
.last-card p {
  margin: 0 0 12px;
  line-height: 1.9;
  font-size: 16px;
}

.card p:last-child {
  margin-bottom: 0;
}

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

.chips span {
  background: #fff3cf;
  border: 2px solid #f0d78d;
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 700;
  font-size: 14px;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: flex;
  gap: 12px;
  background: #f7fbec;
  border-radius: 18px;
  padding: 14px;
}

.step span {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #8dbb5a;
  color: #fff;
  font-weight: 800;
}

.step h3 {
  margin: 0 0 4px;
  font-size: 18px;
  color: #395735;
}

.step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.value-list {
  margin: 0;
  padding-left: 1.2em;
  line-height: 2;
  font-weight: 700;
}

.profile-list {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.profile-list span {
  background: #f7fbec;
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
}

.last-card {
  text-align: center;
  background: #fff6db;
  border-color: #f0d78d;
}

.last-buttons {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

footer {
  text-align: center;
  font-size: 12px;
  color: #667257;
  padding: 28px 0 10px;
}

@media (min-width: 760px) {
  .page {
    padding: 20px 24px 50px;
  }

  .hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    text-align: left;
    padding: 34px;
  }

  .hero-image {
    text-align: center;
  }

  .hero-image img {
    width: min(90%, 300px);
    margin-top: 0;
  }

  .card,
  .last-card {
    padding: 28px;
  }

  .last-buttons {
    display: flex;
    justify-content: center;
  }
}