:root {
  --brand-dark: #0f7134;
  --brand-main: #148540;
  --brand-soft: #8ac37d;
  --brand-pale: #edf8ee;
  --ink: #12321f;
  --muted: #5d7465;
  --card: rgba(255, 255, 255, 0.92);
  --line: rgba(20, 133, 64, 0.16);
  --shadow: 0 30px 90px rgba(9, 66, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 15%, rgba(138, 195, 125, 0.28), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(20, 133, 64, 0.12), transparent 26%),
    linear-gradient(135deg, #f7fbf7 0%, #ffffff 45%, #eff8f0 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 133, 64, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 133, 64, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 85%);
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 56px 0 28px;
}

.hero-card {
  width: 100%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 46px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -170px;
  bottom: -190px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20, 133, 64, 0.16), transparent 66%);
}

.brand-area,
.content-area {
  position: relative;
  z-index: 1;
}

.brand-area {
  display: grid;
  gap: 22px;
  justify-items: center;
}

.logo-wrap {
  width: min(100%, 410px);
  aspect-ratio: 1 / 0.84;
  display: grid;
  place-items: center;
  padding: 28px;
  background: linear-gradient(145deg, #ffffff, #f2faf2);
  border: 1px solid rgba(138, 195, 125, 0.28);
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(15, 113, 52, 0.12);
}

.brand-logo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 24px rgba(15, 113, 52, 0.12));
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(237, 248, 238, 0.96);
  border: 1px solid rgba(20, 133, 64, 0.18);
  font-size: 0.92rem;
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-main);
  box-shadow: 0 0 0 6px rgba(20, 133, 64, 0.14);
  animation: pulse 1.8s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-main);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.5rem, 7vw, 5.1rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.68;
}

.service-box {
  margin-top: 28px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(237, 248, 238, 0.9), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(20, 133, 64, 0.16);
}

.service-box h2 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  color: var(--brand-dark);
}

.service-box p {
  margin: 0;
  color: #385141;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-main), var(--brand-dark));
  box-shadow: 0 16px 32px rgba(20, 133, 64, 0.24);
}

.btn-secondary {
  color: var(--brand-dark);
  background: #ffffff;
  border: 1px solid rgba(20, 133, 64, 0.18);
}

.contact-card {
  display: grid;
  gap: 7px;
  margin-top: 26px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.98rem;
}

.contact-card a {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  text-decoration: underline;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 26px;
  text-align: center;
  color: rgba(18, 50, 31, 0.62);
  font-size: 0.92rem;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.78);
    opacity: 0.62;
  }
}

@media (max-width: 880px) {
  .page-shell {
    padding-top: 24px;
  }

  .hero-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
    border-radius: 28px;
  }

  .logo-wrap {
    max-width: 340px;
  }

  .content-area {
    text-align: center;
  }

  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-actions {
    justify-content: center;
  }

  .contact-card {
    justify-items: center;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
  }

  .hero-card {
    padding: 20px;
  }

  .logo-wrap {
    padding: 18px;
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(2.35rem, 15vw, 3.5rem);
  }

  .btn {
    width: 100%;
  }
}
