:root {
  --bg: #f4f6f8;
  --panel: #ffffff;
  --elev: #eef2f5;
  --fg: #404040;
  --muted: #6a6a6a;
  --primary: #5abf68;
  --primary-dark: #429755;
  --primary-contrast: #ffffff;
  --shadow: 0 8px 24px rgba(31, 42, 55, 0.12);
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.6 Lato, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Montserrat, Lato, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

a { color: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

main {
  flex: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--panel);
  border-bottom: 12px solid #7ebd64;
  box-shadow: 0 2px 12px rgba(31, 42, 55, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 0 8px 18px;
  border-left: 4px solid var(--primary);
  color: rgba(31, 48, 56, 0.8);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.1;
  margin-top: 6px;
}

.logo-img {
  display: block;
  height: 48px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--primary);
  color: var(--primary-contrast);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(90, 191, 104, 0.3);
  transition: background 0.2s ease, transform 0.1s ease;
}

.header-link:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.header-link:focus-visible {
  outline: 3px solid rgba(90, 191, 104, 0.45);
  outline-offset: 2px;
}

.hero {
  position: relative;
  padding: 96px 0 64px;
  background:
    linear-gradient(180deg, rgba(126, 189, 100, 0.12) 0%, rgba(244, 246, 248, 0.96) 50%, rgba(244, 246, 248, 1) 100%),
    radial-gradient(circle at 80% 10%, rgba(64, 64, 64, 0.08), transparent 55%),
    #f5f7f9;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -160px auto auto -180px;
  width: 520px;
  height: 520px;
  background: linear-gradient(135deg, rgba(126, 189, 100, 0.18) 0%, rgba(126, 189, 100, 0) 70%);
  transform: rotate(-18deg);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: -40px -160px auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(64, 64, 64, 0.08) 0%, rgba(64, 64, 64, 0) 70%);
  opacity: 0.35;
  transform: rotate(10deg);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 52px);
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero-line {
  display: inline;
  font-weight: inherit;
}

.hero-line--rotating {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
}

.hero-rotate-group {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}

.hero-rotate {
  display: inline-flex;
  position: relative;
  align-items: baseline;
}
.hero-rotate__inner {
  position: relative;
  display: inline-grid;
  min-width: clamp(170px, 30vw, 220px);
  margin-left: 0;
  padding-bottom: 2px;
  place-items: center;
}
.hero-rotate__inner::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -2px;
  height: 4px;
  background: linear-gradient(90deg, rgba(126, 189, 100, 0.9), rgba(66, 151, 85, 0.9));
  opacity: 0.65;
  border-radius: 999px;
  z-index: 0;
}
.hero-rotate__inner::after {
  bottom: -5px;
}
.hero-rotate__word {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(60%);
  text-transform: lowercase;
  text-align: center;
  width: 100%;
  z-index: 1;
}
.hero-rotate__word.is-visible {
  animation: heroWordIn 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero-rotate__word.is-leaving {
  animation: heroWordOut 0.65s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes heroWordIn {
  0% {
    opacity: 0;
    transform: translateY(55%);
  }
  35% {
    opacity: 1;
    transform: translateY(-10%);
  }
  60% {
    transform: translateY(6%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroWordOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  30% {
    transform: translateY(-12%);
  }
  100% {
    opacity: 0;
    transform: translateY(-120%);
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: clamp(24px, 6.6vw, 32px);
  }

  .hero-line {
    display: block;
    margin-right: 0;
  }

  .hero-line + .hero-line {
    margin-top: 6px;
  }

  .hero-line--rotating {
    display: inline-flex;
  }

  .hero-line--rotating::after {
    content: '';
    margin-left: 0.18em;
  }

  .hero-rotate__inner {
    min-width: unset;
    width: fit-content;
  }

  .hero-rotate__inner::after {
    left: 0;
    right: 0;
    bottom: -6px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .hero-line + .hero-line {
    margin-top: 4px;
  }

  .hero-rotate__inner {
    min-width: unset;
    width: fit-content;
    padding-bottom: 1px;
  }

  .hero-rotate__inner::after {
    bottom: -5px;
  }
}

.lede {
  color: var(--muted);
  margin: 0 0 24px;
}






.section {
  padding: 64px 0;
}

.section h2 {
  font-size: 30px;
  margin: 0 0 18px;
}

.section p {
  color: var(--muted);
}

.services .cards {
  margin-top: 22px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 246, 248, 0.9) 100%);
  border: 1px solid rgba(31, 42, 55, 0.08);
  border-radius: 18px;
  padding: 26px 24px 24px;
  box-shadow: 0 10px 26px rgba(31, 42, 55, 0.08);
  text-align: center;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, rgba(126, 189, 100, 0.85), rgba(66, 151, 85, 0.85));
  opacity: 0.85;
  pointer-events: none;
  border-radius: 18px 18px 0 0;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(31, 42, 55, 0.14);
  border-color: rgba(90, 191, 104, 0.32);
}

.card-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(126, 189, 100, 0.2), rgba(66, 151, 85, 0.26));
  color: var(--primary-dark);
  margin: 0 auto 18px;
  transition: transform 0.2s ease;
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.card:hover .card-icon {
  transform: scale(1.05);
}

.card h3 {
  margin: 0 0 12px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.card p {
  margin: 0;
}

.section-divider {
  margin: 40px auto 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  max-width: 160px;
  height: 1px;
  background: rgba(31, 42, 55, 0.15);
}

.section-divider span {
  white-space: nowrap;
}

.support-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 32px;
  padding: 0;
  margin: 0;
}

.support-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fg);
  font-weight: 600;
}

.support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(90, 191, 104, 0.15);
  color: var(--primary-dark);
}

.support-icon svg {
  width: 16px;
  height: 16px;
}

.site-footer {
  background: #171717;
  color: #e8f1f8;
  padding: 24px 0;
  margin-top: 72px;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-contact {
  display: inline-flex;
  gap: 16px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .header-inner {
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .brand-group {
    flex-direction: row;
    gap: 12px;
    width: auto;
    flex-shrink: 1;
  }

  .header-tag {
    margin-top: 0;
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .logo-img {
    height: 42px;
  }

  .header-actions {
    justify-content: center;
    width: 100%;
  }

  .header-link {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}












