/* ===== Design Tokens ===== */
:root {
  --dark: #0B3D20;          /* deep brand green */
  --lime: #7BC043;          /* bright accent green */
  --darker: #061f10;        /* near-black green */
  --darkest: #041609;
  --lime-soft: #9bd36a;
  --ink: #16241a;
  --muted: #5a6b5c;
  --bg-light: #f1f7ef;
  --bg-light-2: #e7f1e3;
  --white: #ffffff;
  --line: rgba(123, 192, 67, 0.30);

  --shadow-sm: 0 2px 10px rgba(6, 31, 16, 0.10);
  --shadow-md: 0 10px 30px rgba(6, 31, 16, 0.16);
  --shadow-lg: 0 22px 55px rgba(6, 31, 16, 0.30);

  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --font-head: "Montserrat", system-ui, sans-serif;
  --font-body: "Open Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.accent { color: var(--lime); }
.accent-dark { color: var(--dark); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--lime), #5ea62f);
  color: #06200f;
  box-shadow: 0 10px 24px rgba(123, 192, 67, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(123, 192, 67, 0.5); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: #fff; color: var(--dark); border-color: #fff; }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 31, 16, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(123, 192, 67, 0.18);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 124px; }
.brand { display: inline-flex; }
.brand-logo {
  height: 108px;
  width: auto;
  display: block;
  background: #ffffff;
  border-radius: 16px;
  padding: 0;
  border: 1px solid rgba(123, 192, 67, 0.45);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.30);
}
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  color: #e6f3df;
  text-decoration: none;
  transition: color .15s ease;
}
.main-nav a:hover { color: var(--lime); }
.nav-contact { display: flex; align-items: center; gap: 8px; }
.nav-phone-num {
  font-family: var(--font-head); font-weight: 700;
  font-size: .92rem; color: var(--lime); margin-right: 4px;
}
.nav-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  color: var(--lime);
  border: 1px solid rgba(123, 192, 67, 0.45);
  background: rgba(123, 192, 67, 0.10);
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.nav-ico svg { width: 18px; height: 18px; }
.nav-ico:hover { background: var(--lime); color: #06200f; transform: translateY(-2px); }
.nav-ico-wa:hover { background: #25D366; color: #fff; border-color: #25D366; }
.nav-cta {
  background: var(--lime);
  color: #06200f !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: #fff; color: var(--dark) !important; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(4,22,9,.96) 0%, rgba(11,61,32,.80) 45%, rgba(11,61,32,.30) 100%),
    linear-gradient(to top, rgba(4,22,9,.85), transparent 50%);
}
.hero-inner {
  position: relative;
  width: 100%;
  max-width: 760px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--lime);
  margin-bottom: 22px;
}
.eyebrow::after {
  content: "";
  width: 46px;
  height: 2px;
  background: var(--lime);
  border-radius: 2px;
}
.hero h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  margin-bottom: 16px;
  border-left: 4px solid var(--lime);
  padding-left: 22px;
}
.hero-quote {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--lime-soft);
  margin-bottom: 16px;
  padding-left: 22px;
}
.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.92);
  max-width: 560px;
  margin-bottom: 22px;
  padding-left: 22px;
}
.hero-points {
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  list-style: none; margin-bottom: 32px; padding-left: 22px;
}
.hero-points li {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-head);
  font-weight: 700; font-size: 1rem;
  color: #eaf6e2;
}
.hero-points li::before {
  content: "✓";
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  font-size: .8rem; font-weight: 800;
  color: #06200f;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; padding-left: 22px; }

.hero-side { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.trust-chip {
  font-family: var(--font-head);
  font-weight: 600; font-style: italic;
  font-size: .92rem;
  color: #eaf6e2;
  background: rgba(6,31,16,.45);
  border: 1px solid var(--line);
  padding: 12px 20px; border-radius: 50px;
  backdrop-filter: blur(4px);
}
.rating-chip {
  font-family: var(--font-head); font-weight: 700;
  color: var(--lime); font-size: 1.05rem;
  background: rgba(6,31,16,.45);
  border: 1px solid var(--line);
  padding: 12px 22px; border-radius: 50px;
  margin-top: 8px;
}
.rating-chip span { color: #fff; font-size: .85rem; margin-left: 6px; }

/* ===== Sections base ===== */
.section { padding: 84px 0; }
.section-light { background: var(--bg-light); }
.section-dark { background: var(--dark); color: #fff; }
.section-darker { background: var(--darker); color: #fff; }

/* Section with photo background + dark overlay */
.section-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}
.section-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(4,18,8,.93) 0%, rgba(11,61,32,.90) 55%, rgba(4,18,8,.95) 100%);
}
.section-bg > .container { position: relative; z-index: 1; }

.section-head { text-align: center; margin-bottom: 48px; }
.section-head.left { text-align: left; }
.badge {
  display: inline-block;
  font-family: var(--font-head); font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; font-size: .76rem;
  color: var(--dark);
  border: 1.5px solid var(--lime);
  border-radius: 50px; padding: 7px 18px; margin-bottom: 16px;
}
.badge-light { color: var(--lime); border-color: var(--line); background: rgba(123,192,67,.1); }
.section-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  color: var(--dark); line-height: 1.12;
}
.section-title.light { color: #fff; }
.section-sub { color: rgba(255,255,255,.78); margin-top: 10px; font-size: 1.05rem; }
.section-dark .section-sub, .section-darker .section-sub { color: rgba(255,255,255,.72); }

/* ===== Grids ===== */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ===== Why Choose stat cards ===== */
.stat-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,61,32,.06);
  overflow: hidden;
  transition: transform .15s ease, box-shadow .2s ease;
}
.stat-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--lime), var(--dark));
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stat-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--bg-light-2); font-size: 1.4rem; margin-bottom: 16px;
}
.stat-num {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.9rem; color: var(--lime); line-height: 1;
}
.stat-label {
  font-family: var(--font-head); font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; font-size: .8rem;
  color: var(--dark); margin: 8px 0 12px;
  padding-bottom: 12px; border-bottom: 2px solid var(--bg-light-2);
}
.stat-card p:last-child { color: var(--muted); font-size: .96rem; }

