/* ─── FONTS ─────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@700;800;900&family=Lato:wght@400;700&display=swap');

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

:root {
  --green-hero:   #C5E8C0;
  --green-bg:     #EAF7E6;
  --green-main:   #3BB443;
  --green-dark:   #2a802f;
  --green-deeper: #1d5e22;
  --green-darker: #1d5e22;
  --text-dark:    #1a1a1a;
  --text-muted:   #555;
  --white:        #fff;
  --border:       #d0e8cb;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.08);
  --shadow-md:    0 4px 12px rgba(0,0,0,.10);
  --radius:       14px;
  --font-head:    'Raleway', sans-serif;
  --font-body:    'Lato', sans-serif;
  --mobile-bar:   72px; /* height of sticky bottom bar */
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--green-bg);
  padding-bottom: var(--mobile-bar);
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── UTILITIES ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 64px 0; }
.section--white { background: var(--white); }
.section--green  { background: var(--green-bg); }
.section--hero   { background: var(--green-hero); }

.section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.4rem, 4vw, 2rem);
  letter-spacing: -.02em;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 1rem;
}

/* ─── NAV ────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--green-main);
  letter-spacing: -.02em;
}
.nav__links {
  display: none;
  gap: 32px;
  align-items: center;
  list-style: none;
  font-weight: 700;
  font-size: .95rem;
}
.nav__links a:hover { color: var(--green-main); }
.nav__phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-main);
}
.nav__phone svg { width: 18px; height: 18px; fill: var(--green-main); }

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__phone  { display: flex; }
}

/* ─── HERO ───────────────────────────────────────────────────────── */
.hero {
  background: var(--green-hero);
  padding: 56px 0 64px;
  text-align: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dark);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.25rem, 7vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  color: var(--text-dark);
  margin: 0 auto 20px;
  max-width: 780px;
}
.hero__sub {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 340px;
  margin: 0 auto;
}
.btn-call {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--green-main);
  color: var(--white);
  border-radius: 100px;
  padding: 14px 24px;
  box-shadow: 0 6px 0 var(--green-dark);
  transition: transform .1s, box-shadow .1s;
  cursor: pointer;
}
.btn-call:active { transform: translateY(3px); box-shadow: 0 3px 0 var(--green-dark); }
.btn-call__label {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-call__label svg { width: 22px; height: 22px; fill: var(--white); }
.btn-call__number {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1.1;
  margin-top: 4px;
}
.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: rgba(255,255,255,.55);
  color: var(--text-dark);
  font-weight: 700;
  font-size: .95rem;
  border-radius: 100px;
  padding: 12px 24px;
  border: 2px solid rgba(255,255,255,.6);
  transition: background .15s;
}
.btn-wa:hover { background: rgba(255,255,255,.75); }
.btn-wa svg { width: 20px; height: 20px; fill: var(--green-darker); }

/* ─── TRUST STRIP ────────────────────────────────────────────────── */
.trust {
  background: var(--white);
  border-bottom: 3px solid var(--border);
  padding: 32px 0;
}
.trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}
@media (min-width: 640px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }
.trust__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
}
.trust__item svg { width: 20px; height: 20px; fill: none; stroke: var(--green-main); stroke-width: 2; flex-shrink: 0; margin-top: 1px; }

/* ─── SERVICES ───────────────────────────────────────────────────── */
.service-block {
  padding: 56px 0;
}
.service-block:nth-child(odd) { background: var(--white); }
.service-block:nth-child(even) { background: var(--green-bg); }

.service-block__header {
  margin-bottom: 32px;
}
.service-block__eyebrow {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-main);
  margin-bottom: 8px;
}
.service-block__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.service-block__subtitle {
  font-weight: 700;
  color: var(--green-darker);
  font-size: .95rem;
  margin-bottom: 14px;
}
.service-block__desc {
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}
.service-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.service-item {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.service-block:nth-child(odd) .service-item { background: var(--green-bg); }
.service-item__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--green-darker);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-item__title::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-main);
  flex-shrink: 0;
}
.service-item p {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.65;
}

