.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: rgba(47, 138, 75, 0.8);
  font-size: 12px;
}
.title {
  margin: 14px 0 0;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  color: var(--green-900);
}
.title .accent {
  background: linear-gradient(90deg, var(--green-500), var(--yellow-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.card {
  background: rgba(237, 243, 237, 0.85);
  border: 1px solid rgba(22, 51, 35, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.card.pad {
  padding: 28px;
}
.lead {
  color: rgba(27, 42, 33, 0.7);
  font-weight: 600;
  line-height: 1.75;
  font-size: 16px;
}
.highlight {
  color: var(--yellow-500);
  font-weight: 800;
}

.img-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(22, 51, 35, 0.1);
  background: #fff;
  min-height: 360px;
}
.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}
.badge {
  position: absolute;
  left: 22px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(235, 228, 205, 0.92);
  border: 1px solid rgba(201, 170, 52, 0.25);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  min-width: 180px;
}
.badge strong {
  font-size: 26px;
  color: var(--yellow-500);
}
.badge span {
  font-weight: 700;
  color: rgba(27, 42, 33, 0.68);
  font-size: 13px;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}
.num-card {
  padding: 26px 22px;
  border-radius: var(--radius);
  background: rgba(237, 243, 237, 0.8);
  border: 1px solid rgba(22, 51, 35, 0.1);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: 0.2s ease;
}
.num-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.num-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(217, 234, 220, 0.85);
  border: 1px solid rgba(47, 138, 75, 0.14);
}
.big {
  font-size: 48px;
  margin: 0;
  font-weight: 900;
  color: var(--yellow-500);
}
.big .plus {
  color: var(--green-500);
}
.num-title {
  margin: 6px 0 0;
  font-weight: 800;
  color: var(--green-900);
}
.num-desc {
  margin: 10px auto 0;
  max-width: 240px;
  color: rgba(27, 42, 33, 0.62);
  font-weight: 600;
  line-height: 1.6;
  font-size: 14px;
}

.topics {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.topic {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(237, 243, 237, 0.8);
  border: 1px solid rgba(22, 51, 35, 0.1);
  box-shadow: var(--shadow-soft);
  transition: 0.2s ease;
}
.topic:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.topic .ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(217, 234, 220, 0.85);
  border: 1px solid rgba(47, 138, 75, 0.14);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.topic h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--green-900);
}

.join-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.join-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(237, 243, 237, 0.8);
  border: 1px solid rgba(22, 51, 35, 0.1);
  box-shadow: var(--shadow-soft);
  transition: 0.2s ease;
  min-height: 250px;
}
.join-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.join-card .mini-ico {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(217, 234, 220, 0.85);
  border: 1px solid rgba(47, 138, 75, 0.14);
  margin-bottom: 14px;
}
.join-card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  color: var(--green-900);
}
.join-card p {
  margin: 10px 0 0;
  color: rgba(27, 42, 33, 0.62);
  font-weight: 600;
  line-height: 1.7;
}

.reasons {
  margin-top: 42px;
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.reason {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(22, 51, 35, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  font-weight: 800;
  color: var(--green-900);
}
.check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(47, 138, 75, 0.15);
  border: 1px solid rgba(47, 138, 75, 0.3);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.contact-wrap {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 34px 32px;
  border-radius: var(--radius);
  background: rgba(237, 243, 237, 0.86);
  border: 1px solid rgba(22, 51, 35, 0.1);
  box-shadow: var(--shadow);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin-top: 18px;
}
.citem {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(22, 51, 35, 0.08);
}
.cico {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(217, 234, 220, 0.85);
  border: 1px solid rgba(47, 138, 75, 0.14);
  flex: 0 0 auto;
}
.citem small {
  display: block;
  color: rgba(27, 42, 33, 0.55);
  font-weight: 800;
}
.citem strong {
  display: block;
  margin-top: 3px;
  font-weight: 900;
  color: var(--green-900);
}
.date-row {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  color: rgba(27, 42, 33, 0.62);
  font-weight: 800;
}

@media (max-width: 980px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .numbers {
    grid-template-columns: repeat(2, 1fr);
  }
  .topics {
    grid-template-columns: 1fr;
  }
  .join-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .numbers {
    grid-template-columns: 1fr;
  }
}