.pill-row {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 40px;
}
.pill-row span {
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  background: #fff; border: 1px solid rgba(11,61,32,.12);
  color: var(--dark); padding: 10px 20px; border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

/* ===== Solutions cards ===== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.solution-card {
  position: relative;
  min-height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  border: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  background-size: cover;
  background-position: center;
  background-color: #0a1f12;
  display: flex;
  align-items: flex-end;
  transition: transform .2s ease, box-shadow .2s ease;
}
.solution-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.sc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,18,8,.94) 0%, rgba(4,18,8,.72) 30%, rgba(4,18,8,.20) 58%, rgba(4,18,8,0) 80%);
}
.sc-body { position: relative; padding: 26px; }
.sc-emoji { font-size: 2rem; display: block; margin-bottom: 10px; }
.sc-body h3 {
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem;
  color: #fff; margin-bottom: 8px;
}
.sc-body p { color: rgba(255,255,255,.85); font-size: .95rem; }

/* ===== Value band ===== */
.value-band { max-width: 840px; text-align: center; margin: 0 auto; }
.value-band .section-title { margin-bottom: 26px; }
.value-text { font-size: 1.13rem; color: var(--muted); margin-bottom: 18px; }
.value-highlight {
  font-family: var(--font-head); font-weight: 700; font-size: 1.28rem;
  color: var(--dark); margin: 6px 0 30px;
}

/* ===== Included cards ===== */
.incl-card {
  background: rgba(6, 31, 16, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  display: flex; align-items: center; gap: 16px;
  backdrop-filter: blur(4px);
  transition: transform .15s ease, background .2s ease;
}
.incl-card:hover { transform: translateY(-4px); background: rgba(123,192,67,.22); }
.incl-ico { font-size: 1.5rem; }
.incl-card p { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: #eaf6e2; }

/* ===== Areas ===== */
.areas-band { max-width: 820px; text-align: center; margin: 0 auto; }
.areas-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-top: 26px; }
.areas-tags span {
  font-family: var(--font-head); font-weight: 700;
  background: #fff; border: 2px solid var(--lime);
  color: var(--dark); padding: 12px 26px; border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

/* ===== Estimate / Final CTA ===== */
.estimate-section {
  position: relative;
  background-size: cover; background-position: center;
  color: #fff;
}
.estimate-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(4,22,9,.96) 0%, rgba(11,61,32,.85) 50%, rgba(11,61,32,.55) 100%);
}
.estimate-inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 50px; align-items: center;
}
.cta-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.05;
  margin: 14px 0 18px; color: #fff;
  border-left: 4px solid var(--lime); padding-left: 20px;
}
.estimate-copy .lead { padding-left: 20px; color: rgba(255,255,255,.9); }
.contact-list { list-style: none; margin: 26px 0; display: grid; gap: 12px; padding-left: 20px; }
.contact-list li {
  display: flex; align-items: center; gap: 12px;
  background: rgba(6,31,16,.45);
  border: 1px solid var(--line);
  border-radius: 14px; padding: 12px 18px;
  color: #fff;
}
.contact-list a {
  display: flex; align-items: center; gap: 12px;
  flex: 1;
  margin: -12px -18px; padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none; color: #fff;
  transition: background .2s ease;
}
.contact-list a:hover { background: rgba(123,192,67,.18); }
.ci-ico {
  width: 20px; height: 20px;
  color: var(--lime); flex-shrink: 0;
}
.ci-label {
  font-family: var(--font-head); font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; font-size: .7rem;
  color: var(--lime); min-width: 58px; flex-shrink: 0;
}
.ci-val { font-weight: 600; }
.cta-badges { display: flex; flex-wrap: wrap; gap: 12px; padding-left: 20px; }
.cta-badges span {
  font-family: var(--font-head); font-weight: 600; font-style: italic; font-size: .85rem;
  background: rgba(6,31,16,.45); border: 1px solid var(--line);
  color: #eaf6e2; padding: 9px 16px; border-radius: 50px;
}

