/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #3a7d44;
  --green-light:  #e8f5eb;
  --green-dark:   #2d6236;
  --orange:       #e2622a;
  --orange-light: #fdf1ec;
  --cream:        #faf8f5;
  --charcoal:     #1e2520;
  --mid:          #5a6360;
  --border:       #dde8df;
  --white:        #ffffff;
  --radius:       14px;
  --shadow:       0 4px 20px rgba(58,125,68,.10);
  --shadow-lg:    0 8px 40px rgba(58,125,68,.15);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1.5px solid var(--border);
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
  line-height: 1;
  position: relative;
  z-index: 101;
}
.nav-logo-img {
  height: 325px;
  width: auto;
  display: block;
  margin: 2px 0 -257px 0;
  position: relative;
  z-index: 101;
  /* crisp rendering for the logo */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.nav-logo span { color: var(--orange); }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
}
.nav-links a {
  text-decoration: none; font-size: .9rem; font-weight: 600;
  color: var(--mid); transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 9px 20px; border-radius: 8px;
  transition: background .2s !important;
}
.nav-cta:hover { background: #c9521e !important; }
.nav-toggle {
  display: none; background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: var(--charcoal);
}
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 16px 24px; gap: 16px;
  position: sticky; top: 70px; z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; font-weight: 600;
  color: var(--charcoal); font-size: 1rem;
  padding: 8px 0; border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mob-cta {
  background: var(--orange); color: var(--white);
  text-align: center; padding: 12px; border-radius: 8px;
  border-bottom: none;
}

/* ── LAYOUT ── */
.section {
  max-width: 960px; margin: 0 auto;
  padding: 64px 24px;
}
.section-eyebrow {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900; color: var(--charcoal);
  margin-bottom: 10px;
}
.section-sub {
  color: var(--mid); font-size: .95rem;
  max-width: 500px; margin-bottom: 40px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  font-weight: 700; font-size: 1rem;
  padding: 14px 28px; border-radius: 10px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
  font-family: 'Lato', sans-serif;
}
.btn-primary:hover { background: #c9521e; transform: translateY(-1px); }
.btn-green {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green); color: var(--white);
  font-weight: 700; font-size: 1rem;
  padding: 14px 28px; border-radius: 10px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
  font-family: 'Lato', sans-serif;
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  border: 2px solid var(--green); color: var(--green);
  font-weight: 700; font-size: .9rem;
  padding: 10px 20px; border-radius: 8px;
  text-decoration: none; transition: background .2s, color .2s;
  background: transparent; cursor: pointer;
  font-family: 'Lato', sans-serif;
}
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--charcoal); font-weight: 600; font-size: .95rem;
  text-decoration: none; background: none; border: none; cursor: pointer;
}
.btn-ghost:hover { color: var(--green); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--orange);
  font-weight: 800; font-size: 1rem;
  padding: 14px 32px; border-radius: 10px;
  text-decoration: none; transition: transform .15s;
}
.btn-white:hover { transform: translateY(-2px); }

/* ── PAGE HERO BANNER ── */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 56px 24px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900; margin-bottom: 10px;
}
.page-hero p { color: rgba(255,255,255,.8); font-size: 1rem; max-width: 480px; margin: 0 auto; }

/* ── CARDS ── */
.card {
  background: var(--white); border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--green-light);
  display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 16px;
}
.card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem; font-weight: 800;
  margin-bottom: 8px; color: var(--charcoal);
}
.card p { font-size: .9rem; color: var(--mid); line-height: 1.65; }

/* ── TAGS / BADGES ── */
.tag {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 99px;
  margin-bottom: 10px;
}
.tag-orange { color: var(--orange); background: var(--orange-light); }
.tag-green  { color: var(--green);  background: var(--green-light); }

/* ── STATS STRIP ── */
.stats-strip { background: var(--green); padding: 28px 24px; }
.stats-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; justify-content: space-around; gap: 16px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem; font-weight: 900; color: var(--white); display: block;
}
.stat-desc { font-size: .8rem; color: rgba(255,255,255,.75); font-weight: 600; }

