/* SOIL HEALTH PAGE STYLES */

:root {
  --soil-primary: #3AB54A;
  --soil-light: #EEF7EE;
  --soil-accent: #2D8F3A;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* BACK BUTTON */
.back-btn {
  position: fixed;
  top: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  font-size: 20px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.back-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-color: var(--soil-primary);
  color: var(--soil-primary);
}

/* HERO SECTION */
.soil-hero {
  background: linear-gradient(180deg, var(--soil-light) 0%, var(--cream) 100%);
  text-align: center;
  padding: 140px 60px 100px;
}

.soil-hero .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soil-primary);
  margin-bottom: 20px;
}

.soil-hero .hero-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--soil-primary);
}

.soil-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--ink);
}

.soil-hero h1 em {
  font-style: italic;
  color: var(--soil-primary);
}

.soil-hero p {
  font-size: 17px;
  color: var(--mist);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* SOLUTIONS SECTION */
.solutions-section {
  padding: 100px 60px;
  text-align: center;
  background: var(--cream);
}

.solutions-section .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 20px;
}

.solutions-section .section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--soil-primary);
}

.solutions-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 60px;
  color: var(--ink);
}

.solutions-section h2 em {
  font-style: italic;
  color: var(--soil-primary);
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.solution-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 44px 36px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: var(--soil-primary);
  box-shadow: 0 12px 32px rgba(58,181,74,0.12);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--soil-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px;
}

.solution-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--ink);
}

.solution-card p {
  color: var(--mist);
  font-size: 15px;
  line-height: 1.8;
}

/* BENEFITS SECTION */
.benefits-section {
  padding: 100px 60px;
  background: var(--forest);
  text-align: center;
  color: white;
}

.benefits-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 60px;
  color: white;
}

.benefits-section h2 em {
  font-style: italic;
  color: var(--gold);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  transition: background 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255,255,255,0.08);
}

.benefit-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}

.benefit-item h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  color: white;
}

.benefit-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* CTA SECTION */
.cta-section {
  padding: 120px 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--soil-primary) 0%, var(--soil-accent) 100%);
  color: white;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 20px;
  color: white;
}

.cta-section h2 em {
  font-style: italic;
  color: rgba(255,255,255,0.9);
}

.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-get-started {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: white;
  color: var(--soil-primary);
  border: none;
  border-radius: var(--r-btn);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-get-started:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .soil-hero { padding: 120px 24px 80px; }
  .solutions-section { padding: 80px 24px; }
  .benefits-section { padding: 80px 24px; }
  .cta-section { padding: 100px 24px; }
  .solution-cards { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
}
