@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 */
.top-bar{
  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;
}

.top-text{
  font-size:1.2rem;
  font-weight:600;
  text-align:center;
  letter-spacing:0.05em;
}

.top-text span{
  color:#33e1aa;
  font-weight:700;
}

/* NAV */
nav {
  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;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.action-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;
}

.action-btn:hover {
  transform: scale(1.03);
}

/* HERO */
.main-section {
  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;
}

.main-section::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;
}

.main-section h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.4rem;
}

.main-subtext {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.4rem;
  line-height: 1.75;
}

.main-action {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.primary-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-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 28px rgba(26,74,46,0.38);
}

/* INFO */
.info-row {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--muted);
  font-weight: 500;
}

.icon-box {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* STATS */
.data-bar {
  background: var(--green);
  color: var(--white);
  padding: 18px 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.data-box { text-align: center; }

.data-num {
  font-size: 1.7rem;
  font-weight: 700;
  display: block;
}

.data-label {
  font-size: 0.73rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.line-break {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.18);
}

/* SECTION */
.block-section { padding: 5rem 8%; }
.section-header { text-align: center; margin-bottom: 3rem; }

.tag-box {
  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-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: .75rem;
}

.section-sub {
  color: var(--muted);
  font-size: 0.97rem;
  max-width: 500px;
  margin: 0 auto;
}

/* WHY */
.dark-bg { background: var(--dark); }

.grid-box {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.grid-item { text-align: center; }

.grid-icon {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
}

.grid-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.grid-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .45rem;
}

.grid-text {
  font-size: 0.81rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* REVIEWS */
.light-bg { background: var(--green-pale); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.review-box {
  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;
}

.stars-box { color: var(--gold); font-size: 0.9rem; }

.review-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-icon {
  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;
}

.user-title {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark);
}

.user-name {
  font-size: 0.72rem;
  color: var(--muted);
}

.verify-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;
}

/* CTA */
.promo-section {
  background-color: #0f1f14;
  padding: 50px 40px;
  text-align:center;
  color:#fff;
  position:relative;
  overflow:hidden;
}

.promo-section h2 {
  font-size:clamp(28px,4vw,52px);
  font-weight:900;
  margin-bottom:16px;
}

.promo-section h2 em { font-style:normal; color:var(--gold-light); }

.promo-desc {
  font-size:17px;
  color:rgba(255,255,255,.72);
  max-width:520px;
  margin:0 auto 44px;
  line-height:1.65;
  font-weight:300;
}

.promo-cards {
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.promo-card {
  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;
}

.promo-value {
  font-size:48px;
  font-weight:900;
  color:var(--gold-light);
  line-height:1;
  margin-bottom:6px;
}

.promo-label {
  font-size:13px;
  color:rgba(255,255,255,.65);
  margin-bottom:16px;
  font-weight:300;
}

.promo-code {
  display:inline-block;
  background:var(--gold);
  color:var(--green-deep);
  font-size:15px;
  font-weight:800;
  padding:7px 20px;
  border-radius:4px;
  letter-spacing:2px;
  margin-bottom:10px;
}

.promo-note {
  font-size:12px;
  color:rgba(255,255,255,.45);
}

/* FOOTER */
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) {
  .grid-box { grid-template-columns: repeat(2,1fr); }
  .card-grid { grid-template-columns: 1fr; }
  .data-bar { gap: 1.5rem; }
  .line-break { display: none; }
}

@media (max-width: 600px) {
  .top-bar { padding:1.2vh 4vw; }
  .top-text { font-size:1.1rem; line-height:1.4; }
  .block-section { padding: 3.5rem 5%; }
  .main-section { padding: 2rem 5% 4rem; }
  .grid-box { grid-template-columns: 1fr 1fr; }
}