/* ===== DESIGN SYSTEM ===== */
:root {
  --green:    #006847;
  --green-dk: #004d34;
  --red:      #ce1126;
  --gold:     #c8a84b;
  --gold-lt:  #f0d080;
  --white:    #ffffff;
  --off-white:#f8f6f1;
  --gray-100: #f4f4f4;
  --gray-200: #e8e8e8;
  --gray-500: #888888;
  --gray-700: #444444;
  --dark:     #1a1a1a;
  --font:     'Inter', sans-serif;
  --radius:   10px;
  --shadow:   0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:0 8px 40px rgba(0,0,0,.15);
  --trans:    .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }

/* ===== DISCLAIMER BAR ===== */
.disclaimer-bar { background: #fffbe6; border-bottom: 1px solid #f0d080; padding: 8px 20px; text-align: center; font-size: .82rem; color: #7a5c00; }
.disclaimer-bar a { color: var(--green); text-decoration: underline; }

/* ===== HEADER ===== */
.site-header { background: var(--green); color: var(--white); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,.2); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { height: 38px; width: auto; }
.main-nav ul { display: flex; gap: 6px; align-items: center; }
.main-nav a { padding: 6px 12px; border-radius: 6px; font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.88); transition: var(--trans); }
.main-nav a:hover, .main-nav a.active { background: rgba(255,255,255,.15); color: var(--white); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 560px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,104,71,.82) 0%, rgba(0,40,20,.7) 100%); }
.hero .container { position: relative; z-index: 2; padding: 80px 20px; }
.hero-content { max-width: 640px; color: var(--white); }
.hero-eyebrow { display: inline-block; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); border-radius: 50px; padding: 4px 16px; font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.15; margin-bottom: 18px; }
.hero h1 span { color: var(--gold-lt); }
.hero p { font-size: 1.1rem; opacity: .92; margin-bottom: 28px; max-width: 520px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: .95rem; transition: var(--trans); cursor: pointer; border: 2px solid transparent; }
.btn-lg { padding: 15px 32px; font-size: 1.05rem; }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dk); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-lt); }
.btn-outline { border-color: rgba(255,255,255,.6); color: var(--white); background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,.15); }
.btn-outline-green { border-color: var(--green); color: var(--green); background: transparent; }
.btn-outline-green:hover { background: var(--green); color: var(--white); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: #a50e1f; }

/* ===== SECTION TITLES ===== */
.section-label { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.section-subtitle { font-size: 1.05rem; color: var(--gray-700); max-width: 600px; }
.section-head { margin-bottom: 48px; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--off-white); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 20px 0; }
.trust-items { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--gray-700); }
.trust-item .icon { font-size: 1.3rem; }

/* ===== HOW IT WORKS ===== */
.how-section { padding: 80px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.step-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow); }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--green); color: var(--white); font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: .9rem; color: var(--gray-700); }

/* ===== SERVICES ===== */
.services-section { padding: 80px 0; background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.service-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--trans); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card img { width: 100%; height: 180px; object-fit: cover; }
.service-card-body { padding: 24px; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: .9rem; color: var(--gray-700); margin-bottom: 16px; }
.service-tag { display: inline-block; background: var(--green); color: var(--white); font-size: .75rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; }
.service-tag.red { background: var(--red); }
.service-tag.gold { background: var(--gold); color: var(--dark); }

/* ===== PRICING ===== */
.pricing-section { padding: 80px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.pricing-card { border: 2px solid var(--gray-200); border-radius: var(--radius); padding: 36px 28px; text-align: center; transition: var(--trans); }
.pricing-card.featured { border-color: var(--green); box-shadow: var(--shadow-lg); }
.pricing-card .badge { display: inline-block; background: var(--green); color: var(--white); font-size: .75rem; font-weight: 700; padding: 3px 12px; border-radius: 50px; margin-bottom: 14px; }
.pricing-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.price { font-size: 2.2rem; font-weight: 900; color: var(--green); margin: 12px 0; }
.price sup { font-size: 1rem; vertical-align: top; margin-top: 8px; }
.price-note { font-size: .82rem; color: var(--gray-500); margin-bottom: 20px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 28px; }
.pricing-features li { padding: 7px 0; font-size: .9rem; border-bottom: 1px solid var(--gray-100); display: flex; align-items: flex-start; gap: 10px; }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 80px 0; background: var(--green); color: var(--white); }
.testimonials-section .section-label { color: var(--gold-lt); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); padding: 28px; }
.stars { color: var(--gold-lt); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-card p { font-size: .95rem; line-height: 1.7; margin-bottom: 18px; opacity: .92; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.3); }
.reviewer-name { font-weight: 700; font-size: .9rem; }
.reviewer-loc { font-size: .8rem; opacity: .7; }

/* ===== CTA BAND ===== */
.cta-band { padding: 70px 0; background: var(--off-white); text-align: center; }
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 14px; }
.cta-band p { color: var(--gray-700); max-width: 540px; margin: 0 auto 28px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-col h4 { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .05em; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .88rem; transition: var(--trans); }
.footer-col ul li a:hover { color: var(--gold-lt); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; font-size: .82rem; }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--gold-lt); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .main-nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--green-dk); padding: 12px 20px 20px; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: auto; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
}
