@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Barlow:wght@400;500;600&display=swap');

:root {
  --green: #2D6A2D;
  --green-dark: #1a3f1a;
  --green-light: #3d8f3d;
  --yellow: #F5C100;
  --white: #FFFFFF;
  --off-white: #F7F5F0;
  --gray: #666666;
  --gray-light: #f0eeea;
  --text: #1a1a1a;
  --border: #e0ddd8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.topbar a { color: var(--yellow); text-decoration: none; }

/* ── HEADER / NAV ── */
header {
  background: var(--green);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.logo span { color: var(--yellow); }
nav { display: flex; gap: 28px; align-items: center; }
nav a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
}
nav a:hover { color: var(--yellow); }
.nav-cta {
  background: var(--yellow);
  color: var(--green-dark) !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700 !important;
  font-size: 15px !important;
  white-space: nowrap;
}
.nav-cta:hover { background: #ffd000; color: var(--green-dark) !important; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  padding: 72px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; max-width: 780px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--green-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.0;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero h1 span { color: var(--yellow); }
.hero p {
  font-size: 19px;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.hero-cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--green-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 28px;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.hero-trust {
  margin-top: 36px;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  opacity: 0.85;
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-trust .check { color: var(--yellow); font-size: 16px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--gray-light);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
}
.trust-bar-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
}
.trust-item .icon { font-size: 20px; }

/* ── SECTIONS ── */
.section { padding: 72px 24px; }
.section-alt { background: var(--off-white); }
.container { max-width: 960px; margin: 0 auto; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--text);
}
.section-title span { color: var(--green); }
.section-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.6;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  border-color: var(--green);
  box-shadow: 0 6px 24px rgba(45,106,45,0.1);
  transform: translateY(-2px);
}
.service-icon { font-size: 32px; margin-bottom: 14px; }
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--green-dark);
}
.service-card p { font-size: 15px; color: var(--gray); line-height: 1.55; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}

/* ── HOW IT WORKS ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 24px;
  margin: 0 auto 16px;
}
.step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--green-dark);
}
.step p { font-size: 15px; color: var(--gray); }

/* ── PRICING ── */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: 8px;
  padding: 40px;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.price { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 64px; color: var(--green); line-height: 1; }
.price sup { font-size: 28px; vertical-align: top; margin-top: 12px; }
.price-note { color: var(--gray); font-size: 15px; margin-bottom: 24px; }
.price-features { list-style: none; margin-bottom: 28px; text-align: left; }
.price-features li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px; display: flex; align-items: center; gap: 10px; }
.price-features li:last-child { border-bottom: none; }
.price-features .check { color: var(--green); font-weight: 700; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}
.faq-q .arrow { font-size: 20px; color: var(--green); transition: transform 0.2s; }
.faq-q.open .arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 0 20px; font-size: 16px; color: var(--gray); line-height: 1.65; }
.faq-a.open { display: block; }

/* ── SERVICE AREA ── */
.area-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.area-tag {
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  text-align: center;
  padding: 72px 24px;
}
.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 5vw, 54px);
  margin-bottom: 14px;
}
.cta-banner h2 span { color: var(--yellow); }
.cta-banner p { font-size: 18px; opacity: 0.88; margin-bottom: 32px; }

/* ── FOOTER ── */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 24px 28px;
}
.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand .logo { display: block; margin-bottom: 12px; font-size: 22px; }
.footer-brand p { font-size: 14px; line-height: 1.6; }
footer h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; }
footer ul li a:hover { color: var(--yellow); }
.footer-nap { font-size: 14px; line-height: 1.8; }
.footer-nap a { color: var(--yellow); text-decoration: none; }
.footer-bottom {
  max-width: 960px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  padding: 52px 24px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 12px;
}
.page-hero h1 span { color: var(--yellow); }
.page-hero p { font-size: 18px; opacity: 0.88; max-width: 560px; margin: 0 auto; }

/* ── CONTENT PROSE ── */
.prose h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: var(--green-dark);
  margin: 36px 0 12px;
}
.prose p { margin-bottom: 16px; line-height: 1.7; color: #333; }
.prose ul { margin: 0 0 16px 20px; }
.prose ul li { margin-bottom: 8px; line-height: 1.65; color: #333; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--gray-light);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  font-size: 13px;
}
.breadcrumb-inner { max-width: 960px; margin: 0 auto; }
.breadcrumb a { color: var(--green); text-decoration: none; }
.breadcrumb span { color: var(--gray); margin: 0 6px; }

/* ── CONTACT FORM ── */
.contact-form { max-width: 560px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 11px 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-group textarea { height: 120px; resize: vertical; }
.btn-submit {
  background: var(--green);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  border: none;
  border-radius: 4px;
  padding: 14px 36px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--green-light); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { display: none; }
  .mobile-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background: var(--yellow);
    color: var(--green-dark);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 16px;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
  }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
.mobile-cta { display: none; }
