html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(90, 154, 40, 0.045), transparent 22%),
    radial-gradient(circle at 88% 0%, rgba(17, 17, 17, 0.025), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

.site-shell {
  overflow-x: clip;
}

.hero-tint {
  background:
    radial-gradient(circle at 76% 18%, rgba(90, 154, 40, 0.075), transparent 24%);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fafafa 100%);
  pointer-events: none;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 88%);
}

.dark-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 90%);
}

.icon-badge,
.icon-badge-light,
.icon-badge-dark,
.hero-icon-wrap,
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.icon-badge,
.icon-badge-light {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  background: linear-gradient(180deg, #ffffff, #f7f8f7);
  color: #386641;
}

.icon-badge-dark {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #7ed957;
}

.hero-icon-wrap {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.hero-icon-accent {
  color: #7ed957;
}

.trust-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid #e5e5e5;
  background: #ffffff;
  color: #5a9a28;
}

.icon-badge svg,
.icon-badge-light svg,
.icon-badge-dark svg,
.hero-icon-wrap svg,
.trust-icon svg {
  width: 1.18rem;
  height: 1.18rem;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 999px;
  border: 1px solid #e5e5e5;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.9rem 1rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #666666;
}

.hero-mini-label {
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}

.process-grid {
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, rgba(90, 154, 40, 0.12), rgba(90, 154, 40, 0.4), rgba(90, 154, 40, 0.12));
  display: none;
}

.process-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  border-radius: 18px;
  border: 1px solid #e5e5e5;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.process-card:hover {
  transform: translateY(-2px);
  border-color: rgba(90, 154, 40, 0.3);
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid #e5e5e5;
  background: #f7f8f7;
  font-family: "Montserrat", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  color: #5a9a28;
}

.cta-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(126, 217, 87, 0.06), transparent 34%);
}

::selection {
  background: #5a9a28;
  color: #ffffff;
}

@media (min-width: 1280px) {
  .process-grid::before {
    display: block;
  }
}

@media (max-width: 640px) {
  .hero-section::after {
    height: 72px;
  }

  .hero-tint {
    background:
      radial-gradient(circle at 72% 14%, rgba(90, 154, 40, 0.055), transparent 26%);
  }

  .hero-grid {
    background-size: 24px 24px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent 92%);
  }

  .dark-grid {
    background-size: 30px 30px;
  }

  .icon-badge,
  .icon-badge-light,
  .icon-badge-dark {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 12px;
  }

  .hero-icon-wrap {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 12px;
  }

  .icon-badge svg,
  .icon-badge-light svg,
  .icon-badge-dark svg,
  .hero-icon-wrap svg {
    width: 1.05rem;
    height: 1.05rem;
  }

  .trust-item {
    justify-content: flex-start;
    gap: 0.65rem;
    padding: 0.75rem 0.85rem;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
  }

  .trust-icon {
    width: 1.9rem;
    height: 1.9rem;
  }

  .process-card {
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(17, 17, 17, 0.045);
  }

  .process-card:hover {
    transform: none;
  }

  .process-number {
    min-width: 2.45rem;
    height: 2.45rem;
    font-size: 0.76rem;
  }

  .cta-shell::before {
    border-radius: 24px;
  }
}
