@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:   #2d6b35;
  --green-light: #3d8b47;
  --gold:        #c9a84c;
  --gold-light:  #e8c96a;
  --cream:       #f8f5ee;
  --white:       #ffffff;
  --text-dark:   #1a1a1a;
  --text-mid:    #444444;
  --text-light:  #777777;
  --border:      #e0ddd6;

  --green:       #1a4a2e;
  --green-mid:   #2d7a4f;
  --green-light: #4caf7d;
  --green-pale:  #e8f5ed;
  --gold:        #c8922a;
  --cream:       #faf7f2;
  --dark:        #0f1f14;
  --text:        #1c2e22;
  --muted:       #5a7060;
  --white:       #ffffff;
  --r:           14px;
  --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 */

.promo-header{
  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;
}

.promo-header-text{
  font-size:1.2rem;
  font-weight:600;
  text-align:center;
  letter-spacing:0.05em;
}

.promo-header-text span{
  color:#33e1aa;
  font-weight:700;
}

/* NAVBAR */

.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-image {
  height: 48px;
  width: auto;
  display: block;
}

.cta-button-nav {
  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;
}

.cta-button-nav:hover {
  transform: scale(1.03);
}

/* HERO */

.hero-wrapper {
  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-wrapper::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-image{
  min-width: auto;
  height: auto;
  display: block;
  margin: 0 auto 2rem;
  border-radius: 18px;
  object-fit: cover;
}

.desktop-banner{
  width: 100%;
  display: block;
}

.mobile-banner{
  max-width: 100%;
  display: none;
}

.hero-wrapper 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-button-wrap {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.primary-cta-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;
}

.primary-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 28px rgba(26,74,46,0.38);
}

/* FEATURES */

.feature-row {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--muted);
  font-weight: 500;
}

.feature-icon-wrap {
  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);
  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-caption {
  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);
}

/* SECTIONS */

.content-section {
  padding: 5rem 8%;
}

.section-heading-wrap {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  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;
}

.section-main-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: .75rem;
}

.section-description {
  color: var(--muted);
  font-size: 0.97rem;
  max-width: 500px;
  margin: 0 auto;
}

/* BENEFITS */

.dark-theme-section {
  background: var(--dark);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  text-align: center;
}

.benefit-icon {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
}

.benefit-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.benefit-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .45rem;
}

.benefit-text {
  font-size: 0.81rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* TESTIMONIALS */

.light-theme-section {
  background: var(--green-pale);
}

.testimonial-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-message {
  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;
}

.reviewer-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);
  flex-shrink: 0;
}

.reviewer-role {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark);
}

.reviewer-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 SECTION */

.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-description {
  font-size:17px;
  color:rgba(255,255,255,.72);
  max-width:520px;
  margin:0 auto 44px;
  line-height:1.65;
  font-weight:300;
}

.offer-card-wrap {
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.offer-card-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-text-label {
  font-size:13px;
  color:rgba(255,255,255,.65);
  margin-bottom:16px;
  font-weight:300;
}

.offer-code-box {
  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-note {
  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) {

  .benefits-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    gap: 1.5rem;
  }

  .stats-divider {
    display: none;
  }
}

@media (max-width: 768px){

  .desktop-banner{
    display: none;
  }

  .mobile-banner{
    display: block;
  }
  
  .hero-wrapper h1 {
    font-size: clamp(2.3rem, 5vw, 2rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .primary-cta-btn {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {

  .promo-header {
    padding:1.2vh 4vw;
  }

  .promo-header-text {
    font-size:1.1rem;
    line-height:1.4;
  }

  .content-section {
    padding: 3.5rem 5%;
  }

  .hero-wrapper {
    padding: 2rem 5% 4rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}