/* ─── PAGE HERO ─── */
.page-hero {
  background: linear-gradient(135deg, #1e4a22 0%, #2d6635 40%, #398141 100%);
  color: #fff;
  padding: 72px 24px 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: -70px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}
.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #c8e6c8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.page-hero h1 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 18px;
}
.page-hero h1 em {
  font-style: normal;
  color: #9ed9a0;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto;
}

/* ─── INTRO SECTION ─── */
.intro-section {
  background: var(--cream);
  padding: 64px 24px;
  border-bottom: 1px solid var(--border);
}
.intro-inner {
  max-width: 880px;
  margin: 0 auto;
}
.intro-inner h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.intro-inner h2 em {
  font-style: normal;
  color: var(--green);
}
.intro-inner p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 700px;
}

/* ─── SHARED FEATURES ─── */
.shared-features {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
}
.shared-features p {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px !important;
}
.shared-features ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.shared-features ul li {
  font-size: 14px;
  color: var(--text);
  position: relative;
  padding-left: 20px;
  line-height: 1.45;
}
.shared-features ul li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 1px;
}

/* ─── PROCESS BUTTON ─── */
.btn-process {
  display: inline-block;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 50px;
  transition: background 0.18s, transform 0.15s;
}
.btn-process:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .shared-features ul {
    grid-template-columns: 1fr;
  }
}
