:root {
  --green-900: #0f3d24;
  --green-800: #14532d;
  --green-700: #166534;
  --green-100: #eaf7ef;
  --green-50: #f5fbf7;
  --text: #1f2933;
  --muted: #607084;
  --white: #ffffff;
  --border: #dfe7e2;
  --bg: #f8fbf9;
  --shadow: 0 20px 50px rgba(20, 83, 45, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.narrow { max-width: 820px; }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  
    border-bottom: 1px solid rgba(20, 83, 45, 0.08);
    transition: 0.25s ease;
  }
  
  .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(15, 36, 24, 0.08);
  }
  
  body {
    padding-top: 82px;
  }
  
  .nav-dropdown {
    position: relative;
  }
  
  .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
  
    min-width: 280px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #dfe7e2;
    border-radius: 18px;
    box-shadow: 0 22px 50px rgba(15, 36, 24, 0.12);
  
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.2s ease;
  }
  
  .nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 0;
    width: 100%;
    height: 18px;
  }
  
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  
  .nav-dropdown-menu a {
    display: block;
    padding: 11px 14px;
    border-radius: 12px;
    color: #1f2933;
    font-size: 14px;
  }
  
  .nav-dropdown-menu a:hover {
    background: #eaf7ef;
    color: #0b3a1e;
  }
.header-inner { min-height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo img { height: 75px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 24px; font-size: 15px; }
.main-nav a { color: #253244; font-weight: 600; }
.main-nav a:hover { color: var(--green-700); }
.nav-cta { padding: 10px 18px; background: var(--green-800); color: var(--white) !important; border-radius: 999px; }
.nav-toggle { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--green-800); margin: 7px 0; }

.hero { padding: 92px 0; background: linear-gradient(135deg, var(--green-100), var(--white)); }
.hero-grid { display: grid; grid-template-columns: 1.35fr .85fr; gap: 52px; align-items: center; }
.eyebrow, .section-label { color: var(--green-700); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }
h1 { font-size: clamp(38px, 6vw, 64px); line-height: 1.05; margin: 12px 0 24px; }
h2 { font-size: clamp(30px, 4vw, 42px); line-height: 1.18; margin: 8px 0 20px; }
h3 { margin-top: 0; line-height: 1.25; }
.hero-text { font-size: 20px; color: var(--muted); max-width: 720px; }
.hero-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 14px 24px; border-radius: 999px; font-weight: 800; border: 1px solid transparent; cursor: pointer; font: inherit; }
.btn-primary { background: var(--green-800); color: var(--white); }
.btn-primary:hover { background: var(--green-900); }
.btn-secondary { background: var(--white); color: var(--green-800); border-color: var(--border); }
.hero-card { background: var(--white); border: 1px solid var(--border); border-radius: 24px; padding: 32px; box-shadow: var(--shadow); }
.hero-card ul, .check-list { padding-left: 0; list-style: none; margin: 20px 0 0; }
.hero-card li, .check-list li { margin: 10px 0; padding-left: 28px; position: relative; }
.hero-card li::before, .check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green-700); font-weight: 900; }

.section { padding: 86px 0; }
.section-light { background: var(--bg); }
.section-intro { color: var(--muted); max-width: 760px; font-size: 18px; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.service-card, .pricing-card, .faq-item, .content-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 26px; }
.service-card { transition: .2s ease; }
.service-card:hover { transform: translateY(-4px); border-color: var(--green-700); box-shadow: var(--shadow); }
.service-card p, .pricing-card p, .faq-item p, .content-card p { color: var(--muted); }
.card-link { color: var(--green-700); font-weight: 800; }
.pricing-grid, .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.pricing-card.featured { border-color: var(--green-700); background: var(--green-100); }
.price { font-size: 24px; font-weight: 900; color: var(--green-800) !important; }
.faq-item { margin-top: 18px; }
.service-hero { padding: 78px 0; background: linear-gradient(135deg, var(--green-100), var(--white)); }
.breadcrumbs { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.breadcrumbs a { color: var(--green-700); font-weight: 700; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: start; }
.content-box { background: var(--green-50); border: 1px solid var(--border); border-radius: 22px; padding: 30px; }
.cta-band { background: var(--green-800); color: var(--white); border-radius: 26px; padding: 38px; display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.cta-band p { color: #d8f3df; margin: 0; }
.cta-band h2 { margin: 0 0 8px; }
.contact-section { background: var(--green-800); color: var(--white); }
.contact-section .section-label, .contact-section p { color: #d8f3df; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.contact-form { background: var(--white); padding: 28px; border-radius: 22px; display: grid; gap: 14px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px; font: inherit; }
.contact-form textarea { min-height: 130px; resize: vertical; }
.site-footer { padding: 28px 0; background: #0f2418; color: #d8f3df; font-size: 14px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav { display: none; position: absolute; left: 4%; right: 4%; top: 78px; background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); flex-direction: column; align-items: flex-start; }
  .main-nav.is-open { display: flex; }
  .hero-grid, .contact-grid, .two-col { grid-template-columns: 1fr; }
  .cards-grid, .pricing-grid, .steps-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0; }
  .section { padding: 64px 0; }
  .cta-band { display: block; }
  .cta-band .btn { margin-top: 22px; }
}


.nav-phone { color: var(--green-700) !important; font-weight: 800; }
.main-nav a.is-active { color: var(--green-700); }
.contact-section a, .site-footer a { color: inherit; text-decoration: none; }
.contact-form label { display: grid; gap: 6px; color: var(--text); font-weight: 700; font-size: 14px; }
.contact-form label span { color: var(--text); }
.form-note { color: var(--muted) !important; font-size: 13px; margin: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; padding-bottom: 22px; }
.footer-brand { font-weight: 900; font-size: 17px; color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.site-footer p { margin: 6px 0; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr; } }