/* ─── HOW IT WORKS ───────────────────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 640px) {
  .steps { flex-direction: row; gap: 16px; }
}
.step {
  flex: 1;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .step { flex-direction: column; align-items: center; text-align: center; }
}
.step__num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: var(--green-main);
  flex-shrink: 0;
  width: 40px;
}
.step__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.step p { color: var(--text-muted); font-size: .9rem; line-height: 1.6; }

/* ─── TESTIMONIALS ───────────────────────────────────────────────── */
.reviews {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  .reviews { flex-direction: row; }
}
.review {
  flex: 1;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.review__stars { color: #f5a623; font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.review p { color: #444; font-style: italic; font-size: .9rem; line-height: 1.65; margin-bottom: 12px; }
.review__name { font-weight: 700; font-size: .85rem; color: var(--text-dark); }

/* ─── FAQ ────────────────────────────────────────────────────────── */
.faqs { max-width: 640px; margin: 0 auto; }
.faq {
  border-bottom: 2px solid var(--border);
  padding: 20px 0;
}
.faq:last-child { border-bottom: none; }
.faq__q {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.faq__q::before {
  content: '›';
  color: var(--green-main);
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.faq__a { color: var(--text-muted); font-size: .92rem; line-height: 1.65; padding-left: 22px; }

/* ─── CTA BANNER ─────────────────────────────────────────────────── */
.cta-banner {
  background: var(--green-hero);
  text-align: center;
  padding: 56px 0;
}
.cta-banner__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--text-dark);
  margin-bottom: 28px;
}

/* ─── FOOTER ─────────────────────────────────────────────────────── */
footer {
  background: var(--green-deeper);
  color: rgba(255,255,255,.85);
  padding: 40px 0 24px;
  font-size: .9rem;
}
.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}
@media (min-width: 640px) {
  .footer__grid { flex-direction: row; justify-content: space-between; }
}
.footer__name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer__links a { color: rgba(255,255,255,.75); }
.footer__links a:hover { color: var(--white); }
.footer__contact { display: flex; flex-direction: column; gap: 8px; }
.footer__contact a { color: rgba(255,255,255,.85); }
.footer__contact a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 20px;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

/* ─── MOBILE STICKY BAR ──────────────────────────────────────────── */
.sticky-bar {
  display: flex;
  gap: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 2px solid var(--border);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 16px rgba(0,0,0,.10);
}
.sticky-bar__call {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-main);
  color: var(--white);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 4px 0 var(--green-dark);
  transition: transform .1s, box-shadow .1s;
}
.sticky-bar__call:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--green-dark); }
.sticky-bar__call svg { width: 22px; height: 22px; fill: var(--white); flex-shrink: 0; }
.sticky-bar__call-text { display: flex; flex-direction: column; }
.sticky-bar__call-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .9;
  line-height: 1;
  margin-bottom: 3px;
}
.sticky-bar__call-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1;
}
.sticky-bar__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59,180,67,.12);
  border: 2px solid rgba(59,180,67,.3);
  border-radius: 12px;
  width: 52px;
  flex-shrink: 0;
}
.sticky-bar__wa svg { width: 26px; height: 26px; fill: var(--green-main); }

@media (min-width: 768px) {
  .sticky-bar { display: none; }
}


/* ─── SEO INTRO & SERVICE AREA ──────────────────────────────────── */
.intro-seo { padding: 48px 0; }
.intro-seo__text {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
}
.zone-list span {
  background: var(--green-bg);
  border: 2px solid var(--border);
  border-radius: 999px;
  color: var(--green-deeper);
  font-weight: 700;
  font-size: .9rem;
  padding: 8px 14px;
}
.cta-banner__subtitle {
  color: #333;
  font-weight: 700;
  margin: -14px auto 28px;
  max-width: 620px;
}
main .service-block:first-child { border-top: 3px solid var(--border); }
