@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Medium.ttf') format('opentype');
  font-style: normal;
}

*, *::before, *::after{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

:root{

  --green-deep:#1a3a1f;
  --green-mid:#2d7a4f;
  --green-light:#4caf7d;
  --green-pale:#e8f5ed;

  --gold:#c8922a;
  --gold-light:#e8c96a;

  --cream:#faf7f2;
  --dark:#0f1f14;

  --text:#1c2e22;
  --muted:#5a7060;
  --white:#ffffff;

  --rl:22px;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Lato';
  background:var(--cream);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}

/* TOP BAR */
.header-strip{
  width:100%;
  height:7vh;
  background:#0f1f14;
  color:#fff;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:1vh 2vw;
  position:sticky;
  top:0;
  z-index:1001;
}

.header-strip-text{
  font-size:1.2rem;
  font-weight:600;
  text-align:center;
  letter-spacing:0.05em;
}

.header-strip-text span{
  color:#33e1aa;
  font-weight:700;
}

/* NAV */
.main-navbar{
  position:sticky;
  top:7vh;
  z-index:1000;
  background:rgba(250,247,242,0.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(45,122,79,0.14);
  padding:14px 6%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand-logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.brand-logo-img{
  height:48px;
  width:auto;
  display:block;
}

.nav-cta-btn{
  background:#37b772;
  color:#fff;
  padding:10px 22px;
  border-radius:3px;
  font-size:0.875rem;
  font-weight:600;
  text-decoration:none;
  transition:background 0.2s, transform 0.15s;
  cursor:pointer;
}

.nav-cta-btn:hover{
  transform:scale(1.03);
}

/* HERO */
.hero-banner{
  min-height:88vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:1rem 8% 5rem;
  background:linear-gradient(160deg, var(--cream) 0%, #dff0e7 100%);
  position:relative;
  overflow:hidden;
}

.hero-banner::before{
  content:'';
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  width:700px;
  height:700px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(76,175,125,0.1) 0%, transparent 65%);
  pointer-events:none;
}

.hero-banner-img{
  min-width:auto;
  height:auto;
  display:block;
  margin:0 auto 2rem;
  border-radius:18px;
  object-fit:cover;
}

.hero-desktop-img{
  width:100%;
  display:block;
}

.hero-mobile-img{
  max-width:100%;
  display:none;
}

.hero-banner h1{
  font-size:clamp(2.6rem, 5vw, 2rem);
  font-weight:900;
  line-height:1.1;
  color:var(--dark);
  margin-bottom:1.4rem;
}

.hero-description{
  font-size:1.08rem;
  color:var(--muted);
  max-width:560px;
  margin:0 auto 1rem;
  line-height:1.75;
}

.hero-btn-wrap{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
  margin-bottom:3rem;
}

.hero-main-btn{
  background:#37b772;
  color:var(--white);
  padding:16px 34px;
  border-radius:100px;
  font-size:1rem;
  font-weight:600;
  text-decoration:none;
  transition:all 0.2s;
  box-shadow:0 4px 22px rgba(26,74,46,0.28);
  cursor:pointer;
}

.hero-main-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 7px 28px rgba(26,74,46,0.38);
}

/* TRUST */
.trust-row{
  display:flex;
  gap:28px;
  justify-content:center;
  flex-wrap:wrap;
}

.trust-item{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:0.83rem;
  color:var(--muted);
  font-weight:500;
}

.trust-icon{
  width:28px;
  height:28px;
  border-radius:50%;
  background:var(--green-pale);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
}

/* STATS */
.stats-strip{
  background:var(--green-deep);
  color:var(--white);
  padding:18px 8%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:3rem;
  flex-wrap:wrap;
}

.stats-card{
  text-align:center;
}

.stats-number{
  font-size:1.7rem;
  font-weight:700;
  display:block;
}

.stats-text{
  font-size:0.73rem;
  opacity:0.7;
  text-transform:uppercase;
  letter-spacing:0.06em;
}

.stats-divider{
  width:1px;
  height:36px;
  background:rgba(255,255,255,0.18);
}

/* SECTION */
.content-section{
  padding:5rem 8%;
}

.content-header{
  text-align:center;
  margin-bottom:3rem;
}

.section-chip{
  display:inline-block;
  background:var(--green-pale);
  color:var(--green-mid);
  font-size:1.72rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.08em;
  padding:5px 14px;
  border-radius:100px;
  margin-bottom:0.9rem;
}

.content-title{
  font-size:clamp(1.75rem, 3vw, 2.5rem);
  font-weight:900;
  color:var(--dark);
  margin-bottom:.75rem;
}

.content-subtitle{
  color:var(--muted);
  font-size:0.97rem;
  max-width:500px;
  margin:0 auto;
}

/* DARK */
.section-dark{
  background:var(--dark);
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:2rem;
  margin-top:3rem;
}

.feature-card{
  text-align:center;
}

.feature-icon{
  width:auto;
  height:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 0.5rem;
}

.feature-icon img{
  width:38px;
  height:38px;
  object-fit:contain;
}

.feature-title{
  font-size:0.97rem;
  font-weight:700;
  color:var(--white);
  margin-bottom:.45rem;
}

.feature-desc{
  font-size:0.81rem;
  color:rgba(255,255,255,0.5);
  line-height:1.65;
}

/* LIGHT */
.section-light{
  background:var(--green-pale);
}

.review-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.testimonial-card{
  background:var(--white);
  border-radius:var(--rl);
  padding:1.5rem;
  box-shadow:0 4px 18px rgba(15,31,20,0.07);
  border:1px solid rgba(45,122,79,0.09);
  display:flex;
  flex-direction:column;
  gap:1rem;
}

.rating-stars{
  color:var(--gold);
  font-size:0.9rem;
}

.testimonial-text{
  font-size:0.9rem;
  color:var(--text);
  line-height:1.7;
  font-style:italic;
  flex:1;
}

.testimonial-footer{
  display:flex;
  align-items:center;
  gap:10px;
}

.testimonial-avatar{
  width:36px;
  height:36px;
  border-radius:50%;
  background:var(--green-pale);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.78rem;
  font-weight:700;
  color:var(--green-deep);
  flex-shrink:0;
}

.testimonial-role{
  font-size:0.83rem;
  font-weight:600;
  color:var(--dark);
}

.testimonial-name{
  font-size:0.72rem;
  color:var(--muted);
}

.review-badge{
  margin-left:auto;
  display:inline-flex;
  align-items:center;
  gap:3px;
  background:var(--green-pale);
  color:var(--green-mid);
  font-size:0.62rem;
  font-weight:700;
  padding:3px 9px;
  border-radius:100px;
  text-transform:uppercase;
}

/* OFFER */
.offer-section{
  background-color:#0f1f14;
  padding:50px 40px;
  text-align:center;
  color:#fff;
  position:relative;
  overflow:hidden;
}

.offer-section h2{
  font-size:clamp(28px,4vw,52px);
  font-weight:900;
  margin-bottom:16px;
}

.offer-section h2 em{
  font-style:normal;
  color:var(--gold-light);
}

.offer-section-text{
  font-size:17px;
  color:rgba(255,255,255,.72);
  max-width:520px;
  margin:0 auto 44px;
  line-height:1.65;
  font-weight:300;
}

.offer-grid{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.offer-box{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(201,168,76,.35);
  border-radius:10px;
  padding:28px 36px;
  min-width:220px;
  text-align:center;
}

.offer-percent{
  font-size:48px;
  font-weight:900;
  color:var(--gold-light);
  line-height:1;
  margin-bottom:6px;
}

.offer-heading{
  font-size:13px;
  color:rgba(255,255,255,.65);
  margin-bottom:16px;
  font-weight:300;
}

.offer-coupon{
  display:inline-block;
  color:#e8c96a;
  font-size:15px;
  font-weight:800;
  padding:7px 20px;
  border-radius:4px;
  letter-spacing:2px;
  margin-bottom:10px;
}

.offer-small-text{
  font-size:12px;
  color:rgba(255,255,255,.45);
}

/* FOOTER */
.site-footer{
  background:var(--dark);
  color:rgba(255,255,255,0.45);
  padding:1rem 8%;
  text-align:center;
  font-size:0.97rem;
  line-height:1.95;
}

/* RESPONSIVE */
@media (max-width:900px){

  .feature-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .review-grid{
    grid-template-columns:1fr;
  }

  .stats-strip{
    gap:1.5rem;
  }

  .stats-divider{
    display:none;
  }
}

@media (max-width:768px){

  .hero-desktop-img{
    display:none;
  }

  .hero-mobile-img{
    display:block;
  }

  .hero-banner h1{
    font-size:clamp(2.3rem, 5vw, 2rem);
  }

  .hero-description{
    font-size:1rem;
  }

  .hero-main-btn{
    font-size:1rem;
  }
}

@media (max-width:600px){

  .header-strip{
    padding:1.2vh 4vw;
  }

  .header-strip-text{
    font-size:1.1rem;
    line-height:1.4;
  }

  .content-section{
    padding:3.5rem 5%;
  }

  .hero-banner{
    padding:2rem 5% 4rem;
  }

  .feature-grid{
    grid-template-columns:1fr 1fr;
  }
}