/* ===== Form Card ===== */
.form-card {
  position: relative;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-lg);
}
.form-card h3 {
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--dark);
}
.form-sub { color: var(--muted); margin-bottom: 18px; font-size: .95rem; }
.form-card iframe { display: block; width: 100%; min-height: 300px; border: none; }
.lead-form .field { margin-bottom: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form label {
  display: block; font-family: var(--font-head); font-weight: 600;
  font-size: .82rem; margin-bottom: 6px; color: var(--ink);
}
.optional { color: var(--muted); font-weight: 400; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; font-family: var(--font-body); font-size: .98rem;
  padding: 12px 14px; border: 1.5px solid #d7e0d6; border-radius: var(--radius-sm);
  background: #fbfdfb; transition: border-color .15s ease, box-shadow .15s ease;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none; border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(123,192,67,.2);
}
.lead-form textarea { resize: vertical; }
.lead-form .btn-block { margin-top: 6px; }
.form-note { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 12px; }
.form-success {
  font-family: var(--font-head); font-weight: 600; color: var(--dark);
  background: var(--bg-light-2); border: 1px solid var(--lime);
  border-radius: var(--radius-sm); padding: 18px; text-align: center;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--darkest);
  color: #cfe3c5;
  padding: 60px 0 96px; text-align: center;
}
.footer-logo {
  height: 150px;
  margin-bottom: 18px;
  background: #ffffff;
  border-radius: 18px;
  padding: 0;
  border: 1px solid rgba(123, 192, 67, 0.40);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}
.footer-tag { font-family: var(--font-head); font-weight: 700; color: var(--lime); font-size: 1.05rem; }
.footer-slogan { color: #cfe3c5; margin-bottom: 18px; }
.footer-contact {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; margin-bottom: 24px;
}
.footer-contact a, .footer-contact span {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  color: #eaf6e2; text-decoration: none;
}
.footer-contact a:hover { color: var(--lime); }
.footer-copy { margin-top: 26px; color: #7d9a78; font-size: .85rem; }

/* ===== Sticky mobile bar ===== */
.sticky-bar {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
  justify-content: center;
}
.sticky-bar a {
  flex: 1; text-align: center;
  font-family: var(--font-head); font-weight: 800; text-decoration: none;
  padding: 16px; border-radius: 50px; box-shadow: var(--shadow-lg);
}
.sticky-cta { background: #ffffff; color: var(--dark); border: 1px solid var(--line); }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-inner, .estimate-inner { grid-template-columns: 1fr; }
  .hero-side { flex-direction: row; flex-wrap: wrap; align-items: flex-start; padding-left: 22px; }
  .grid-3, .solutions-grid { grid-template-columns: 1fr 1fr; }
  .main-nav > a:not(.nav-cta) { display: none; }
}
@media (max-width: 600px) {
  .grid-3, .solutions-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero { min-height: auto; padding: 56px 0; }
  .hero h1, .hero-quote, .lead, .hero-points, .hero-actions { padding-left: 16px; }
  .hero h1 { padding-left: 16px; }
  .form-card { padding: 24px; }
  .nav-phone-num { display: none; }
  .nav-cta { display: none; }
  .sticky-bar { display: flex; }
  .footer-copy { margin-bottom: 40px; }
}
