:root {
  --primary: #2d7a4f;
  --accent: #6cbe7b;
  --bg: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --footer-bg: #0f172a;
  --white: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg);
  margin: 0;
  padding: 0;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo em { font-style: normal; color: var(--text-dark); }

.nav-links {
  display: flex;
  gap: 1.5rem;
  margin: 0;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
}

.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.cta-primary {
  background: var(--primary);
  color: var(--white);
}
.cta-primary:hover { background: #2b6a47; }

.cta-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}
.cta-outline:hover { background: var(--primary); color: var(--white); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 25px; height: 3px; background: var(--text-dark); border-radius: 2px; }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--bg) 0%, #e2e8f0 100%);
}

.hero-content { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.hero h1 { font-size: 2.4rem; margin-bottom: 1rem; line-height: 1.3; }
.hero p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero .btn-group { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.hero .btn-group .btn { padding: 0.8rem 1.6rem; font-size: 0.95rem; }

/* ---- Services Grid ---- */
.services { padding: 4rem 1.5rem; background: var(--white); }
.section-title { text-align: center; font-size: 1.8rem; margin-bottom: 2rem; }
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #f1f5f9;
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, background 0.2s;
}
.service-card:hover { transform: translateY(-4px); background: var(--primary); color: var(--white); }
.service-card em { font-style: normal; font-size: 1.8rem; display: block; margin-bottom: 0.5rem; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.85rem; color: var(--text-light); }

/* ---- Trust Strip ---- */
.trust-strip {
  background: #f8fafc;
  border-top: 4px solid var(--primary);
  border-bottom: 4px solid var(--primary);
  padding: 2rem 1.5rem;
  margin: 2rem 0;
}
.trust-content { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: space-between; }
.trust-info { flex: 1; min-width: 200px; }
.trust-info p { font-size: 0.9rem; color: var(--text-light); margin: 0.3rem 0; }
.trust-company { font-weight: 700; color: var(--primary); }
.trust-registry { font-size: 0.85rem; color: var(--text-light); }

/* ---- CTA ---- */
.cta-section {
  padding: 3rem 1.5rem;
  text-align: center;
  background: var(--primary);
  color: var(--white);
}
.cta-section h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.cta-section p { font-size: 1.05rem; color: #e2e8f0; margin-bottom: 1.5rem; max-width: 400px; margin-left: auto; margin-right: auto; }
.cta-section .btn-group { justify-content: center; }

/* ---- Page Hero Band ---- */
.page-hero {
  min-height: 200px;
  display: flex;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 3rem 1.5rem;
}
.page-hero h1 { font-size: 2rem; margin-bottom: 0.5rem; }

/* ---- Main Content ---- */
.main-content { max-width: 1200px; margin: 0 auto; padding: 3rem 1.5rem; }
.main-content h1 { font-size: 1.8rem; margin-bottom: 1rem; }
.main-content p { margin-bottom: 1rem; }
.main-content ul { margin-bottom: 1rem; margin-left: 1.5rem; }

/* ---- CTA Strip (inner pages) ---- */
.page-cta {
  padding: 2rem 1.5rem;
  background: #f1f5f9;
  text-align: center;
  margin-top: 2rem;
}
.page-cta .btn-group { justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ---- Footer ---- */
.footer {
  background: var(--footer-bg);
  color: #94a3b8;
  padding: 4rem 1.5rem 2rem;
}
.footer-wrapper { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.footer h3 { color: var(--white); font-size: 1rem; margin-bottom: 1.5rem; }
.footer p { font-size: 0.85rem; margin: 0.3rem 0; }
.footer a { color: #64748b; font-size: 0.85rem; }
.footer a:hover { color: var(--accent); }

.footer-col.blurb p { margin: 1rem 0; }
.footer-company { margin-top: 1.5rem; }
.footer-company p { font-size: 0.8rem; margin: 0.2rem 0; }
.footer-company strong { color: var(--white); }

.footer-links { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a { font-size: 0.85rem; }
.footer-legal { margin-top: 1.5rem; }
.footer-legal a { font-size: 0.8rem; }
.footer-contact { margin-top: 1.5rem; }
.footer-contact p { font-size: 0.85rem; margin: 0.3rem 0; }
.footer-contact a { color: #64748b; font-size: 0.85rem; }
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #303f5d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 0.75rem;
}
.footer-bottom .copyright { color: #64748b; }
.footer-bottom .legal { display: flex; gap: 2rem; }

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 1rem; gap: 1rem; }
  .nav-links.active { display: flex; }
  .hamburger { display: flex; }
  
  .footer-wrapper { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: left; }
  .footer-bottom .legal { margin-top: 0.5rem; }
}