/* ── SERVICES GRID ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.service-item {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-item:nth-child(even) { border-right: none; }
.service-item:nth-last-child(-n+2) { border-bottom: none; }

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green-tag);
  color: var(--green-mid);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.service-item h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.service-item > p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-list li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding-left: 1.5rem;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--green-mid);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%232D5A3D' d='M2 6l3 3 5-5'/%3E%3C/svg%3E") center / 10px no-repeat;
}

/* ── PROCESS ───────────────────────────────────────────────── */
.process-section { border-top: 1px solid var(--border); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 3.5rem;
}
.process-icon-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.process-icon {
  width: 48px;
  height: 48px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.process-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--border);
  font-weight: 400;
}
.process-step h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.process-step p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; }

/* ── PRODUCTS ──────────────────────────────────────────────── */
.products-section { border-top: 1px solid var(--border); }
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.products-image img {
  border-radius: var(--radius-card);
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.products-text h2 { margin-bottom: 1rem; }
.products-text > p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; margin-bottom: 2rem; }
.products-stats {
  display: flex;
  gap: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.product-stat .stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green-mid);
  font-weight: 400;
}
.product-stat .stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── NOT SURE BOX ──────────────────────────────────────────── */
.not-sure-box {
  background: var(--cream-card);
  border-radius: var(--radius-card);
  padding: 4rem;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.not-sure-box h2 { font-size: clamp(1.5rem,3vw,2.2rem); margin-bottom: 0.75rem; }
.not-sure-box p { color: var(--text-mid); margin-bottom: 1.75rem; }

/* ── FADE IN ───────────────────────────────────────────────── */
.fade-in { opacity:0; transform:translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity:1; transform:none; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 860px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-item { border-right: none; }
  .service-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .service-item:last-child { border-bottom: none; }
  .process-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .products-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .not-sure-box { padding: 2.5rem 1.5rem; }
}
