:root {
  --green: #75826C;
  --green-light: #93a486;
  --white: #fff;
  --shadow: 0 8px 32px rgba(117,130,108,0.15);
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: 
    linear-gradient(120deg, rgba(117,130,108,0) 0%, rgba(147,164,134,0.2) 100%),
    url('background-static.webp') center/cover no-repeat fixed;
  background-position: center bottom; 
  background-repeat: no-repeat; 
  background-size: cover; 
  font-family: 'Poppins', Arial, sans-serif;
  color: #2d2d2d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-bg {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.hero {
  margin-top: 3vh;
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero-logo {
  width: 210px;
  height: 210px;
  margin-bottom: 1.2rem;
  object-fit: contain;
}

.hero-title {
  font-size: 2.1rem;
  font-weight: 700;
  margin: 0 0 0.7rem 0;
  color: var(--green);
  letter-spacing: -1px;
}

.hero-title .accent {
  color: var(--green);
  font-weight: 700;
}

.hero-sub {
  font-size: 1.13rem;
  color: #4a5643;
  margin-bottom: 0;
  font-weight: 400;
}

main {
  width: unset;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.card {
  background: rgba(255,255,255,0.96);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  padding: 2.3rem 2.1rem 1.7rem 2.1rem;
  max-width: 420px;
  width: 98vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(2.5px);
  margin-bottom: 2rem;
}

.card-lead {
  font-size: 1.11rem;
  font-weight: 400;
  color: #3b3b3b;
  margin-bottom: 1.4rem;
  line-height: 1.6;
  text-align: center;
}

.card-divider {
  width: 60px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin: 0.6rem 0 1.2rem 0;
  opacity: 0.16;
}

.card-contact h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: black;
  margin: 0 0 0.7rem 0;
  text-align: center;
}

.cta-btn {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.72em 1.3em;
  border-radius: 2em;
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s;
  margin: 0.2em 0 0.9em 0;
  box-shadow: 0 2px 8px rgba(117,130,108,0.10);
  text-align: center;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--green-light);
  color: #fff;
  box-shadow: 0 4px 16px rgba(117,130,108,0.14);
}

.card-note {
  font-size: 0.75rem;
  color: black;
  margin: 0 0 0.7rem 0;
  text-align: center;
}

.card-thanks {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid #e0e7df;
  color: black;
  font-size: 1rem;
  text-align: center;
}

.card-thanks strong {
  color: black;
  font-weight: 400;
}



/* signup */

 {
  width: 100%;
  margin-bottom: 1.3rem;
  text-align: center;

}

.card-signup h2 {
		font-size: 1.25rem;
	    margin: 0rem 3rem 1.5rem 3rem;
	    text-align: center;
	}

.signup-form {
  display: flex;
  gap: 0.6em;
  justify-content: center;
  margin-bottom: 0.6em;
  flex-wrap: wrap;
}

.signup-input {
  padding: 0.7em 1em;
  border-radius: 2em;
  border: 1px solid #e0e7df;
  font-size: 1rem;
  outline: none;
  width: 60%;
  min-width: 160px;
  max-width: 220px;
}

.signup-btn {
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  border: none;
  border-radius: 2em;
  padding: 0.7em 1.3em;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(117,130,108,0.10);
}
.signup-btn:hover,
.signup-btn:focus {
  background: var(--green-light);
  box-shadow: 0 4px 16px rgba(117,130,108,0.14);
}

/* Responsive */
@media (max-width: 600px) {
	
  .hero {
	margin: 3rem;
  }
  .hero-logo {
    width: 160px;
    height: 160px;
	  
  }
  .card {
    padding: 1.3rem 0.7rem 1.1rem 0.7rem;
    max-width: 86vw;
	margin: 1rem;
	margin-bottom: 2rem;
  }
  .card-lead, .card-note, .card-thanks {
	  padding: 0 2rem;
	}
  .hero-title {
    font-size: 1.5rem;
  }

  .cta-btn {
	font-size: 0.9rem;	
   }

  .hero-sub {
    font-size: 1rem;
  }
}



