:root {
  --bg: #f4f8f3;
  --surface: #ffffff;
  --surface-strong: #0f2b1f;
  --text: #102015;
  --muted: #4a5f52;
  --border: #d9e5da;
  --brand: #2f8f58;
  --brand-dark: #1f6d41;
  --accent: #f7b74e;
  --shadow: 0 12px 40px rgba(20, 40, 24, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.125rem;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 12%, rgba(47, 143, 88, 0.09), transparent 45%),
    radial-gradient(circle at 87% 22%, rgba(247, 183, 78, 0.15), transparent 42%),
    var(--bg);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 248, 243, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 700;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.6rem;
  background: var(--brand);
  color: #fff;
}

.brand-icon img {
  width: 1.2rem;
  height: 1.2rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.primary-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.primary-nav a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--surface);
  width: 2.6rem;
  height: 2.6rem;
  padding: 0.45rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5.5rem;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(74, 95, 82, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(74, 95, 82, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
}

.hero-blob-one {
  width: 280px;
  height: 280px;
  top: 18%;
  right: 16%;
  background: rgba(47, 143, 88, 0.22);
}

.hero-blob-two {
  width: 340px;
  height: 340px;
  left: 8%;
  bottom: 6%;
  background: rgba(247, 183, 78, 0.18);
}

.hero-content {
  position: relative;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(47, 143, 88, 0.12);
  color: var(--brand-dark);
  font-weight: 700;
}

.badge-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(47, 143, 88, 0.9);
  animation: pulse 1.9s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(47, 143, 88, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(47, 143, 88, 0);
  }
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.2;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  max-width: 14ch;
  margin: 1rem auto;
}

.hero h1 span {
  color: var(--brand);
}

.hero-copy {
  margin: 0 auto;
  max-width: 65ch;
  color: var(--muted);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  border-radius: 0.65rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
}

.button:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.button-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.button-ghost:hover {
  background: #edf2ed;
  border-color: #ccd9ce;
}
.button-outline {
    background-color: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}
.button-small {
  padding: 0.5rem 0.8rem;
}



.stats {
  margin: 3rem auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stats li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1rem 0.7rem;
}

.stats strong {
  display: block;
  font-size: 1.45rem;
}

.stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.7);
  border-block: 1px solid var(--border);
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
  text-align: center;
}

.section h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 0.7rem;
  text-align: center;
}

.services-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.service-card img {
  width: 5.3rem;
  height: 5.3rem;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 0.7rem;
  border: 3px solid rgba(47, 143, 88, 0.25);
}

.service-card h3 {
  margin-bottom: 0.4rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.about-wrap {
  text-align: center;
}

.about-copy {
  max-width: 62ch;
  margin: 0.7rem auto 0;
  color: var(--muted);
}

.feature-grid {
  list-style: none;
  padding: 0;
  margin: 2rem auto 0;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: left;
}

.feature-grid li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.65rem 0.7rem;
}

.feature-grid li::before {
  content: "✓ ";
  color: var(--brand);
  font-weight: 700;
}

.contact-intro {
  color: var(--muted);
  max-width: 65ch;
}

.contact-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.4rem;
}

.contact-info h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.contact-info p {
  color: var(--muted);
  margin: 0.4rem 0;
}

.support-note {
  color: var(--brand-dark);
  font-weight: 700;
}

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-row.full {
  grid-column: 1 / -1;
}
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  padding: 0.6rem 0.7rem;
  font: inherit;
  color: inherit;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  outline: 2px solid rgba(47, 143, 88, 0.22);
}

.contact-success {
  text-align: center;
  padding: 1.6rem;
}

/* Form Success */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(93, 173, 226, 0.1);
    color: var(--primary);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.success-title {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.success-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.site-footer {
  background: var(--surface-strong);
  color: #e8f8ec;
  padding: 1rem 0;
  text-align: center;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1rem;
}

.brand-footer .brand-icon {
  background: var(--brand-dark);
}

.footer-copy {
  color: rgba(232, 248, 236, 0.78);
  max-width: 30ch;
}

.site-footer h4 {
  margin-bottom: 0.6rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin: 0.45rem 0;
}

.site-footer a {
  color: rgba(232, 248, 236, 0.74);
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(232, 248, 236, 0.2);
  margin-top: 1.8rem;
  padding-top: 1rem;
  text-align: center;
  color: rgba(232, 248, 236, 0.7);
}

@media (max-width: 920px) {
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .primary-nav {
    position: absolute;
    top: 72px;
    right: 4vw;
    left: 4vw;
    padding: 1rem;
    border-radius: 0.8rem;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .primary-nav.open {
    display: flex;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .stats,
  .services-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
