:root {
  --green: #315b1c;
  --green-dark: #164c3a;
  --green-soft: #edf6f1;
  --green-line: #cfe4d9;
  --ink: #1c2722;
  --muted: #333;
  --bg: #fff;
  --white: #ffffff;
  --warm: #f6f3ee;
  --shadow: 0 18px 50px rgba(26, 62, 47, 0.09);
  --radius: 22px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Valley Sans", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
#menu-toggle {
  display: none;
}
.hamburger {
  display: none;
  font-size: 28px;
  color: #315b1c;
  cursor: pointer;
}
.mobile-btn {
  display: none;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #e7ece9;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 4px 12px;
}
.nav-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  border-radius: 20px;
  padding: 25px 0px 0px;
  overflow: hidden;
}
.nav-links {
  display: flex;
  gap: 28px;
  color: #333;
  font-size: 15px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  color: #333;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #315b1c;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #315b1c;
}

.nav-links a:hover::after {
  width: 100%;
}

.gradient-text {
  background: linear-gradient(90deg, #315b1c, #f5c92c, #ff8803, #315b1c);
  background-size: 300% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 4s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: none;
  border-radius: 999px;
  padding: 11px 23px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease;
  font-size: 16px;
}
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover {
  background: #204110;
  transform: translateY(-1px);
}
.btn-secondary {
  background: #fff;
  color: var(--green-dark);
  border: 1px solid var(--green-line);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #e8ffdc;
  color: #315b1c;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero {
  padding: 60px 0 34px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 58px;
  align-items: center;
}
h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
h1 {
  font-size: 58px;
  margin-top: 18px;
  max-width: 760px;
}
h2 {
  font-size: clamp(31px, 4vw, 46px);
}
h3 {
  font-size: 21px;
}
.hero p {
  font-size: 18px;
  color: #333;
  max-width: 720px;
  margin: 20px 0 26px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.trust-inline {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
  color: #4d5e56;
  font-size: 13px;
  font-weight: 700;
}
.trust-inline span {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f1f1f1;
  padding: 2px 10px;
  border-radius: 27px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.hero-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(145deg, #e9f4ef, #f7faf8);
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to top, rgba(11, 43, 32, 0.62), rgba(11, 43, 32, 0.04) 55%),
    url("https://images.unsplash.com/photo-1758691462878-6edc3d3da1be?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&ixlib=rb-4.1.0&q=60&w=1800");
  background-size: cover;
  background-position: center;
}
.hero-card-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: rgb(0 0 0 / 54%);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 20px 18px 20px;
  line-height: 20px;
}
.hero-card-content strong {
  display: block;
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}
.hero-card-content small {
  color: #fff;
  font-size: 13px;
  line-height: 15px !important;
}
.stats {
  padding: 26px 0 68px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #e2e9e5;
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(24, 63, 46, 0.04);
}
.stat {
  padding: 24px 18px;
  text-align: center;
  border-right: 1px solid #e8eeeb;
}
.stat:last-child {
  border-right: 0;
}
.stat b {
  font-size: 27px;
  color: var(--green);
  display: block;
  letter-spacing: -0.03em;
}
.stat span {
  color: #333;
  font-size: 12px;
  font-weight: 700;
}
section {
  padding: 82px 0;
}
.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}
.section-head p {
  color: var(--muted);
  font-size: 17px;
  margin: 16px 0 0;
}
.soft-section {
  background: #fffdbc;
}
.soft-section2 {
  background: #5da754;
  background: linear-gradient(
    94deg,
    rgb(36 110 26 / 87%) 0%,
    rgb(255 199 9 / 80%) 91%
  );
}
.soft-section2 h2,
.soft-section2 .section-head p {
  color: #fff;
  text-shadow: 2px 2px 4px #000000;
}
.statement {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.quote-card {
  background: #fff;
  border: 1px solid var(--green-line);
  border-radius: 26px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.quote-card .big {
  font-size: 42px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.quote-card p {
  color: #333;
  margin: 12px 0 0;
}
.statement-copy {
  font-size: 18px;
  color: #333;
}
.statement-copy strong {
  color: var(--ink);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.problem-card {
  background: #fff;
  border: 1px solid #e3ebe7;
  border-radius: 22px;
  padding: 22px;
  min-height: 230px;
  transition: 0.2s ease;
}
.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--green-dark);
  margin-bottom: 18px;
  padding: 9px;
}
.problem-card p {
  color: #333;
  font-size: 15px;
}
.problem-card ul {
  padding-left: 18px;
  margin: 14px 0 0;
  color: #333;
  font-size: 15px;
}
.education-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.edu-card {
  background: #fff;
  border: 1px solid #e2eae6;
  border-radius: 24px;
  padding: 28px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.edu-card p,
.edu-card li {
  color: #333;
  margin-bottom: 6px;
}
.edu-card ul {
  padding-left: 19px;
}
.approach {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 40px;
  align-items: start;
}
.steps {
  display: grid;
  gap: 16px;
}
.step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  background: #fff;
  border: 1px solid #e3ebe7;
  border-radius: 20px;
  padding: 13px;
}
.step-no {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}
.step p {
  margin: 7px 0 0;
  color: #333;
  font-size: 14px;
}
.support-card {
  background: var(--green);
  color: white;
  border-radius: 28px;
  padding: 32px;
  position: sticky;
  top: 100px;
}
.support-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
}
.support-card p {
  color: #dbeae3;
}
.support-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.support-tags span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 9px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.lead-wrap {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 38px;
  align-items: stretch;
}
.lead-copy {
  padding: 18px 0;
}
.lead-copy p {
  color: #333;
  font-size: 17px;
}
.privacy {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 20px;
  color: #333;
  font-size: 14px;
}
.form-card {
  background: #fff;
  border: 1px solid #dfe8e3;
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.progress {
  height: 7px;
  background: #edf1ef;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 26px;
}
.progress span {
  height: 100%;
  width: 50%;
  background: var(--green);
  display: block;
  transition: 0.25s ease;
}
.form-step {
  display: none;
}
.form-step.active {
  display: block;
}
.error {
  margin-bottom: 0px;
  color: #e6631d;
  margin-top: 10px;
  font-weight: 500;
  display: inline-block;
}
.success-msg {
  color: var(--green);
  display: none;
}
.process-msg {
  color: var(--light-orange);
  vertical-align: middle;
  display: none;
}
.error-msg {
  color: red;
  display: none;
}
/* Thankyou Message*/
#thankyou-msg {
  padding-top: 50px;
  padding-bottom: 50px;
}
#thankyou-msg i {
  font-size: 90px;
  text-align: center;
  display: block;
}
#thankyou-msg p {
  font-size: 33px;
  text-align: center;
  margin-top: 10px;
}
/* Thankyou Message*/

