.landing-hero {
  padding: clamp(80px, 12vh, 100px) 24px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vh, 28px);
  box-sizing: border-box;
  max-width: 640px;
  margin: 0 auto;
  height: 100vh;
}

.landing-title {
  font-family: "Nunito Sans", sans-serif;
  font-size: 30px;
  font-weight: 640;
  line-height: 1.1;
  margin: 0;
  color: #000;
}

.landing-divider {
  width: 100%;
  height: 0;
  border: none;
  border-top: 1.5px solid #d9d9d9;
  margin: 0;
}

.landing-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vh, 40px);
}

.landing-subtitle {
  font-family: "Nunito Sans", sans-serif;
  font-size: 25.6px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: #000;
}

.landing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: calc(-0.5 * clamp(24px, 4vh, 40px));
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vh, 28px);
  width: 100%;
}

.landing-features li {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.1;
    color: #000;
    margin: 0;
}

.landing-cta-text {
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(18px, 3.5vw, 25px);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  margin-top: calc(-0.5 * clamp(24px, 4vh, 40px));
  color: #000;
}

.landing-button {
  width: 100%;
  max-width: 240px;
  height: 52px;
  background-color: #068550;
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(18px, 3.5vw, 24px);
  font-weight: 600;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: auto;
}

.landing-button:active {
  background-color: #068550;
}
