:root {
  --primary: #78b82a;
  --secondary: #e97a1a;
  --dark: #1f2937;
  --muted: #6b7280;
  --light: #f7f9fc;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 12px 30px rgba(31, 41, 55, 0.08);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--dark);
  color: #e5edf7;
  font-size: 14px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: wrap;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229,231,235,0.8);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-wrap img { height: 58px; width: auto; }
.logo-text strong { display: block; font-size: 18px; }
.logo-text span { color: var(--muted); font-size: 13px; }

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
nav a {
  font-weight: 700;
  font-size: 15px;
}
nav a:hover, nav a.active { color: var(--primary); }

.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #5fa820);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline {
  border: 2px solid var(--secondary);
  color: var(--secondary);
}
.btn-outline:hover {
  background: var(--secondary);
  color: var(--white);
}

.hero {
  background: linear-gradient(135deg, #f8fff0 0%, #fff6ef 100%);
  padding: 84px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}
.eyebrow {
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
}
.hero h1, .page-banner h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  margin: 12px 0 18px;
}
.hero p.lead, .page-banner p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
}
.hero-card {
  background: var(--white);
  padding: 28px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid #eef2f7;
}
.hero-card h3 { margin-top: 0; }
.hero-card ul { padding-left: 18px; color: var(--muted); }

.page-banner {
  padding: 74px 0 54px;
  background: linear-gradient(135deg, #f8fff0, #fff6ef);
}

section { padding: 74px 0; }
.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.section-title h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 10px 0 14px;
}
.section-title p { color: var(--muted); }

.grid-3, .grid-2, .service-grid, .testimonial-grid, .stats {
  display: grid;
  gap: 24px;
}
.grid-3, .service-grid, .testimonial-grid, .stats { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; }
.card p, .card li { color: var(--muted); }
.icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(120,184,42,0.12);
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 14px;
}

.highlight {
  background: var(--light);
}

.stats .card {
  text-align: center;
  padding: 24px;
}
.stat-number {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
}

.checklist {
  padding-left: 18px;
}
.checklist li { margin-bottom: 10px; }

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}
form {
  display: grid;
  gap: 14px;
}
input, textarea, select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
label {
  font-weight: 700;
  margin-bottom: 6px;
  display: inline-block;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.form-note {
  font-size: 13px;
  color: var(--muted);
}

.cta {
  background: linear-gradient(135deg, var(--dark), #111827);
  color: var(--white);
  border-radius: 28px;
  padding: 38px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.cta p { color: #cfd8e3; }

footer {
  background: #111827;
  color: #d7dde6;
  padding: 26px 0;
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.small { font-size: 14px; color: var(--muted); }

@media (max-width: 900px) {
  .hero-grid, .grid-2, .service-grid, .testimonial-grid, .stats, .contact-layout { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 700px) {
  .navbar { flex-direction: column; align-items: flex-start; }
  nav ul { gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .topbar .container { flex-direction: column; }
}
