:root {
  --primary: #1a5f4a;
  --primary-dark: #12432f;
  --accent: #e8983a;
  --text: #232323;
  --text-light: #5a5a5a;
  --bg-light: #f6f5f1;
  --white: #ffffff;
  --border: #e2e0da;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

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

/* Header */
header.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
}
.logo span { color: var(--accent); }

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

nav.main-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.header-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none !important;
}
.header-cta:hover { background: #d1852a; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 70px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.4rem;
  max-width: 800px;
  margin: 0 auto 18px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 28px;
  color: #e6efe9;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 16px 34px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
}
.btn:hover { background: #d1852a; text-decoration: none; }

.btn-secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* Sections */
section { padding: 56px 20px; }
section.alt { background: var(--bg-light); }

h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: var(--primary-dark);
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}

.card h3 {
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.steps {
  max-width: 700px;
  margin: 0 auto;
  counter-reset: step;
}

.step {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.step-num {
  background: var(--accent);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.cta-band {
  background: var(--primary-dark);
  color: var(--white);
  text-align: center;
  padding: 48px 20px;
}
.cta-band h2 { color: var(--white); }

ul.checklist { list-style: none; max-width: 700px; margin: 0 auto; }
ul.checklist li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
ul.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

.service-list {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text-light);
  text-align: center;
}

.faq-item { max-width: 760px; margin: 0 auto 22px; }
.faq-item h3 { color: var(--primary-dark); margin-bottom: 6px; }

footer.site-footer {
  background: var(--primary-dark);
  color: #cfe0d7;
  padding: 36px 20px;
  text-align: center;
  font-size: 0.9rem;
}
footer.site-footer a { color: var(--white); }
footer.site-footer .footer-links {
  margin-top: 12px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .header-inner { flex-direction: column; gap: 12px; }
  nav.main-nav ul { justify-content: center; }
  .hero h1 { font-size: 1.8rem; }
}


/* Logo icon */
.logo { display: flex; align-items: center; gap: 9px; }
.logo-icon { flex-shrink: 0; }

/* Hero background icon */
.hero { position: relative; overflow: hidden; }
.hero-bg-icon {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  opacity: 0.07;
  pointer-events: none;
}
.hero h1, .hero p, .hero .btn { position: relative; z-index: 1; }
@media (max-width: 900px) {
  .hero-bg-icon { width: 200px; height: 200px; right: -40px; }
}

/* Trust bar */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 26px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.98rem;
}
.trust-icon { width: 24px; height: 24px; flex-shrink: 0; }