.thankyou .bottom-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.main-thank-div {
  height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.thankyou header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.thank-btn {
  margin: 30px auto 0;
  display: block;
}
.form-card label {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  display: block;
  margin: 15px 0 0px;
}
.input {
  font-size: 13px !important;
}
label.choice {
  font-size: 13px;
}
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px 10px;
}
.choice {
  border: 1px solid #dce6e1;
  border-radius: 14px;
  padding: 13px 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: #52605a;
  background: #fff;
}
.choice input {
  margin-right: 8px;
  accent-color: var(--green);
}
.input {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #dbe5df;
  border-radius: 14px;
  font: inherit;
  outline: none;
  background: #fcfdfc;
}
.input:focus {
  border-color: #94c3ad;
  box-shadow: 0 0 0 4px rgba(31, 107, 79, 0.08);
}
.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.form-note {
  font-size: 12px;
  color: #333;
  margin-top: 12px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-card {
  border: 1px solid #e1e9e5;
  background: white;
  border-radius: 20px;
  padding: 22px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.why-card b {
  display: block;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 800;
}
.why-card .icon {
  color: #fff;
  width: 64px;
  font-weight: bold;
  text-align: center;
  height: 59px;
}
.why-card p {
  font-size: 15px;
  color: #333;
  margin-bottom: 0;
}
.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 48px;
}
details {
  background: transparent;
  border: 2px solid #315b1c;
  border-radius: 16px;
  padding: 15px 20px;
  margin-bottom: 10px;
  overflow: hidden;
}
summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  position: relative;
  padding-right: 30px;
}
summary::-webkit-details-marker {
  display: none;
}
details p {
  color: #333;
  font-size: 15px;
  margin: 12px 0 2px;
  line-height: 1.6;
  overflow: hidden;
}
.final-cta {
  padding: 70px 0 100px;
}
.cta-box {
  background-color: var(--green);
  border-radius: 30px;
  padding: 48px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-box p {
  color: #fff;
  max-width: 650px;
  margin-bottom: 0;
}
footer {
  border-top: 1px solid #e3e9e6;
  padding: 34px 0 100px;
  color: #333;
  font-size: 12px;
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 38px;
}
.footer-brand {
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 8px;
}
.photo-credit {
  margin-top: 8px;
  font-size: 11px;
  color: #87918c;
}
.mobile-cta {
  display: none;
  position: fixed;
  z-index: 90;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  padding: 15px 20px;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(20, 76, 58, 0.28);
}
.success {
  display: none;
  padding: 18px;
  background: var(--green-soft);
  border: 1px solid var(--green-line);
  border-radius: 16px;
  color: var(--green-dark);
  font-weight: 700;
  margin-top: 16px;
}