/* ── FEATURE LIST ── */
.feature-list { list-style: none; margin: 16px 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; padding: 5px 0; color: var(--charcoal);
}
.feature-list li::before {
  content: "✓"; color: var(--green);
  font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* ── PRICING ── */
.pricing-bg { background: var(--green-light); padding: 64px 0; }
.pricing-grid { display: grid; gap: 20px; }
.price-card {
  background: var(--white); border-radius: var(--radius);
  border: 2px solid var(--border);
  padding: 28px 24px; position: relative;
  transition: box-shadow .2s;
}
.price-card:hover { box-shadow: var(--shadow); }
.price-card.popular { border-color: var(--green); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 16px; border-radius: 99px;
}
.price-name { font-family: 'Nunito', sans-serif; font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.price-tagline { font-size: .82rem; color: var(--mid); margin-bottom: 20px; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-dollar { font-family: 'Nunito', sans-serif; font-size: 2.4rem; font-weight: 900; }
.price-unit { font-size: .85rem; color: var(--mid); font-weight: 600; }
.price-divider { border: none; border-top: 1.5px solid var(--border); margin: 20px 0; }
.price-features { list-style: none; margin-bottom: 24px; }
.price-features li {
  font-size: .9rem; display: flex; align-items: center; gap: 10px; padding: 5px 0;
}
.price-features .check { color: var(--green); font-weight: 700; }
.price-features .cross { color: #ccc; }

/* ── TESTIMONIALS ── */
.testimonials-bg { background: var(--charcoal); padding: 64px 0; }
.reviews-grid { display: grid; gap: 16px; }
.review-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 24px;
}
.stars { color: #f5a623; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text {
  font-size: .95rem; color: rgba(255,255,255,.85);
  line-height: 1.7; margin-bottom: 16px; font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green); display: grid; place-items: center;
  font-weight: 800; color: var(--white); font-size: .9rem;
}
.reviewer-name { font-weight: 700; color: var(--white); font-size: .9rem; }
.reviewer-loc { font-size: .78rem; color: rgba(255,255,255,.5); }

/* ── CTA BANNER ── */
.cta-banner { background: var(--orange); padding: 56px 24px; text-align: center; }
.cta-banner h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 900; color: var(--white); margin-bottom: 10px;
}
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 30px; font-size: .95rem; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cta-phone { color: rgba(255,255,255,.9); font-size: 1rem; font-weight: 600; text-decoration: none; }
.cta-phone:hover { color: var(--white); }
.cta-perks { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 36px; }
.cta-perk { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: rgba(255,255,255,.8); font-weight: 600; }
.cta-perk .perk-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.2); display: grid; place-items: center; font-size: .9rem; }

/* ── FOOTER ── */
footer { background: #141a16; padding: 48px 24px 24px; color: rgba(255,255,255,.5); }
.footer-inner { max-width: 960px; margin: 0 auto; }
.footer-grid { display: grid; gap: 36px; margin-bottom: 40px; }
.footer-brand { font-family: 'Nunito', sans-serif; font-size: 1.1rem; font-weight: 900; color: var(--white); margin-bottom: 10px; }
.footer-brand span { color: var(--orange); }
.footer-desc { font-size: .85rem; line-height: 1.65; }
.footer-col-title { font-weight: 700; color: var(--white); font-size: .85rem; margin-bottom: 14px; letter-spacing: .04em; text-transform: uppercase; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,.5); font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact { font-size: .85rem; line-height: 1.9; }
.footer-contact a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; font-size: .8rem; }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: rgba(255,255,255,.4); text-decoration: none; }
.footer-legal a:hover { color: var(--white); }

/* ── FORM STYLES ── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 700; font-size: .88rem;
  color: var(--charcoal); margin-bottom: 6px;
}
.form-group label .req { color: var(--orange); margin-left: 2px; }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: .95rem; font-family: 'Lato', sans-serif;
  color: var(--charcoal); background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(58,125,68,.12);
}
.form-control::placeholder { color: #aab8b4; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-row { display: grid; gap: 16px; }
.form-hint { font-size: .78rem; color: var(--mid); margin-top: 5px; }

/* ── MODAL / POPUP ── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 999;
  align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white); border-radius: 20px;
  padding: 40px 32px; text-align: center;
  max-width: 420px; width: 100%;
  box-shadow: var(--shadow-lg);
  animation: popIn .3s ease;
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.9) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-icon { font-size: 3.5rem; margin-bottom: 16px; }
.modal-title { font-family: 'Nunito', sans-serif; font-size: 1.6rem; font-weight: 900; color: var(--charcoal); margin-bottom: 10px; }
.modal-msg { color: var(--mid); font-size: .95rem; line-height: 1.65; margin-bottom: 28px; }
.modal-close { width: 100%; }

/* ── ACCORDION (FAQ) ── */
.faq-item { border-bottom: 1.5px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none;
  text-align: left; padding: 20px 0;
  font-family: 'Lato', sans-serif;
  font-weight: 700; font-size: .95rem; color: var(--charcoal);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.faq-q .arrow { flex-shrink: 0; transition: transform .2s; font-size: .8rem; color: var(--green); }
.faq-q.open .arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.faq-a-inner { padding-bottom: 20px; font-size: .9rem; color: var(--mid); line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (min-width: 600px) {
  .pricing-grid  { grid-template-columns: 1fr 1fr; }
  .reviews-grid  { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .cta-actions   { flex-direction: row; justify-content: center; }
  .form-row.cols-2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .pricing-grid  { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(3, 1fr); }
  .footer-grid   { grid-template-columns: 2fr 1fr 1fr; }
  .nav-links     { display: flex; }
  .nav-toggle    { display: none; }
  .form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 899px) {
  .nav-links  { display: none; }
  .nav-toggle { display: block; }
}
