/* ============================================================
   Coaching Page — Supplementary Styles
   ============================================================ */

/* Hero */
.coaching-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  overflow: hidden;
}
.coaching-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.svg') center/cover no-repeat;
  opacity: 0.15;
}
.coaching-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,83,45,0.9) 0%, rgba(21,128,61,0.75) 100%);
}
.coaching-hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

/* Problem / Solution */
.problem-solution-grid { align-items: stretch; }

.problem-box {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.problem-box__heading {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid;
}
.problem-box__heading--red   { color: var(--red-600);   border-color: var(--red-100); }
.problem-box__heading--green { color: var(--green-700); border-color: var(--green-100); }

.problem-list { list-style: none; padding: 0; }
.problem-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.problem-list__item:last-child { border-bottom: none; }
.problem-list__icon {
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  width: 20px;
  text-align: center;
}
.problem-list__item--bad  .problem-list__icon { color: var(--red-600); }
.problem-list__item--good .problem-list__icon { color: var(--green-600); }

/* Steps */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
  padding-bottom: 2rem;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: var(--green-200);
}
.step:last-child::before { display: none; }
.step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-serif);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--green-50);
}
.step__content { padding-top: 0.5rem; }
.step__content h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.step__content p  { color: var(--gray-600); font-size: 0.95rem; margin: 0; }
